/* =============================================================================
   Dr Soukaïna — Site public
   Identité réelle : vert canard + rose poudré + crème.
   Type : Cormorant Garamond (titres) · Inter (texte)
   Signature : illustration au trait (mère & enfant) + cœur.
   ========================================================================== */

:root {
    --teal-deep: #1E3A35;
    --teal: #2B4A44;
    --teal-700: #35564E;
    --teal-soft: #E6ECE9;
    --rose: #C98B86;
    --rose-deep: #B4756F;
    --rose-soft: #F3E4E1;
    --rose-tint: #FAEFEB;
    --cream: #FBF5EE;
    --paper: #FFFFFF;
    --ink: #28302C;
    --muted: #6B736D;
    --line: #EAE3D8;

    --maxw: 1140px;
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0; font-family: var(--font-body); color: var(--ink);
    background: var(--paper); line-height: 1.65; font-size: 16px;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; margin: 0; color: var(--teal-deep); }
p { margin: 0 0 1rem; }
a { color: var(--teal); text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

.eyebrow { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--rose-deep); }

/* Séparateur : fin trait + petit cœur (motif de marque) */
.rule { display: flex; align-items: center; justify-content: center; gap: 0.6rem; margin: 1.1rem 0; }
.rule::before, .rule::after { content: ""; height: 1px; width: 40px; background: var(--rose); opacity: .7; }
.rule .heart { width: 13px; height: 12px; color: var(--rose); }
.rule.left { justify-content: flex-start; }
.rule.left::before { display: none; }

/* --- Boutons -------------------------------------------------------------- */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
    padding: 0.82rem 1.6rem; border-radius: 999px; border: 1px solid transparent;
    cursor: pointer; transition: background .18s, color .18s, box-shadow .18s, transform .18s;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--teal-deep); color: #fff; }
.btn-primary:hover { background: var(--teal); box-shadow: 0 14px 30px -16px rgba(30,58,53,.6); }
.btn-accent { background: var(--rose); color: var(--teal-deep); }
.btn-accent:hover { background: var(--rose-deep); color: #fff; }
.btn-ghost { background: transparent; color: var(--teal-deep); border-color: var(--line); }
.btn-ghost:hover { background: var(--cream); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }

/* =============================================================================
   Navigation
   ========================================================================== */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(251,245,238,.92);
    backdrop-filter: saturate(140%) blur(8px); border-bottom: 1px solid transparent;
    transition: border-color .2s, box-shadow .2s; }
.nav.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 8px 24px -22px rgba(30,58,53,.5); }
.nav__inner { max-width: var(--maxw); margin: 0 auto; padding: 0.65rem 1.5rem;
    display: flex; align-items: center; justify-content: space-between; gap: 0.85rem; }
.nav__brand { display: flex; align-items: center; gap: 0.7rem; }
.nav__brand .nm { font-family: var(--font-display); font-size: 1.16rem; color: var(--teal-deep); line-height: 1; }
.nav__brand .sp { font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--rose-deep); }
.nav__links { display: flex; align-items: center; gap: 1.1rem; }
.nav__links a { font-size: 0.9rem; color: var(--ink); font-weight: 500; white-space: nowrap; }
.nav__links a:hover { color: var(--teal); text-decoration: none; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--teal-deep); margin: 4px 0; }

/* =============================================================================
   Héros
   ========================================================================== */
.hero { position: relative; overflow: hidden; padding: 5rem 0 4rem;
    background: radial-gradient(1100px 460px at 100% -10%, var(--rose-tint), transparent 62%), var(--paper); }
.hero__grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 2rem; align-items: center; }
.hero h1 { font-size: clamp(2.6rem, 5.4vw, 4.1rem); letter-spacing: .005em; }
.hero .spec { font-size: 1.18rem; color: var(--teal); font-weight: 500; margin-top: .3rem; }
.hero .lede { color: var(--muted); font-size: 1.08rem; max-width: 46ch; margin-top: 1.2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero__logo { display: grid; place-items: center; }
.hero__logo svg { width: 240px; height: 240px; filter: drop-shadow(0 20px 36px rgba(30,58,53,.22)); }

/* Bandeau illustration de marque */
.brand-illus { background: var(--rose-tint); padding: 3.2rem 0; text-align: center; }
.brand-illus .eyebrow { color: var(--teal); }
.brand-illus h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); }
.brand-illus img { width: 100%; max-width: 860px; height: auto; margin-top: 1rem; }

/* =============================================================================
   Logo (image vectorielle)
   ========================================================================== */
.nav__brand .brand-mark { height: 58px; width: auto; display: block; }
.footer .brand-row .brand-mark { height: 58px; width: auto; flex: none; }

