/* =========================================
   Bulles & Pattes - Landing page
   Design fidèle à la maquette fournie
   ========================================= */

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

html {
    /* scroll-behavior géré par le JS pour éviter les conflits avec le snap.
     * Pas d’overflow-x ici : combiné avec body, ça créait deux barres dans certains moteurs.
     * Fond proche du reste du site pour le tirage au-delà du bas (Chrome iOS). */
    background-color: var(--color-alabaster);
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
    color: inherit;
}

ul {
    list-style: none;
}

:root {
    /* Texte */
    --color-text: #0a0a0a;

    /* Charte graphique */
    --color-violet: #9E83B8;       /* African Violet - accents forts */
    --color-lavender: #CCBBDB;     /* Thistle - hovers, surlignages */
    --color-alabaster: #EBE5D9;    /* Alabaster - fonds clairs */
    --color-alabaster-deep: #ddd5c4;
    --color-ashgray: #A2ABA1;      /* Ash gray - neutre */
    --color-reseda: #758976;       /* Reseda green - accent secondaire */

    /* Dégradés gris (page d'accueil) */
    --color-bg-start: #ededed;
    --color-bg-mid: #d6d6d6;
    --color-bg-end: #b3b3b3;

    /* Compatibilité ancienne nomenclature */
    --color-cream: var(--color-alabaster);
    --color-cream-hover: var(--color-lavender);

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius-pill: 999px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Même famille que #decouverte : évite le bloc gris uni derrière la barre d’URL (Chrome iOS). */
    background-color: var(--color-alabaster);
    background-image: linear-gradient(
        180deg,
        var(--color-alabaster) 0%,
        var(--color-alabaster-deep) 40%,
        var(--color-alabaster) 100%
    );
    overflow-x: hidden;
    overflow-x: clip;
}

/* ---------- Page d'accueil (fixée pour effet de superposition) ---------- */
.page {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    height: 100vh;
    height: 100dvh;
    width: 100%;
    max-height: 100dvh;
    background: linear-gradient(135deg,
            #ededed 0%,
            #d4d4d4 35%,
            #b3b3b3 70%,
            #8a8a8a 100%);
    /* visible des deux axes : hidden+visible créait overflow-y:auto (2e scrollbar) dans certains moteurs */
    overflow: visible;
    padding: 14px clamp(24px, 5vw, 64px) 32px;
    display: flex;
    flex-direction: column;
}

/* Spacer pour réserver la hauteur d’accueil dans le flux (puisque .page est fixed) */
body::before {
    content: "";
    display: block;
    height: 100vh;
    width: 100%;
}

@media (max-width: 980px) {
    body::before {
        height: 100vh;
        height: 100dvh;
    }
}

/* ---------- Animations séquentielles d'apparition ---------- */
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tous les éléments animés démarrent invisibles */
.hero-image,
.logo,
.nav-list > li,
.hero-title,
.hero-quote,
.btn-discover,
.hero-address,
.contact-rail .contact-item {
    opacity: 0;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 1. Le chien apparaît en premier */
.hero-image {
    animation: fadeIn 1s 0.1s forwards;
}

/* 2. Logo */
.logo {
    animation: fadeInDown 0.7s 1.1s forwards;
}

/* 3. Liens de navigation un par un */
.nav-list > li:nth-child(1) { animation: fadeInDown 0.6s 1.35s forwards; }
.nav-list > li:nth-child(2) { animation: fadeInDown 0.6s 1.50s forwards; }
.nav-list > li:nth-child(3) { animation: fadeInDown 0.6s 1.65s forwards; }
.nav-list > li:nth-child(4) { animation: fadeInDown 0.6s 1.80s forwards; }
.nav-list > li:nth-child(5) { animation: fadeInDown 0.6s 1.95s forwards; }
.nav-list > li:nth-child(6) { animation: fadeInDown 0.6s 2.10s forwards; }
.nav-list > li:nth-child(7) { animation: fadeInDown 0.6s 2.25s forwards; }

/* 4. Titre */
.hero-title {
    animation: fadeInUp 0.8s 2.2s forwards;
}

/* 5. Citation */
.hero-quote {
    animation: fadeInUp 0.8s 2.6s forwards;
}

/* 6. Bouton Découvrir */
.btn-discover {
    animation: fadeInUp 0.8s 3.0s forwards;
}

/* 7. Adresse — sous le bouton */
.hero-address {
    animation: fadeInUp 0.8s 3.45s forwards;
}

/* 8. Icônes de contact (depuis la droite, une par une) */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-rail .contact-item:nth-child(1) { animation: fadeInLeft 0.6s 3.7s forwards; }
.contact-rail .contact-item:nth-child(2) { animation: fadeInLeft 0.6s 3.85s forwards; }
.contact-rail .contact-item:nth-child(3) { animation: fadeInLeft 0.6s 4.00s forwards; }
.contact-rail .contact-item:nth-child(4) { animation: fadeInLeft 0.6s 4.15s forwards; }

/* ---------- Header ---------- */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    z-index: 10;
}

.logo {
    display: inline-flex;
    align-items: center;
    transition: transform var(--transition);
}

.logo:hover {
    transform: scale(1.04);
}

.logo img {
    height: clamp(70px, 8vw, 105px);
    width: auto;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3.2vw, 48px);
}

.nav-link {
    font-size: clamp(15px, 1.15vw, 18px);
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    padding: 6px 2px;
    transition: opacity var(--transition);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 0;
    background-color: var(--color-text);
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Bouton menu mobile (caché par défaut) */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    z-index: 20;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: var(--color-text);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    padding-top: clamp(20px, 4vw, 40px);
}

.hero-content {
    position: relative;
    padding-right: 24px;
}

.hero-title {
    position: relative;
    z-index: 1;
    font-family: var(--font-sans);
    font-weight: 900;
    font-size: clamp(48px, 8vw, 128px);
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--color-text);
    white-space: nowrap;
    margin-bottom: clamp(20px, 2.5vw, 32px);
}

.hero-quote {
    position: relative;
    z-index: 3;
    font-family: var(--font-sans);
    font-style: italic;
    font-weight: 200;
    font-size: clamp(26px, 2.8vw, 42px);
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--color-text);
    margin-bottom: 0;
    max-width: 640px;
}

.btn-discover {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: clamp(10px, 2.2vw, 20px);
    background-color: var(--color-cream);
    color: var(--color-text);
    padding: clamp(14px, 1.4vw, 20px) clamp(28px, 2.5vw, 38px);
    border-radius: var(--radius-pill);
    font-size: clamp(18px, 1.5vw, 24px);
    font-weight: 500;
    min-width: clamp(220px, 22vw, 320px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition);
}

.btn-discover:hover {
    background-color: var(--color-cream-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.btn-discover:active {
    transform: translateY(0);
}

.btn-arrow {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    transition: transform var(--transition);
}

.btn-discover:hover .btn-arrow {
    transform: translateX(6px);
}

/* ---------- Image du chien ---------- */
.hero-image {
    position: absolute;
    left: 22%;
    right: -2%;
    top: 50%;
    transform: translate(22px, -50%);
    height: 118%;
    z-index: 2;
    pointer-events: none;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.12));
    user-select: none;
    -webkit-user-drag: none;
}

/* ---------- Adresse (lien Google Maps), sous le bouton Découvrir ---------- */
.hero-address {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 0;
    margin-bottom: 0;
    font-size: clamp(13px, 1vw, 16px);
    font-weight: 500;
    color: var(--color-text);
    z-index: 5;
    cursor: pointer;
    transition: transform var(--transition), opacity var(--transition);
}

.hero-address span {
    position: relative;
}

.hero-address span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: width var(--transition);
}

.hero-address:hover {
    transform: translateX(2px);
}

.hero-address:hover span::after {
    width: 100%;
}

.hero-address:hover .pin-icon {
    transform: translateY(-2px);
}

.pin-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-text);
    transition: transform var(--transition);
}

/* ---------- Hero bureau (≥981px) : adresse bas d’écran, bouton centré, titre remonté, air citation→bouton ---------- */
@media (min-width: 981px) {
    .hero {
        padding-top: clamp(4px, 1vw, 14px);
    }

    .hero-title {
        margin-top: clamp(-4px, -0.4vw, 0px);
    }

    .hero-quote {
        margin-bottom: clamp(22px, 3.5vw, 44px);
    }

    .hero-content {
        position: static;
    }

    .btn-discover {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0;
    }

    .hero-address {
        position: absolute;
        bottom: 0;
        left: 0;
        margin: 0;
    }
}

/* ---------- Barre de contacts (desktop : colonne fixe à droite ; mobile : voir @media 980) ---------- */
.contact-rail {
    position: fixed;
    right: clamp(8px, 2vw, 28px);
    top: 50%;
    left: auto;
    bottom: auto;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 6;
}

.contact-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--color-text);
    background-color: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.contact-item svg {
    width: 21px;
    height: 21px;
    transition: transform var(--transition);
}

