/* ================================================================
   ERGO MOOVE — Refonte moderne
   Palette : Sauge profond / Corail / Crème pêche / Or doux
   ================================================================ */

/* -------- Reset & base -------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4 { margin: 0; font-family: 'Fraunces', Georgia, serif; font-weight: 500; line-height: 1.1; letter-spacing: -0.02em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* -------- Variables -------- */
:root {
    /* Plum / violet (assorti au logo Ergo Moove) — les variables gardent
       leurs noms "sage-*" pour ne pas casser les ~200 références CSS, mais
       les valeurs sont désormais une gamme prune/violet. */
    --sage-900: #2D1B40;
    --sage-700: #5E2BA8;
    --sage-500: #8856C0;
    --sage-300: #C9A8E0;
    --sage-100: #EFE3F5;

    /* "--coral-*" garde le nom pour ne pas casser la CSS, mais les valeurs
       sont maintenant des nuances de violet : accents et boutons unifiés. */
    --coral-700: #3F1B7A;  /* violet profond (boutons hover, accents forts) */
    --coral-500: #5E2BA8;  /* violet moyen (boutons, accents primaires) */
    --coral-300: #C9A8E0;  /* lavande (accents clairs sur fond sombre) */
    --coral-100: #EFE3F5;  /* lavande très pâle */

    /* "--gold-*" basculé sur le violet aussi (variant musiciens) */
    --gold-500: #5E2BA8;
    --gold-300: #C9A8E0;

    --cream: #FAF3F8;       /* crème avec un soupçon lavande, complémente le violet */
    --cream-warm: #F4E9F2;
    --paper: #FFFFFF;

    --ink: #1A1A2E;
    --ink-soft: #4A4A5E;
    --ink-mute: #8A8A9A;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 28px;
    --radius-xl: 48px;

    --shadow-sm: 0 2px 8px rgba(45, 27, 64, 0.06);
    --shadow-md: 0 8px 24px rgba(45, 27, 64, 0.10);
    --shadow-lg: 0 20px 60px rgba(45, 27, 64, 0.15);

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --duration: 0.6s;

    --container: 1240px;
}

/* -------- Utilities -------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}
.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 10000;
    background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sage-700);
    margin-bottom: 20px;
}
.eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px; height: 2px;
    background: var(--coral-500);
    border-radius: 2px;
}
.eyebrow--light { color: var(--cream); }
.eyebrow--light::before { background: var(--coral-300); }

.section-title {
    font-size: clamp(2rem, 4.4vw, 3.4rem);
    color: var(--ink);
    margin-bottom: 1.5rem;
}
.section-title em {
    font-style: italic;
    color: var(--coral-700);
    font-weight: 400;
}
.section-title--light { color: var(--cream); }
.section-title--light em { color: var(--coral-300); }
.section-title span {
    display: block;
    font-size: 0.65em;
    color: var(--ink-soft);
    font-weight: 400;
    margin-top: 0.4em;
    font-style: normal;
}
.section-title--light span { color: var(--sage-100); }

.underline-stroke {
    background-image: linear-gradient(120deg, var(--coral-300) 0%, var(--coral-300) 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.32em;
    background-position: 0 88%;
    padding: 0 0.1em;
}

/* -------- Buttons -------- */
.btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 16px 28px;
    border-radius: 999px;
    font-weight: 600; font-size: 15px;
    letter-spacing: 0.01em;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
    white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--coral {
    background: var(--coral-500);
    color: var(--paper);
    box-shadow: 0 10px 24px rgba(94, 43, 168, 0.28);
}
.btn--coral:hover {
    background: var(--coral-700);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(94, 43, 168, 0.4);
}

.btn--ghost {
    background: transparent;
    color: var(--cream);
    border: 1.5px solid rgba(255, 244, 236, 0.4);
}
.btn--ghost:hover {
    background: rgba(255, 244, 236, 0.1);
    border-color: var(--cream);
}
.btn--ghost.btn--sage {
    color: var(--sage-700);
    border-color: var(--sage-300);
}
.btn--ghost.btn--sage:hover {
    background: var(--sage-100);
    border-color: var(--sage-500);
}

.btn--text {
    color: var(--sage-700);
    padding: 16px 8px;
}
.btn--text:hover { color: var(--coral-700); }

.btn--block { width: 100%; justify-content: center; padding: 18px 28px; }

/* -------- Reveal animation -------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
    transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 22px 0;
    transition: padding 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.is-scrolled,
body.nav-open .site-header {
    padding: 14px 0;
    background: rgba(255, 244, 236, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(31, 69, 56, 0.08);
}

/* Quand le menu est ouvert, le header passe au-dessus de l'overlay
   pour que le téléphone reste lisible sur fond crème, même si on était
   en haut de la page au moment du clic. */
body.nav-open .site-header { z-index: 110; }
.site-header__inner {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    color: var(--sage-900);
    transition: opacity 0.3s;
}
.brand:hover { opacity: 0.82; }
.brand__logo {
    height: 78px;
    width: auto;
    display: block;
    transition: height 0.4s var(--ease);
}
.site-header.is-scrolled .brand__logo,
body.nav-open .site-header .brand__logo { height: 60px; }

/* Footer : logo en variante claire, plus grand pour bien marquer */
.site-footer .brand__logo { height: 110px; }

.site-header__actions { display: flex; align-items: center; gap: 24px; }
.site-header__phone {
    display: inline-flex; align-items: center; gap: 10px;
    font-weight: 500; font-size: 15px;
    color: var(--sage-900);
    transition: color 0.3s;
}
.site-header__phone svg { width: 18px; height: 18px; color: var(--coral-500); }
.site-header__phone:hover { color: var(--coral-700); }

