/* =============================================================
   PEDAN KINÉSIOLOGIE — main.css
   ============================================================= */

/* ── VARIABLES ── */
:root {
    --navy:    #1A4789;
    --mid:     #5A72AF;
    --mint:    #E0F1EF;
    --mint-d:  #C2E4DF;
    --cream:   #F8F9FC;
    --white:   #FFFFFF;
    --charcoal:#1C2A3A;
    --muted:   #5B6E85;
    --sand:    #EEF2F8;
    --border:  rgba(26,71,137,.1);

    /* Typographie fluide */
    --fs-h1:   clamp(2.2rem, 5.5vw, 4.6rem);
    --fs-h2:   clamp(1.7rem, 3.5vw, 2.8rem);
    --fs-h3:   clamp(1.05rem, 2vw, 1.35rem);
    --fs-body: clamp(1rem, 1.2vw, 1.05rem);
    --fs-sm:   clamp(1rem, 1vw, 1rem);

    /* Espacement fluide */
    --section-py: clamp(56px, 8vw, 96px);
    --section-px: clamp(20px, 5vw, 80px);
    --gap-grid:   clamp(14px, 2vw, 24px);

    /* Radius */
    --r: 3px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Lato', system-ui, sans-serif;
    font-weight: 300;
    font-size: var(--fs-body);
    background: #e8ecf2;
    color: var(--charcoal);
    line-height: 1.65;
    overflow-x: hidden;
    min-width: 320px; /* mobile */
}

/* Desktop : layout figé à 1140px minimum */
@media (min-width: 1140px) {
    body { min-width: 1140px; }
}

/* ── IMAGES RESPONSIVES ── */
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Image avec ratio forcé (ex: thumbs blog, hero) */
.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.img-contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Ratio utilitaires */
.ratio-16-9  { aspect-ratio: 16/9; overflow: hidden; }
.ratio-4-3   { aspect-ratio: 4/3;  overflow: hidden; }
.ratio-3-4   { aspect-ratio: 3/4;  overflow: hidden; }
.ratio-1-1   { aspect-ratio: 1/1;  overflow: hidden; }

/* Placeholder quand l'image n'est pas chargée */
.img-placeholder {
    background: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── TYPOGRAPHIE ── */
h1, h2, h3, h4, .qs {
    font-family: 'Quicksand', system-ui, sans-serif;
}

h1 { font-size: var(--fs-h1); font-weight: 700; line-height: 1.08; letter-spacing: -.02em; }
h2 { font-size: var(--fs-h2); font-weight: 600; line-height: 1.18; letter-spacing: -.01em; }
h3 { font-size: var(--fs-h3); font-weight: 600; line-height: 1.25; }

p { color: var(--muted); line-height: 1.8; }
a { text-decoration: none; color: inherit; }
strong { font-weight: 700; }
em { font-style: italic; }

/* ── LAYOUT ── */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--section-px);
}

section {
    padding: var(--section-py) var(--section-px);
}

/* ── LABEL ── */
.label {
    font-family: 'Quicksand', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.label::before {
    content: '';
    width: 22px;
    height: 2px;
    background: var(--mid);
    flex-shrink: 0;
}

.section-head {
    max-width: 560px;
    margin-bottom: clamp(36px, 5vw, 56px);
}

.section-head h2 { margin-bottom: 14px; }
.section-head p  { font-size: clamp(1rem, 1.3vw, 1.05rem); }

/* ── BOUTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: clamp(10px, 1.2vw, 14px) clamp(18px, 2vw, 28px);
    border-radius: var(--r);
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: clamp(.72rem, 1vw, .85rem);
    letter-spacing: .07em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .25s ease;
    border: none;
    white-space: nowrap;
}

.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: #153A70; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,71,137,.3); }

.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--mint); }

.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.4); }
.btn-ghost:hover { background: rgba(255,255,255,.1); }

.btn-sm { padding: 9px 18px; font-size: .72rem; }

/* ── NAVIGATION ── */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 150;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--section-px);
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s;
}

