
  :root{
    --green:#198754;
    --green-ink:#146c43;
    --bg:#f7f9f6;
    --green-light:#e6f2ec;
    --red:#e2071b;
    --red-soft:#ef4550;
    --charcoal:#141414;
    --white:#fffdf8;
    --line:rgba(25,135,84,0.18);
  }
  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Work Sans', sans-serif;
    color:var(--charcoal);
    background:var(--bg);
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3,.display{
    font-family:'Fraunces', serif;
    font-weight:600;
    letter-spacing:-0.01em;
  }
  a{color:inherit;text-decoration:none;}
  img{max-width:100%;display:block;}
  .wrap{max-width:1120px;margin:0 auto;padding:0 28px;}
  :focus-visible{outline:3px solid var(--red);outline-offset:3px;}

  /* ---------- Pulse motif (signature) ---------- */
  .pulse-divider{
    width:100%;
    height:34px;
    overflow:hidden;
  }
  .pulse-divider svg{width:100%;height:100%;display:block;}
  .pulse-line{
    fill:none;
    stroke:var(--red);
    stroke-width:2.5;
    stroke-linecap:round;
    stroke-linejoin:round;
  }

  /* ---------- Top bar ---------- */
  .topbar{
    background:var(--green-ink);
    color:var(--bg);
    font-size:0.86rem;
  }
  .topbar .wrap{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-top:9px;
    padding-bottom:9px;
    flex-wrap:wrap;
    gap:6px;
  }
  .topbar-calls{display:flex;gap:18px;flex-wrap:wrap;}
  .topbar-calls a{opacity:0.92;}
  .topbar-calls a:hover{color:var(--red-soft);}
  .topbar-loc{opacity:0.85;}

  /* ---------- Header / nav ---------- */
  header.site{
    background:var(--bg);
    border-bottom:1px solid var(--line);
    position:sticky;
    top:0;
    z-index:50;
  }
  nav.wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding-top:16px;
    padding-bottom:16px;
  }
  .brand{
    display:flex;
    align-items:center;
    gap:12px;
  }
  .brand-mark{
    width:46px;height:46px;
    border-radius:50%;
    overflow:hidden;
    flex-shrink:0;
    box-shadow:0 0 0 1px var(--line);
  }
  .brand-mark img{width:100%;height:100%;object-fit:cover;display:block;}
  .brand-text{line-height:1.15;}
  .brand-text .name{
    font-family:'Fraunces',serif;
    font-weight:600;
    font-size:1.08rem;
    color:var(--green-ink);
  }
  .brand-text .tag{
    font-size:0.72rem;
    letter-spacing:0.08em;
    text-transform:uppercase;
    color:var(--red);
  }
  .nav-links{
    display:flex;
    gap:30px;
    font-size:0.94rem;
    font-weight:500;
  }
  .nav-links a{position:relative;padding-bottom:4px;}
  .nav-links a:hover{color:var(--green);}
  .nav-cta{
    background:var(--green);
    color:var(--white);
    padding:10px 20px;
    border-radius:3px;
    font-weight:600;
    font-size:0.9rem;
    white-space:nowrap;
  }
  .nav-cta:hover{background:var(--green-ink);}
  .burger{display:none;background:none;border:none;cursor:pointer;padding:6px;}
  .burger span{display:block;width:24px;height:2px;background:var(--green-ink);margin:5px 0;}

  /* ---------- Hero ---------- */
  .hero{
    background:
      radial-gradient(ellipse at 82% 18%, rgba(201,138,44,0.13), transparent 55%),
      var(--bg);
    padding:0px 0 64px;
    position:relative;
    overflow:hidden;

  }
  .hero .wrap{
    display:block;
  }
  .eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:0.78rem;
    letter-spacing:0.12em;
    text-transform:uppercase;
    color:var(--green);
    font-weight:600;
    margin-bottom:22px;
  }
  .eyebrow::before{
    content:"";
    width:8px;height:8px;
    border-radius:50%;
    background:var(--red);
  }
  .hero h1{
    font-size:clamp(2.1rem, 3.6vw, 3.1rem);
    line-height:1.08;
    color:var(--bg);
    margin-bottom:20px;
  }
  .hero h1 em{
    font-style:italic;
    color:var(--red-soft);
  }
  .hero p.lead{
    font-size:1.08rem;
    color:rgba(247,249,246,0.9);
    max-width:44ch;
    margin-bottom:0;
  }

  /* ---------- Hero carousel (full-width banner) ---------- */
  .hero-carousel{
    position:relative;
    width:100%;
    min-height:clamp(480px, 54vw, 620px);
    border-radius:1px;
    overflow:hidden;
    margin-bottom:30px;
    box-shadow:0 24px 54px rgba(10,40,29,0.22);
  }
  .hero-slide{
    position:absolute;
    inset:0;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity 0.65s ease;
  }
  .hero-slide.active{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
  }
  .hero-slide-img{
    width:100%;height:100%;
    object-fit:cover;
    display:block;
  }
  .hero-slide-scrim{
    position:absolute;
    inset:0;
    background:linear-gradient(100deg, rgba(9,38,29,0.90) 0%, rgba(9,38,29,0.66) 36%, rgba(9,38,29,0.22) 62%, rgba(9,38,29,0.02) 80%);
  }
  .hero-slide-text{
    position:absolute;
    inset:0;
    z-index:2;
    display:flex;
    flex-direction:column;
    justify-content:center;
    max-width:56%;
    padding:40px 32px 40px 44px;
  }
  .hero-slide-text .eyebrow{color:var(--red-soft);}
  .hero-slide-text .eyebrow::before{background:var(--bg);}

  .hero-panel{
    position:absolute;
    top:28px;
    right:28px;
    width:290px;
    z-index:3;
    background:var(--green);
    border-radius:6px;
    padding:32px 28px;
    color:var(--bg);
    box-shadow:0 18px 40px rgba(0,0,0,0.3);
  }
  .hero-panel::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:6px;
    padding:1px;
    background:linear-gradient(135deg, rgba(226,182,103,0.5), transparent 60%);
    -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
    pointer-events:none;
  }
  .hero-logo{
    width:72px;height:72px;
    border-radius:50%;
    margin-bottom:18px;
    box-shadow:0 0 0 3px rgba(246,241,230,0.25);
  }
  .hero-panel .label{
    font-size:0.72rem;
    text-transform:uppercase;
    letter-spacing:0.1em;
    color:var(--red-soft);
    margin-bottom:8px;
  }
  .hero-panel .phone{
    font-family:'Fraunces',serif;
    font-size:1.28rem;
    font-weight:600;
    display:block;
    margin-bottom:4px;
  }
  .hero-panel .phone:hover{color:var(--red-soft);}
  .hero-panel hr{
    border:none;
    border-top:1px solid rgba(246,241,230,0.2);
    margin:18px 0;
  }
  .hero-panel .addr{font-size:0.92rem;opacity:0.92;}
  .hero-panel .addr strong{display:block;color:var(--bg);margin-bottom:4px;font-weight:600;}

  .carousel-dots{
    position:absolute;
    left:44px;
    bottom:26px;
    z-index:3;
    display:flex;
    gap:10px;
  }
  .hero-dot{
    width:10px;height:10px;
    border-radius:50%;
    background:transparent;
    border:1.5px solid rgba(247,249,246,0.65);
    opacity:0.8;
    cursor:pointer;
    padding:0;
    transition:opacity 0.2s ease, background 0.2s ease, width 0.2s ease;
  }
  .hero-dot:hover{opacity:1;}
  .hero-dot.active{
    background:var(--red);
    border-color:var(--red);
    opacity:1;
    width:26px;
    border-radius:6px;
  }
  .hero-actions{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
  }
  .btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:15px 26px;
    border-radius:3px;
    font-weight:600;
    font-size:0.98rem;
    transition:transform 0.15s ease, background 0.15s ease;
  }
  .btn-primary{background:var(--green);color:var(--white);}
  .btn-primary:hover{background:var(--green-ink);transform:translateY(-1px);}
  .btn-ghost{
    border:1.5px solid var(--green);
    color:var(--green);
  }
  .btn-ghost:hover{background:var(--green);color:var(--white);}

  @media (max-width:760px){
    .hero-carousel{min-height:820px;}
    .hero-slide-text{
      max-width:100%;
      justify-content:flex-start;
      padding:30px 22px 0;
    }
    .hero-slide-text h1{font-size:1.7rem;line-height:1.15;margin-bottom:14px;}
    .hero-slide-text .lead{max-width:none;font-size:0.96rem;}
    .hero-panel{
      position:absolute;
      top:auto;
      bottom:22px;
      left:16px;
      right:16px;
      width:auto;
      padding:22px 22px;
    }
    .hero-logo{width:56px;height:56px;margin-bottom:12px;}
    .hero-panel .phone{font-size:1.1rem;}
    .hero-panel hr{margin:14px 0;}
    .carousel-dots{
      left:0;right:0;
      top:14px;
      bottom:auto;
      justify-content:center;
    }
  }

  /* ---------- Section shell ---------- */
  section{padding:76px 0;}
  .section-head{
    max-width:640px;
    margin-bottom:48px;
  }
  .section-head .eyebrow{margin-bottom:14px;}
  .section-head h2{
    font-size:clamp(1.7rem,3vw,2.3rem);
    color:var(--green-ink);
    margin-bottom:14px;
  }
  .section-head p{color:#4a534d;font-size:1.02rem;}

  /* ---------- About / Qui sommes-nous ---------- */
  .about{background:var(--white);}
  .about-wrap{
    display:grid;
    grid-template-columns:0.85fr 1.15fr;
    gap:56px;
    align-items:center;
  }
  .about-media{position:relative;}
  .about-media::before{
    content:"";
    position:absolute;
    top:-18px;left:-18px;
    width:100%;height:100%;
    background:var(--green-light);
    border-radius:8px;
    z-index:0;
  }
  .about-media img{
    position:relative;
    z-index:1;
    width:100%;
    aspect-ratio:3/4;
    object-fit:cover;
    border-radius:8px;
    box-shadow:0 18px 40px -20px rgba(20,30,20,0.35);
  }
  .about-content p{
    color:#4a534d;
    font-size:1.02rem;
    max-width:56ch;
    margin-bottom:16px;
  }
  .about-points{
    list-style:none;
    margin-top:22px;
    display:flex;
    flex-direction:column;
    gap:10px;
  }
  .about-points li{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:600;
    color:var(--green-ink);
    font-size:0.96rem;
  }
  .about-points li::before{
    content:"";
    width:8px;height:8px;
    border-radius:50%;
    background:var(--red);
    flex-shrink:0;
  }

  /* ---------- Consultations spécialisées ---------- */
  .specialties{background:var(--bg);}
  .specialty-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
    gap:14px;
  }
  .specialty-item{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:6px;
    padding:16px 18px;
    font-weight:600;
    color:var(--green-ink);
    font-size:0.95rem;
    display:flex;
    align-items:center;
    gap:10px;
    transition:background 0.15s ease, transform 0.15s ease;
  }
  .specialty-item::before{
    content:"";
    width:7px;height:7px;
    border-radius:50%;
    background:var(--red);
    flex-shrink:0;
  }
  .specialty-item:hover{background:var(--green-light);transform:translateY(-2px);}

  /* ---------- Services ---------- */
  .services{background:var(--white);}
  .service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(300px,1fr));
    gap:1px;
    background:var(--line);
    border:1px solid var(--line);
    border-radius:6px;
    overflow:hidden;
  }
  .service-card{
    background:var(--white);
    padding:30px 26px;
    transition:background 0.15s ease;
  }
  .service-card:hover{background:var(--bg);}
  .service-card .icon{
    width:42px;height:42px;
    border-radius:50%;
    background:var(--green-light);
    display:flex;align-items:center;justify-content:center;
    margin-bottom:18px;
  }
  .service-card .icon svg{width:22px;height:22px;stroke:var(--green);}
  .service-card h3{
    font-size:1.08rem;
    color:var(--green-ink);
    margin-bottom:8px;
    font-weight:600;
  }
  .service-card p{font-size:0.92rem;color:#57615a;}

  /* ---------- Why / trust strip ---------- */
  .trust{
    background:var(--green);
    color:var(--bg);
  }
  .trust .wrap{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:36px;
  }
  .trust-item .num{
    font-family:'Fraunces',serif;
    font-size:2.1rem;
    color:var(--red-soft);
    margin-bottom:6px;
  }
  .trust-item .label{font-size:0.92rem;opacity:0.9;}

  /* ---------- Horaires + carte ---------- */
  .info{background:var(--bg);}
  .info .wrap{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:48px;
  }
  .hours-card, .loc-card{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:6px;
    padding:32px;
  }
  .hours-card h3, .loc-card h3{
    color:var(--green-ink);
    font-size:1.2rem;
    margin-bottom:20px;
  }
  .hours-row{
    display:flex;
    justify-content:space-between;
    padding:10px 0;
    border-bottom:1px solid var(--line);
    font-size:0.95rem;
  }
  .hours-row:last-of-type{border-bottom:none;}
  .hours-row span:first-child{color:#4a534d;}
  .hours-row span:last-child{font-weight:600;color:var(--green-ink);}
  .hours-note{
    margin-top:18px;
    padding:14px 16px;
    background:var(--green-light);
    border-left:3px solid var(--red);
    border-radius:3px;
    font-size:0.88rem;
    color:#4a3c22;
  }
  .loc-card address{font-style:normal;font-size:0.98rem;color:#3c4741;margin-bottom:20px;}
  .loc-card address strong{display:block;color:var(--green-ink);font-family:'Fraunces',serif;font-size:1.05rem;margin-bottom:6px;}
  .map-frame{
    width:100%;
    aspect-ratio:16/10;
    border-radius:4px;
    overflow:hidden;
    border:1px solid var(--line);
  }
  .map-frame iframe{width:100%;height:100%;border:0;}

  /* ---------- CTA band ---------- */
  .cta-band{
    background:var(--green-ink);
    color:var(--bg);
    text-align:center;
  }
  .cta-band h2{
    font-size:clamp(1.6rem,3vw,2.2rem);
    margin-bottom:16px;
  }
  .cta-band p{opacity:0.85;margin-bottom:32px;max-width:52ch;margin-left:auto;margin-right:auto;}
  .cta-phones{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
  }
  .cta-phones a{
    background:var(--red);
    color:var(--white);
    padding:16px 28px;
    border-radius:3px;
    font-weight:700;
    font-size:1.02rem;
  }
  .cta-phones a:hover{background:#e2071b;}

  /* ---------- Footer ---------- */
  footer{
    background:var(--green-light);
    padding:44px 0 28px;
    font-size:0.88rem;
    color:#4a534d;
  }
  footer .wrap{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    flex-wrap:wrap;
    gap:24px;
  }
  footer .brand-text .name{font-size:1rem;}
  .footer-cols{display:flex;gap:56px;flex-wrap:wrap;}
  .footer-col h4{
    font-size:0.78rem;
    text-transform:uppercase;
    letter-spacing:0.08em;
    color:var(--green);
    margin-bottom:12px;
  }
  .footer-col a, .footer-col p{display:block;margin-bottom:8px;}
  .footer-col a:hover{color:var(--green);}
  .copyline{
    margin-top:36px;
    padding-top:20px;
    border-top:1px solid var(--line);
    font-size:0.8rem;
    opacity:0.75;
  }

  @media (max-width: 860px){
    .hero .wrap{grid-template-columns:1fr;}
    .info .wrap{grid-template-columns:1fr;}
    .about-wrap{grid-template-columns:1fr;gap:40px;}
    .about-media{max-width:420px;margin:0 auto;}
    .nav-links{display:none;}
    .nav-cta{display:none;}
    .burger{display:block;}
  }
  @media (max-width:520px){
    .topbar .wrap{flex-direction:column;align-items:flex-start;}
    .about-media::before{top:-10px;left:-10px;}
  }
  @media (prefers-reduced-motion: reduce){
    html{scroll-behavior:auto;}
    *{transition:none !important;}
  }