.menu-toggle {
    display: inline-flex; align-items: center; gap: 14px;
    padding: 10px 20px 10px 16px;
    background: var(--sage-700);
    color: var(--cream);
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s, transform 0.3s var(--ease);
}
.menu-toggle:hover { background: var(--sage-900); transform: translateY(-1px); }
.menu-toggle__bars {
    position: relative;
    width: 18px; height: 14px;
}
.menu-toggle__bars span {
    position: absolute;
    left: 0; right: 0;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: transform 0.4s var(--ease), top 0.3s var(--ease), opacity 0.2s;
}
.menu-toggle__bars span:nth-child(1) { top: 0; }
.menu-toggle__bars span:nth-child(2) { top: 6px; }
.menu-toggle__bars span:nth-child(3) { top: 12px; }
.menu-toggle.is-open .menu-toggle__bars span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.menu-toggle.is-open .menu-toggle__bars span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open .menu-toggle__bars span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

/* ================================================================
   NAV OVERLAY plein écran
   ================================================================ */
.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 90;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}
.nav-overlay.is-open {
    pointer-events: auto;
    opacity: 1;
}
.nav-overlay__bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--sage-900) 0%, var(--sage-700) 60%, var(--sage-500) 100%);
    clip-path: circle(0% at calc(100% - 80px) 50px);
    transition: clip-path 0.7s var(--ease);
}
.nav-overlay.is-open .nav-overlay__bg {
    clip-path: circle(150% at calc(100% - 80px) 50px);
}
.nav-overlay__inner {
    position: relative;
    height: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 120px 32px 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
    color: var(--cream);

    /* Permet de scroller à l'intérieur de l'overlay quand le contenu déborde
       (cas typique mobile : 5 services + 3 liens + footer ne tiennent pas sur 667px). */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;  /* momentum scroll iOS */
    overscroll-behavior: contain;       /* le scroll ne se propage pas au body figé */
}

/* Eyebrow de section */
.nav-overlay__eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--coral-300);
    margin: 0 0 32px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.nav-overlay__eyebrow::before {
    content: '';
    width: 28px; height: 1px;
    background: var(--coral-300);
}
.nav-overlay.is-open .nav-overlay__section--services .nav-overlay__eyebrow { opacity: 1; transform: translateY(0); transition-delay: 0.22s; }
.nav-overlay.is-open .nav-overlay__section--cabinet .nav-overlay__eyebrow  { opacity: 1; transform: translateY(0); transition-delay: 0.32s; }

/* Grid 2 colonnes */
.nav-overlay__grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    column-gap: 100px;
    align-content: center;
    padding-bottom: 32px;
}

/* Listes */
.nav-overlay__list { display: flex; flex-direction: column; }

/* Items (cascade) */
.nav-overlay__item {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s var(--ease), transform 0.55s var(--ease);
}
.nav-overlay.is-open .nav-overlay__item { opacity: 1; transform: translateY(0); }
.nav-overlay.is-open .nav-overlay__list--services .nav-overlay__item:nth-child(1) { transition-delay: 0.28s; }
.nav-overlay.is-open .nav-overlay__list--services .nav-overlay__item:nth-child(2) { transition-delay: 0.34s; }
.nav-overlay.is-open .nav-overlay__list--services .nav-overlay__item:nth-child(3) { transition-delay: 0.40s; }
.nav-overlay.is-open .nav-overlay__list--services .nav-overlay__item:nth-child(4) { transition-delay: 0.46s; }
.nav-overlay.is-open .nav-overlay__list--cabinet  .nav-overlay__item:nth-child(1) { transition-delay: 0.38s; }
.nav-overlay.is-open .nav-overlay__list--cabinet  .nav-overlay__item:nth-child(2) { transition-delay: 0.44s; }
.nav-overlay.is-open .nav-overlay__list--cabinet  .nav-overlay__item:nth-child(3) { transition-delay: 0.50s; }

/* Liens — base */
.nav-overlay__link {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 0;
    color: var(--cream);
    position: relative;
    transition: color 0.3s, padding-left 0.4s var(--ease);
}
.nav-overlay__link::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 0; height: 1px;
    background: var(--coral-300);
    transform: translateY(-50%);
    transition: width 0.4s var(--ease);
    opacity: 0.7;
}
.nav-overlay__link:hover,
.nav-overlay__link.is-active {
    color: var(--coral-300);
    padding-left: 32px;
}
.nav-overlay__link:hover::before,
.nav-overlay__link.is-active::before {
    width: 20px;
}

/* Liste services : titre + tagline en italique */
.nav-overlay__list--services .nav-overlay__link {
    border-bottom: 1px solid rgba(255, 244, 236, 0.08);
}
.nav-overlay__list--services .nav-overlay__item:last-child .nav-overlay__link {
    border-bottom: 0;
}
.nav-overlay__list--services .nav-overlay__link-title {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    letter-spacing: -0.01em;
    line-height: 1.15;
}
.nav-overlay__link-tagline {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.55;
    letter-spacing: 0.005em;
    transition: opacity 0.3s;
}
.nav-overlay__link:hover .nav-overlay__link-tagline { opacity: 0.85; }

/* Liste cabinet : titre seul, plus large */
.nav-overlay__list--cabinet .nav-overlay__link-title {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: clamp(1.7rem, 2.8vw, 2.3rem);
    letter-spacing: -0.01em;
    line-height: 1.1;
}

/* Footer du menu */
.nav-overlay__foot {
    border-top: 1px solid rgba(255, 244, 236, 0.14);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
    transition-delay: 0.55s;
}
.nav-overlay.is-open .nav-overlay__foot { opacity: 1; transform: translateY(0); }

.nav-overlay__foot-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}
.nav-overlay__foot-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 22px 10px 18px;
    background: #FFFFFF;
    color: var(--sage-900);
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    border-radius: 999px;
    transition: transform 0.3s var(--ease), background 0.3s, color 0.3s;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}