.site-nav.scrolled {
    box-shadow: 0 2px 20px rgba(26,71,137,.08);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-logo img {
    height: clamp(32px, 5vw, 44px);
    width: auto;
}

.nav-brand {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: clamp(.85rem, 1.2vw, 1.05rem);
    color: var(--navy);
    line-height: 1.2;
}

.nav-brand small {
    display: block;
    font-weight: 400;
    font-size: .62rem;
    color: var(--muted);
    letter-spacing: .1em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.5vw, 36px);
    margin: 0 auto;
    padding: 0 clamp(20px, 3vw, 48px);
}

.nav-links a {
    font-family: 'Quicksand', sans-serif;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color .2s;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.current-menu-item { color: var(--navy); }

.nav-links .nav-hl {
    color: var(--navy);
    border-bottom: 2px solid var(--mid);
    padding-bottom: 2px;
    font-weight: 700;
}

.nav-cta {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* Burger */
.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: all .25s;
    border-radius: 2px;
}

/* Menu mobile overlay */
.nav-mobile {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 200;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 80px 40px 40px;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: .05em;
    text-transform: uppercase;
    opacity: .8;
    transition: opacity .2s;
}

.nav-mobile a:hover { opacity: 1; }
.nav-mobile .nav-mobile-close {
    position: absolute;
    top: 20px;
    right: var(--section-px);
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    opacity: .6;
    transition: opacity .2s;
}
.nav-mobile .nav-mobile-close:hover { opacity: 1; }

/* ── STRIP ── */
.strip {
    background: var(--charcoal);
    padding: 18px var(--section-px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.85);
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(.85rem, .9vw, .9rem);
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px clamp(14px, 2vw, 28px);
    white-space: nowrap;
}

.strip-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--mint-d);
    flex-shrink: 0;
}

.strip-sep {
    width: 1px;
    height: 18px;
    background: rgba(255,255,255,.12);
}

/* ── HERO ── */
.hero {
    min-height: 100svh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
    padding-top: 72px;
}

.hero-left {
    background: var(--navy);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(48px, 7vw, 80px) var(--section-px);
    position: relative;
    overflow: hidden;
}

.hero-left::before {
    content: '';
    position: absolute;
    top: -80px; left: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.05);
    pointer-events: none;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--r);
    font-family: 'Quicksand', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
    margin-bottom: clamp(18px, 2.5vw, 28px);
    width: fit-content;
}

.hero-tag-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--mint-d);
}

.hero h1 {
    color: var(--white);
    margin-bottom: clamp(14px, 2vw, 20px);
    position: relative;
    z-index: 1;
}

.hero h1 em { color: var(--mint); font-style: normal; }

.hero-sub {
    font-size: clamp(1rem, 1.3vw, 1.05rem);
    color: rgba(255,255,255,.85);
    max-width: 440px;
    margin-bottom: clamp(28px, 4vw, 40px);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: clamp(36px, 5vw, 56px);
    position: relative;
    z-index: 1;
}

.hero-stats {
    display: flex;
    gap: clamp(20px, 3vw, 36px);
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: clamp(20px, 2.5vw, 28px);
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.hero-stat strong {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--white);
    display: block;
    line-height: 1;
}

.hero-stat span {
    font-size: .68rem;
    color: rgba(255,255,255,.65);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-top: 4px;
    display: block;
}

.hero-right {
    background: var(--mint);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px var(--section-px);
    position: relative;
    overflow: hidden;
}

.hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg,transparent,transparent 40px,rgba(26,71,137,.025) 40px,rgba(26,71,137,.025) 41px);
}

.hero-card-wrap {
    position: relative;
    width: 100%;
    max-width: 380px;
}

.hero-main-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26,71,137,.14);
}

