
:root {
    --sage: #7a8c7e;
    --sage-light: #a8b8ac;
    --sage-dark: #4e6054;
    --cream: #f5f0e8;
    --warm-white: #faf8f4;
    --charcoal: #2c2c2c;
    --mid-grey: #6b6b6b;
    --gold: #b5965a;
    --gold-light: #d4b483;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Jost', sans-serif;
    color: var(--charcoal);
    background-color: var(--warm-white);
    font-weight: 300;
    line-height: 1.75;
}

h1, h2, h3, h4, blockquote {
    font-family: 'Cormorant Garamond', serif;
}

/* ── NAVBAR ── */
.navbar {
    background-color: rgba(250, 248, 244, 0.97);
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(122, 140, 126, 0.15);
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: box-shadow 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--sage-dark) !important;
    letter-spacing: 0.03em;
    text-decoration: none;
}

.navbar-brand span {
    color: var(--gold);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#navToggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    margin-left: auto;
}

#navToggle i {
    font-size: 1.3rem;
    color: var(--charcoal);
}

#navbarResponsive ul {
    list-style: none;
    display: flex;
    gap: 0.25rem;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}


.nav-link {
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--charcoal) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--sage) !important;
}

#navbarResponsive {
    display: flex;
    align-items: center;
}

/* ── HERO ── */
header.masthead {
    min-height: 100vh;
    background: linear-gradient(160deg, #e8ece9 0%, #f5f0e8 55%, #ede7da 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

header.masthead::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(122,140,126,0.12) 0%, transparent 70%);
    pointer-events: none;
}

header.masthead::after {
    content: '';
    position: absolute;
    bottom: 5%;
    left: 5%;
    width: 30vw;
    height: 30vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(181,150,90,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
}

header h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 600;
    color: var(--sage-dark);
    line-height: 1.05;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
}

header h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    font-style: italic;
    color: var(--mid-grey);
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.55s forwards;
}

.hero-adeli {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: var(--sage);
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.65s forwards;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
}

.btn-sage {
    background-color: var(--sage);
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 0.85rem 2rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: background 0.25s, transform 0.2s;
}

.btn-sage:hover {
    background-color: var(--sage-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-sage {
    background: transparent;
    color: var(--sage-dark);
    border: 1.5px solid var(--sage);
    border-radius: 3px;
    padding: 0.85rem 2rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s;
}

.btn-outline-sage:hover {
    background: var(--sage);
    color: #fff;
    transform: translateY(-2px);
}

/* ── SECTIONS ── */
.section { padding: 7rem 0; }
.section-alt { background-color: var(--cream); }

.section-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--sage-dark);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.section-lead {
    font-size: 1.05rem;
    color: var(--mid-grey);
    max-width: 640px;
    line-height: 1.85;
}

/* ── DIVIDER ── */
.divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--sage-light));
    margin: 1.5rem 0;
}

.divider-center {
    margin-left: auto;
    margin-right: auto;
}

/* ── À PROPOS ── */
#about .stat-block {
    border-left: 2px solid var(--sage-light);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

#about .stat-block strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--sage-dark);
    display: block;
    line-height: 1;
}

#about .stat-block span {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mid-grey);
}

.parcours-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.parcours-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 0.5rem;
}

.parcours-item p {
    font-size: 0.92rem;
    color: var(--mid-grey);
    margin: 0;
}

/* ── CARDS SERVICES ── */
.service-card {
    background: var(--warm-white);
    border: 1px solid rgba(122,140,126,0.15);
    border-radius: 4px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--gold);
    transition: height 0.35s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.service-card:hover::before {
    height: 100%;
}

.service-card .icon {
    font-size: 1.8rem;
    color: var(--sage);
    margin-bottom: 1.25rem;
}

.service-card h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--sage-dark);
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--mid-grey);
    line-height: 1.7;
}

/* ── POPULATIONS ── */
.pop-card {
    background: var(--warm-white);
    border-radius: 4px;
    padding: 2rem 1.75rem;
    border: 1px solid rgba(122,140,126,0.12);
    height: 100%;
    transition: box-shadow 0.25s;
}

.pop-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.pop-age {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 0.4rem;
}

.pop-card h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--sage-dark);
    margin-bottom: 0.75rem;
}

.pop-card p {
    font-size: 0.88rem;
    color: var(--mid-grey);
    line-height: 1.7;
}

/* ── BILAN ── */
.bilan-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.bilan-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    color: rgba(122,140,126,0.25);
    line-height: 1;
    min-width: 60px;
}

.bilan-content h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--sage-dark);
    margin-bottom: 0.4rem;
}

.bilan-content p {
    font-size: 0.9rem;
    color: var(--mid-grey);
    line-height: 1.7;
}

.test-badge {
    display: inline-block;
    background: var(--cream);
    border: 1px solid rgba(181,150,90,0.3);
    color: var(--sage-dark);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.85rem;
    border-radius: 2px;
    margin: 0.25rem;
}

/* ── PATHOLOGIES ── */
.patho-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--warm-white);
    border: 1px solid rgba(122,140,126,0.2);
    padding: 0.6rem 1.2rem;
    border-radius: 2px;
    margin: 0.35rem;
    font-size: 0.88rem;
    color: var(--charcoal);
    transition: background 0.2s, border-color 0.2s;
}

.patho-pill:hover {
    background: var(--cream);
    border-color: var(--sage-light);
}