.nav-overlay__foot-phone svg {
    width: 18px; height: 18px;
    color: var(--sage-700);
}
.nav-overlay__foot-phone:hover {
    background: var(--coral-300);
    color: var(--sage-900);
    transform: translateY(-1px);
}
.nav-overlay__foot-mail {
    font-size: 14px;
    color: var(--cream);
    opacity: 0.65;
    transition: opacity 0.3s, color 0.3s;
}
.nav-overlay__foot-mail:hover { opacity: 1; color: var(--coral-300); }

.nav-overlay__foot-addr {
    font-size: 13px;
    color: var(--cream);
    opacity: 0.6;
    text-align: right;
    line-height: 1.6;
    margin: 0;
}
.nav-overlay__foot-addr span {
    display: block;
    opacity: 0.7;
    margin-top: 2px;
}

/* Responsive */
@media (max-width: 860px) {
    .nav-overlay__inner {
        padding: 100px 24px 36px;
        /* Sur mobile, le contenu doit s'écouler top-down (pas justify-between, qui
           crée des espaces bizarres quand il faut scroller). */
        justify-content: flex-start;
        gap: 36px;
    }
    .nav-overlay__grid {
        grid-template-columns: 1fr;
        gap: 36px;
        align-content: start;
        padding-bottom: 0;
        flex: 0 0 auto;  /* pas de flex-grow qui pousserait le footer hors écran */
    }
    .nav-overlay__eyebrow { margin-bottom: 20px; }
    .nav-overlay__foot {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .nav-overlay__foot-addr { text-align: left; }
}

body.nav-open { overflow: hidden; }

/* ================================================================
   MAIN
   ================================================================ */
.site-main { min-height: 60vh; padding-top: 0; }

/* ================================================================
   HERO
   ================================================================ */
.hero {
    position: relative;
    padding: 180px 0 100px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
}
.hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    pointer-events: none;
    animation: float 12s ease-in-out infinite;
}
.hero__blob--1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--coral-300), transparent 70%);
    top: -150px; right: -100px;
}
.hero__blob--2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--sage-300), transparent 70%);
    bottom: -150px; left: -100px;
    animation-delay: -6s;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, -30px); }
}

.hero__inner {
    position: relative;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero__title {
    font-size: clamp(2.8rem, 6.2vw, 5.4rem);
    margin-bottom: 28px;
    color: var(--ink);
}
.hero__title em {
    font-style: italic;
    color: var(--coral-700);
    font-weight: 400;
}
.hero__title-line { display: block; }

.hero__lead {
    font-size: 1.18rem;
    line-height: 1.6;
    color: var(--ink-soft);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 64px; }

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    padding-top: 40px;
    border-top: 1px solid var(--sage-100);
}
.hero__stat-num {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--sage-700);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.hero__stat-label {
    display: block;
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.4;
}

.hero__visual {
    position: relative;
    aspect-ratio: 5 / 6;
    max-width: 480px;
    justify-self: center;
    width: 100%;
}
.hero__visual-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50% 30% 50% 30% / 40% 50% 50% 40%;
    overflow: hidden;
    background: var(--paper);
    box-shadow: var(--shadow-lg);
    animation: morph 14s ease-in-out infinite;
}
@keyframes morph {
    0%, 100% { border-radius: 50% 30% 50% 30% / 40% 50% 50% 40%; }
    25%      { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    50%      { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    75%      { border-radius: 40% 60% 60% 40% / 70% 40% 60% 30%; }
}

/* Papillon du hero — battement d'ailes + flottement */
.hero__butterfly {
    transform-box: fill-box;
    transform-origin: center center;
    animation: butterflyFloat 8s ease-in-out infinite;
}
.hero__butterfly-wing {
    transform-box: fill-box;
}
.hero__butterfly-wing--left {
    transform-origin: right center;
    animation: butterflyFlap 0.36s ease-in-out infinite alternate;
}
.hero__butterfly-wing--right {
    transform-origin: left center;
    animation: butterflyFlap 0.36s ease-in-out infinite alternate;
}
@keyframes butterflyFlap {
    0%   { transform: scaleX(1); }
    100% { transform: scaleX(0.4); }
}
@keyframes butterflyFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25%      { transform: translate(22px, -18px) rotate(-6deg); }
    50%      { transform: translate(-12px, -32px) rotate(5deg); }
    75%      { transform: translate(14px, -14px) rotate(-3deg); }
}
@media (prefers-reduced-motion: reduce) {
    .hero__butterfly,
    .hero__butterfly-wing { animation: none; }
}
.hero__illustration {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero__badge {
    position: absolute;
    bottom: 20px; left: -20px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--paper);
    border-radius: var(--radius-md);
    padding: 16px 22px;
    box-shadow: var(--shadow-md);
    color: var(--sage-700);
}
.hero__badge svg { width: 32px; height: 32px; color: var(--coral-500); }
.hero__badge-title { font-weight: 700; font-size: 14px; color: var(--ink); }
.hero__badge-text { font-size: 12px; color: var(--ink-soft); }

.hero__scroll {
    position: absolute;
    bottom: 30px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-mute);
}
.hero__scroll-line {
    width: 1px; height: 50px;
    background: var(--sage-300);
    position: relative;
    overflow: hidden;
}
.hero__scroll-line::after {
    content: '';
    position: absolute;
    top: -25px; left: 0; right: 0;
    height: 25px;
    background: var(--sage-700);
    animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
    0% { top: -25px; } 100% { top: 50px; }
}

/* ================================================================
   PROMISE
   ================================================================ */
.promise {
    padding: 120px 0;
    background: var(--cream);
}
.promise__grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}
.promise__intro { position: sticky; top: 120px; }
.promise__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.promise__item {
    background: var(--paper);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.promise__item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.promise__num {
    display: inline-block;
    font-family: 'Fraunces', serif;
    font-size: 18px;
    color: var(--coral-500);
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
}
.promise__item h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--sage-900);
}
.promise__item p { color: var(--ink-soft); font-size: 15px; }

/* ================================================================
   SERVICES
   ================================================================ */