.hc-header {
    background: var(--navy);
    padding: clamp(16px, 2vw, 24px) 28px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hc-header img {
    height: clamp(36px, 5vw, 52px);
    width: auto;
}

.hc-header-text h4 {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(.85rem, 1.2vw, 1rem);
    font-weight: 700;
    color: var(--white);
}

.hc-header-text span {
    font-size: .68rem;
    color: rgba(255,255,255,.65);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hc-body { padding: clamp(16px, 2vw, 24px); }

.hc-body p {
    font-size: .88rem;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 20px;
}

.hc-formats { display: flex; flex-direction: column; gap: 8px; }

.hcf {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 14px;
    border-radius: var(--r);
    font-size: .82rem;
}

.hcf.t1 { background: var(--sand); }
.hcf.t2 { background: rgba(26,71,137,.06); }
.hcf.t3 { background: var(--navy); }

.hcf strong { font-family: 'Quicksand', sans-serif; font-weight: 700; color: var(--charcoal); }
.hcf.t3 strong { color: var(--white); }

.hcf-price { font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: .95rem; color: var(--navy); }
.hcf.t3 .hcf-price { color: var(--mint); }

.hero-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--mid);
    color: var(--white);
    border-radius: var(--r);
    padding: 14px 20px;
    text-align: center;
    box-shadow: 0 8px 28px rgba(90,114,175,.3);
}

.hero-badge strong { font-family: 'Quicksand', sans-serif; font-size: 1rem; font-weight: 700; display: block; }
.hero-badge span   { font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; opacity: .85; }

/* ── PUBLICS ── */
.publics { background: var(--white); }

.publics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-grid);
}

.pub-card {
    background: var(--white);
    padding: clamp(20px, 2.5vw, 32px) clamp(18px, 2vw, 26px);
    border: 1px solid var(--border);
    border-radius: var(--r);
    position: relative;
    overflow: hidden;
    transition: box-shadow .25s, transform .25s;
}

.pub-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
}

.pub-card:hover { box-shadow: 0 8px 28px rgba(26,71,137,.09); transform: translateY(-2px); }

