:root{
    --green:        #009900;
    --green-deep:   #076b2f;
    --green-tint:   #eaf6ec;
    --teal:         #339a99;
    --teal-tint:    #e7f4f4;
    --red:          #fe0000;
    --ink:          #343434;
    --ink-soft:     #5c5c5c;
    --paper:        #faf9f6;
    --paper-alt:    #f2f1ec;
    --line:         #e2e0d8;
    --white:        #ffffff;

    --font-display: "Fraunces", Georgia, serif;
    --font-body:    "Inter", -apple-system, sans-serif;

    --radius: 4px;
    --wrap: 1180px;
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }

.wrap{
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 32px;
}

/* -------- signature motif: pharmacy cross, understated -------- */
.cross{
    position: relative;
    width: 1em; height: 1em;
    display:inline-block;
}
.cross::before, .cross::after{
    content:"";
    position:absolute;
    background: currentColor;
    border-radius: 2px;
}
.cross::before{ left:38%; top:0; width:24%; height:100%; }
.cross::after{ top:38%; left:0; height:24%; width:100%; }

/* -------- header -------- */
header.main{
    background: var(--white);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 50;
}
header.main .wrap{
    display:flex;
    align-items:center;
    justify-content: space-between;
    height: 84px;
}
.logo{
    display:flex;
    align-items:center;
}
.logo img{
    height: 80px;   /* ajuste selon les proportions réelles du logo */
    width: auto;
}
nav.primary ul{
    display:flex;
    gap: 36px;
    font-size: 14.5px;
    font-weight: 500;
}
nav.primary a{
    position:relative;
    padding: 6px 0;
    color: var(--ink);
}
nav.primary a.active{ color: var(--green-deep); }
nav.primary a.active::after{
    content:"";
    position:absolute;
    left:0; right:0; bottom:-2px;
    height:2px;
    background: var(--green);
}
nav.primary a:hover{ color: var(--green-deep); }

.btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14.5px;
    border: 1px solid transparent;
    cursor:pointer;
    transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn-primary{ background: var(--green); color: var(--white); }
.btn-primary:hover{ background: var(--green-deep); }
.btn-ghost{ border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover{ background: var(--ink); color: var(--white); }
.btn-outline-white{ border-color: rgba(255,255,255,.55); color:var(--white); }
.btn-outline-white:hover{ background: rgba(255,255,255,.12); }

/* -------- hero -------- */
.hero{
    position: relative;
    overflow: hidden;
    background: var(--ink);
    color: var(--white);
}
.hero::before{
    /* faint oversized cross watermark, the signature element */
    content:"";
    position:absolute;
    right: -140px;
    top: -160px;
    width: 560px;
    height: 560px;
    background:
            linear-gradient(var(--green) 0 0) center / 100% 26% no-repeat,
            linear-gradient(var(--green) 0 0) center / 26% 100% no-repeat;
    opacity: 0.08;
    border-radius: 40px;
}
.hero .wrap{
    position: relative;
    display:grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items:center;
    padding-top: 96px;
    padding-bottom: 96px;
    min-height: 560px;
}
.eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size: 12.5px;
    font-weight:600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #9fe3a8;
    margin-bottom: 22px;
}
.eyebrow::before{
    content:"";
    width: 24px; height: 1px;
    background: #9fe3a8;
}
.hero h1{
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 50px;
    line-height: 1.12;
    letter-spacing: -0.015em;
    margin-bottom: 24px;
}
.hero h1 em{
    font-style: normal;
    color: #8fe39c;
}
.hero p.lead{
    font-size: 17px;
    color: #cfcfcf;
    max-width: 480px;
    margin-bottom: 36px;
}
.hero-actions{ display:flex; gap:14px; margin-bottom: 48px;}
.hero-stats{
    display:flex;
    gap: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.14);
}
.hero-stats div b{
    display:block;
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 600;
    color: var(--white);
}
.hero-stats div span{
    font-size: 12.5px;
    color: #a8a8a8;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.hero-visual{
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 8px;
    overflow: hidden;
    background:
            linear-gradient(160deg, rgba(0,153,0,.35), rgba(51,154,153,.35)),
            #24402c;
}
.hero-visual img{
    width:100%; height:100%; object-fit:cover;
    mix-blend-mode: luminosity;
    opacity: .75;
}
.hero-visual .badge{
    position:absolute;
    left: 20px; bottom: 20px;
    background: rgba(255,255,255,.95);
    color: var(--ink);
    border-radius: var(--radius);
    padding: 14px 18px;
    display:flex;
    align-items:center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.hero-visual .badge .cross{ color: var(--green); width:18px; height:18px; flex-shrink:0; }

/* -------- section shell -------- */
section{ padding: 96px 0; }
.section-head{
    display:flex;
    justify-content: space-between;
    align-items:flex-end;
    margin-bottom: 48px;
    gap: 24px;
}
.section-label{
    display:flex;
    align-items:center;
    gap:8px;
    font-size: 12.5px;
    font-weight:700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-deep);
    margin-bottom: 14px;
}
.section-label .cross{ width:12px; height:12px; }
h2{
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 34px;
    letter-spacing: -0.01em;
    max-width: 620px;
}
.section-sub{
    max-width: 380px;
    color: var(--ink-soft);
    font-size: 15px;
}