.contact-item:hover {
    background-color: var(--color-cream-hover);
    transform: translateX(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
}

.contact-item:hover svg {
    transform: scale(1.05);
}

.contact-item:active {
    transform: translateX(-1px) scale(0.97);
}

/* Tooltip (bandeau au survol) */
.contact-item::before {
    content: attr(data-tooltip);
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    background-color: var(--color-text);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease-out, transform 0.25s ease-out;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
    letter-spacing: 0.01em;
}

.contact-item::after {
    content: "";
    position: absolute;
    right: calc(100% + 6px);
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 6px;
    border-color: transparent transparent transparent var(--color-text);
    transform: translateY(-50%) translateX(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease-out, transform 0.25s ease-out;
}

.contact-item:hover::before,
.contact-item:focus-visible::before,
.contact-item:hover::after,
.contact-item:focus-visible::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* ---------- Section suivante (glisse par-dessus la page d'accueil) ---------- */
.page-next {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(180deg, var(--color-alabaster) 0%, var(--color-alabaster-deep) 100%);
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.15);
    color: var(--color-text);
    overflow: hidden;
}

.page-next__container {
    padding: clamp(50px, 8vh, 90px) clamp(24px, 5vw, 64px);
    position: relative;
}

.page-next__container {
    max-width: 1200px;
    margin: 0 auto;
}


/* ===== Animations déclenchées au scroll (data-reveal) ===== */
[data-reveal] {
    opacity: 0;
    will-change: opacity, transform;
}

[data-reveal].is-revealed {
    animation-duration: 0.85s;
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation-fill-mode: forwards;
}

[data-reveal="up"].is-revealed    { animation-name: revealUp; }
[data-reveal="left"].is-revealed  { animation-name: revealLeft; }
[data-reveal="right"].is-revealed { animation-name: revealRight; }
[data-reveal="fade"].is-revealed  { animation-name: revealFade; }
[data-reveal="scale"].is-revealed { animation-name: revealScale; }
[data-reveal="photo"].is-revealed { animation-name: revealPhoto; }

@keyframes revealUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes revealLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes revealRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes revealFade {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes revealScale {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
}
/* Spéciale pour la photo polaroid : préserve la rotation de repos */
@keyframes revealPhoto {
    from { opacity: 0; transform: rotate(-4deg) translateY(40px); }
    to   { opacity: 1; transform: rotate(-1deg) translateY(0); }
}

/* Respect des préférences accessibilité */
@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    .actualite-band__heading .actualite-band__heading-highlight::after {
        transition: none;
        transform: scaleX(1);
    }
}

/* ===== Section Découverte ===== */

.discover-title {
    position: relative;
    font-size: clamp(54px, 9vw, 132px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: clamp(20px, 3vw, 36px);
}

/* Soulignement décoratif partiel sous "Déc" */
.discover-title__highlight {
    position: relative;
    display: inline-block;
}

.discover-title__highlight::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.08em;
    height: 4px;
    background-color: var(--color-text);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.9s 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.discover-title.is-revealed .discover-title__highlight::after {
    transform: scaleX(1);
}

.discover-subtitle {
    font-size: clamp(22px, 2.4vw, 36px);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.015em;
    color: rgba(10, 10, 10, 0.85);
    margin-bottom: clamp(40px, 5vh, 60px);
    max-width: 24ch;
}

/* ----- Actualité : visible uniquement si #actualite-feed contient au moins une carte (.actualite-item) -----
   Admin : publier dans #actualite-feed des <article class="actualite-item">…</article>. */
.actualite-band:not(:has(.actualite-item)) {
    display: none !important;
}

.actualite-band {
    margin: 0 0 clamp(28px, 4vw, 48px);
}

.actualite-band__heading {
    position: relative;
    font-size: clamp(26px, 3.9vw, 42px);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.03em;
    margin: 0 0 clamp(16px, 2.2vw, 22px);
    color: var(--color-text);
}

.actualite-band__heading-highlight {
    position: relative;
    display: inline-block;
    color: transparent;
    background: linear-gradient(
        118deg,
        var(--color-violet) 0%,
        #8368a8 55%,
        rgba(117, 137, 118, 0.95) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
}

.actualite-band__heading-highlight::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.06em;
    height: 3px;
    background: linear-gradient(90deg, var(--color-violet), rgba(117, 137, 118, 0.75));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.75s 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.actualite-band__heading.is-revealed .actualite-band__heading-highlight::after {
    transform: scaleX(1);
}

.actualite-band__feed {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 1.8vw, 15px);
    max-width: 42rem;
}

.actualite-item {
    margin: 0;
    padding: clamp(14px, 2vw, 18px) clamp(16px, 2.2vw, 20px);
    border-radius: 14px;
    border: 1px solid rgba(158, 131, 184, 0.22);
    background:
        radial-gradient(circle at 92% -8%, rgba(158, 131, 184, 0.1), transparent 46%),
        rgba(255, 255, 255, 0.72);
    box-shadow:
        0 4px 18px rgba(40, 32, 55, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.actualite-item__fig {
    margin: 0 0 12px;
    border-radius: 12px;
    overflow: hidden;
    max-height: 220px;
}

.actualite-item__img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: cover;
}

.actualite-item__time {
    display: block;
    margin-bottom: 6px;
    font-size: clamp(11px, 2.9vw, 12.5px);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(45, 32, 55, 0.48);
    font-variant-numeric: tabular-nums;
}

.actualite-item__title {
    margin: 0 0 6px;
    font-size: clamp(15px, 1.55vw, 17px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.35;
    color: var(--color-text);
}

.actualite-item__lead {
    margin: 0;
    font-size: clamp(13.5px, 1.25vw, 14.5px);
    line-height: 1.55;
    font-weight: 500;
    color: rgba(10, 10, 10, 0.72);
}

/* Grille image + texte d'intro */
.discover-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) 1fr;
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
    margin-bottom: clamp(40px, 6vh, 72px);
}

/* Photo style "polaroid" avec étiquette d'adresse */
.discover-photo {
    position: relative;
    transform: rotate(-1deg);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.discover-photo:hover {
    transform: rotate(0deg) translateY(-4px);
}

.discover-photo__frame {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #d4d4d4, #a8a8a8);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18),
                0 4px 12px rgba(0, 0, 0, 0.10);
    isolation: isolate;
}

.discover-salon-rotator__img {
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    display: block;
    opacity: 0;
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.75s ease-in-out;
}

.discover-salon-rotator__img.is-active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

.discover-photo__frame.is-placeholder .discover-salon-rotator__img {
    opacity: 0;
    visibility: hidden;
}

.discover-salon-rotator__live {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.discover-photo__placeholder {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: none;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.discover-photo__frame.is-placeholder .discover-photo__placeholder {
    display: flex;
}

@media (prefers-reduced-motion: reduce) {
    .discover-salon-rotator__img {
        transition-duration: 0.01ms;
    }
}

/* Étiquette d'adresse en overlay bas */
.discover-photo__tag {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    background-color: rgba(20, 20, 20, 0.72);
    color: #fff;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.discover-photo__tag svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Texte d'introduction à droite de la photo */
.discover-intro {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-top: 12px;
}

.discover-intro p {
    font-size: clamp(16px, 1.2vw, 19px);
    line-height: 1.6;
    color: rgba(10, 10, 10, 0.80);
}

.discover-intro strong {
    font-weight: 600;
    color: var(--color-text);
}

.discover-intro em {
    font-style: italic;
    font-weight: 500;
}

/* Tags des animaux acceptés */
.discover-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.discover-tags li {
    padding: 7px 14px;
    background-color: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(10, 10, 10, 0.10);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background-color var(--transition), transform var(--transition);
}

.discover-tags li:hover {
    background-color: var(--color-cream-hover);
    transform: translateY(-2px);
}

/* Histoire de Chloé en bas */
.discover-story {
    position: relative;
    max-width: 880px;
    padding: clamp(24px, 3vw, 36px) clamp(24px, 3.5vw, 40px);
    background-color: rgba(255, 255, 255, 0.45);
    border-left: 3px solid var(--color-text);
    border-radius: 6px 18px 18px 6px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.discover-story__label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(10, 10, 10, 0.55);
    margin-bottom: 14px;
}

.discover-story__lead {
    font-size: clamp(16px, 1.15vw, 18px);
    line-height: 1.65;
    color: rgba(10, 10, 10, 0.84);
    margin-bottom: 18px;
}

.discover-story__bullets {
    list-style: none;
    margin: 0 0 4px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.discover-story__bullets li {
    position: relative;
    padding-left: 1.2rem;
    font-size: clamp(15px, 1.08vw, 17px);
    line-height: 1.58;
    color: rgba(10, 10, 10, 0.78);
}

.discover-story__bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-violet);
    opacity: 0.88;
    box-shadow: 0 0 0 3px rgba(158, 131, 184, 0.2);
}

.discover-story p {
    font-size: clamp(15px, 1.1vw, 18px);
    line-height: 1.7;
    color: rgba(10, 10, 10, 0.82);
    margin-bottom: 12px;
}

.discover-story p:last-child {
    margin-bottom: 0;
}

.discover-story strong {
    font-weight: 600;
    color: var(--color-text);
}

.discover-story em {
    font-style: italic;
    font-weight: 400;
}

/* Mise en avant du prénom "Chloé" */
.discover-story__name {
    font-weight: 700;
    font-style: italic;
    background: linear-gradient(120deg, transparent 0%, transparent 8%, rgba(201, 188, 216, 0.55) 8%, rgba(201, 188, 216, 0.55) 92%, transparent 92%);
    padding: 0 4px;
}

.discover-story__cta-wrap {
    margin-top: clamp(16px, 2.2vw, 22px);
    margin-bottom: 0;
}

.discover-story__about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    font-family: inherit;
    font-size: clamp(14px, 1.05vw, 15px);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #fff;
    cursor: pointer;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-violet) 0%, #8368a8 100%);
    box-shadow:
        0 8px 24px rgba(94, 70, 130, 0.32),
        0 2px 6px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition:
        transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
        filter 0.25s ease;
}

.discover-story__about-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow:
        0 12px 32px rgba(94, 70, 130, 0.36),
        0 4px 10px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.discover-story__about-btn:focus-visible {
    outline: 2px solid var(--color-text);
    outline-offset: 3px;
}

.discover-story__about-btn:active {
    transform: translateY(0);
}

/* --------- Feuille « En savoir plus sur Chloé » (bottom sheet) --------- */
.chloe-sheet {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    box-sizing: border-box;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    overflow-x: hidden;
}

.chloe-sheet.is-open,
.chloe-sheet.is-closing {
    visibility: visible;
}

.chloe-sheet.is-open {
    pointer-events: auto;
}

/* Fermeture : laisser l’animation, bloquer les clics doubles */
.chloe-sheet.is-closing {
    pointer-events: none;
}

.chloe-sheet__backdrop {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        165deg,
        rgba(36, 22, 48, 0.45) 0%,
        rgba(20, 14, 30, 0.62) 100%
    );
    opacity: 0;
    transition: opacity 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.chloe-sheet.is-open .chloe-sheet__backdrop {
    opacity: 1;
}

.chloe-sheet__panel {
    position: relative;
    width: min(980px, 100%);
    max-width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
    max-height: min(94vh, 920px);
    max-height: min(94dvh, 920px);
    overflow-x: hidden;
    background: linear-gradient(180deg, #fdfbf8 0%, #f3ece4 54%, #efe6dc 100%);
    border-radius: 26px 26px 0 0;
    box-shadow:
        0 -20px 60px rgba(40, 26, 55, 0.22),
        0 0 0 1px rgba(158, 131, 184, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translate3d(0, 104%, 0);
    transition: transform 0.48s cubic-bezier(0.32, 0.72, 0, 1);
}

.chloe-sheet.is-open .chloe-sheet__panel {
    transform: translate3d(0, 0, 0);
}

.chloe-sheet__rail {
    display: flex;
    justify-content: center;
    padding: 12px 0 6px;
    flex-shrink: 0;
}

.chloe-sheet__handle {
    display: block;
    width: 44px;
    height: 4px;
    border-radius: 4px;
    background: rgba(10, 10, 10, 0.16);
}

.chloe-sheet__scroll {
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    overscroll-behavior-x: none;
    touch-action: pan-y;
    padding: 10px clamp(18px, 4vw, 36px) max(28px, env(safe-area-inset-bottom))
        clamp(22px, 4vw, 40px);
    max-height: calc(min(94vh, 920px) - 24px);
    max-height: calc(min(94dvh, 920px) - 24px);
    -webkit-overflow-scrolling: touch;
}

.chloe-sheet__header {
    margin-bottom: clamp(14px, 2vw, 22px);
}

.chloe-sheet__back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px 8px 10px;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(10, 10, 10, 0.75);
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(10, 10, 10, 0.1);
    border-radius: 999px;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.chloe-sheet__back-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-text);
    border-color: rgba(158, 131, 184, 0.45);
}

.chloe-sheet__back-btn:focus-visible {
    outline: 2px solid var(--color-violet);
    outline-offset: 3px;
}

.chloe-sheet__back-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.chloe-sheet__grid {
    display: grid;
    grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
    gap: clamp(24px, 4vw, 48px);
    align-items: start;
    min-width: 0;
}

.chloe-sheet__content {
    min-width: 0;
}

.chloe-sheet__photo {
    margin: 0;
    min-width: 0;
    position: sticky;
    top: 8px;
}

.chloe-sheet__photo-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    max-height: min(420px, 52vh);
    background: linear-gradient(145deg, #d4c4e0 0%, #ebe2d6 45%, #c9b8d4 100%);
    box-shadow:
        0 16px 40px rgba(70, 48, 95, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.55) inset;
}

.chloe-sheet__photo-frame.is-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
}

.chloe-sheet__photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.chloe-sheet__photo-caption {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(40, 28, 55, 0.55);
    border-radius: 999px;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.chloe-sheet__photo-credit {
    margin: 10px 0 0;
    font-size: 12.5px;
    line-height: 1.45;
    color: rgba(10, 10, 10, 0.48);
}

.chloe-sheet__kicker {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-violet);
}

.chloe-sheet__title {
    margin: 0 0 clamp(14px, 2vw, 20px);
    font-size: clamp(1.35rem, 2.8vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--color-text);
}

.chloe-sheet__lead {
    margin: 0 0 18px;
    font-size: clamp(15px, 1.15vw, 17px);
    line-height: 1.65;
    color: rgba(10, 10, 10, 0.78);
}

.chloe-sheet__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.chloe-sheet__chips li {
    display: inline-flex;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(10, 10, 10, 0.72);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(158, 131, 184, 0.35);
    border-radius: 999px;
}

.chloe-sheet__body {
    min-width: 0;
    font-size: clamp(14px, 1.06vw, 16px);
    line-height: 1.72;
    color: rgba(10, 10, 10, 0.8);
    overflow-wrap: anywhere;
}

.chloe-sheet__title,
.chloe-sheet__lead,
.chloe-sheet__body p {
    overflow-wrap: anywhere;
}

.chloe-sheet__body p {
    margin: 0 0 1rem;
}

.chloe-sheet__body p:last-child {
    margin-bottom: 0;
}

.chloe-sheet__quote {
    margin: 1.35rem 0;
    padding: clamp(14px, 2vw, 20px) clamp(16px, 2vw, 24px);
    border-left: 3px solid var(--color-violet);
    border-radius: 4px 12px 12px 4px;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: anywhere;
    background:
        linear-gradient(120deg, rgba(158, 131, 184, 0.12), rgba(253, 251, 248, 0.85));
}

.chloe-sheet__quote p {
    margin: 0 0 12px;
    font-size: 1.06em;
    font-style: italic;
    font-weight: 500;
    color: rgba(10, 10, 10, 0.86);
}

.chloe-sheet__quote footer {
    font-size: 0.93em;
    font-weight: 600;
    color: rgba(10, 10, 10, 0.55);
}

@media (max-width: 740px) {
    .chloe-sheet__photo {
        position: relative;
        top: auto;
    }

    .chloe-sheet__grid {
        grid-template-columns: 1fr;
    }

    .chloe-sheet__photo-frame {
        max-height: none;
        aspect-ratio: 16 / 10;
    }
}

@media (prefers-reduced-motion: reduce) {
    .chloe-sheet__backdrop,
    .chloe-sheet__panel {
        transition-duration: 0.01ms;
    }

    .discover-story__about-btn:hover {
        transform: none;
    }
}

html.chloe-sheet-lock,
body.chloe-sheet-lock {
    overflow-x: hidden;
    overscroll-behavior-x: none;
}

body.chloe-sheet-lock {
    overflow: hidden;
    touch-action: none;
}

/* Gabarits chiens — Découverte (carte façon histoire du salon + motifs bulles-pattes) */
.discover-sizes {
    position: relative;
    z-index: 1;
    max-width: 880px;
    margin-inline: auto;
    margin-block: clamp(28px, 4.5vh, 52px) 0;
    padding: clamp(26px, 3.2vw, 38px) clamp(26px, 4vw, 42px)
        clamp(26px, 3.6vw, 40px)
        clamp(22px, 3.8vw, 36px);
    background:
        radial-gradient(ellipse 105% 90% at 0% 40%, rgba(158, 131, 184, 0.2), transparent 58%),
        radial-gradient(circle at 104% -8%, rgba(117, 137, 118, 0.18), transparent 48%),
        radial-gradient(circle at 88% 100%, rgba(204, 187, 219, 0.25), transparent 45%),
        linear-gradient(
            148deg,
            rgba(255, 255, 255, 0.78) 0%,
            rgba(253, 251, 248, 0.55) 48%,
            rgba(235, 229, 217, 0.42) 100%
        );
    border-left: 3px solid var(--color-text);
    border-radius: 8px 28px 24px 10px;
    box-shadow:
        0 18px 50px rgba(40, 32, 55, 0.11),
        0 0 0 1px rgba(158, 131, 184, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -1px 0 rgba(158, 131, 184, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
}

.discover-sizes::before {
    content: "";
    position: absolute;
    inset: auto -38px auto auto;
    top: clamp(62px, 12vw, 96px);
    width: clamp(108px, 22vw, 150px);
    height: clamp(108px, 22vw, 150px);
    background: url("images/paw-cursor.svg") center / contain no-repeat;
    opacity: 0.11;
    transform: rotate(18deg);
    pointer-events: none;
}

.discover-sizes > :not(.discover-sizes__grid) {
    position: relative;
    z-index: 1;
}

.discover-sizes__title {
    font-size: clamp(18px, 1.55vw, 22px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--color-text);
    margin: 0 0 12px;
    line-height: 1.28;
    max-width: 26ch;
}

.discover-sizes__title em {
    font-style: italic;
    font-weight: 800;
    color: transparent;
    background: linear-gradient(120deg, var(--color-violet) 0%, #8368a8 54%, rgba(117, 137, 118, 0.95) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.discover-sizes__intro {
    margin: 0 0 clamp(18px, 2.8vw, 26px);
    padding-left: 12px;
    border-left: 2px dashed rgba(158, 131, 184, 0.45);
    font-size: clamp(14px, 1.05vw, 16px);
    line-height: 1.68;
    color: rgba(10, 10, 10, 0.78);
}

.discover-sizes__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(13px, 2.2vw, 20px);
    position: relative;
    z-index: 1;
}

.discover-size-card {
    --card-rot: 0deg;
    position: relative;
    padding: clamp(18px, 2.4vw, 22px) clamp(14px, 2vw, 18px) clamp(16px, 2vw, 20px);
    border-radius: 18px;
    transform: rotate(var(--card-rot));
    transition:
        transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.discover-size-card:nth-child(1) {
    --card-rot: -0.8deg;
    border-radius: 22px 10px 20px 16px;
    background:
        radial-gradient(circle at 88% -8%, rgba(158, 131, 184, 0.18), transparent 42%),
        linear-gradient(165deg, rgba(255, 255, 255, 0.92) 0%, rgba(250, 247, 255, 0.65) 100%);
}

.discover-size-card:nth-child(2) {
    --card-rot: 0.5deg;
    border-radius: 12px 24px 14px 20px;
    background:
        radial-gradient(circle at 10% -10%, rgba(117, 137, 118, 0.14), transparent 40%),
        linear-gradient(168deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 244, 240, 0.55) 100%);
}

.discover-size-card:nth-child(3) {
    --card-rot: -0.45deg;
    border-radius: 18px 16px 24px 10px;
    background:
        radial-gradient(circle at 90% 100%, rgba(204, 187, 219, 0.32), transparent 48%),
        linear-gradient(170deg, rgba(255, 255, 255, 0.88) 0%, rgba(245, 240, 250, 0.58) 100%);
}

.discover-size-card:nth-child(4) {
    --card-rot: 0.85deg;
    border-radius: 14px 18px 12px 24px;
    background:
        radial-gradient(circle at 0% 90%, rgba(158, 131, 184, 0.12), transparent 45%),
        linear-gradient(175deg, rgba(255, 255, 255, 0.9) 0%, rgba(235, 237, 234, 0.52) 100%);
}

.discover-size-card {
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow:
        0 12px 32px rgba(70, 50, 90, 0.1),
        0 0 0 1px rgba(158, 131, 184, 0.22),
        inset 0 2px 6px rgba(255, 255, 255, 0.9),
        inset 0 -14px 30px rgba(158, 131, 184, 0.07);
}

.discover-size-card:hover {
    transform: rotate(0deg) translateY(-6px);
    box-shadow:
        0 20px 44px rgba(94, 70, 130, 0.16),
        0 0 0 1px rgba(158, 131, 184, 0.35),
        inset 0 2px 10px rgba(255, 255, 255, 0.95),
        inset 0 -14px 32px rgba(158, 131, 184, 0.1);
}

.discover-size-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin: 0 0 10px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    border-radius: 999px;
    background: linear-gradient(125deg, #8b6fab 0%, var(--color-violet) 48%, rgba(117, 137, 118, 0.88) 160%);
    box-shadow:
        0 6px 16px rgba(94, 70, 130, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.discover-size-card__tier {
    margin: 0 0 5px;
    font-size: clamp(13px, 1.08vw, 15px);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.38;
}

.discover-size-card__range {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
    color: rgba(117, 137, 118, 0.95);
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 3px;
    text-decoration-color: rgba(158, 131, 184, 0.55);
}

.discover-size-card__hint {
    margin: 0;
    padding-top: 4px;
    border-top: 1px dashed rgba(10, 10, 10, 0.1);
    font-size: 11.5px;
    line-height: 1.5;
    color: rgba(10, 10, 10, 0.58);
}

/* Tarifs chiens — bande « coupon » violet / réséda comme la charte salon */
.discover-pricing {
    position: relative;
    z-index: 1;
    max-width: 880px;
    margin-inline: auto;
    margin-block: clamp(26px, 4vh, 44px) 0;
    padding:
        clamp(12px, 2vw, 16px)
        clamp(20px, 3.8vw, 40px)
        clamp(26px, 3.4vw, 38px)
        clamp(22px, 3.8vw, 38px);
    background:
        radial-gradient(circle at 0% -20%, rgba(158, 131, 184, 0.22), transparent 46%),
        radial-gradient(circle at 112% 80%, rgba(117, 137, 118, 0.16), transparent 48%),
        linear-gradient(
            188deg,
            rgba(253, 252, 251, 0.85) 0%,
            rgba(235, 229, 217, 0.38) 100%
        );
    border-radius: 22px 10px 24px 16px;
    border: 1px solid rgba(158, 131, 184, 0.22);
    box-shadow:
        0 20px 54px rgba(40, 32, 55, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        inset 0 -1px 0 rgba(117, 137, 118, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
}

.discover-pricing__ribbon {
    position: absolute;
    left: clamp(26px, 5vw, 44px);
    top: clamp(96px, 18vw, 140px);
    width: clamp(74px, 15vw, 104px);
    height: clamp(74px, 15vw, 104px);
    opacity: 0.08;
    background: url("images/paw-cursor.svg") center / contain no-repeat;
    transform: rotate(-16deg);
    pointer-events: none;
}

.discover-pricing__ribbon--rear {
    left: auto;
    right: clamp(18px, 5vw, 48px);
    top: auto;
    bottom: clamp(110px, 22vh, 200px);
    width: clamp(56px, 12vw, 84px);
    height: clamp(56px, 12vw, 84px);
    opacity: 0.06;
    transform: rotate(22deg);
}

.discover-pricing::after {
    content: "";
    position: absolute;
    inset: auto auto clamp(28px, 6vh, 52px) clamp(-16px, -2vw, -6px);
    width: clamp(52px, 11vw, 76px);
    height: clamp(52px, 11vw, 76px);
    background: url("images/paw-cursor.svg") center / contain no-repeat;
    opacity: 0.05;
    transform: rotate(12deg);
    pointer-events: none;
}

.discover-pricing > *:not(.discover-pricing__ribbon) {
    position: relative;
    z-index: 1;
}

.discover-pricing__masthead {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: clamp(14px, 3vw, 26px);
    margin: 0 0 6px;
}

.discover-pricing__masthead-main {
    flex: 1 1 13rem;
    min-width: 0;
    position: relative;
}

.discover-pricing__title {
    font-size: clamp(18px, 1.55vw, 22px);
    font-weight: 800;
    letter-spacing: -0.025em;
    margin: clamp(14px, 2vw, 20px) 0 10px;
    color: var(--color-text);
    line-height: 1.3;
    padding-bottom: 14px;
    border-bottom: 2px dashed rgba(158, 131, 184, 0.45);
}

.discover-pricing__title em {
    font-style: italic;
    font-weight: 800;
    color: transparent;
    background: linear-gradient(
        120deg,
        var(--color-violet) 0%,
        #8368a8 52%,
        rgba(117, 137, 118, 0.95) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
}

.discover-pricing__wag {
    margin: 0 0 4px;
    font-size: clamp(15px, 2.4vw, 18px);
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.06em;
    color: rgba(117, 137, 118, 0.88);
    transform: rotate(-1.5deg);
    transform-origin: 0 50%;
}

.discover-pricing__pack {
    flex: 0 0 auto;
    position: relative;
    width: clamp(124px, 32vw, 184px);
    height: clamp(116px, 28vw, 164px);
    margin: 2px -4px 0 0;
}

.discover-pricing__dog {
    margin: 0;
    position: absolute;
    overflow: hidden;
    box-shadow:
        0 10px 28px rgba(40, 32, 55, 0.2),
        inset 0 0 0 2px rgba(255, 255, 255, 0.72);
}

.discover-pricing__dog img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discover-pricing__dog--a {
    width: clamp(70px, 18vw, 94px);
    height: clamp(70px, 18vw, 94px);
    right: 0;
    top: 0;
    border-radius: 58% 42% 48% 52% / 52% 48% 58% 42%;
    transform: rotate(6deg);
    z-index: 3;
}

.discover-pricing__dog--b {
    width: clamp(76px, 19vw, 102px);
    height: clamp(76px, 19vw, 102px);
    left: 0;
    bottom: 2px;
    border-radius: 46% 54% 42% 58% / 44% 42% 58% 56%;
    transform: rotate(-7deg);
    z-index: 2;
}

.discover-pricing__dog--c {
    width: clamp(60px, 15vw, 82px);
    height: clamp(60px, 15vw, 82px);
    right: clamp(26px, 7vw, 42px);
    bottom: 0;
    border-radius: 48% 52% 55% 45% / 55% 45% 48% 52%;
    transform: rotate(4deg);
    z-index: 1;
}

.discover-pricing__stripe {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin: clamp(18px, 2.6vw, 26px) 0 clamp(18px, 2.8vw, 24px);
    padding: clamp(14px, 2vw, 18px) clamp(16px, 2.4vw, 22px);
    margin-inline: clamp(-14px, -1.8vw, -8px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: linear-gradient(
        128deg,
        #7f6e92 0%,
        var(--color-violet) 34%,
        #8368a8 58%,
        rgba(117, 137, 118, 0.92) 100%
    );
    box-shadow:
        0 14px 32px rgba(94, 70, 130, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.discover-pricing__stripe-body {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1 1 12rem;
    min-width: 0;
}

.discover-pricing__stripe-icons {
    position: relative;
    flex-shrink: 0;
    width: 46px;
    height: 42px;
    margin-top: 2px;
}

.discover-pricing__stripe-icons::before,
.discover-pricing__stripe-icons::after {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    background: url("images/paw-cursor.svg") center / contain no-repeat;
    opacity: 0.38;
    filter: brightness(0) invert(1);
}

.discover-pricing__stripe-icons::before {
    left: 0;
    top: 0;
    transform: rotate(-14deg);
}

.discover-pricing__stripe-icons::after {
    right: 0;
    bottom: 0;
    transform: rotate(20deg);
}

.discover-pricing__stripe-copy {
    margin: 0;
    font-size: clamp(12.5px, 1vw, 14px);
    font-weight: 600;
    line-height: 1.42;
    color: rgba(255, 255, 255, 0.94);
    text-shadow: 0 1px 2px rgba(20, 10, 30, 0.18);
}

.discover-pricing__stripe-sum {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    white-space: nowrap;
    border-radius: 999px;
    color: rgba(18, 12, 24, 0.78);
    background: rgba(255, 255, 255, 0.88);
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.95),
        0 4px 12px rgba(0, 0, 0, 0.12);
}

.discover-pricing__intro {
    margin: 0 0 clamp(16px, 2.6vw, 22px);
    padding-left: 12px;
    border-left: 2px dashed rgba(117, 137, 118, 0.45);
    font-size: clamp(14px, 1.04vw, 15.8px);
    line-height: 1.67;
    color: rgba(10, 10, 10, 0.78);
}

.discover-pricing__table-panel {
    position: relative;
    margin-bottom: clamp(14px, 2vw, 18px);
    padding-top: clamp(18px, 3.2vw, 30px);
    z-index: 1;
}

.discover-pricing__table-peep {
    position: absolute;
    z-index: 4;
    right: clamp(10px, 2.4vw, 22px);
    top: clamp(-6px, -0.8vw, 2px);
    width: clamp(72px, 17vw, 104px);
    height: clamp(72px, 17vw, 104px);
    border-radius: 62% 38% 42% 58% / 50% 54% 46% 50%;
    overflow: hidden;
    box-shadow:
        0 12px 32px rgba(40, 32, 55, 0.22),
        inset 0 0 0 2px rgba(255, 255, 255, 0.76);
    transform: rotate(-11deg);
    pointer-events: none;
}

.discover-pricing__table-peep img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discover-pricing__table-scroll {
    overflow-x: visible;
    margin-bottom: 0;
    padding: clamp(14px, 2vw, 18px);
    margin-inline: clamp(-14px, -1.8vw, -8px);
    border-radius: 18px;
    background:
        radial-gradient(circle at 50% -16%, rgba(158, 131, 184, 0.12), transparent 55%),
        rgba(253, 251, 248, 0.55);
    box-shadow:
        inset 0 0 0 1px rgba(10, 10, 10, 0.05),
        0 8px 26px rgba(40, 32, 50, 0.06);
    -webkit-overflow-scrolling: touch;
}

.discover-pricing__matrix {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: clamp(12px, 0.96vw, 14px);
}

.discover-pricing__matrix-head {
    display: none;
}

.discover-pricing__acc {
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
}

.discover-pricing__acc-sum {
    list-style: none;
    cursor: pointer;
}

.discover-pricing__acc-sum::-webkit-details-marker {
    display: none;
}

.discover-pricing__acc-sum::marker {
    content: "";
}

.discover-pricing__acc-title {
    font-weight: 680;
    color: var(--color-text);
    line-height: 1.38;
}

.discover-pricing__acc-from {
    flex-shrink: 0;
    text-align: right;
    font-size: clamp(11.5px, 3.1vw, 13px);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: rgba(18, 14, 24, 0.82);
}

.discover-pricing__acc-from-tier {
    display: block;
    margin-top: 2px;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(45, 32, 55, 0.45);
}

.discover-pricing__acc-panel {
    margin: 0;
    padding: 0;
}

.discover-pricing__acc-slot {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 4rem;
    padding: 11px 8px;
    text-align: center;
    font-weight: 630;
    font-variant-numeric: tabular-nums;
    white-space: normal;
    border-radius: 12px;
    color: rgba(18, 14, 24, 0.88);
    background: rgba(255, 255, 255, 0.82);
    box-shadow:
        0 2px 12px rgba(60, 40, 85, 0.06),
        inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.discover-pricing__acc-tier {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(45, 32, 55, 0.55);
}

.discover-pricing__acc-price {
    font-size: clamp(12px, 3vw, 13.5px);
    line-height: 1.35;
}

.discover-pricing__acc-note {
    margin: 0;
    padding: 12px 14px;
    font-size: clamp(12.5px, 3.3vw, 14px);
    font-weight: 600;
    line-height: 1.52;
    color: rgba(10, 10, 10, 0.8);
}

.discover-pricing__abbr {
    display: inline-block;
    font-size: 1.08em;
    font-weight: 900;
    color: transparent;
    background: linear-gradient(110deg, #6b5782 8%, var(--color-violet) 55%, rgba(117, 137, 118, 0.95) 120%);
    -webkit-background-clip: text;
    background-clip: text;
}

.discover-pricing__abbr-hint {
    display: block;
    margin-top: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.02em;
    color: rgba(10, 10, 10, 0.48);
}

/* Table bureau (visible ≥901px) — alignement garanti vs accordéon mobile */
.discover-pricing__desk {
    display: none;
    width: 100%;
}

@media (min-width: 901px) {
    .discover-pricing__desk {
        display: table !important;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        table-layout: fixed;
        border-collapse: separate;
        border-spacing: 0 8px;
        font-size: clamp(12px, 0.96vw, 14px);
        background: transparent;
    }

    .discover-pricing__desk col.discover-pricing__col--svc {
        width: 34%;
    }

    .discover-pricing__desk col.discover-pricing__col--tier {
        width: 16.5%;
    }

    .discover-pricing__desk .discover-pricing__abbr-hint {
        display: none;
    }

    .discover-pricing__desk thead th:first-child {
        width: auto;
    }

    .discover-pricing__matrix {
        display: none !important;
    }

    .discover-pricing__desk thead th {
        padding: 0 11px 12px;
        text-align: center;
        font-weight: 800;
        font-size: clamp(11.5px, 0.9vw, 13px);
        letter-spacing: 0.06em;
        text-transform: uppercase;
        vertical-align: bottom;
        border: none;
        color: rgba(45, 32, 55, 0.88);
        background: transparent;
    }

    .discover-pricing__th-service {
        text-transform: none;
        letter-spacing: 0.05em;
        font-size: clamp(11px, 0.9vw, 12.8px);
        font-variant-caps: all-small-caps;
        text-align: left;
        padding-left: 4px;
        min-width: 0;
    }

    .discover-pricing__th-service::before {
        content: "";
        display: inline-block;
        width: 1.05rem;
        height: 1.05rem;
        margin-right: 7px;
        vertical-align: -0.18em;
        background: url("images/paw-cursor.svg") center / contain no-repeat;
        opacity: 0.52;
    }

    .discover-pricing__desk tbody th {
        text-align: left;
        padding: 14px 16px;
        font-weight: 680;
        color: var(--color-text);
        border: none;
        vertical-align: middle;
        background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.97) 0%,
            rgba(250, 248, 253, 0.88) 100%
        );
        border-radius: 14px 0 0 14px;
        box-shadow:
            0 3px 16px rgba(60, 40, 85, 0.07),
            inset 0 0 0 1px rgba(255, 255, 255, 0.82);
    }

    .discover-pricing__desk tbody td {
        padding: 14px 8px;
        text-align: center;
        font-weight: 630;
        font-variant-numeric: tabular-nums;
        white-space: normal;
        overflow-wrap: break-word;
        hyphens: auto;
        border: none;
        vertical-align: middle;
        color: rgba(18, 14, 24, 0.88);
        background: rgba(255, 255, 255, 0.78);
        box-shadow:
            0 3px 14px rgba(60, 40, 85, 0.05),
            inset 0 0 0 1px rgba(255, 255, 255, 0.7);
    }

    .discover-pricing__desk tbody td:last-child {
        border-radius: 0 14px 14px 0;
        box-shadow:
            3px 3px 16px rgba(60, 40, 85, 0.065),
            inset 0 0 0 1px rgba(255, 255, 255, 0.76);
    }

    .discover-pricing__desk tbody tr.discover-pricing__desk-row--alt th {
        background: linear-gradient(
            92deg,
            rgba(251, 248, 254, 0.98) 0%,
            rgba(239, 244, 240, 0.65) 100%
        );
    }

    .discover-pricing__desk tbody tr.discover-pricing__desk-row--alt td:not([colspan]) {
        background:
            radial-gradient(circle at 80% -20%, rgba(158, 131, 184, 0.12), transparent 55%),
            rgba(253, 252, 251, 0.88);
    }

    .discover-pricing__desk tbody tr.discover-pricing__desk-row--nac th {
        font-style: italic;
        color: rgba(10, 10, 10, 0.75);
    }

    .discover-pricing__desk tbody td[colspan] {
        text-align: left;
        padding-left: 18px;
        font-weight: 600;
        white-space: normal;
        overflow-wrap: break-word;
        border-radius: 0 14px 14px 0;
    }

    .discover-pricing__desk tbody tr.discover-pricing__desk-row--nac td[colspan] {
        background:
            radial-gradient(circle at 76% -10%, rgba(158, 131, 184, 0.14), transparent 54%),
            rgba(253, 252, 251, 0.9);
        box-shadow:
            3px 3px 16px rgba(60, 40, 85, 0.055),
            inset 0 0 0 1px rgba(255, 255, 255, 0.74);
    }

    /* Évite les prix coupés par overflow du bloc tarifs si le tableau dépasse en largeur */
    .discover-pricing__table-scroll {
        overflow-x: auto;
        overflow-y: visible;
    }
}

.discover-pricing__note {
    margin: clamp(8px, 1.8vw, 14px) 0 0;
    padding: clamp(12px, 2vw, 15px);
    font-size: clamp(13px, 1.02vw, 14px);
    line-height: 1.62;
    color: rgba(10, 10, 10, 0.64);
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    border-left: 3px solid var(--color-violet);
}

.discover-pricing__tel {
    display: inline-block;
    margin-top: 6px;
    font-weight: 800;
    color: var(--color-violet);
    text-decoration: none;
    padding: 2px 0;
    border-bottom: 1px solid rgba(158, 131, 184, 0.45);
    transition:
        opacity 0.2s ease,
        border-color 0.2s ease;
}

.discover-pricing__tel:hover {
    opacity: 0.92;
    border-bottom-color: var(--color-violet);
}

.discover-pricing__tel:focus-visible {
    outline: 2px solid var(--color-violet);
    outline-offset: 3px;
}

@media (max-width: 900px) {
    .discover-sizes__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* -------- Tarifs : mise en page tablette / mobile -------- */
    .discover-pricing__desk {
        display: none !important;
    }

    .discover-pricing__matrix {
        display: flex;
        flex-direction: column;
    }

    .discover-pricing__wag {
        transform: rotate(-1deg);
    }

    .discover-pricing__abbr-hint {
        display: none;
    }

    .discover-pricing {
        max-width: none;
        margin-inline: clamp(-4px, -0.8vw, 0px);
        padding:
            clamp(14px, 3.6vw, 18px)
            clamp(14px, 4vw, 18px)
            clamp(22px, 5vw, 28px);
        border-radius: 18px 12px 20px 14px;
    }

    .discover-pricing__ribbon {
        top: clamp(72px, 18vw, 100px);
        opacity: 0.06;
    }

    .discover-pricing__ribbon--rear {
        bottom: clamp(80px, 24vw, 140px);
    }

    .discover-pricing__masthead {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 10px;
        margin-bottom: 10px;
    }

    .discover-pricing__masthead-main {
        flex-basis: auto;
        min-width: 0;
        text-align: center;
    }

    .discover-pricing__title {
        font-size: clamp(17px, 4.4vw, 20px);
        margin-top: 10px;
        padding-bottom: 12px;
        border-bottom-width: 1px;
    }

    .discover-pricing__pack {
        width: clamp(120px, 42vw, 180px);
        height: clamp(112px, 39vw, 168px);
        margin: 4px auto 0;
        flex-shrink: 0;
    }

    .discover-pricing__stripe {
        flex-direction: column;
        align-items: stretch;
        margin: clamp(8px, 2vw, 12px) 0 clamp(10px, 2.4vw, 14px);
        margin-inline: 0;
        padding: 9px 12px 10px;
        gap: 7px;
        border-radius: 12px;
    }

    .discover-pricing__stripe-body {
        align-items: flex-start;
        gap: 8px;
        flex: 1 1 auto;
        min-width: 0;
    }

    .discover-pricing__stripe-icons {
        width: 30px;
        height: 30px;
        margin-top: 0;
        align-self: flex-start;
    }

    .discover-pricing__stripe-icons::before,
    .discover-pricing__stripe-icons::after {
        width: 18px;
        height: 18px;
    }

    .discover-pricing__stripe-copy {
        font-size: clamp(11.5px, 3.2vw, 13px);
        line-height: 1.35;
        font-weight: 600;
        text-align: left;
    }

    .discover-pricing__stripe-sum {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding: 5px 10px;
        font-size: 9.5px;
        letter-spacing: 0.12em;
        white-space: normal;
        text-align: center;
        line-height: 1.25;
    }

    .discover-pricing__intro {
        display: none;
    }

    .discover-pricing__table-panel {
        padding-top: 4px;
        margin-bottom: 10px;
    }

    .discover-pricing__table-peep {
        display: none;
    }

    .discover-pricing__table-scroll {
        overflow-x: visible;
        margin-inline: 0;
        padding: clamp(10px, 3vw, 14px);
        border-radius: 14px;
        background:
            radial-gradient(circle at 50% -10%, rgba(158, 131, 184, 0.1), transparent 52%),
            rgba(253, 251, 248, 0.72);
    }

    .discover-pricing__matrix {
        gap: 6px;
    }

    /* Accordeon : fermé par défaut sur mobile pour raccourcir la section */
    .discover-pricing__acc-sum {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 11px 12px;
        margin: 0;
        border-radius: 13px;
        background: linear-gradient(
            132deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(251, 248, 253, 0.92) 100%
        );
        box-shadow:
            0 3px 12px rgba(60, 40, 85, 0.07),
            inset 0 0 0 1px rgba(255, 255, 255, 0.9);
        min-height: 48px;
    }

    .discover-pricing__acc-sum:focus {
        outline: none;
    }

    .discover-pricing__acc-sum:focus-visible {
        outline: 2px solid var(--color-violet);
        outline-offset: 2px;
    }

    .discover-pricing__acc-title {
        flex: 1;
        min-width: 0;
        text-align: left;
        font-size: clamp(12.5px, 3.5vw, 14px);
    }

    .discover-pricing__acc-from {
        text-align: right;
        line-height: 1.28;
        max-width: 46%;
        font-size: clamp(11px, 3.1vw, 12.5px);
    }

    .discover-pricing__acc-from-tier {
        font-size: 9px;
    }

    .discover-pricing__acc-sum::after {
        content: "";
        flex-shrink: 0;
        width: 7px;
        height: 7px;
        margin-left: 2px;
        border-right: 2px solid rgba(45, 32, 55, 0.35);
        border-bottom: 2px solid rgba(45, 32, 55, 0.35);
        transform: rotate(45deg) translateY(-1px);
        transition: transform 0.2s ease;
    }

    .discover-pricing__acc--nac .discover-pricing__acc-sum::after {
        transform: rotate(45deg);
    }

    .discover-pricing__acc[open] > .discover-pricing__acc-sum::after {
        transform: rotate(225deg) translateY(2px);
    }

    .discover-pricing__acc-panel {
        padding: 8px 0 2px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 7px;
    }

    .discover-pricing__acc-panel--nac {
        grid-template-columns: 1fr;
        padding-top: 6px;
    }

    .discover-pricing__acc-note {
        padding: 12px;
        margin: 0;
        border-radius: 11px;
        font-size: clamp(12.5px, 3.35vw, 14px);
        background: rgba(255, 255, 255, 0.75);
        box-shadow:
            0 2px 10px rgba(60, 40, 85, 0.05),
            inset 0 0 0 1px rgba(255, 255, 255, 0.7);
    }

    .discover-pricing__acc-slot {
        min-height: 3.45rem;
        padding: 9px 6px;
        gap: 4px;
    }

    .discover-pricing__acc--alt:not(.discover-pricing__acc--nac) .discover-pricing__acc-sum {
        background: linear-gradient(
            138deg,
            rgba(251, 248, 254, 0.98) 0%,
            rgba(239, 244, 240, 0.55) 100%
        );
    }

    .discover-pricing__note {
        margin-top: 4px;
        padding: clamp(10px, 3vw, 14px);
        font-size: clamp(12px, 3.3vw, 13.5px);
        line-height: 1.5;
    }

    .discover-pricing__tel {
        display: inline-block;
        margin-top: 8px;
    }
}

@media (max-width: 520px) {
    .discover-sizes__grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .discover-size-card:hover {
        transform: none;
    }

    .discover-size-card {
        transform: rotate(0deg) !important;
    }

    .discover-pricing__wag {
        transform: none;
    }

    .discover-pricing__acc-sum::after {
        transition: none;
    }
}

/* Carte Google du salon — section Découverte */
.discover-map {
    position: relative;
    z-index: 1;
    max-width: 880px;
    margin-block: clamp(32px, 5vh, 52px);
    padding: clamp(20px, 3vw, 28px);
    margin-inline: auto;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 18px;
    border: 1px solid rgba(10, 10, 10, 0.08);
    box-shadow:
        0 12px 36px rgba(40, 30, 60, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.discover-map__head {
    margin-bottom: clamp(14px, 2.2vw, 20px);
}

.discover-map__title {
    font-size: clamp(18px, 1.5vw, 22px);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin: 0 0 8px;
}

.discover-map__address {
    margin: 0;
    font-size: clamp(14px, 1.05vw, 16px);
    line-height: 1.5;
    color: rgba(10, 10, 10, 0.62);
}

.discover-map__frame {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
        0 8px 28px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.55);
    background: rgba(210, 210, 210, 0.35);
}

.discover-map__iframe {
    display: block;
    width: 100%;
    height: clamp(260px, 38vh, 400px);
    border: none;
}

.discover-map__link-wrap {
    margin: clamp(14px, 2vw, 18px) 0 0;
    text-align: center;
}

.discover-map__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-violet);
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(158, 131, 184, 0.15);
    border: 1px solid rgba(158, 131, 184, 0.32);
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.discover-map__link svg {
    width: 16px;
    height: 16px;
}

.discover-map__link:hover {
    background: rgba(158, 131, 184, 0.24);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(94, 70, 130, 0.12);
}

.discover-map__link:focus-visible {
    outline: 2px solid var(--color-violet);
    outline-offset: 3px;
}

/* Patte d'animal décorative en filigrane */
.discover-paw {
    position: absolute;
    right: clamp(24px, 4vw, 64px);
    bottom: clamp(24px, 5vh, 64px);
    width: clamp(60px, 7vw, 96px);
    height: clamp(60px, 7vw, 96px);
    color: rgba(10, 10, 10, 0.07);
    pointer-events: none;
    transform: rotate(18deg);
}

.discover-paw svg {
    width: 100%;
    height: 100%;
}

/* ===========================================
   Section Fidélité
   =========================================== */
.loyalty {
    position: relative;
    padding: clamp(80px, 12vh, 140px) clamp(24px, 5vw, 64px);
    background: linear-gradient(180deg, var(--color-alabaster-deep) 0%, var(--color-alabaster) 50%, var(--color-alabaster-deep) 100%);
    max-width: 100%;
}

.loyalty__title {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: clamp(12px, 1.4vw, 20px);
    font-size: clamp(34px, 4.4vw, 60px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: clamp(40px, 5vh, 64px);
    max-width: 980px;
}

.loyalty__title-sub {
    font-weight: 400;
    font-style: italic;
    color: rgba(10, 10, 10, 0.55);
    font-size: 0.62em;
    letter-spacing: -0.01em;
}

.loyalty__title-paw {
    width: clamp(24px, 2.4vw, 36px);
    height: clamp(24px, 2.4vw, 36px);
    color: var(--color-violet);
    transform: rotate(-18deg);
    align-self: center;
}

.loyalty__grid {
    display: grid;
    grid-template-columns: minmax(280px, 460px) 1fr;
    gap: clamp(36px, 5vw, 72px);
    align-items: start;
}

.loyalty__cards {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 2.4vw, 28px);
}

/* Une image : alternance 1.png / 2.png avec fondu */
.loyalty-card-rotator {
    margin: 0;
}

.loyalty-card-rotator__frame {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    margin: 0;
    padding: 0;
    border-radius: 18px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.35);
    box-shadow:
        0 18px 44px rgba(94, 70, 130, 0.22),
        0 5px 16px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    transition:
        transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    isolation: isolate;
}

.loyalty-card-rotator:hover .loyalty-card-rotator__frame {
    transform: translateY(-4px) rotate(-0.35deg);
    box-shadow:
        0 24px 54px rgba(94, 70, 130, 0.28),
        0 8px 20px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.55) inset;
}

.loyalty-card-rotator__img {
    grid-area: 1 / 1;
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.75s ease-in-out;
}

.loyalty-card-rotator__img.is-active {
    opacity: 1;
    z-index: 1;
}

/* Annonce pour lecteurs d’écran (hors écran) */
.loyalty-card-rotator__live {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (prefers-reduced-motion: reduce) {
    .loyalty-card-rotator:hover .loyalty-card-rotator__frame {
        transform: none;
    }

    .loyalty-card-rotator__img {
        transition-duration: 0.01ms;
    }
}

/* Contenu textuel */
.loyalty__content {
    padding-top: clamp(8px, 1vh, 16px);
}

.loyalty__content > p {
    font-size: clamp(16px, 1.3vw, 20px);
    line-height: 1.55;
    color: rgba(10, 10, 10, 0.85);
    margin-bottom: clamp(28px, 3.6vh, 40px);
}

.loyalty__content > p strong {
    font-weight: 600;
    color: var(--color-text);
}

.loyalty__content h3 {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: clamp(20px, 1.7vw, 26px);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
    margin-top: clamp(20px, 2.5vh, 28px);
}

.loyalty__content h3:first-of-type {
    margin-top: 0;
}

.loyalty__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background-color: var(--color-violet);
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.loyalty__content h3 + p {
    font-size: clamp(15px, 1.15vw, 18px);
    line-height: 1.65;
    color: rgba(10, 10, 10, 0.78);
    margin-bottom: clamp(24px, 3vh, 32px);
    padding-left: 48px;
}

.loyalty__content h3 + p strong {
    font-weight: 700;
    color: var(--color-violet);
}

/* ===========================================
   Section Galerie — constellation de bulles
   =========================================== */
.gallery {
    position: relative;
    padding: clamp(72px, 11vh, 120px) clamp(24px, 5vw, 64px);
    background:
        radial-gradient(ellipse 80% 55% at 50% -10%, rgba(204, 187, 219, 0.35), transparent),
        radial-gradient(ellipse 50% 40% at 100% 60%, rgba(162, 171, 161, 0.18), transparent),
        radial-gradient(ellipse 40% 45% at 0% 85%, rgba(158, 131, 184, 0.12), transparent),
        linear-gradient(180deg, var(--color-alabaster-deep) 0%, var(--color-alabaster) 45%, var(--color-alabaster-deep) 100%);
    overflow: hidden;
}

.gallery__title {
    font-size: clamp(54px, 9vw, 132px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.gallery__lead {
    font-size: clamp(16px, 1.4vw, 20px);
    font-weight: 300;
    font-style: italic;
    color: rgba(10, 10, 10, 0.62);
    margin-bottom: clamp(28px, 4vh, 44px);
    max-width: 540px;
    position: relative;
    z-index: 1;
}

/* --------- Conteneur principal --------- */
.bubble-gallery {
    position: relative;
    z-index: 1;
    max-width: min(1180px, 100%);
    margin-inline: auto;
    outline: none;
}

.bubble-gallery:focus-visible {
    box-shadow: 0 0 0 3px rgba(158, 131, 184, 0.45);
    border-radius: 20px;
}

/* Fond mouvant type « liquide sous la lumière » */
.bubble-gallery__ambient {
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.85) 0%, transparent 28%),
        radial-gradient(circle at 82% 24%, rgba(204, 187, 219, 0.5) 0%, transparent 32%),
        radial-gradient(circle at 72% 88%, rgba(117, 137, 118, 0.15) 0%, transparent 35%),
        radial-gradient(circle at 8% 70%, rgba(158, 131, 184, 0.12) 0%, transparent 30%);
    filter: blur(45px);
    opacity: 0.55;
    animation: ambientDrift 18s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes ambientDrift {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(2%, 1.5%) scale(1.04); }
}

/* Ligne principale : grande bulle à gauche, vignettes empilées à droite */
.bubble-gallery__row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(28px, 5vw, 56px);
    width: 100%;
}

/* Grille flèches + hub (colonne gauche) */
.bubble-gallery__stage {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 3vw, 36px);
    margin-bottom: 0;
    position: relative;
    flex-shrink: 0;
}

.bubble-gallery__arrow {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(10, 10, 10, 0.08);
    background: rgba(255, 255, 255, 0.78);
    color: var(--color-text);
    display: grid;
    place-items: center;
    cursor: pointer;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    z-index: 3;
}

.bubble-gallery__arrow:hover {
    background: rgba(235, 229, 217, 0.95);
    transform: translateY(-2px) scale(1.04);
    box-shadow:
        0 10px 28px rgba(94, 70, 130, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.bubble-gallery__arrow:active {
    transform: scale(0.97);
}

.bubble-gallery__arrow svg {
    width: 22px;
    height: 22px;
}

/* Hub central : portrait dans une grande bulle */
.bubble-gallery__hub {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: clamp(260px, 42vw, 420px);
}


.bubble-gallery__frame-wrap {
    position: relative;
    z-index: 2;
    padding: clamp(8px, 1.6vw, 14px);
    border-radius: 50%;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(235, 229, 217, 0.6) 40%,
        rgba(204, 187, 219, 0.35) 100%
    );
    box-shadow:
        0 24px 50px rgba(40, 30, 60, 0.18),
        0 8px 20px rgba(0, 0, 0, 0.08),
        inset 0 3px 10px rgba(255, 255, 255, 0.9),
        inset 0 -8px 24px rgba(158, 131, 184, 0.12);
}

/* Reflet comme verre mouillé sur la bulle */
.bubble-gallery__frame-glare {
    pointer-events: none;
    position: absolute;
    z-index: 4;
    top: clamp(22px, 4vw, 34px);
    left: clamp(42px, 7vw, 62px);
    width: clamp(72px, 14vw, 110px);
    height: clamp(92px, 18vw, 140px);
    border-radius: 50%;
    background: linear-gradient(
        130deg,
        rgba(255, 255, 255, 0.55) 0%,
        rgba(255, 255, 255, 0.08) 55%,
        transparent 85%
    );
    filter: blur(1px);
    transform: rotate(-18deg);
    opacity: 0.72;
}

.bubble-gallery__frame {
    position: relative;
    width: clamp(220px, 36vw, 360px);
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.65);
    background: linear-gradient(135deg, var(--color-ashgray) 0%, #879687 100%);
    box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.12);
}

.bubble-gallery__img-stack {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: inherit;
}

.bubble-gallery__layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.52s ease-in-out;
    pointer-events: none;
}

.bubble-gallery__layer.is-active {
    opacity: 1;
    z-index: 2;
}

.bubble-gallery__img-fallback {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.bubble-gallery__img-fallback:not([hidden]) {
    background: inherit;
}

/* Métadonnées sous la bulle */
.bubble-gallery__meta {
    margin-top: clamp(22px, 3vh, 32px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 16px;
    z-index: 2;
}

.bubble-gallery__age,
.bubble-gallery__species {
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

.bubble-gallery__age {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(10, 10, 10, 0.06);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.bubble-gallery__species {
    background: rgba(40, 40, 42, 0.88);
    color: #fff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.bubble-gallery__index {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(10, 10, 10, 0.45);
}

/* Zone droite : petites bulles éparpillées (nuage désordonné, même ligne que le hub) */
.bubble-gallery__orbit {
    position: relative;
    flex: 1 1 auto;
    align-self: stretch;
    min-width: clamp(200px, 30vw, 340px);
    min-height: clamp(280px, 32vw, 420px);
    margin-inline: 0;
    padding: clamp(8px, 1.5vw, 18px);
    /* Laisse respirer le nuage tout en gardant une hauteur lisible avec le hub */
}

.orbit-bubble {
    position: absolute;
    --bubble-tilt: rotate(0deg);
    width: clamp(62px, 9vw, 88px);
    height: clamp(62px, 9vw, 88px);
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    transform-origin: center center;
    transition:
        top 0.62s cubic-bezier(0.4, 0, 0.2, 1),
        left 0.62s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.62s cubic-bezier(0.4, 0, 0.2, 1),
        width 0.5s ease,
        height 0.5s ease,
        z-index 0.15s step-end,
        filter 0.35s ease;
}

.orbit-bubble:focus-visible {
    outline: none;
}

.orbit-bubble:focus-visible .orbit-bubble__inner::after {
    opacity: 1;
    transform: scale(1);
}

@keyframes orbitFloatInner {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-6px) rotate(1.8deg); }
}

.orbit-bubble__inner {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.85);
    box-shadow:
        0 10px 24px rgba(40, 30, 60, 0.16),
        0 2px 8px rgba(0, 0, 10, 0.08),
        inset 0 2px 4px rgba(255, 255, 255, 0.5);
    position: relative;
    transition:
        transform 0.45s cubic-bezier(0.33, 1.15, 0.52, 1),
        border-color 0.35s ease,
        box-shadow 0.35s ease;
    animation: orbitFloatInner var(--orbit-dur, 5.4s) ease-in-out infinite;
    animation-delay: var(--orbit-delay, 0s);
}

.orbit-bubble__inner::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--color-violet);
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Le survol : zoom + léger déplacement SUR LE BOUTON (voir plus bas après les slots si --bubble-tilt). */
.orbit-bubble:hover {
    z-index: 24;
}

.orbit-bubble:hover .orbit-bubble__inner,
.orbit-bubble.is-active:hover .orbit-bubble__inner {
    /* Sinon l’animation keyframes conserve le transform et masque agrandissement / mouvement. */
    animation: none !important;
    transform: none;
}

.orbit-bubble:hover .orbit-bubble__inner {
    box-shadow:
        0 18px 40px rgba(40, 30, 60, 0.24),
        0 6px 16px rgba(0, 0, 10, 0.1),
        inset 0 2px 6px rgba(255, 255, 255, 0.55);
}

.orbit-bubble.is-active .orbit-bubble__inner {
    border-color: var(--color-violet);
    box-shadow:
        0 0 0 2px rgba(158, 131, 184, 0.35),
        0 14px 32px rgba(94, 70, 130, 0.25),
        inset 0 2px 4px rgba(255, 255, 255, 0.5);
}

.orbit-bubble.is-active .orbit-bubble__inner::after {
    opacity: 1;
    transform: scale(1);
}

.orbit-bubble.is-active:hover .orbit-bubble__inner {
    border-color: var(--color-violet);
    box-shadow:
        0 0 0 2px rgba(158, 131, 184, 0.45),
        0 22px 48px rgba(94, 70, 130, 0.32),
        0 8px 18px rgba(0, 0, 10, 0.1),
        inset 0 2px 6px rgba(255, 255, 255, 0.55);
}

.orbit-bubble__inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.03);
}

.orbit-bubble--no-img .orbit-bubble__inner {
    background: linear-gradient(135deg, var(--color-reseda), var(--color-ashgray));
    display: grid;
    place-items: center;
}

.orbit-bubble__fallback {
    font-size: 28px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.7);
}

/* 5 positions du « carousel » orbital : slot 0 = en haut = photo affichée dans la grande bulle */
.orbit-bubble[data-orbit-slot="0"] {
    top: 0%;
    left: 50%;
    --bubble-tilt: translate(-50%, 0) rotate(-5deg);
    transform: var(--bubble-tilt);
    transform-origin: 50% 50%;
    z-index: 6;
    width: clamp(72px, 10.5vw, 94px);
    height: clamp(72px, 10.5vw, 94px);
    --orbit-delay: 0s;
    --orbit-dur: 5.2s;
}

.orbit-bubble[data-orbit-slot="1"] {
    top: 38%;
    left: 6%;
    --bubble-tilt: rotate(-9deg);
    transform: var(--bubble-tilt);
    transform-origin: 50% 50%;
    z-index: 2;
    --orbit-delay: 0.2s;
    --orbit-dur: 5.6s;
}

.orbit-bubble[data-orbit-slot="2"] {
    top: 14%;
    left: 71%;
    --bubble-tilt: rotate(10deg);
    transform: var(--bubble-tilt);
    transform-origin: 50% 50%;
    z-index: 2;
    --orbit-delay: 0.4s;
    --orbit-dur: 5s;
}

.orbit-bubble[data-orbit-slot="3"] {
    top: 70%;
    left: 14%;
    --bubble-tilt: rotate(-7deg);
    transform: var(--bubble-tilt);
    transform-origin: 50% 50%;
    z-index: 2;
    --orbit-delay: 0.6s;
    --orbit-dur: 6s;
}

.orbit-bubble[data-orbit-slot="4"] {
    top: 58%;
    left: 61%;
    --bubble-tilt: rotate(8deg);
    transform: var(--bubble-tilt);
    transform-origin: 50% 50%;
    z-index: 2;
    --orbit-delay: 0.8s;
    --orbit-dur: 5.4s;
}

/* Desktop : agrandissement + déplacement lisibles sur le bouton lui-même (pas seulement l’ombre). */
@media (hover: hover) and (min-width: 721px) {
    .bubble-gallery__orbit .orbit-bubble:hover {
        z-index: 24;
        transform:
            var(--bubble-tilt)
            translate(-5px, -10px)
            scale(1.2);
        transition:
            top 0.62s cubic-bezier(0.4, 0, 0.2, 1),
            left 0.62s cubic-bezier(0.4, 0, 0.2, 1),
            transform 0.4s cubic-bezier(0.33, 1.26, 0.52, 1),
            width 0.5s ease,
            height 0.5s ease,
            z-index 0.15s step-end,
            filter 0.35s ease;
    }

    /* Slot 0 déjà plus large : léger coup de zoom en moins pour ne pas trop déborder. */
    .bubble-gallery__orbit .orbit-bubble[data-orbit-slot="0"]:hover {
        transform:
            var(--bubble-tilt)
            translate(-5px, -10px)
            scale(1.14);
        transition:
            top 0.62s cubic-bezier(0.4, 0, 0.2, 1),
            left 0.62s cubic-bezier(0.4, 0, 0.2, 1),
            transform 0.4s cubic-bezier(0.33, 1.26, 0.52, 1),
            width 0.5s ease,
            height 0.5s ease,
            z-index 0.15s step-end,
            filter 0.35s ease;
    }
}

@media (max-width: 720px) {
    .bubble-gallery__row {
        flex-direction: column;
        align-items: center;
        gap: clamp(20px, 4vh, 32px);
    }

    .bubble-gallery__orbit {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-content: center;
        gap: 12px 14px;
        width: 100%;
        padding-top: 8px;
        padding-bottom: 0;
        min-width: 0;
        min-height: unset;
    }

    /* Sous les grands écrans : vignettes hors du tableau absolu */
    .bubble-gallery__orbit .orbit-bubble {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: clamp(62px, 14vw, 88px) !important;
        height: clamp(62px, 14vw, 88px) !important;
        z-index: auto !important;
    }

    .bubble-gallery__orbit .orbit-bubble[data-orbit-slot="0"] { order: -10; }
    .bubble-gallery__orbit .orbit-bubble[data-orbit-slot="1"] { order: -9; }
    .bubble-gallery__orbit .orbit-bubble[data-orbit-slot="2"] { order: -8; }
    .bubble-gallery__orbit .orbit-bubble[data-orbit-slot="3"] { order: -7; }
    .bubble-gallery__orbit .orbit-bubble[data-orbit-slot="4"] { order: -6; }

    .orbit-bubble:nth-child(n) {
        margin-inline: 4px;
    }

    @media (hover: hover) {
        /* Le transform de base utilise !important pour retirer l’orbit absolu ; le survol doit le réordonner aussi. */
        .bubble-gallery__orbit .orbit-bubble:hover {
            transform: translateY(-8px) scale(1.16) !important;
            transition: transform 0.4s cubic-bezier(0.33, 1.26, 0.52, 1) !important;
            z-index: 15 !important;
        }

        .bubble-gallery__orbit .orbit-bubble[data-orbit-slot="0"]:hover {
            transform: translateY(-6px) scale(1.11) !important;
        }

        .bubble-gallery__orbit .orbit-bubble:hover .orbit-bubble__inner {
            animation: none !important;
        }
    }

    .bubble-gallery__stage {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        grid-template-rows: auto auto;
        gap: 16px 12px;
        align-items: center;
        width: 100%;
        max-width: 420px;
        margin-inline: auto;
    }

    .bubble-gallery__hub {
        grid-column: 1 / -1;
        grid-row: 1;
        width: 100%;
        max-width: 380px;
        margin-inline: auto;
    }

    .bubble-gallery__arrow--prev {
        grid-column: 1;
        grid-row: 2;
        justify-self: end;
    }

    .bubble-gallery__arrow--next {
        grid-column: 3;
        grid-row: 2;
        justify-self: start;
    }

    .bubble-gallery__orbit .orbit-bubble__inner {
        animation: orbitFloatThumb 5s ease-in-out infinite alternate;
    }

    .bubble-gallery__orbit .orbit-bubble:nth-child(1) .orbit-bubble__inner { animation-delay: 0s; }
    .bubble-gallery__orbit .orbit-bubble:nth-child(2) .orbit-bubble__inner { animation-delay: 0.3s; }
    .bubble-gallery__orbit .orbit-bubble:nth-child(3) .orbit-bubble__inner { animation-delay: 0.6s; }
    .bubble-gallery__orbit .orbit-bubble:nth-child(4) .orbit-bubble__inner { animation-delay: 0.9s; }
    .bubble-gallery__orbit .orbit-bubble:nth-child(5) .orbit-bubble__inner { animation-delay: 1.2s; }
}

@keyframes orbitFloatThumb {
    0% { transform: translateY(0); }
    100% { transform: translateY(-4px); }
}

@media (prefers-reduced-motion: reduce) {
    .bubble-gallery__ambient {
        animation: none !important;
    }


    .orbit-bubble {
        transition: none !important;
    }

    .orbit-bubble__inner {
        animation: none !important;
    }

    .bubble-gallery__layer {
        transition: none !important;
    }
}

/* ===========================================
   Section Avis clients — bandeau défilant
   =========================================== */
.reviews {
    position: relative;
    padding: clamp(64px, 10vh, 104px) clamp(24px, 5vw, 64px) clamp(72px, 11vh, 112px);
    background:
        radial-gradient(ellipse 70% 50% at 15% 0%, rgba(117, 137, 118, 0.14), transparent 55%),
        radial-gradient(ellipse 55% 45% at 90% 100%, rgba(158, 131, 184, 0.16), transparent 50%),
        linear-gradient(180deg, var(--color-alabaster-deep) 0%, var(--color-alabaster) 52%, var(--color-alabaster-deep) 100%);
    overflow: hidden;
}

.reviews__intro {
    position: relative;
    z-index: 1;
    max-width: min(900px, 100%);
    margin-bottom: clamp(28px, 4vh, 40px);
}

.reviews__title {
    font-size: clamp(42px, 7.5vw, 96px);
    font-weight: 900;
    line-height: 0.96;
    letter-spacing: -0.04em;
    margin: 0 0 12px;
}

.reviews__lead {
    font-size: clamp(16px, 1.35vw, 19px);
    font-weight: 300;
    font-style: italic;
    color: rgba(10, 10, 10, 0.62);
    margin: 0 0 18px;
}

.reviews__maps-wrap {
    margin: 0;
}

.reviews__maps-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    background: rgba(158, 131, 184, 0.2);
    color: var(--color-violet);
    border: 1px solid rgba(158, 131, 184, 0.38);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.reviews__maps-link svg {
    width: 17px;
    height: 17px;
}

.reviews__maps-link:hover {
    background: rgba(158, 131, 184, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(94, 70, 130, 0.15);
}

.reviews-marquee {
    position: relative;
    overflow: hidden;
    margin-inline: calc(-1 * clamp(24px, 5vw, 64px));
    padding-block: 6px 4px;
    mask-image: linear-gradient(90deg, transparent 0%, #000 3.5%, #000 96.5%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 3.5%, #000 96.5%, transparent 100%);
}

.reviews-marquee__track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: max-content;
    gap: 0;
    animation: reviews-marquee-scroll 110s linear infinite;
    will-change: transform;
}

@keyframes reviews-marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.reviews-marquee__group {
    display: flex;
    flex-shrink: 0;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: clamp(14px, 2.2vw, 22px);
    padding-inline-end: clamp(14px, 2.2vw, 22px);
}

.review-tile {
    flex-shrink: 0;
    width: clamp(260px, 72vw, 360px);
    max-width: min(360px, 85vw);
    margin: 0;
    padding: clamp(12px, 1.8vw, 16px);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow:
        0 14px 36px rgba(40, 30, 60, 0.08),
        0 2px 8px rgba(0, 0, 10, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    display: flex;
    flex-direction: column;
}

.review-tile__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
}

.review-tile__avatar {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(145deg, var(--color-violet) 0%, #c9b6da 100%);
    box-shadow:
        0 2px 10px rgba(94, 70, 130, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.review-tile__stars {
    margin: 0;
    font-size: 13px;
    letter-spacing: 0.08em;
    line-height: 1;
    color: #d4a524;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
}

.review-tile__quote {
    margin: 0;
    padding: 0;
    border: none;
    flex: 0 1 auto;
    max-height: 6.75rem;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 72%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 72%, transparent 100%);
}

.review-tile__quote p {
    font-size: clamp(12px, 0.98vw, 13.5px);
    line-height: 1.42;
    color: rgba(10, 10, 10, 0.82);
    margin: 0 0 6px;
}

.review-tile__quote p:last-child {
    margin-bottom: 0;
}

.review-tile__author {
    flex-shrink: 0;
    margin: 10px 0 0;
    padding-top: 8px;
    border-top: 1px solid rgba(158, 131, 184, 0.2);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(10, 10, 10, 0.45);
}

@media (prefers-reduced-motion: reduce) {
    .reviews-marquee__track {
        animation: none;
    }

    .reviews-marquee {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .reviews-marquee__group--duplicate {
        display: none;
    }
}

/* ===========================================
   Boutique — produits en vente sur place
   =========================================== */
.boutique {
    position: relative;
    padding: clamp(56px, 9vh, 96px) clamp(24px, 5vw, 64px) clamp(64px, 10vh, 104px);
    scroll-margin-top: 5rem;
    background:
        radial-gradient(ellipse 65% 45% at 12% 8%, rgba(158, 131, 184, 0.22), transparent 55%),
        radial-gradient(ellipse 50% 40% at 92% 95%, rgba(204, 187, 219, 0.35), transparent 55%),
        linear-gradient(180deg, var(--color-alabaster) 0%, var(--color-alabaster-deep) 50%, var(--color-alabaster) 100%);
    overflow: hidden;
}

.boutique__inner {
    position: relative;
    z-index: 1;
    max-width: min(1100px, 100%);
    margin: 0 auto;
}

.boutique__title {
    font-size: clamp(38px, 6.5vw, 88px);
    font-weight: 900;
    line-height: 0.96;
    letter-spacing: -0.04em;
    margin: 0 0 14px;
}

.boutique__title .discover-title__highlight::after {
    background-color: var(--color-violet);
    height: 3px;
    bottom: 0.06em;
}

.boutique__title.is-revealed .discover-title__highlight::after {
    transform: scaleX(1);
}

.boutique__lead {
    margin: 0 0 20px;
    max-width: 42rem;
    font-size: clamp(15px, 1.25vw, 18px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.55;
    color: rgba(10, 10, 10, 0.62);
}

.boutique__notice {
    margin: 0 0 clamp(28px, 4vh, 40px);
    padding: 14px 18px;
    border-radius: 12px;
    font-size: clamp(14px, 1.12vw, 16px);
    font-weight: 600;
    line-height: 1.45;
    color: var(--color-text);
    background: linear-gradient(135deg, rgba(158, 131, 184, 0.18) 0%, rgba(204, 187, 219, 0.28) 100%);
    border: 1px solid rgba(158, 131, 184, 0.42);
    box-shadow: 0 8px 28px rgba(94, 70, 130, 0.08);
}

.boutique__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: clamp(16px, 2.4vw, 22px);
}

.boutique__layouts {
    margin-top: 0;
}

.boutique__more-actions {
    display: flex;
    justify-content: center;
    margin-top: clamp(18px, 3.2vw, 28px);
}

.boutique__grid--more {
    margin-top: clamp(20px, 3.6vw, 32px);
}

/* `display:grid` sur .boutique__grid prend le pas sur la règle UA de `[hidden]` */
.boutique__grid.boutique__grid--more[hidden],
#boutique-more[hidden] {
    display: none !important;
}

.boutique-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px clamp(26px, 4vw, 36px);
    border-radius: 999px;
    font-family: inherit;
    font-size: clamp(14px, 1.05vw, 16px);
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg, var(--color-violet) 0%, #8368a8 100%);
    border: none;
    box-shadow:
        0 10px 28px rgba(94, 70, 130, 0.22),
        0 2px 6px rgba(0, 0, 10, 0.06);
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.boutique-more-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow:
        0 14px 34px rgba(94, 70, 130, 0.28),
        0 2px 8px rgba(0, 0, 10, 0.07);
}

.boutique-more-btn:focus-visible {
    outline: 2px solid var(--color-violet);
    outline-offset: 4px;
}

.boutique-more-btn::after {
    content: "";
    width: 0.55em;
    height: 0.55em;
    margin-left: 2px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-0.08em);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.boutique-more-btn[aria-expanded="true"]::after {
    transform: rotate(-135deg) translateY(-0.12em);
}

.boutique-card {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        0 12px 32px rgba(40, 30, 60, 0.07),
        0 1px 4px rgba(0, 0, 10, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transition: transform var(--transition), box-shadow var(--transition);
}

.boutique-card__figure {
    margin: 0;
    position: relative;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.94) 0%, rgba(245, 240, 230, 0.88) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.boutique-card__figure--ambiance {
    background: rgba(30, 28, 26, 0.08);
}

.boutique-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.boutique-card__img--cover {
    object-fit: cover;
    object-position: center 42%;
}

.boutique-card__body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: clamp(14px, 2vw, 18px) clamp(18px, 2.2vw, 22px) clamp(18px, 2.2vw, 22px);
}

.boutique-card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 18px 40px rgba(94, 70, 130, 0.12),
        0 2px 8px rgba(0, 0, 10, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.boutique-card__figure + .boutique-card__body .boutique-card__name {
    margin-top: 0;
}

.boutique-card__name {
    margin: 0 0 10px;
    font-size: clamp(16px, 1.25vw, 18px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--color-text);
}

.boutique-card__hint {
    display: inline;
    font-weight: 500;
    font-size: 0.88em;
    color: rgba(10, 10, 10, 0.5);
}

.boutique-card__desc {
    margin: 0 0 14px;
    flex: 1 1 auto;
    font-size: clamp(13px, 1.05vw, 15px);
    line-height: 1.55;
    color: rgba(10, 10, 10, 0.78);
}

.boutique-card__price {
    margin: 0;
    padding-top: 12px;
    border-top: 1px solid rgba(158, 131, 184, 0.22);
    font-size: clamp(15px, 1.15vw, 17px);
    font-weight: 800;
    color: var(--color-violet);
    letter-spacing: 0.02em;
}

@media (max-width: 540px) {
    .boutique-card:hover {
        transform: none;
    }

    .boutique-more-btn {
        width: 100%;
        max-width: 320px;
    }
}

/* ===========================================
   FAQ — accordéons
   =========================================== */
.faq {
    position: relative;
    scroll-margin-top: 5rem;
    padding: clamp(56px, 9vh, 96px) clamp(24px, 5vw, 64px) clamp(72px, 11vh, 112px);
    background:
        radial-gradient(ellipse 60% 50% at 88% 0%, rgba(117, 137, 118, 0.12), transparent 50%),
        radial-gradient(ellipse 55% 45% at 10% 100%, rgba(158, 131, 184, 0.14), transparent 52%),
        linear-gradient(180deg, var(--color-alabaster-deep) 0%, var(--color-alabaster) 45%, var(--color-alabaster-deep) 100%);
    overflow: hidden;
}

.faq__inner {
    position: relative;
    z-index: 1;
    max-width: min(800px, 100%);
    margin: 0 auto;
}

.faq__eyebrow {
    margin: 0 0 10px;
    font-size: clamp(12px, 1.05vw, 14px);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-violet);
}

.faq__title {
    font-size: clamp(38px, 6.5vw, 88px);
    font-weight: 900;
    line-height: 0.96;
    letter-spacing: -0.04em;
    margin: 0 0 14px;
}

.faq__title .discover-title__highlight::after {
    background-color: var(--color-violet);
    height: 3px;
    bottom: 0.06em;
}

.faq__title.is-revealed .discover-title__highlight::after {
    transform: scaleX(1);
}

.faq__lead {
    margin: 0 0 clamp(24px, 3.6vh, 36px);
    font-size: clamp(15px, 1.25vw, 18px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.55;
    color: rgba(10, 10, 10, 0.62);
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: clamp(11px, 1.8vw, 14px);
}

.faq-item {
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.78);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow:
        0 8px 26px rgba(40, 30, 60, 0.06),
        0 1px 4px rgba(0, 0, 10, 0.04);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item[open] {
    border-color: rgba(158, 131, 184, 0.35);
    animation: faqItemOpen 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.faq-item__summary {
    list-style: none;
    cursor: pointer;
    padding: clamp(14px, 2.2vw, 18px) clamp(42px, 8vw, 48px) clamp(14px, 2.2vw, 18px) clamp(16px, 2.6vw, 20px);
    font-size: clamp(15px, 1.2vw, 17px);
    font-weight: 700;
    line-height: 1.42;
    letter-spacing: -0.02em;
    color: var(--color-text);
    position: relative;
    user-select: none;
}

.faq-item__summary::-webkit-details-marker {
    display: none;
}

.faq-item__summary::marker {
    content: '';
}

.faq-item__summary::after {
    content: "";
    position: absolute;
    right: clamp(14px, 3vw, 20px);
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2.5px solid var(--color-violet);
    border-bottom: 2.5px solid var(--color-violet);
    margin-top: -6px;
    transform: rotate(45deg);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item[open] .faq-item__summary::after {
    transform: rotate(-135deg);
    margin-top: -3px;
}

.faq-item__summary:hover {
    color: var(--color-violet);
}

@keyframes faqBodyReveal {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes faqItemOpen {
    from {
        transform: translateY(-1px);
        box-shadow:
            0 8px 26px rgba(40, 30, 60, 0.06),
            0 1px 4px rgba(0, 0, 10, 0.04);
    }
    to {
        transform: translateY(0);
        box-shadow:
            0 12px 32px rgba(94, 70, 130, 0.1),
            0 1px 6px rgba(0, 0, 10, 0.05);
    }
}

.faq-item[open] > .faq-item__body {
    animation: faqBodyReveal 0.48s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    transform-origin: top center;
}

.faq-item__body {
    padding: 0 clamp(16px, 2.6vw, 20px) clamp(16px, 2.4vw, 20px);
    border-top: 1px solid rgba(158, 131, 184, 0.15);
}

.faq-item__body p {
    margin: 0 0 12px;
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 1.62;
    color: rgba(10, 10, 10, 0.84);
}

.faq-item__body p:last-child {
    margin-bottom: 0;
}

.faq-item__body strong {
    color: var(--color-text);
    font-weight: 700;
}

.faq-item__summary:focus-visible {
    outline: 2px solid var(--color-violet);
    outline-offset: -2px;
    border-radius: 14px;
}

@media (prefers-reduced-motion: reduce) {
    .faq-item__summary::after {
        transition-duration: 0.01ms;
    }

    .faq-item[open] {
        animation: none;
        box-shadow:
            0 12px 32px rgba(94, 70, 130, 0.1),
            0 1px 6px rgba(0, 0, 10, 0.05);
    }

    .faq-item[open] > .faq-item__body {
        animation: none;
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    /* Accueil reste fixed + body::before 100vh (comme bureau) pour que Découverte passe au-dessus au scroll. */

    .discover-grid {
        grid-template-columns: 1fr;
        gap: clamp(34px, 5vw, 52px);
    }

    .discover-photo {
        transform: rotate(-0.5deg);
        max-width: 480px;
        margin: 0 auto;
    }

    .discover-paw {
        display: none;
    }

    /* Loyalty responsive */
    .loyalty__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .loyalty__cards {
        max-width: 460px;
        margin: 0 auto;
        width: 100%;
    }

    .loyalty__content h3 + p {
        padding-left: 0;
    }

    /* Bas de page sans bande grise ; padding explicite pour écraser le shorthand (32px) du bureau */
    .page {
        padding-top: clamp(10px, 2.2vw, 18px);
        padding-inline: clamp(14px, 4.5vw, 40px);
        padding-bottom: max(0px, env(safe-area-inset-bottom, 0px));
    }

    /* Contact-rail est DANS <main.hero> : absolute en bas = superposition réelle sur le chien */
    .hero {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        flex: 1;
        min-height: 0;
        padding-bottom: 0;
        overflow: visible;
    }

    .hero-content {
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        row-gap: 0;
        text-align: left;
        padding-right: 0;
        flex: 0 0 auto;
        position: relative;
        z-index: 4;
    }

    .hero-title {
        font-size: clamp(48px, 12vw, 90px);
        white-space: normal;
    }

    .hero-quote {
        margin-block: 0;
        line-height: 1.1;
        margin-bottom: clamp(6px, 1.8vw, 11px);
    }

    .hero-address {
        margin-top: 0;
        margin-bottom: 0;
        max-width: 100%;
    }

    /* Fixée au viewport : sur Chrome iOS le bas du <main> peut être sous la barre d’outils si on reste en absolute dans le hero 100vh */
    .contact-rail {
        position: fixed;
        left: 0;
        right: 0;
        bottom: calc(10px + env(safe-area-inset-bottom, 0px));
        top: auto;
        width: 100%;
        max-width: none;
        transform: none;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: clamp(12px, 3.5vw, 20px);
        margin: 0;
        padding-block: 8px;
        padding-inline: max(12px, env(safe-area-inset-left, 0px)) max(12px, env(safe-area-inset-right, 0px));
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        z-index: 14;
        pointer-events: auto;
        box-sizing: border-box;
    }

    .hero-image {
        order: 2;
        position: relative;
        z-index: 1;
        left: auto;
        right: auto;
        top: auto;
        transform: none;
        pointer-events: none;
        align-self: stretch;
        width: calc(100% + 2 * clamp(14px, 3.8vw, 24px));
        max-width: none;
        margin-top: auto;
        margin-inline: calc(-1 * clamp(14px, 3.8vw, 22px));
        margin-bottom: 0;
        flex: 1 1 0%;
        min-height: 0;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        overflow: visible;
    }

    .hero-image img {
        display: block;
        width: auto;
        max-width: min(165vw, 640px);
        margin: 0;
        padding: 0;
        height: auto;
        max-height: min(78vh, 100%);
        max-height: min(78dvh, 100%);
        object-fit: contain;
        object-position: center bottom;
        flex-shrink: 0;
        filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.12));
    }

    .contact-rail .contact-item {
        background-color: rgba(255, 255, 255, 0.9);
        box-shadow: 0 2px 14px rgba(0, 0, 0, 0.25);
    }

    .contact-item::before,
    .contact-item::after {
        display: none;
    }
}

@media (max-width: 720px) {
    .page {
        padding-top: clamp(12px, 3vw, 20px);
        padding-inline: clamp(14px, 5vw, 22px);
        padding-bottom: max(0px, env(safe-area-inset-bottom, 0px));
    }

    .nav-toggle {
        display: flex;
    }

    .nav-list {
        position: fixed;
        inset: 0;
        background: linear-gradient(135deg, #ededed 0%, #c6c6c6 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 15;
    }

    .nav-list.is-open {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 22px;
        font-weight: 600;
    }

    .hero-title {
        font-size: clamp(42px, 13vw, 70px);
    }

    .hero-quote {
        font-size: 19px;
    }

    .btn-discover {
        width: 100%;
        min-width: 0;
    }

    /* Même borne qu’au-dessus : pas de très grande hauteur en vh seule sous 720 px */
    .hero-image img {
        max-height: min(82vh, 100%);
        max-height: min(82dvh, 100%);
    }
}

@media (max-width: 420px) {
    .logo img {
        height: 56px;
    }

    .hero-title {
        font-size: 44px;
    }
}

/* ===========================================
   Contact — infos + formulaire
   =========================================== */
.contact-zone {
    position: relative;
    scroll-margin-top: 6rem;
    padding: clamp(56px, 9vh, 100px) clamp(24px, 5vw, 64px) clamp(80px, 14vh, 120px);
    background:
        radial-gradient(ellipse 70% 50% at 8% 20%, rgba(158, 131, 184, 0.16), transparent 55%),
        radial-gradient(ellipse 65% 50% at 95% 80%, rgba(117, 137, 118, 0.12), transparent 52%),
        linear-gradient(180deg, var(--color-alabaster) 0%, var(--color-alabaster-deep) 45%, var(--color-alabaster) 100%);
    overflow: hidden;
}

.contact-zone__inner {
    max-width: min(1140px, 100%);
    margin: 0 auto;
}

.contact-zone__eyebrow {
    margin: 0 0 8px;
    font-size: clamp(12px, 1.05vw, 14px);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-violet);
}

.contact-zone__title {
    margin: 0 0 12px;
    font-size: clamp(36px, 6.2vw, 84px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: var(--color-text);
}

.contact-zone__title .discover-title__highlight::after {
    background-color: var(--color-violet);
    height: 3px;
    bottom: 0.06em;
}

.contact-zone__title.is-revealed .discover-title__highlight::after {
    transform: scaleX(1);
}

.contact-zone__title-rest {
    font-weight: 600;
    font-size: clamp(22px, 3.4vw, 38px);
    letter-spacing: -0.03em;
    color: rgba(10, 10, 10, 0.78);
}

.contact-zone__lead {
    margin: 0 0 clamp(28px, 4vh, 40px);
    max-width: 40rem;
    font-size: clamp(15px, 1.25vw, 18px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.55;
    color: rgba(10, 10, 10, 0.62);
}

.contact-zone__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(28px, 4vw, 48px);
    align-items: start;
}

.contact-zone__hours {
    margin: 0 0 18px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 1.55;
    color: rgba(10, 10, 10, 0.85);
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(158, 131, 184, 0.22);
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.contact-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    background: rgba(255, 255, 255, 0.78);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 6px 22px rgba(40, 30, 60, 0.06);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.contact-card:hover {
    transform: translateY(-2px);
    border-color: rgba(158, 131, 184, 0.35);
    box-shadow: 0 12px 32px rgba(94, 70, 130, 0.12);
}

.contact-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(158, 131, 184, 0.22) 0%, rgba(204, 187, 219, 0.35) 100%);
    color: var(--color-violet);
}

.contact-card__icon svg {
    width: 22px;
    height: 22px;
}

.contact-card__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.contact-card__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(10, 10, 10, 0.45);
}

.contact-card__value {
    font-size: clamp(13px, 1.05vw, 15px);
    font-weight: 600;
    line-height: 1.38;
    color: var(--color-text);
    word-break: break-word;
}

.contact-card__hint {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-violet);
}

.contact-zone__map-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    min-height: 200px;
    border: 1px solid rgba(158, 131, 184, 0.25);
    box-shadow:
        0 14px 40px rgba(40, 30, 60, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.contact-zone__map-iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-zone__form-wrap {
    padding: clamp(22px, 3vw, 28px);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow:
        0 18px 50px rgba(40, 30, 60, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.95) inset;
}

.contact-form__heading {
    margin: 0 0 10px;
    font-size: clamp(20px, 1.6vw, 24px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

.contact-form__intro {
    margin: 0 0 22px;
    font-size: clamp(13px, 1.06vw, 15px);
    line-height: 1.58;
    color: rgba(10, 10, 10, 0.64);
}

.contact-form__intro a {
    font-weight: 600;
    color: var(--color-violet);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-form__intro a:hover {
    color: #7a6594;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form__row {
    display: grid;
    gap: 16px;
}

.contact-form__row--2 {
    grid-template-columns: 1fr 1fr;
}

.contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form__field--checkbox {
    margin-top: 4px;
}

.contact-form__label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(10, 10, 10, 0.72);
}

.contact-form__optional {
    font-weight: 500;
    font-style: italic;
    color: rgba(10, 10, 10, 0.45);
    letter-spacing: 0;
}

.contact-form__input,
.contact-form__textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 11px;
    border: 1px solid rgba(10, 10, 10, 0.12);
    background: rgba(255, 255, 255, 0.95);
    font-family: inherit;
    font-size: 15px;
    line-height: 1.45;
    color: var(--color-text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form__input:hover,
.contact-form__textarea:hover {
    border-color: rgba(158, 131, 184, 0.45);
}

.contact-form__input:focus-visible,
.contact-form__textarea:focus-visible,
.contact-form__select:focus-visible {
    outline: none;
    border-color: var(--color-violet);
    box-shadow: 0 0 0 3px rgba(158, 131, 184, 0.22);
}

.contact-form__select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239E83B8' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.contact-form__checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(10, 10, 10, 0.78);
    cursor: pointer;
}

.contact-form__checkbox {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--color-violet);
    cursor: pointer;
}

.contact-form__legal {
    margin: 0;
    font-size: 11px;
    line-height: 1.55;
    color: rgba(10, 10, 10, 0.48);
}

.contact-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    align-self: flex-start;
    margin-top: 4px;
    min-height: 50px;
    padding: 0 clamp(28px, 4vw, 40px);
    border: none;
    border-radius: 999px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(135deg, var(--color-violet) 0%, #8368a8 100%);
    box-shadow:
        0 12px 32px rgba(94, 70, 130, 0.28),
        0 2px 6px rgba(0, 0, 10, 0.06);
    transition: transform var(--transition), filter var(--transition), box-shadow var(--transition);
}

.contact-form__submit:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow:
        0 16px 38px rgba(94, 70, 130, 0.34),
        0 2px 8px rgba(0, 0, 10, 0.07);
}

.contact-form__submit-icon {
    width: 18px;
    height: 18px;
}

.contact-form__feedback {
    margin: 4px 0 0;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(10, 10, 10, 0.78);
    background: rgba(204, 187, 219, 0.35);
    border: 1px solid rgba(158, 131, 184, 0.28);
}

.contact-form__feedback--on {
    animation: contactFeedbackIn 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

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

.contact-form--error .contact-form__input:invalid,
.contact-form--error .contact-form__textarea:invalid {
    border-color: #c45c5c;
}

@media (max-width: 960px) {
    .contact-zone__grid {
        grid-template-columns: 1fr;
    }

    .contact-form__row--2 {
        grid-template-columns: 1fr;
    }

    .contact-card:hover {
        transform: none;
    }
}

@media (max-width: 540px) {
    .contact-card {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
    }

    .contact-card__hint {
        grid-column: 1 / -1;
        margin-top: 4px;
    }

    .contact-form__submit {
        width: 100%;
        align-self: stretch;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-form__feedback--on {
        animation: none;
    }

    .contact-card:hover {
        transform: none;
    }
}

/* ===========================================
   Pied de page
   =========================================== */
.site-footer {
    position: relative;
    z-index: 2;
    color: rgba(235, 229, 217, 0.92);
    background:
        radial-gradient(ellipse 120% 80% at 50% 120%, rgba(158, 131, 184, 0.22), transparent 55%),
        linear-gradient(180deg, #2d2834 0%, #1f1b24 50%, #1a171e 100%);
    border-top: 1px solid rgba(158, 131, 184, 0.22);
}

.site-footer__inner {
    max-width: min(1200px, 100%);
    margin: 0 auto;
    padding: clamp(48px, 9vh, 80px) clamp(24px, 5vw, 56px)
        clamp(32px, 6vh, 48px);
}

.site-footer__cols {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 1fr 0.75fr;
    gap: clamp(28px, 4vw, 44px);
    padding-bottom: clamp(32px, 5vh, 48px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__logo-wrap {
    display: inline-block;
    transition: opacity var(--transition), transform var(--transition);
}

.site-footer__logo-wrap:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.site-footer__logo {
    height: clamp(62px, 10vw, 88px);
    width: auto;
    object-fit: contain;
    filter: brightness(1.08);
}

.site-footer__tagline {
    margin: 14px 0 6px;
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.5;
    color: rgba(204, 187, 219, 0.88);
    max-width: 18rem;
}

.site-footer__baseline {
    margin: 0 0 14px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(235, 229, 217, 0.55);
}

.site-footer__to-top {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-lavender);
    text-decoration: none;
    border-bottom: 1px solid rgba(204, 187, 219, 0.35);
    padding-bottom: 2px;
    transition: color var(--transition), border-color var(--transition);
}

.site-footer__to-top:hover {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.45);
}

.site-footer__heading {
    margin: 0 0 14px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(235, 229, 217, 0.45);
}

.site-footer__nav-block .site-footer__links {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
    list-style: none;
}

.site-footer__links a {
    font-size: 14px;
    font-weight: 600;
    color: rgba(235, 229, 217, 0.88);
    text-decoration: none;
    transition: color var(--transition), transform var(--transition);
}

.site-footer__links a:hover {
    color: #fff;
    transform: translateX(4px);
}

.site-footer__address {
    margin: 0 0 16px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.55;
    color: rgba(235, 229, 217, 0.82);
}

.site-footer__address strong {
    color: #fff;
    font-weight: 800;
}

.site-footer__reach-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer__reach-list li {
    min-width: 0;
}

.site-footer__reach-list a {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    column-gap: 6px;
    row-gap: 2px;
    min-width: 0;
    max-width: 100%;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-lavender);
    text-decoration: none;
    transition: color var(--transition);
}

.site-footer__reach-list a > span:first-of-type {
    flex-shrink: 0;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(235, 229, 217, 0.45);
    min-width: 2.4rem;
}

.site-footer__reach-list a:hover {
    color: #fff;
}

.site-footer__reach-text {
    flex: 1 1 100%;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
    line-height: 1.45;
}

/* Téléphone : reste compact sur une ligne tant qu’il y a la place */
.site-footer__reach-list li:first-child .site-footer__reach-text {
    flex: 0 1 auto;
    flex-grow: 0;
}

.site-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.site-footer__social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    color: rgba(235, 229, 217, 0.95);
    background: rgba(158, 131, 184, 0.18);
    border: 1px solid rgba(158, 131, 184, 0.35);
    transition: transform var(--transition), background 0.25s ease, border-color 0.25s ease;
}

.site-footer__social-btn svg {
    width: 21px;
    height: 21px;
}

.site-footer__social-btn:hover {
    transform: translateY(-3px);
    background: rgba(158, 131, 184, 0.32);
    border-color: rgba(235, 229, 217, 0.35);
    color: #fff;
}

.site-footer__social-caption {
    margin: 0;
    font-size: 12px;
    line-height: 1.52;
    color: rgba(235, 229, 217, 0.52);
}

.site-footer__legal-strip {
    padding-top: clamp(24px, 4vw, 32px);
}

.site-footer__legal-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
    gap: clamp(14px, 2vw, 18px);
    margin-bottom: 20px;
}

.site-footer__legal-detail {
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.site-footer__legal-summary {
    list-style: none;
    cursor: pointer;
    padding: 13px 16px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(204, 187, 219, 0.95);
    transition: background 0.22s ease;
}

.site-footer__legal-summary::-webkit-details-marker {
    display: none;
}

.site-footer__legal-summary:hover {
    background: rgba(255, 255, 255, 0.06);
}

.site-footer__legal-body {
    padding: 12px 16px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.site-footer__legal-body p {
    margin: 0 0 10px;
    font-size: 12px;
    line-height: 1.58;
    color: rgba(235, 229, 217, 0.66);
}

.site-footer__legal-body p:last-child {
    margin-bottom: 0;
}

.site-footer__legal-body a {
    color: var(--color-lavender);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.site-footer__legal-body a:hover {
    color: #fff;
}

.site-footer__copy {
    margin: 0;
    font-size: 11px;
    line-height: 1.56;
    text-align: center;
    letter-spacing: 0.03em;
    color: rgba(235, 229, 217, 0.38);
}

.site-footer__credit {
    margin: 14px 0 0;
    font-size: 11px;
    line-height: 1.56;
    text-align: center;
    letter-spacing: 0.03em;
    color: rgba(235, 229, 217, 0.34);
}

.site-footer__credit-link {
    color: var(--color-lavender);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
}

.site-footer__credit-link:hover {
    color: #fff;
}

@media (max-width: 980px) {
    .site-footer__cols {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }

    .site-footer__social-block {
        grid-column: 1 / -1;
    }
}

@media (max-width: 540px) {
    .site-footer__inner {
        padding: clamp(24px, 6vh, 36px) clamp(14px, 4vw, 18px)
            clamp(20px, 5vh, 32px);
    }

    /* Deux colonnes : navigation à côté de « nous joindre » (footer moins « interminable ») */
    .site-footer__cols {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(12px, 3.5vw, 18px) clamp(14px, 4vw, 18px);
        padding-bottom: clamp(18px, 4vh, 26px);
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }

    .site-footer__logo {
        height: clamp(50px, 14vw, 62px);
    }

    .site-footer__heading {
        margin-bottom: 8px;
        font-size: 10.5px;
        letter-spacing: 0.12em;
    }

    .site-footer__baseline {
        margin-bottom: 8px;
    }

    .site-footer__to-top {
        font-size: 12px;
    }

    .site-footer__address {
        margin-bottom: 8px;
        font-size: 12.5px;
        line-height: 1.45;
    }

    .site-footer__legal-summary {
        padding: 9px 10px;
        font-size: 10.5px;
        letter-spacing: 0.04em;
        text-align: center;
    }

    .site-footer__legal-cards {
        gap: 8px;
    }

    .site-footer__links a:hover {
        transform: none;
    }

    .site-footer__social-btn:hover {
        transform: none;
    }
}

/* ---------- Mobile : pas de mini-repère + marges lisibles ---------- */
@media (max-width: 900px) {
    .site-spy-nav,
    .site-spy-nav.is-visible {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
        opacity: 0 !important;
    }
}

@media (max-width: 720px) {
    /* Photo Découverte : pas de rotation finale (animation forwards écraserait sinon le transform mobile). */
    @keyframes revealPhoto {
        from {
            opacity: 0;
            transform: translateY(26px);
        }
        to {
            opacity: 1;
            transform: none;
        }
    }

    .page-next__container {
        padding-top: clamp(38px, 7.5vh, 68px);
        padding-bottom: clamp(42px, 8vh, 76px);
        padding-inline: clamp(16px, 4.2vw, 24px);
    }

    .discover-title {
        font-size: clamp(38px, 10.5vw, 58px);
        line-height: 1;
        margin-bottom: clamp(14px, 3.8vw, 22px);
    }

    .actualite-band {
        margin-bottom: clamp(20px, 5vw, 34px);
    }

    .actualite-band__heading {
        font-size: clamp(22px, 6.5vw, 32px);
    }

    .discover-subtitle {
        position: relative;
        z-index: 2;
        margin-bottom: clamp(26px, 6vw, 40px);
        max-width: none;
        line-height: 1.35;
    }

    .discover-grid {
        gap: clamp(28px, 6vw, 42px);
        margin-bottom: clamp(36px, 8vh, 56px);
    }

    .discover-photo {
        transform: none;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        z-index: 1;
    }

    .discover-photo:hover {
        transform: none;
    }

    .discover-photo__tag {
        position: static;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 14px;
        align-self: flex-start;
        max-width: 100%;
        border-radius: 14px;
        flex-wrap: wrap;
    }

    .discover-intro {
        gap: 16px;
        padding-top: 4px;
    }

    .discover-intro p {
        line-height: 1.65;
        font-size: clamp(15px, 3.8vw, 17px);
    }

    .discover-story {
        padding: clamp(22px, 5vw, 28px) clamp(18px, 4.2vw, 24px);
    }

    .discover-story__label {
        margin-bottom: 16px;
    }

    .discover-story__lead {
        margin-bottom: 16px;
        font-size: clamp(15px, 3.9vw, 17px);
    }

    .discover-story__bullets {
        gap: 12px;
    }

    .loyalty {
        padding: clamp(48px, 8vh, 88px) clamp(16px, 4.2vw, 24px);
    }

    .loyalty__title {
        margin-bottom: clamp(26px, 4vh, 40px);
    }

    .gallery {
        padding: clamp(52px, 9vh, 92px) clamp(16px, 4.2vw, 24px);
    }

    .gallery__title {
        font-size: clamp(38px, 11vw, 64px);
    }

    .reviews {
        padding: clamp(52px, 8.5vh, 92px) clamp(16px, 4.2vw, 24px)
            clamp(60px, 9.5vh, 96px);
    }

    .reviews__title {
        font-size: clamp(34px, 8.8vw, 52px);
    }

    .reviews-marquee {
        margin-inline: calc(-1 * clamp(16px, 4.2vw, 22px));
    }

    .boutique {
        padding: clamp(48px, 8.5vh, 88px) clamp(16px, 4.2vw, 24px)
            clamp(56px, 9vh, 96px);
    }

    .boutique__title,
    .faq__title {
        font-size: clamp(32px, 8.6vw, 52px);
    }

    .faq {
        padding: clamp(48px, 8.5vh, 88px) clamp(16px, 4.2vw, 24px)
            clamp(58px, 9.5vh, 96px);
    }

    .faq-item__summary {
        display: flex;
        align-items: center;
        min-height: 48px;
        padding-block: 16px;
        padding-left: clamp(16px, 3.8vw, 20px);
        padding-right: clamp(42px, 10vw, 48px);
    }

    .contact-zone {
        padding: clamp(44px, 8vh, 80px) clamp(16px, 4.2vw, 24px)
            clamp(56px, 10vh, 104px);
    }

    .contact-zone__title {
        font-size: clamp(32px, 8.8vw, 52px);
    }

    .site-footer__inner {
        padding: clamp(32px, 6.5vh, 54px) clamp(16px, 4.2vw, 22px)
            clamp(22px, 5vh, 38px);
    }

    .site-footer__cols {
        gap: clamp(16px, 4vw, 26px);
    }

    /* Plus d’éléments par ligne lisibles au téléphone */
    .site-footer__tagline br {
        display: none;
    }

    .site-footer__tagline {
        margin-top: 10px;
        max-width: none;
        font-size: 13px;
        line-height: 1.4;
    }

    .site-footer__nav-block .site-footer__links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 5px 8px;
    }

    .site-footer__links a {
        font-size: 13px;
        line-height: 1.35;
        display: block;
    }

    .site-footer__reach-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5px 8px;
    }

    .site-footer__reach-list li:nth-child(2) {
        grid-column: 1 / -1;
    }

    .site-footer__reach-list li:last-child {
        grid-column: 1 / -1;
    }

    .site-footer__reach-list a {
        font-size: 12px;
        line-height: 1.35;
        overflow-wrap: anywhere;
    }

    .site-footer__legal-cards {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 10px;
    }

    /* Icônes + courte phrase sur la même zone */
    .site-footer__social-block {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        column-gap: 12px;
        row-gap: 6px;
    }

    .site-footer__social-block > .site-footer__heading {
        flex: 1 1 100%;
        margin-bottom: 2px;
    }

    .site-footer__social {
        flex: 0 0 auto;
        margin-bottom: 0;
    }

    .site-footer__social-caption {
        flex: 1 1 min(220px, 100%);
        min-width: 0;
        font-size: 11px;
        line-height: 1.42;
        margin: 0;
    }
}

/* ---------- Mini-navigation (position dans la page) ---------- */
.site-spy-nav {
    position: fixed;
    z-index: 12;
    top: clamp(86px, 11vh, 116px);
    right: clamp(12px, 2.8vw, 26px);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    max-width: min(220px, 42vw);
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(235, 229, 217, 0.72);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 24px rgba(10, 10, 10, 0.08), 0 0 0 1px rgba(158, 131, 184, 0.18);
    font-size: clamp(11px, 2.9vw, 13px);
    color: var(--color-text);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition:
        opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.32s step-end,
        transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-spy-nav.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
        opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0s step-start,
        transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-spy-nav__readout {
    margin: 0;
    text-align: right;
    line-height: 1.35;
    font-weight: 500;
}

.site-spy-nav__hint {
    display: block;
    opacity: 0.62;
    font-size: 0.92em;
    font-weight: 500;
}

.site-spy-nav__current {
    display: block;
    font-weight: 700;
    font-size: 1.06em;
    color: var(--color-violet);
    letter-spacing: -0.02em;
}

.site-spy-nav__dots {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.site-spy-nav__dots > li {
    margin: 0;
    padding: 0;
}

.site-spy-nav__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    border-radius: 999px;
    transition: transform var(--transition), opacity var(--transition);
}

.site-spy-nav__link:hover:not(.is-active) .site-spy-nav__dot {
    opacity: 0.75;
    transform: scale(1.06);
}

.site-spy-nav__dot {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(10, 10, 10, 0.28);
    background: transparent;
    box-sizing: border-box;
    opacity: 0.45;
    transition:
        opacity var(--transition),
        transform var(--transition),
        background-color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.site-spy-nav__link.is-active .site-spy-nav__dot {
    opacity: 1;
    background: var(--color-violet);
    border-color: rgba(158, 131, 184, 0.95);
    transform: scale(1.22);
    box-shadow: 0 0 0 4px rgba(158, 131, 184, 0.22);
}

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

:focus-visible {
    outline: 2px solid #0a0a0a;
    outline-offset: 3px;
    border-radius: 4px;
}

/* Curseur personnalisé — petite patte (souris / trackpad précis ; pas tactile) */
@media (hover: hover) and (pointer: fine) {
    @media (prefers-reduced-motion: no-preference) {
        html {
            cursor:
                url("images/paw-cursor.svg") 14 23,
                auto;
        }

        input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="range"]):not([type="color"]):not([type="file"]):not([type="hidden"]):not([type="image"]),
        textarea,
        select {
            cursor: text;
        }
    }
}