.services {
    padding: 120px 0;
    background: var(--cream-warm);
    position: relative;
}
.services__header {
    max-width: 720px;
    margin-bottom: 64px;
}
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.service-card {
    position: relative;
    background: var(--paper);
    border-radius: var(--radius-lg);
    padding: 40px 32px 36px;
    overflow: hidden;
    transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
    transition-delay: var(--card-delay, 0s);
    transform: translateY(0);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--accent, var(--sage-700));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--ease);
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card--sage  { --accent: var(--sage-700);  }
.service-card--coral { --accent: var(--coral-500); }
.service-card--gold  { --accent: var(--gold-500);  }

.service-card__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 28px;
}
.service-card__index {
    font-family: 'Fraunces', serif;
    font-size: 14px;
    color: var(--ink-mute);
    letter-spacing: 0.1em;
}
.service-card__icon {
    display: inline-flex;
    width: 56px; height: 56px;
    align-items: center; justify-content: center;
    border-radius: var(--radius-sm);
    background: color-mix(in srgb, var(--accent) 12%, transparent);
    color: var(--sage-700); /* icônes service en violet */
}
.service-card__icon svg { width: 32px; height: 32px; }

.service-card__title {
    font-size: 1.6rem;
    margin-bottom: 6px;
    color: var(--ink);
}
.service-card__tagline {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--accent);
    margin-bottom: 18px;
    font-size: 16px;
}
.service-card__text {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 28px;
}
.service-card__link {
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--accent);
    transition: gap 0.3s var(--ease);
}
.service-card__link svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.service-card__link:hover { gap: 14px; }
.service-card__link:hover svg { transform: translateX(2px); }

/* ================================================================
   AUDIENCE
   ================================================================ */
.audience {
    position: relative;
    padding: 120px 0;
    background: var(--sage-900);
    color: var(--cream);
    overflow: hidden;
}
.audience__bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 80% 20%, var(--sage-700) 0%, transparent 50%),
        radial-gradient(circle at 10% 90%, color-mix(in srgb, var(--coral-700) 30%, transparent) 0%, transparent 50%);
    pointer-events: none;
}
.audience .container { position: relative; }
.audience__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}
.audience__intro { max-width: 480px; }
.audience__list {
    display: grid;
    gap: 18px;
}
.audience__list li {
    position: relative;
    padding: 22px 28px 22px 64px;
    background: rgba(255, 244, 236, 0.06);
    border-left: 3px solid var(--coral-500);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: var(--cream);
    font-size: 16px;
    transition: background 0.4s, transform 0.4s var(--ease);
}
.audience__list li::before {
    content: '';
    position: absolute;
    left: 24px; top: 50%; transform: translateY(-50%);
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--coral-500);
    box-shadow: 0 0 0 5px rgba(94, 43, 168, 0.22);
}
.audience__list li:hover {
    background: rgba(255, 244, 236, 0.12);
    transform: translateX(6px);
}

/* ================================================================
   TEAM PREVIEW
   ================================================================ */
.team-preview { padding: 120px 0; background: var(--cream); }
.team-preview__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 64px;
}

.team-preview__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}
.member-card {
    text-align: center;
    transition: transform 0.5s var(--ease);
    transition-delay: var(--card-delay, 0s);
}
.member-card:hover { transform: translateY(-8px); }
.member-card__avatar {
    width: 160px; height: 160px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sage-500), var(--sage-700));
    color: var(--cream);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 48px;
    font-weight: 500;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
    overflow: hidden;
}
.member-card__avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    display: block;
}
.member-card__avatar--photo { background: var(--sage-100); }
.member-card__avatar::after {
    content: '';
    position: absolute;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--coral-500);
    top: 10%; right: 5%;
    transform: scale(0);
    transition: transform 0.5s var(--ease);
}
.member-card:hover .member-card__avatar { transform: rotate(-5deg); box-shadow: var(--shadow-lg); }
.member-card:hover .member-card__avatar::after { transform: scale(1); }
.member-card__name {
    font-size: 1.3rem;
    margin-bottom: 4px;
    color: var(--ink);
}
.member-card__role {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--sage-700);
    font-size: 15px;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials {
    padding: 120px 0;
    background: var(--cream-warm);
}
.testimonials__header { max-width: 600px; margin-bottom: 64px; }
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 28px;
}
.quote-card {
    background: var(--paper);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    margin: 0;
    box-shadow: var(--shadow-sm);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
    transition-delay: var(--card-delay, 0s);
    position: relative;
    display: flex; flex-direction: column;
}
.quote-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.quote-card__mark {
    width: 36px; height: 28px;
    color: var(--coral-300);
    margin-bottom: 20px;
}
.quote-card__text {
    margin: 0 0 24px;
    font-family: 'Fraunces', serif;
    font-size: 18px;
    line-height: 1.5;
    color: var(--ink);
    font-weight: 500;
    flex: 1;
}
.quote-card__author {
    padding-top: 20px;
    border-top: 1px solid var(--sage-100);
    display: flex; justify-content: space-between; align-items: center;
    gap: 12px;
}
.quote-card__name {
    font-weight: 600; font-size: 14px;
    color: var(--ink);
}
.quote-card__tag {
    font-size: 12px;
    color: var(--sage-700);
    background: var(--sage-100);
    padding: 4px 12px;
    border-radius: 999px;
    letter-spacing: 0.02em;
}

/* ================================================================
   BAND CTA
   ================================================================ */