/* =============================================================================
   Héros — immersion (photo en fond)
   ========================================================================== */
.hero--photo { padding: 0; min-height: calc(100vh - 68px); min-height: calc(100svh - 68px); display: grid; align-items: center; }
.hero--photo .hero__media { position: absolute; inset: 0; z-index: 0; margin: 0; }
.hero--photo .hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 64% center; }
.hero--photo::after { content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(102deg, rgba(21,48,43,.93) 0%, rgba(26,52,47,.82) 34%, rgba(30,58,53,.42) 64%, rgba(30,58,53,.12) 100%); }
.hero--photo .hero__content { position: relative; z-index: 2; width: 100%; padding: 2.5rem 0; }
.hero--photo h1 { color: #fff; max-width: 15ch; line-height: 1.03; }
.hero--photo .spec { color: var(--rose-soft); font-size: 1.18rem; font-weight: 500; margin-top: .4rem; }
.hero--photo .lede { color: rgba(255,255,255,.92); font-size: 1.08rem; max-width: 44ch; margin-top: 1.2rem; }
.hero--photo .hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.9rem; }
.eyebrow--light { color: var(--rose-soft); }
.rule--light .heart { color: var(--rose-soft); }
.rule--light::before, .rule--light::after { background: rgba(255,255,255,.55); opacity: 1; }

/* Portrait de la Dre (Le cabinet) */
.portrait { margin: 0; position: relative; }
.portrait img { width: 100%; max-width: 440px; aspect-ratio: 1 / 1; object-fit: cover; object-position: center top;
    border-radius: 20px; display: block; margin-left: auto; box-shadow: 0 30px 60px -34px rgba(30,58,53,.55); }
.portrait figcaption { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-display);
    font-style: italic; font-size: 1.18rem; color: var(--teal-deep); background: var(--paper);
    border: 1px solid var(--line); border-radius: 14px; padding: .55rem 1rem;
    position: absolute; left: 0; bottom: 1.2rem; box-shadow: 0 20px 40px -22px rgba(30,58,53,.45); }
.portrait figcaption .heart { color: var(--rose); width: 16px; height: 14px; }

/* Bande photo pleine largeur */
.photo-band { position: relative; height: clamp(260px, 34vw, 440px); overflow: hidden; }
.photo-band picture { display: block; height: 100%; }
.photo-band img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; display: block; }
.photo-band::after { content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(30,58,53,.30), rgba(30,58,53,.10) 40%, rgba(30,58,53,.34)); }

/* Bannière Domaines de soin */
.soins-banner { margin: 0 0 2.6rem; }
.soins-banner img { width: 100%; height: clamp(220px, 28vw, 340px); object-fit: cover; border-radius: 18px; display: block; }

/* Image Suivi de grossesse (dans la carte teal) */
.feature__body { min-width: 0; }
.feature__media { margin: 0; height: 100%; }
.feature__media picture { display: block; height: 100%; }
.feature__media img { width: 100%; height: 100%; min-height: 320px; max-height: 460px;
    object-fit: cover; border-radius: 16px; display: block; }

/* =============================================================================
   Sections
   ========================================================================== */
.section { padding: 4.5rem 0; scroll-margin-top: 78px; }
.section--cream { background: var(--cream); }
.section__head { max-width: 640px; }
.section__head.center { margin: 0 auto; text-align: center; }
.section h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); }
.section .intro { color: var(--muted); margin-top: .6rem; }

