#pageAttente {
    display: none;
}

:root{
    --blue: #0674BB;
    --blue-dark: #075A93;
    --blue-light: #E8F3FB;
    --green: #B0D139;
    --green-dark: #8FAE2B;
    --green-light: #F2F8E4;
    --ink: #223038;
    --gray: #6B7075;
    --paper: #FCFDFB;
    --paper-alt: #F4F8F3;
    --line: #E3EAE6;
    --radius-lg: 28px;
    --radius-md: 18px;
    --shadow-soft: 0 16px 40px -18px rgba(6, 90, 147, 0.22);
    --shadow-card: 0 10px 26px -14px rgba(34, 48, 56, 0.16);
}



*{ box-sizing: border-box; }

html{
    scroll-behavior: smooth;
}

body{
    margin: 0;
    min-height: 100vh;
    background: var(--paper);
    color: var(--ink);
    font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ---------- Ambient background ---------- */
.bg-shape{
    position: fixed;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}
.bg-shape--blue{
    width: clamp(280px, 40vw, 560px);
    height: clamp(280px, 40vw, 560px);
    top: -12%;
    left: -14%;
    background: radial-gradient(circle at 30% 30%, rgba(6,116,187,0.16), rgba(6,116,187,0) 70%);
}
.bg-shape--green{
    width: clamp(260px, 38vw, 520px);
    height: clamp(260px, 38vw, 520px);
    bottom: -16%;
    right: -12%;
    background: radial-gradient(circle at 60% 60%, rgba(176,209,57,0.20), rgba(176,209,57,0) 70%);
}

/* ---------- Layout ---------- */
.page{
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(28px, 6vw, 64px) clamp(20px, 5vw, 48px) 40px;
}

/* ---------- Hero ---------- */
.hero{
    text-align: center;
    padding-top: clamp(20px, 5vh, 56px);
}

.logo{
    max-width: min(280px, 70vw);
    height: auto;
    margin: 0 auto 8px;
    display: block;
    opacity: 0;
    transform: translateY(14px);
    animation: rise 0.7s ease-out 0.05s forwards;
}

.eyebrow{
    font-family: "Caveat", cursive;
    font-weight: 600;
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    color: var(--blue);
    margin: 4px 0 2px;
    opacity: 0;
    transform: translateY(14px);
    animation: rise 0.7s ease-out 0.2s forwards;
}

.hero h1{
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
    font-size: clamp(1.9rem, 4.4vw, 2.9rem);
    margin: 0 0 18px;
    color: var(--ink);
    opacity: 0;
    transform: translateY(14px);
    animation: rise 0.7s ease-out 0.32s forwards;
}

.hero h1 span{
    color: var(--green-dark);
}

.hero p{
    max-width: 560px;
    margin: 0 auto;
    font-size: clamp(1rem, 1.6vw, 1.14rem);
    line-height: 1.65;
    color: var(--gray);
    opacity: 0;
    transform: translateY(14px);
    animation: rise 0.7s ease-out 0.44s forwards;
}

@keyframes rise{
    to{ opacity: 1; transform: translateY(0); }
}

/* ---------- Signature smile-arc divider ---------- */
.divider{
    display: flex;
    justify-content: center;
    margin: clamp(32px, 6vw, 56px) 0;
}
.divider svg{
    width: 200px;
    height: auto;
    overflow: visible;
}
.divider path{
    fill: none;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 340;
    stroke-dashoffset: 340;
    animation: draw 1.3s ease-out 0.6s forwards;
}
.divider .arc-blue{ stroke: var(--blue); }
.divider .arc-green{ stroke: var(--green); animation-delay: 0.85s; }
@keyframes draw{
    to{ stroke-dashoffset: 0; }
}

/* ---------- Info cards ---------- */
.info-grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: clamp(36px, 6vw, 56px);
}

@media (min-width: 640px){
    .info-grid{ grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px){
    .info-grid{ grid-template-columns: repeat(4, 1fr); gap: 22px; }
}

.card{
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 26px 22px;
    text-align: left;
    box-shadow: var(--shadow-card);
    opacity: 0;
    transform: translateY(18px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card.is-visible{
    animation: rise 0.6s ease-out forwards;
}
.card:hover{
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.card-icon{
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.card:nth-child(odd) .card-icon{ background: var(--blue-light); }
.card:nth-child(even) .card-icon{ background: var(--green-light); }
.card:nth-child(odd) .card-icon svg{ stroke: var(--blue); }
.card:nth-child(even) .card-icon svg{ stroke: var(--green-dark); }

.card h3{
    font-family: "Quicksand", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--ink);
}

.card p{
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray);
}

.card a.card-link{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--blue);
}
.card:nth-child(even) a.card-link{ color: var(--green-dark); }
.card a.card-link:hover{ text-decoration: underline; }

/* ---------- Practitioner ---------- */
.practitioner{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    text-align: left;
    background: var(--paper-alt);
    border-radius: var(--radius-lg);
    padding: 26px clamp(22px, 5vw, 40px);
    margin-bottom: clamp(32px, 6vw, 48px);
    opacity: 0;
    transform: translateY(18px);
}
.practitioner.is-visible{ animation: rise 0.6s ease-out forwards; }

.practitioner-badge{
    width: 54px;
    height: 54px;
    flex: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
}

.practitioner-text h4{
    margin: 0 0 2px;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--ink);
}
.practitioner-text p{
    margin: 0;
    color: var(--gray);
    font-size: 0.95rem;
}

/* ---------- Footer ---------- */
footer{
    text-align: center;
    color: var(--gray);
    font-size: 0.85rem;
    padding-top: 8px;
    border-top: 1px solid var(--line);
}
footer strong{ color: var(--ink); }

@media (prefers-reduced-motion: reduce){
    .logo, .eyebrow, .hero h1, .hero p, .card, .practitioner{
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    .divider path{
        animation: none !important;
        stroke-dashoffset: 0 !important;
    }
}

@media(max-width: 400px) {
    .card p{
        word-break: break-all;
    }
}