.band-cta {
    padding: 80px 0;
    background: var(--cream);
}
.band-cta__inner {
    background: linear-gradient(135deg, var(--sage-700), var(--sage-900));
    color: var(--cream);
    border-radius: var(--radius-xl);
    padding: 64px 56px;
    display: grid;
    grid-template-columns: 1.6fr auto;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.band-cta__inner::before {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    background: radial-gradient(circle, var(--coral-500), transparent 60%);
    bottom: -150px; right: -100px;
    opacity: 0.3;
    pointer-events: none;
}
.band-cta__inner .eyebrow { color: var(--coral-300); }
.band-cta__inner .eyebrow::before { background: var(--coral-300); }
.band-cta__inner .section-title { color: var(--cream); margin-bottom: 12px; }
.band-cta__inner .section-title em { color: var(--coral-300); }
.band-cta__text {
    color: var(--sage-100);
    font-size: 16px;
    max-width: 480px;
}
.band-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative; z-index: 1;
}

/* ================================================================
   PAGE HERO (équipe, contact, 404)
   ================================================================ */
.page-hero {
    position: relative;
    padding: 180px 0 80px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
    overflow: hidden;
}
.page-hero__bg {
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--coral-300), transparent 70%);
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
}
.page-hero__title {
    font-size: clamp(2.4rem, 5.4vw, 4.4rem);
    margin: 16px 0 24px;
    max-width: 860px;
}
.page-hero__title em { font-style: italic; color: var(--coral-700); font-weight: 400; }
.page-hero__lead {
    font-size: 1.15rem;
    color: var(--ink-soft);
    max-width: 620px;
    line-height: 1.6;
}
.page-hero--404 { text-align: center; }
.page-hero--404 .page-hero__title { margin-left: auto; margin-right: auto; }
.page-hero--404 .page-hero__lead { margin-left: auto; margin-right: auto; }
.page-hero--404 .hero__actions { justify-content: center; }

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--ink-mute);
    margin-bottom: 24px;
    letter-spacing: 0.04em;
}
.breadcrumb a { color: var(--sage-700); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--coral-700); }

/* ================================================================
   SERVICE PAGES
   ================================================================ */
.service-hero {
    position: relative;
    padding: 170px 0 100px;
    overflow: hidden;
}
.service-hero__bg {
    position: absolute;
    top: 0; right: -100px;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-bg, var(--sage-100)), transparent 70%);
    filter: blur(80px);
    opacity: 0.5;
    pointer-events: none;
}
.service-hero--sage  { --accent-page: var(--sage-700);  --accent-bg: var(--sage-100); background: var(--cream); }
.service-hero--coral { --accent-page: var(--coral-700); --accent-bg: var(--coral-100); background: var(--cream); }
.service-hero--gold  { --accent-page: var(--gold-500);  --accent-bg: var(--sage-100); background: var(--cream); }

.service-hero__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 24px;
}
.service-hero__title {
    font-size: clamp(2.4rem, 5.4vw, 4.4rem);
    margin-bottom: 16px;
    color: var(--ink);
}
.service-hero__tagline {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    color: var(--accent-page);
    margin-bottom: 24px;
}
.service-hero__intro {
    font-size: 1.1rem;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 540px;
}
.service-hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }

.service-hero__visual { display: flex; justify-content: center; }
.service-hero__icon-frame {
    width: 280px; height: 280px;
    border-radius: 50% 30% 50% 30% / 40% 50% 50% 40%;
    background: var(--paper);
    box-shadow: var(--shadow-lg);
    display: flex; align-items: center; justify-content: center;
    color: var(--sage-700); /* icône hero des pages services en violet */
    animation: morph 14s ease-in-out infinite;
}
.service-hero__icon-frame svg { width: 120px; height: 120px; }

.service-body { padding: 100px 0; background: var(--cream-warm); }
.service-body__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}
.service-body__col {
    background: var(--paper);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow-sm);
}
.service-body__col--accent {
    background: linear-gradient(160deg, var(--sage-900), var(--sage-700));
    color: var(--cream);
}
.service-body__col--accent .eyebrow { color: var(--coral-300); }
.service-body__col--accent .eyebrow::before { background: var(--coral-300); }
.service-body__col--accent .section-title { color: var(--cream); }
.service-body__col--accent .section-title em { color: var(--coral-300); }

.service-list {
    display: grid;
    gap: 16px;
    margin-top: 12px;
}
.service-list li {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink-soft);
}
.service-list__check {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--sage-100);
    color: var(--sage-700);
    display: flex; align-items: center; justify-content: center;
    margin-top: 2px;
}
.service-list__check svg { width: 16px; height: 16px; }

.service-list--numbered li { color: var(--cream); }
.service-list__num {
    flex-shrink: 0;
    width: 32px;
    font-family: 'Fraunces', serif;
    font-size: 18px;
    color: var(--coral-300);
    font-weight: 500;
    line-height: 1.5;
}

/* OTHER SERVICES */
.other-services {
    padding: 100px 0 120px;
    background: var(--cream);
}
.other-services__header { margin-bottom: 56px; max-width: 540px; }
.other-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.other-services__card {
    position: relative;
    display: block;
    background: var(--paper);
    border-radius: var(--radius-md);
    padding: 28px 28px 32px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
    overflow: hidden;
}
.other-services__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent, var(--sage-700)) 8%, transparent), transparent);
    opacity: 0; transition: opacity 0.5s;
}
.other-services__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.other-services__card:hover::before { opacity: 1; }
.other-services__card--sage  { --accent: var(--sage-700); }
.other-services__card--coral { --accent: var(--coral-500); }
.other-services__card--gold  { --accent: var(--gold-500); }

.other-services__icon {
    display: inline-flex;
    width: 48px; height: 48px;
    align-items: center; justify-content: center;
    border-radius: var(--radius-sm);
    background: color-mix(in srgb, var(--accent) 12%, transparent);
    color: var(--sage-700); /* icônes en violet */
    margin-bottom: 20px;
    position: relative; z-index: 1;
}
.other-services__icon svg { width: 26px; height: 26px; }
.other-services__card h3 {
    font-size: 1.2rem; margin-bottom: 6px;
    position: relative; z-index: 1;
}
.other-services__card p {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--ink-soft);
    font-size: 14px;
    position: relative; z-index: 1;
}
.other-services__arrow {
    position: absolute;
    top: 28px; right: 28px;
    color: var(--accent);
    transition: transform 0.4s var(--ease);
}
.other-services__arrow svg { width: 20px; height: 20px; }
.other-services__card:hover .other-services__arrow { transform: translate(4px, -4px); }