.about { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about .placeholder-note { font-size: .78rem; color: var(--rose-deep); background: var(--rose-tint);
    border: 1px dashed var(--rose); border-radius: 8px; padding: .5rem .7rem; margin-top: 1rem; }
.about__panel { background: var(--teal-deep); color: #fff; border-radius: 18px; padding: 2.2rem; }
.about__panel h3 { color: #fff; font-size: 1.6rem; }
.about__panel p { color: rgba(255,255,255,.82); margin-bottom: 0; }
.about__panel .heart { color: var(--rose); width: 34px; height: 30px; margin-bottom: .6rem; }

.services { margin-top: 2.6rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.service { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 1.6rem;
    transition: box-shadow .2s, transform .2s, border-color .2s; }
.service:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -30px rgba(30,58,53,.4); border-color: var(--rose); }
.service__icon { width: 40px; height: 40px; color: var(--teal); margin-bottom: .9rem; }
.service h3 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 600; color: var(--teal-deep); }
.service p { font-size: .92rem; color: var(--muted); margin: .4rem 0 0; }

.feature { background: radial-gradient(700px 320px at 0% 0%, rgba(201,139,134,.18), transparent 60%), var(--teal-deep);
    color: #fff; border-radius: 22px; padding: 3rem; display: grid; grid-template-columns: 1.3fr .7fr; gap: 2rem; align-items: center; }
.feature h2 { color: #fff; }
.feature p { color: rgba(255,255,255,.85); }
.feature .eyebrow { color: var(--rose-soft); }
.feature__steps { display: grid; gap: .9rem; }
.feature__step { display: flex; gap: .8rem; align-items: baseline; }
.feature__step .n { font-family: var(--font-display); color: var(--rose-soft); font-size: 1.4rem; line-height: 1; flex: none; width: 1.6rem; }
.feature__step .t { color: #fff; font-weight: 500; }

.practical { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2.4rem; }
.info { border: 1px solid var(--line); border-radius: 16px; padding: 1.5rem; background: var(--paper); }
.info .lbl { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--rose-deep); }
.info .val { margin-top: .5rem; color: var(--ink); }
.info .val a { color: var(--teal); }
.info .tbc { color: var(--rose-deep); font-style: italic; }

.cta-band { text-align: center; background: radial-gradient(600px 240px at 50% 120%, rgba(201,139,134,.22), transparent 60%), var(--teal-deep);
    color: #fff; border-radius: 22px; padding: 3.4rem 2rem; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 50ch; margin: .6rem auto 0; }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1.6rem; }

/* =============================================================================
   Pied de page
   ========================================================================== */
.footer { background: #15302B; color: rgba(255,255,255,.8); padding: 3rem 0 1.6rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; align-items: start; }
.footer h4 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--rose-soft); margin: 0 0 .8rem; }
.footer .brand-row { display: flex; align-items: center; gap: .8rem; }
.footer .brand-row svg { width: 56px; height: 56px; flex: none; }
.footer .nm { font-family: var(--font-display); font-size: 1.4rem; color: #fff; }
.footer .sp { color: var(--rose-soft); font-size: .85rem; }
.footer a { color: rgba(255,255,255,.8); }
.footer a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.2rem; padding-top: 1.2rem;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; font-size: .82rem; color: rgba(255,255,255,.55); }
.footer__bottom a { color: rgba(255,255,255,.55); }
.footer__bottom .credit { display: inline-flex; align-items: center; gap: .55rem; }
.footer__bottom .credit img { height: 22px; width: auto; display: block; opacity: .92; }
.footer__bottom .credit:hover { color: rgba(255,255,255,.85); }

/* =============================================================================
   Responsive
   ========================================================================== */
@media (max-width: 920px) {
    .hero__grid { grid-template-columns: 1fr; }
    .hero__logo { order: -1; }
    .hero__logo svg { width: 170px; height: 170px; }
    .about { grid-template-columns: 1fr; }
    .services { grid-template-columns: repeat(2, 1fr); }
    .feature { grid-template-columns: 1fr; }
    .practical { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
    .nav__links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
        align-items: flex-start; gap: 1rem; background: var(--paper); padding: 1.2rem 1.5rem; border-bottom: 1px solid var(--line); }
    .nav__links.is-open { display: flex; }
    .nav__toggle { display: block; }
}
@media (max-width: 600px) {
    .services { grid-template-columns: 1fr; }
}
@media (max-width: 920px) {
    .hero--photo { min-height: auto; }
    .hero--photo .hero__content { padding: 4.5rem 0; }
    .hero--photo::after { background: linear-gradient(158deg, rgba(21,48,43,.92) 0%, rgba(30,58,53,.62) 58%, rgba(30,58,53,.46) 100%); }
    .portrait img { max-width: 100%; margin: 0; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }

/* =============================================================================
   Réseaux sociaux (liens sortants — aucun script tiers)
   ========================================================================== */
.social { display: inline-flex; align-items: center; gap: .55rem; }
.social__link { width: 40px; height: 40px; border-radius: 50%; display: inline-flex;
    align-items: center; justify-content: center; transition: background .2s, color .2s, transform .2s; }
.social__link svg { width: 19px; height: 19px; display: block; }

/* Pied de page (fond foncé) — pastille blanche translucide */
.social--footer .social__link { background: rgba(255,255,255,.08); color: #fff; }
.social--footer .social__link:hover { background: var(--rose); color: var(--teal-deep); transform: translateY(-2px); }

/* En-tête (fond clair) — icône teal, survol rose */
.social--nav { gap: .4rem; }
.social--nav .social__link { width: 34px; height: 34px; background: rgba(43,74,68,.07); color: var(--teal); }
.social--nav .social__link:hover { background: var(--rose); color: #fff; transform: translateY(-2px); }
.social--nav .social__link svg { width: 16px; height: 16px; }