.pub-card[data-d="1"]::before { background: #E02020; }
.pub-card[data-d="2"]::before { background: #4A4AE0; }
.pub-card[data-d="3"]::before { background: #27AE60; }
.pub-card[data-d="4"]::before { background: #2EAEE0; }
.pub-card[data-d="5"]::before { background: #E0C020; }
.pub-card[data-d="6"]::before { background: #9B30D0; }

.pub-cat {
    font-family: 'Quicksand', sans-serif;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.pub-card[data-d="1"] .pub-cat { color: #E02020; }
.pub-card[data-d="2"] .pub-cat { color: #4A4AE0; }
.pub-card[data-d="3"] .pub-cat { color: #27AE60; }
.pub-card[data-d="4"] .pub-cat { color: #2EAEE0; }
.pub-card[data-d="5"] .pub-cat { color: #E0C020; }
.pub-card[data-d="6"] .pub-cat { color: #9B30D0; }

.pub-card h3 { font-size: clamp(.95rem, 1.3vw, 1.1rem); color: var(--navy); margin-bottom: 8px; }
.pub-card p  { font-size: 1rem; line-height: 1.75; }

/* ── CONSULTATIONS ── */
.consultations { background: var(--sand); }

.consult-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: clamp(24px, 3vw, 40px);
}

.cf-btn {
    font-family: 'Quicksand', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 9px 18px;
    border-radius: var(--r);
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--muted);
    cursor: pointer;
    transition: all .2s;
}

.cf-btn.active, .cf-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.consult-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-grid);
}

.consult-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: clamp(20px, 2.5vw, 28px) clamp(18px, 2vw, 24px);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: box-shadow .25s, transform .25s;
}

.consult-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
}

.consult-card:hover { box-shadow: 0 8px 28px rgba(26,71,137,.1); transform: translateY(-2px); }
.consult-card.hidden { display: none; }

.consult-card[data-pb="stress"]    ::before { background: #C0392B; }
.consult-card[data-pb="emotions"]  ::before { background: var(--navy); }
.consult-card[data-pb="poids"]     ::before { background: #16A085; }
.consult-card[data-pb="sexualite"] ::before { background: #8E44AD; }
.consult-card[data-pb="relation"]  ::before { background: var(--mid); }
.consult-card[data-pb="enfant"]    ::before { background: #27AE60; }
.consult-card[data-pb="sport"]     ::before { background: #D35400; }

.consult-pb {
    font-family: 'Quicksand', sans-serif;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.consult-pb::before {
    content: '';
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.consult-card[data-pb="stress"]    .consult-pb { color: #C0392B; }
.consult-card[data-pb="stress"]    .consult-pb::before { background: #C0392B; }
.consult-card[data-pb="emotions"]  .consult-pb { color: var(--navy); }
.consult-card[data-pb="emotions"]  .consult-pb::before { background: var(--navy); }
.consult-card[data-pb="poids"]     .consult-pb { color: #16A085; }
.consult-card[data-pb="poids"]     .consult-pb::before { background: #16A085; }
.consult-card[data-pb="sexualite"] .consult-pb { color: #8E44AD; }
.consult-card[data-pb="sexualite"] .consult-pb::before { background: #8E44AD; }
.consult-card[data-pb="relation"]  .consult-pb { color: var(--mid); }
.consult-card[data-pb="relation"]  .consult-pb::before { background: var(--mid); }
.consult-card[data-pb="enfant"]    .consult-pb { color: #27AE60; }
.consult-card[data-pb="enfant"]    .consult-pb::before { background: #27AE60; }
.consult-card[data-pb="sport"]     .consult-pb { color: #D35400; }
.consult-card[data-pb="sport"]     .consult-pb::before { background: #D35400; }

.consult-card h3 { font-size: clamp(.92rem, 1.3vw, 1.05rem); color: var(--charcoal); margin-bottom: 10px; line-height: 1.35; }
.consult-card p  { font-size: 1rem; line-height: 1.78; flex: 1; margin-bottom: 20px; }

.consult-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.consult-price {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(1.2rem, 1.8vw, 1.4rem);
    font-weight: 700;
    color: var(--navy);
}

.consult-duration {
    font-size: 1rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.consult-duration::before { content: '⏱'; }

.consult-rdv {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 14px;
    padding: 11px;
    background: var(--navy);
    color: var(--white);
    font-family: 'Quicksand', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: var(--r);
    transition: background .2s;
}

.consult-rdv:hover { background: var(--mid); }

.consult-note {
    margin-top: clamp(20px, 3vw, 32px);
    padding: 16px 20px;
    background: var(--mint);
    border-radius: var(--r);
    font-size: 1rem;
    color: var(--navy);
    line-height: 1.7;
    border-left: 3px solid var(--mid);
}

/* ── OFFRES ── */
.offres {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding-bottom: 0;
}

.offres::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 500px; height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.04);
    pointer-events: none;
}

.offres-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: clamp(36px, 5vw, 56px);
    flex-wrap: wrap;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.offres-head .label { color: var(--mint); }
.offres-head .label::before { background: var(--mint); }
.offres-head h2 { color: var(--white); max-width: 480px; }
.offres-head p  { color: rgba(255,255,255,.78); max-width: 360px; font-size: .95rem; }

.offres-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-grid);
    position: relative;
    z-index: 1;
}

.offre-card {
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r);
    padding: clamp(24px, 3vw, 36px) clamp(18px, 2.5vw, 28px);
    display: flex;
    flex-direction: column;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.offre-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: rgba(255,255,255,.1);
}

.offre-card:hover { border-color: rgba(255,255,255,.22); transform: translateY(-4px); }

.offre-card.feat { background: var(--white); border-color: transparent; color: var(--charcoal); }
.offre-card.feat::before { background: var(--mid); }

.offre-pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--r);
    font-family: 'Quicksand', sans-serif;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.pill-a { background: rgba(255,255,255,.15); color: var(--white); }
.pill-b { background: var(--mid); color: var(--white); }
.pill-c { background: rgba(224,241,239,.18); color: #B8E4DE; }

.offre-card h3    { font-size: clamp(1.2rem, 2vw, 1.5rem); color: var(--white); margin-bottom: 6px; }
.offre-card.feat h3 { color: var(--navy); }

.offre-sub { font-size: 1rem; color: rgba(255,255,255,.88); margin-bottom: 20px; line-height: 1.6; }
.offre-card.feat .offre-sub { color: var(--muted); }

.offre-price { margin-bottom: 24px; }

.offre-price strong {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    display: block;
    line-height: 1;
}

.offre-card.feat .offre-price strong { color: var(--navy); }

.offre-price .old {
    font-size: 1rem;
    color: rgba(255,255,255,.65);
    text-decoration: line-through;
    display: inline;
    margin-right: 6px;
}

.offre-card.feat .offre-price .old { color: var(--muted); }

.offre-price span.note {
    font-size: 1rem;
    color: rgba(255,255,255,.8);
    margin-top: 2px;
    display: block;
}

.offre-card.feat .offre-price span.note { color: var(--muted); }

.offre-prices-row {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.offre-price-item { text-align: center; }

.offre-price-item strong {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    font-weight: 700;
    color: var(--white);
    display: block;
    line-height: 1;
}

.offre-price-item span {
    font-size: .85rem;
    color: rgba(255,255,255,.82);
    display: block;
    margin-top: 2px;
    line-height: 1.4;
}

.offre-price-sep {
    width: 1px;
    background: rgba(255,255,255,.15);
    align-self: stretch;
    min-height: 36px;
}

.offre-list {
    list-style: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 24px;
}

.offre-list li {
    font-size: 1rem;
    color: rgba(255,255,255,.88);
    display: flex;
    gap: 10px;
    line-height: 1.5;
}

.offre-card.feat .offre-list li { color: var(--muted); }

.offre-list li::before {
    content: '→';
    color: var(--mint-d);
    flex-shrink: 0;
    font-size: .8rem;
}

.offre-cta { width: 100%; justify-content: center; margin-top: auto; }

/* Séjours band */
.sejours-band {
    background: rgba(0,0,0,.35);
    padding: clamp(28px, 4vw, 40px) var(--section-px) clamp(40px, 6vw, 56px);
    margin-top: clamp(32px, 4vw, 48px);
    position: relative;
    z-index: 1;
}

.sejours-band-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: clamp(20px, 3vw, 32px);
    flex-wrap: wrap;
    gap: 16px;
}

.sejours-band-head h3 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--white);
    max-width: 560px;
}

.sejours-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: clamp(10px, 1.5vw, 14px);
}

.sejour-card {
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--r);
    padding: clamp(16px, 2vw, 22px) clamp(14px, 1.8vw, 18px);
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    color: var(--white);
    text-decoration: none;
}

.sejour-card:hover {
    background: rgba(255,255,255,.14);
    transform: translateY(-3px);
    border-color: rgba(255,255,255,.25);
}

.sejour-tag {
    font-family: 'Quicksand', sans-serif;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
    padding: 3px 8px;
    background: rgba(255,255,255,.1);
    border-radius: 2px;
    width: fit-content;
}

.sejour-card h4 {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(.82rem, 1.2vw, .95rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}

.sejour-card p {
    font-size: 1rem;
    color: rgba(255,255,255,.78);
    line-height: 1.6;
    flex: 1;
}

.sejour-prix {
    font-family: 'Quicksand', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    color: var(--mint);
    margin-top: 4px;
}

.sejour-lien {
    font-family: 'Quicksand', sans-serif;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color .2s;
}

.sejour-card:hover .sejour-lien { color: var(--mint); }
.sejour-lien::after { content: '→'; }

/* ── MÉTHODE ── */
.methode { background: var(--cream); }

.methode-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}

.mstep {
    display: flex;
    gap: 20px;
    padding: clamp(16px, 2vw, 24px) 0;
    border-bottom: 1px solid var(--border);
}

.mstep:last-child { border-bottom: none; }

.mstep-n {
    font-family: 'Quicksand', sans-serif;
    font-size: .7rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: .08em;
    min-width: 28px;
    padding-top: 3px;
}

.mstep h3 { font-size: .95rem; color: var(--navy); margin-bottom: 5px; }
.mstep p  { font-size: 1rem; line-height: 1.7; color: var(--muted); }

.meth-vis { position: sticky; top: 100px; }

.meth-img {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: var(--r);
    background: var(--navy);
    overflow: hidden;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* L'image réelle sera chargée via WP (featured image ou ACF) */
.meth-img img { width: 100%; height: 100%; object-fit: cover; }
.meth-img .meth-img-logo { width: auto; height: 100px; opacity: .2; object-fit: contain; }

.meth-quote {
    background: var(--navy);
    padding: clamp(18px, 2.5vw, 24px) clamp(20px, 3vw, 28px);
    border-radius: var(--r);
    border-left: 3px solid var(--mint-d);
}

.meth-quote p {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(.95rem, 1.3vw, 1.05rem);
    font-weight: 500;
    color: var(--white);
    line-height: 1.55;
    font-style: italic;
}

.meth-quote cite {
    display: block;
    margin-top: 10px;
    font-size: .7rem;
    color: rgba(255,255,255,.6);
    letter-spacing: .08em;
    text-transform: uppercase;
    font-style: normal;
}

/* ── TÉMOIGNAGES ── */
.temoignages { background: var(--white); }

.temo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
}

.temo-card {
    background: var(--white);
    padding: clamp(24px, 3vw, 36px) clamp(18px, 2.5vw, 28px);
    position: relative;
}

.temo-card::after {
    content: '\201C';
    font-family: 'Quicksand', sans-serif;
    font-size: 5.5rem;
    font-weight: 700;
    color: var(--mint);
    position: absolute;
    top: 12px; right: 20px;
    line-height: 1;
    pointer-events: none;
}

.temo-stars { display: flex; gap: 3px; margin-bottom: 14px; }

.temo-s {
    width: 12px; height: 12px;
    background: var(--mid);
    clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}

.temo-card blockquote {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(.88rem, 1.3vw, 1rem);
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.6;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.temo-auth { display: flex; align-items: center; gap: 10px; }

.temo-av {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Quicksand', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.temo-nm { font-family: 'Quicksand', sans-serif; font-size: .82rem; font-weight: 700; color: var(--navy); }
.temo-cx { font-size: .72rem; color: var(--charcoal); opacity: .55; }

/* ── BLOG ── */
.blog { background: var(--cream); }

.blog-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: clamp(28px, 4vw, 48px);
    flex-wrap: wrap;
    gap: 16px;
}

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

.blog-card {
    background: var(--white);
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all .3s ease;
}

.blog-card:hover { box-shadow: 0 16px 40px rgba(26,71,137,.09); transform: translateY(-3px); }

.blog-thumb {
    height: clamp(140px, 18vw, 180px);
    background: var(--navy);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 0 0 14px 16px;
}

.blog-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.blog-card:hover .blog-thumb img { transform: scale(1.04); }

.blog-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(26,71,137,.55) 0%, transparent 60%);
    z-index: 1;
}

.blog-cat {
    position: relative;
    z-index: 2;
    display: inline-block;
    padding: 4px 10px;
    background: var(--mid);
    color: var(--white);
    font-family: 'Quicksand', sans-serif;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-radius: var(--r);
}

.blog-body { padding: clamp(16px, 2vw, 24px); }

.blog-dt {
    font-family: 'Quicksand', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--charcoal);
    opacity: .5;
    margin-bottom: 8px;
}

.blog-card h3 { font-size: clamp(.88rem, 1.2vw, .95rem); color: var(--charcoal); margin-bottom: 8px; line-height: 1.45; }
.blog-card p  { font-size: 1rem; line-height: 1.65; }

.blog-lk {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 14px;
    font-family: 'Quicksand', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--navy);
}

.blog-lk::after { content: '→'; }

/* ── CTA FINAL ── */
.cta-final {
    background: var(--mid);
    padding: clamp(56px, 8vw, 80px) var(--section-px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: -100px; left: 50%; transform: translateX(-50%);
    width: 600px; height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.05);
    pointer-events: none;
}

.cta-final h2    { color: var(--white); max-width: 560px; margin: 0 auto 12px; position: relative; z-index: 1; }
.cta-final > p   { color: rgba(255,255,255,.85); max-width: 440px; margin: 0 auto 36px; font-size: 1rem; position: relative; z-index: 1; }

.cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.cta-contacts {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-contacts a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.85);
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .02em;
    transition: color .2s;
    padding: 0 clamp(12px, 2vw, 24px);
    word-break: break-word;
}

.cta-contacts a:hover { color: var(--white); }
.cta-sep { width: 1px; height: 16px; background: rgba(255,255,255,.2); }

/* ── FOOTER ── */
footer {
    background: #162130;
    padding: clamp(40px, 6vw, 64px) var(--section-px) clamp(20px, 3vw, 32px);
}

.foot-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: clamp(24px, 4vw, 48px);
    margin-bottom: clamp(32px, 5vw, 48px);
}

.foot-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }

.foot-logo img { height: clamp(36px, 5vw, 44px); width: auto; }

.foot-brand-name {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: clamp(.85rem, 1.2vw, .95rem);
    color: var(--white);
    line-height: 1.3;
}

.foot-brand-name small {
    display: block;
    font-weight: 400;
    font-size: .62rem;
    color: rgba(255,255,255,.5);
    letter-spacing: .1em;
    text-transform: uppercase;
}

.foot-desc { font-size: 1rem; color: rgba(255,255,255,.6); line-height: 1.75; max-width: 260px; }

.foot-ttl {
    font-family: 'Quicksand', sans-serif;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    margin-bottom: 18px;
}

.foot-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-links a { font-size: 1rem; color: rgba(255,255,255,.65); transition: color .2s; }
.foot-links a:hover { color: var(--white); }
.foot-links .g { color: var(--mint); }

.foot-hrs { font-size: 1rem; line-height: 2.1; color: rgba(255,255,255,.65); }
.foot-hrs .spec { color: var(--mint); }

.foot-bot {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: clamp(16px, 2.5vw, 24px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .7rem;
    flex-wrap: wrap;
    gap: 12px;
    color: rgba(255,255,255,.5);
}

.foot-bot a { color: rgba(255,255,255,.5); transition: color .2s; }
.foot-bot a:hover { color: var(--white); }
.foot-bot-links { display: flex; gap: 24px; }

/* ── UTILITAIRES ── */
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ── RESPONSIVE ── */

/* Tablette large */
@media (max-width: 1280px) {
    .sejours-grid { grid-template-columns: repeat(3, 1fr); }
    .foot-grid    { grid-template-columns: 1fr 1fr; }
}

/* Tablette */
@media (max-width: 1140px) {
    .hero              { grid-template-columns: 1fr; }
    .hero-right        { display: none; }
    .publics-grid      { grid-template-columns: repeat(2, 1fr); }
    .consult-grid      { grid-template-columns: repeat(2, 1fr); }
    .offres-grid       { grid-template-columns: 1fr; }
    .sejours-grid      { grid-template-columns: repeat(2, 1fr); }
    .methode-wrap      { grid-template-columns: 1fr; }
    .meth-vis          { display: none; }
    .temo-grid         { grid-template-columns: 1fr; background: none; border: none; gap: var(--gap-grid); }
    .temo-card         { border: 1px solid var(--border); border-radius: var(--r); }
    .blog-grid         { grid-template-columns: repeat(2, 1fr); }
    .nav-links         { display: none; }
    .nav-cta .btn:first-child { display: none; }
    .nav-burger        { display: flex !important; z-index: 101; position: relative; }
    .strip-item:nth-child(n+7) { display: none; }
}

/* Mobile */
@media (max-width: 600px) {
    :root {
        --section-px: 20px;
        --gap-grid: 14px;
    }

    .publics-grid  { grid-template-columns: 1fr; }
    .consult-grid  { grid-template-columns: 1fr; }
    .sejours-grid  { grid-template-columns: 1fr; }
    .blog-grid     { grid-template-columns: 1fr; }
    .foot-grid     { grid-template-columns: 1fr; }
    .hero-stats    { flex-wrap: wrap; gap: 20px; }
    .strip         { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
    .consult-filters { gap: 6px; }
    .cf-btn        { font-size: .65rem; padding: 8px 12px; }
    .cta-contacts  { flex-direction: column; gap: 12px; }
    .cta-contacts a { padding: 0; text-align: center; justify-content: center; font-size: .95rem; word-break: break-all; }
    .cta-sep       { display: none; }
    .offres-head   { flex-direction: column; }
    .sejours-band-head { flex-direction: column; }
    .blog-top      { flex-direction: column; align-items: flex-start; }
    .foot-bot      { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ── ARTICLE CONTENT (blog single) ── */
.article-content { color: var(--charcoal); }

.article-content h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    color: var(--navy);
    margin: clamp(32px,4vw,48px) 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--mint-d);
}

.article-content h3 {
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    color: var(--navy);
    margin: clamp(24px,3vw,36px) 0 12px;
}

.article-content p {
    color: var(--charcoal);
    font-size: clamp(1rem, 1.2vw, 1.05rem);
    line-height: 1.85;
    margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
    margin: 0 0 24px 0;
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.article-content ul { list-style: none; padding-left: 0; }

.article-content ul li {
    padding-left: 20px;
    position: relative;
    font-size: clamp(1rem, 1.2vw, 1.05rem);
    line-height: 1.75;
    color: var(--charcoal);
}

.article-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--mid);
    font-size: .85rem;
}

.article-content ol li {
    font-size: clamp(1rem, 1.2vw, 1.05rem);
    line-height: 1.75;
    color: var(--charcoal);
}

.article-content blockquote {
    border-left: 3px solid var(--mid);
    background: var(--sand);
    margin: 28px 0;
    padding: 20px 24px;
    border-radius: 0 var(--r) var(--r) 0;
}

.article-content blockquote p {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-weight: 500;
    color: var(--navy);
    font-style: italic;
    margin: 0;
}

.article-content strong { color: var(--navy); font-weight: 700; }

.article-content a {
    color: var(--mid);
    text-decoration: underline;
    text-decoration-color: var(--mint-d);
    text-underline-offset: 3px;
    transition: color .2s;
}

.article-content a:hover { color: var(--navy); }

.article-content img {
    width: 100%;
    height: auto;
    border-radius: var(--r);
    margin: 28px 0;
}

.article-content .wp-caption {
    width: 100% !important;
    margin: 28px 0;
}

.article-content .wp-caption-text {
    font-size: .78rem;
    color: var(--muted);
    text-align: center;
    margin-top: 8px;
    font-style: italic;
}

.article-content hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 40px 0;
}

/* ── PAGINATION BLOG ── */
.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--r);
    font-family: 'Quicksand', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    color: var(--muted);
    border: 1.5px solid var(--border);
    background: var(--white);
    transition: all .2s;
    margin: 0 3px;
}

.page-numbers:hover,
.page-numbers.current {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.page-numbers.dots { border-color: transparent; background: transparent; }

/* ── DETAILS/SUMMARY FAQ ── */
details summary::-webkit-details-marker { display: none; }

details[open] summary span { transform: rotate(45deg); }

details summary span { display: inline-block; transition: transform .25s; }

/* ── NOTIFICATION FORMULAIRE CONTACT ── */
.form-notice {
    padding: 14px 18px;
    border-radius: var(--r);
    font-family: 'Quicksand', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.form-notice.success {
    background: #E8F5E9;
    color: #2E7D32;
    border-left: 3px solid #4CAF50;
}

.form-notice.error {
    background: #FFEBEE;
    color: #C62828;
    border-left: 3px solid #F44336;
}