/* ================================================================
   TEAM FULL
   ================================================================ */
.team-full { padding: 100px 0 120px; background: var(--cream); }
.team-full__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 36px;
}
.team-full__card {
    display: flex;
    gap: 28px;
    padding: 32px;
    background: var(--paper);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
    transition-delay: var(--card-delay, 0s);
}
.team-full__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-full__avatar {
    position: relative;
    flex-shrink: 0;
    width: 110px; height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sage-500), var(--sage-700));
    color: var(--cream);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 36px;
}
.team-full__avatar img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    display: block;
}
.team-full__avatar--photo { background: var(--sage-100); }
.team-full__avatar-deco {
    position: absolute;
    width: 24px; height: 24px;
    background: var(--coral-500);
    border-radius: 50%;
    top: -4px; right: -4px;
    border: 3px solid var(--paper);
}
.team-full__name { font-size: 1.4rem; margin-bottom: 4px; }
.team-full__role {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--sage-700);
    margin-bottom: 12px;
}
.team-full__bio { font-size: 15px; color: var(--ink-soft); line-height: 1.6; }

/* ================================================================
   CONTACT
   ================================================================ */
.contact { padding: 80px 0 120px; background: var(--cream); }
.contact__grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 56px;
    align-items: start;
}
.contact__info { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 120px; }
.contact__info-card {
    background: var(--paper);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
}
.contact__info-card--accent {
    background: linear-gradient(140deg, var(--sage-700), var(--sage-900));
    color: var(--cream);
}
.contact__info-card--accent .eyebrow { color: var(--coral-300); }
.contact__info-card--accent .eyebrow::before { background: var(--coral-300); }
.contact__info-card--accent h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--cream);
}
.contact__info-card--accent p { color: var(--sage-100); font-size: 15px; line-height: 1.6; }

.contact__info-list { display: flex; flex-direction: column; gap: 22px; }
.contact__info-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact__info-icon {
    flex-shrink: 0;
    width: 42px; height: 42px;
    border-radius: var(--radius-sm);
    background: var(--sage-100);
    color: var(--sage-700);
    display: flex; align-items: center; justify-content: center;
}
.contact__info-icon svg { width: 22px; height: 22px; }
.contact__info-label {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 4px;
    font-weight: 600;
}
.contact__info-list a,
.contact__info-list p {
    color: var(--ink);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}
.contact__info-list a:hover { color: var(--coral-700); }

.contact__form {
    background: var(--paper);
    border-radius: var(--radius-lg);
    padding: 48px 44px;
    box-shadow: var(--shadow-md);
}
.contact__form-header { margin-bottom: 32px; }
.contact__form-header .section-title { font-size: 2rem; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.form-field {
    display: flex; flex-direction: column; gap: 8px;
    margin-bottom: 20px;
}
.form-field__label {
    font-size: 13px;
    letter-spacing: 0.06em;
    color: var(--ink-soft);
    font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
    font-family: inherit;
    font-size: 16px;
    padding: 14px 16px;
    border: 1.5px solid var(--sage-100);
    border-radius: var(--radius-sm);
    background: var(--cream);
    color: var(--ink);
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
    width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--coral-500);
    background: var(--paper);
    box-shadow: 0 0 0 4px rgba(94, 43, 168, 0.18);
}
.form-field textarea { resize: vertical; min-height: 120px; }

.form-check {
    display: flex; gap: 12px; align-items: flex-start;
    margin: 8px 0 24px;
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.5;
}
.form-check input { margin-top: 4px; accent-color: var(--coral-500); }

.contact__form-note {
    margin-top: 16px;
    text-align: center;
    font-size: 13px;
    color: var(--ink-mute);
    font-style: italic;
}

/* ================================================================
   MAP SECTION
   ================================================================ */
.map-section {
    padding: 80px 0 120px;
    background: var(--cream-warm);
}
.map-section__grid {
    display: grid;
    grid-template-columns: 0.9fr 2fr;
    gap: 56px;
    align-items: center;
}
.map-section__address {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--sage-900);
    margin: 8px 0 24px;
}
.map-section__access {
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 440px;
}
.map-section__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.map-section__embed {
    position: relative;
    aspect-ratio: 5 / 4;
    min-height: 520px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--sage-100);
}
.map-section__embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: saturate(0.92) contrast(1.02);
}

/* Pin custom centré sur le marker OSM */
.map-section__pin {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -100%);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}
.map-section__pin-pulse {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px; height: 26px;
    border-radius: 50%;
    background: rgba(94, 43, 168, 0.45);
    animation: pinPulse 2s ease-out infinite;
}
.map-section__pin-pulse::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(94, 43, 168, 0.6);
    animation: pinPulse 2s ease-out infinite;
    animation-delay: 1s;
}
@keyframes pinPulse {
    0%   { transform: translateX(-50%) scale(1);    opacity: 0.7; }
    100% { transform: translateX(-50%) scale(3.4);  opacity: 0; }
}
.map-section__pin-dot {
    position: relative;
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 4px 10px rgba(31, 69, 56, 0.35));
    animation: pinBob 2.4s ease-in-out infinite;
}
.map-section__pin-dot svg { width: 100%; height: 100%; }
@keyframes pinBob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}
.map-section__pin-label {
    position: absolute;
    bottom: calc(100% + 8px);
    background: var(--ink);
    color: var(--cream);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(31, 69, 56, 0.25);
}
.map-section__pin-label::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 8px; height: 8px;
    background: var(--ink);
}