/* -------- mission / qui sommes-nous -------- */
.mission{ background: var(--white); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.mission .wrap{
    display:grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 72px;
}
.mission-copy p{
    color: var(--ink-soft);
    font-size: 15.5px;
    margin-bottom: 18px;
    max-width: 460px;
}
.mission-copy p:first-of-type{
    font-family: var(--font-display);
    font-size: 21px;
    color: var(--ink);
    line-height: 1.5;
}
.pillars{ display:flex; flex-direction:column; gap: 28px; }
.pillar{
    display:flex;
    gap: 18px;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--line);
}
.pillar:last-child{ border-bottom:none; padding-bottom:0; }
.pillar-icon{
    flex-shrink:0;
    width: 44px; height:44px;
    border-radius: 8px;
    background: var(--green-tint);
    color: var(--green-deep);
    display:flex; align-items:center; justify-content:center;
}
.pillar h3{
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}
.pillar p{ font-size: 14px; color: var(--ink-soft); }

/* -------- actualités -------- */
.news{ background: var(--paper); }
.news-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.news-card{
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    transition: box-shadow .18s ease, transform .18s ease;
}
.news-card:hover{
    box-shadow: 0 18px 34px rgba(52,52,52,.10);
    transform: translateY(-3px);
}
.news-thumb{
    height: 170px;
    background: linear-gradient(135deg, var(--teal-tint), var(--green-tint));
    position:relative;
}
.news-thumb span.tag{
    position:absolute;
    top:14px; left:14px;
    background: var(--white);
    font-size: 11px;
    font-weight:700;
    letter-spacing:.05em;
    text-transform:uppercase;
    padding: 5px 10px;
    border-radius: 3px;
    color: var(--green-deep);
}
.news-thumb.urgent span.tag{ color: var(--red); }
.news-body{ padding: 22px 22px 24px; flex:1; display:flex; flex-direction:column; }
.news-date{ font-size: 12.5px; color: var(--ink-soft); margin-bottom: 10px; }
.news-body h3{
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height:1.35;
}
.news-body p{ font-size: 14px; color: var(--ink-soft); flex:1; margin-bottom:16px; }
.news-link{ font-size: 13.5px; font-weight:700; color: var(--green-deep); }
.news-link:hover{ text-decoration: underline; }

.news-more{ text-align:center; margin-top: 44px; }

/* -------- cta strip -------- */
.cta-strip{
    background: var(--green-tint);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.cta-strip .wrap{
    display:flex;
    align-items:center;
    justify-content: space-between;
    padding: 56px 32px;
    gap: 24px;
}
.cta-strip h3{
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    max-width: 480px;
}
.cta-strip p{ color: var(--ink-soft); font-size: 14.5px; margin-top:6px;}

/* -------- footer -------- */
footer{ background: var(--ink); color: #c9c9c9; padding-top: 72px; }
.footer-grid{
    display:grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-logo{
    display:flex; align-items:center; gap:10px;
    font-family: var(--font-display);
    font-weight:600;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-logo .cross{ color: var(--green); width:18px; height:18px; }
footer p.desc{ font-size: 13.5px; max-width: 260px; color: #a3a3a3; }
footer h4{
    color: var(--white);
    font-size: 13px;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
footer ul li{ margin-bottom: 11px; font-size: 14px; }
footer ul a:hover{ color: var(--white); }
.footer-bottom{
    display:flex;
    justify-content: space-between;
    padding: 22px 0 30px;
    font-size: 12.5px;
    color: #8a8a8a;
}
.footer-bottom a:hover{ color: var(--white); }

@media (max-width: 980px){
    nav.primary{ display:none; }
    .hero .wrap{ grid-template-columns: 1fr; padding-top:56px; padding-bottom:56px; }
    .hero-visual{ aspect-ratio: 16/9; }
    .mission .wrap{ grid-template-columns: 1fr; gap:40px; }
    .news-grid{ grid-template-columns: 1fr; }
    .footer-grid{ grid-template-columns: 1fr 1fr; }
    .cta-strip .wrap{ flex-direction:column; align-items:flex-start; }
}