.patho-pill i {
    color: var(--sage);
    font-size: 0.75rem;
}

/* ── ACTIVITÉS ── */
.activite-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255,255,255,0.5);
    border-radius: 4px;
    border: 1px solid rgba(122,140,126,0.15);
    height: 100%;
}

.activite-card i {
    font-size: 2rem;
    color: var(--sage);
    margin-bottom: 1.25rem;
    display: block;
}

.activite-card h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--sage-dark);
    margin-bottom: 0.75rem;
}

.activite-card p {
    font-size: 0.88rem;
    color: var(--mid-grey);
}

/* ── DARK SECTION ── */
.section-dark {
    background: var(--sage-dark);
    color: var(--cream);
}

.section-dark .section-title { color: var(--cream); }
.section-dark .section-label { color: var(--sage-light); }
.section-dark .section-lead { color: rgba(245,240,232,0.75); }

/* ── ARTICLES ── */
.article-tag {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
    display: block;
}

.article-item {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.article-item:last-child {
    border-bottom: none;
}

.article-item h6 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--cream);
    margin: 0;
    line-height: 1.4;
}

.article-item:hover h6 {
    color: var(--gold-light);
}

/* ── CONTACT ── */
.contact-info-block {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 1.75rem;
}

.contact-info-block .ci-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage);
    font-size: 1rem;
}

.contact-info-block .ci-text strong {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage);
    display: block;
    margin-bottom: 0.2rem;
}

.contact-info-block .ci-text span {
    font-size: 0.95rem;
    color: var(--charcoal);
}

.contact-info-block .ci-text a {
    color: var(--charcoal);
    text-decoration: none;
}

.contact-info-block .ci-text a:hover {
    color: var(--sage);
}

.form-control {
    border: 1px solid rgba(122,140,126,0.25);
    border-radius: 3px;
    padding: 0.85rem 1rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    background: var(--warm-white);
    color: var(--charcoal);
    transition: border-color 0.2s;
}

.form-control:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(122,140,126,0.1);
    outline: none;
}

/* ── MAP ── */
.map-wrapper iframe {
    width: 100%;
    height: 420px;
    border: 0;
    border-radius: 4px;
    filter: saturate(0.6) contrast(1.05);
}

/* ── TRANSPORT ── */
.transport-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--cream);
    border: 1px solid rgba(122,140,126,0.2);
    border-radius: 3px;
    padding: 0.5rem 1rem;
    font-size: 0.83rem;
    color: var(--charcoal);
    margin: 0.25rem;
}

.transport-badge i {
    color: var(--sage);
}

/* ── DEONTO BANNER ── */
.deonto-banner {
    background: linear-gradient(135deg, var(--sage-dark), #3a5044);
    color: var(--cream);
    padding: 2rem 3rem;
    border-radius: 4px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
    position: relative;
}

.deonto-banner::before {
    content: '«';
    font-size: 4rem;
    color: rgba(245,240,232,0.15);
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    line-height: 1;
}

/* ── FOOTER ── */
footer {
    background: var(--charcoal);
    color: rgba(250,248,244,0.7);
    padding: 3rem 0 2rem;
}

footer .footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

footer a {
    color: rgba(250,248,244,0.6);
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: var(--gold-light);
}

footer .footer-links li {
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
}

footer .footer-links {
    list-style: none;
    padding: 0;
}

footer .divider-footer {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 2rem 0 1.5rem;
}

footer .copyright {
    font-size: 0.78rem;
}

/* ── DOCTOLIB BUTTON ── */
.btn-doctolib {
    background: #0596de;
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 0.85rem 2rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.25s, transform 0.2s;
}

.btn-doctolib:hover {
    background: #0480c2;
    color: #fff;
    transform: translateY(-2px);
}

/* ── SCROLL TOP ── */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--sage);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.3s, background 0.2s;
    z-index: 500;
}

.scroll-top.visible {
    opacity: 1;
}

.scroll-top:hover {
    background: var(--sage-dark);
    color: #fff;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.row { display: flex; flex-wrap: wrap; margin: 0 -1rem; }
[class^="col-"] { padding: 0 1rem; }
.col-12 { width: 100%; }
.col-md-4 { width: 33.333%; }
.col-md-6 { width: 50%; }
.col-lg-3 { width: 25%; }
.col-lg-4 { width: 33.333%; }
.col-lg-5 { width: 41.667%; }
.col-lg-6 { width: 50%; }
.col-lg-7 { width: 58.333%; }
.col-lg-8 { width: 66.666%; }

@media (max-width: 992px) {
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8 {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .section { padding: 5rem 0; }
    header h1 { font-size: 2.8rem; }
    .hero-inner { text-align: center; }
    .hero-cta-group { justify-content: center; }

    .col-md-4,
    .col-md-6 {
        width: 100%;
    }

    .navbar .container {
        flex-wrap: wrap;
    }

    #navToggle {
        display: block;
    }

    #navbarResponsive {
        display: none;
        width: 100%;
        margin-top: 1rem;
        order: 3;
    }

    #navbarResponsive.show {
        display: block;
    }

    #navbarResponsive ul {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    #navbarResponsive li {
        width: 100%;
    }

    #navbarResponsive .nav-link {
        display: block;
        width: 100%;
        padding: 0.9rem 0 !important;
    }
}
.g-4 { gap: 1.5rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.text-center { text-align: center; }
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.h-100 { height: 100%; }