@media (max-width: 1100px) {
    .map-section__grid { grid-template-columns: 1fr; gap: 40px; }
    .map-section__embed { aspect-ratio: 16 / 10; min-height: 420px; }
}
@media (max-width: 720px) {
    .map-section { padding: 60px 0 80px; }
    .map-section__embed { min-height: 340px; }
    .map-section__pin-dot { width: 36px; height: 36px; }
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
    background: var(--ink);
    color: var(--cream);
    padding: 100px 0 30px;
    position: relative;
}
.site-footer .container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.site-footer__top {
    max-width: var(--container);
    margin: 0 auto 80px;
    padding: 0 24px;
}
.site-footer__cta {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
.site-footer__cta .eyebrow { color: var(--coral-300); justify-content: center; display: inline-flex; }
.site-footer__cta .eyebrow::before { background: var(--coral-300); }
.site-footer__cta-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.2rem, 4.6vw, 3.6rem);
    color: var(--cream);
    margin-bottom: 20px;
}
.site-footer__cta-title em { font-style: italic; color: var(--coral-300); font-weight: 400; }
.site-footer__cta-text {
    color: var(--sage-100);
    font-size: 1.05rem;
    margin-bottom: 36px;
    opacity: 0.85;
}
.site-footer__cta-actions {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

.site-footer__main {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px 60px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    border-bottom: 1px solid rgba(255, 244, 236, 0.1);
}
.site-footer__col-title {
    font-family: 'Fraunces', serif;
    font-size: 16px;
    color: var(--cream);
    margin-bottom: 18px;
    font-weight: 500;
}
.site-footer__list { display: flex; flex-direction: column; gap: 10px; }
.site-footer__list li,
.site-footer__list a {
    color: var(--sage-100);
    opacity: 0.8;
    font-size: 14px;
    transition: opacity 0.3s, color 0.3s;
}
.site-footer__list a:hover { opacity: 1; color: var(--coral-300); }
.site-footer__pitch {
    color: var(--sage-100);
    opacity: 0.7;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 16px;
    max-width: 340px;
}
.site-footer__bottom {
    max-width: var(--container);
    margin: 0 auto;
    padding: 30px 24px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--sage-100);
    opacity: 0.6;
    font-size: 13px;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
    .hero__inner { grid-template-columns: 1fr; gap: 60px; }
    .hero__visual { max-width: 400px; }
    .promise__grid { grid-template-columns: 1fr; gap: 48px; }
    .promise__intro { position: static; }
    .audience__grid { grid-template-columns: 1fr; gap: 48px; }
    .band-cta__inner { grid-template-columns: 1fr; padding: 48px 40px; }
    .service-hero__inner { grid-template-columns: 1fr; gap: 48px; }
    .service-body__grid { grid-template-columns: 1fr; gap: 28px; }
    .contact__grid { grid-template-columns: 1fr; }
    .contact__info { position: static; }
    .site-footer__main { grid-template-columns: repeat(2, 1fr); }
    .nav-overlay__inner { grid-template-columns: 1fr; gap: 40px; }
    .nav-overlay__aside { border-left: 0; padding-left: 0; border-top: 1px solid rgba(255, 244, 236, 0.15); padding-top: 32px; }
}
/* ════════════════════════════════════════════════════════════════
   MOBILE (≤ 720px) — refonte responsive smartphone
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 720px) {
    /* Prévention scroll horizontal + base */
    html, body { overflow-x: hidden; }
    body { font-size: 16px; }
    .container { padding: 0 20px; }

    /* ─── Header ─── */
    .site-header { padding: 14px 0; }
    .brand__logo { height: 56px; }
    .site-header.is-scrolled .brand__logo,
    body.nav-open .site-header .brand__logo { height: 46px; }
    .site-header__phone span { display: none; }
    .site-header__phone svg { width: 22px; height: 22px; }
    .menu-toggle__label { display: none; }
    .menu-toggle { padding: 10px; gap: 0; }
    .site-header__actions { gap: 12px; }

    /* ─── Hero ─── */
    .hero { padding: 120px 0 50px; }
    .hero__inner { gap: 36px; }
    .hero__title { font-size: clamp(2.1rem, 9vw, 2.8rem); }
    .hero__lead { font-size: 1rem; line-height: 1.55; margin-bottom: 28px; }
    .hero__actions { gap: 12px; margin-bottom: 40px; }
    .hero__actions .btn--coral { flex: 1; justify-content: center; }
    .hero__stats { grid-template-columns: 1fr 1fr; gap: 20px; padding-top: 28px; }
    .hero__stat-num { font-size: 1.7rem; }
    .hero__stat-label { font-size: 12px; }
    .hero__visual { max-width: 320px; }
    .hero__badge { left: 50%; transform: translateX(-50%); bottom: -20px; padding: 12px 18px; }
    .hero__badge-title { font-size: 13px; }
    .hero__badge-text { font-size: 11px; }
    .hero__scroll { display: none; }
    .hero__blob--1, .hero__blob--2 { width: 280px; height: 280px; opacity: 0.4; }

    /* ─── Titres de section plus contenus ─── */
    .section-title { font-size: clamp(1.7rem, 6.5vw, 2.2rem); }
    .eyebrow { font-size: 11px; letter-spacing: 0.16em; }

    /* ─── Sections — paddings allégés ─── */
    .promise, .services, .audience, .team-preview, .testimonials, .band-cta,
    .service-body, .other-services, .team-full, .contact, .map-section { padding: 60px 0; }

    /* ─── Promise ─── */
    .promise__grid { gap: 36px; }
    .promise__items { grid-template-columns: 1fr; gap: 20px; }
    .promise__item { padding: 28px 24px; }

    /* ─── Service cards ─── */
    .services__header { margin-bottom: 40px; }
    .service-card { padding: 32px 24px 28px; }

    /* ─── Audience ─── */
    .audience__grid { gap: 36px; }
    .audience__list li {
        padding: 18px 20px 18px 54px;
        font-size: 15px;
    }
    .audience__list li::before { left: 20px; width: 14px; height: 14px; }

    /* ─── Team ─── */
    .team-preview__header { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 40px; }
    .member-card__avatar { width: 130px; height: 130px; font-size: 38px; }
    .team-full__card { flex-direction: column; text-align: center; padding: 28px 22px; gap: 18px; }
    .team-full__avatar { margin: 0 auto; width: 110px; height: 110px; }

    /* ─── Testimonials ─── */
    .quote-card { padding: 28px 24px; }
    .quote-card__text { font-size: 16px; line-height: 1.45; }

    /* ─── Band CTA ─── */
    .band-cta__inner { padding: 36px 24px; gap: 28px; }
    .band-cta__actions { width: 100%; }
    .band-cta__actions .btn { width: 100%; justify-content: center; }

    /* ─── Page hero ─── */
    .page-hero { padding: 130px 0 50px; }
    .page-hero__title { font-size: clamp(1.9rem, 7.5vw, 2.5rem); }
    .page-hero__lead { font-size: 1rem; }

    /* ─── Service pages ─── */
    .service-hero { padding: 130px 0 60px; }
    .service-hero__title { font-size: clamp(1.9rem, 7.5vw, 2.5rem); }
    .service-hero__tagline { font-size: 1.1rem; }
    .service-hero__intro { font-size: 1rem; }
    .service-hero__actions { gap: 12px; }
    .service-hero__icon-frame { width: 180px; height: 180px; }
    .service-hero__icon-frame svg { width: 80px; height: 80px; }
    .service-body__grid { gap: 20px; }
    .service-body__col { padding: 32px 24px; }
    .service-list li { font-size: 15px; }

    /* ─── Other services ─── */
    .other-services__card { padding: 24px 22px 26px; }

    /* ─── Contact form ─── */
    .contact__form { padding: 28px 20px; }
    .contact__form-header { margin-bottom: 24px; }
    .contact__form-header .section-title { font-size: 1.7rem; }
    .form-row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
    .form-field input,
    .form-field select,
    .form-field textarea { font-size: 16px; padding: 12px 14px; }  /* 16px = no iOS zoom au focus */
    .contact__info-card { padding: 28px 24px; }
    .contact__info-card--accent h3 { font-size: 1.3rem; }

    /* ─── Map ─── */
    .map-section__address { font-size: 1.25rem; }
    .map-section__access { font-size: 14px; margin-bottom: 24px; }
    .map-section__embed { aspect-ratio: 4 / 3; min-height: 320px; }
    .map-section__pin-dot { width: 36px; height: 36px; }
    .map-section__pin-label { font-size: 11px; padding: 5px 12px; }

    /* ─── Buttons ─── */
    .btn { font-size: 14px; padding: 14px 22px; }

    /* ─── Footer ─── */
    .site-footer { padding: 60px 0 24px; }
    .site-footer__top { margin-bottom: 50px; padding: 0 20px; }
    .site-footer__cta-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
    .site-footer__main { grid-template-columns: 1fr; gap: 36px; padding: 0 20px 40px; }
    .site-footer .brand__logo { height: 80px; }
    .site-footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; padding: 24px 20px 0; }

    /* ─── 404 ─── */
    .page-hero--404 { padding: 130px 0 50px; }
}

/* ════════════════════════════════════════════════════════════════
   PETITS SMARTPHONES (≤ 480px) — iPhone SE, etc.
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .container { padding: 0 16px; }

    /* Hero plus compact */
    .hero__title { font-size: clamp(1.85rem, 8.5vw, 2.4rem); }
    .hero__lead { font-size: 0.96rem; }
    .hero__stats { grid-template-columns: 1fr; gap: 18px; padding-top: 24px; }
    .hero__stat { display: flex; align-items: baseline; gap: 14px; }
    .hero__stat-num { font-size: 1.6rem; margin-bottom: 0; }
    .hero__stat-label { font-size: 13px; }
    .hero__visual { max-width: 260px; }

    /* Header */
    .brand__logo { height: 48px; }
    .site-header.is-scrolled .brand__logo,
    body.nav-open .site-header .brand__logo { height: 42px; }
    .site-header__inner { padding: 0 16px; }

    /* Sections plus serrées */
    .promise, .services, .audience, .team-preview, .testimonials, .band-cta,
    .service-body, .other-services, .team-full, .contact, .map-section { padding: 48px 0; }

    /* Service-hero icon-frame encore plus petit */
    .service-hero__icon-frame { width: 140px; height: 140px; }
    .service-hero__icon-frame svg { width: 64px; height: 64px; }

    /* Member avatars */
    .member-card__avatar { width: 110px; height: 110px; font-size: 32px; }

    /* Quote cards */
    .quote-card__text { font-size: 15px; }
    .quote-card__author { flex-direction: column; align-items: flex-start; gap: 8px; }

    /* Band CTA encore plus compact */
    .band-cta__inner { padding: 28px 20px; border-radius: 24px; }

    /* Service-body cards */
    .service-body__col { padding: 28px 20px; }

    /* Other services 1 col */
    .other-services__grid { grid-template-columns: 1fr; }

    /* Footer logo plus petit */
    .site-footer .brand__logo { height: 66px; }
    .site-footer__cta-title { font-size: clamp(1.6rem, 7vw, 2.1rem); }

    /* Map */
    .map-section__embed { min-height: 280px; aspect-ratio: 4 / 3; }
    .map-section__address { font-size: 1.1rem; }

    /* Btn block sur très petit écran si dans un container étroit */
    .hero__actions { flex-direction: column; align-items: stretch; }
    .hero__actions .btn { width: 100%; justify-content: center; }
    .service-hero__actions { flex-direction: column; align-items: stretch; }
    .service-hero__actions .btn { width: 100%; justify-content: center; }

    /* Nav overlay : phone CTA bigger touch target */
    .nav-overlay__foot-phone { width: 100%; justify-content: center; }
}

/* -------- prefers-reduced-motion -------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}
