  :root{
    --cream:#FBF3EC;
    --sand:#F3E1D6;
    --sand-dark:#E8C9BA;
    --terracotta:#C1443B;
    --terracotta-dark:#9C332A;
    --sage:#C0873F;
    --sage-dark:#9C6B2E;
    --text:#3E322D;
    --text-light:#6E6059;
    --white:#FFFFFF;
    --radius:18px;
    --shadow:0 10px 30px rgba(62,54,47,0.08);
  }
  *{box-sizing:border-box;margin:0;padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color:var(--text);
    background:var(--cream);
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3,.logo{
    font-family:'Fraunces', Georgia, serif;
    font-weight:600;
    line-height:1.15;
  }
  a{color:inherit;text-decoration:none;}
  img{max-width:100%;display:block;}
  .container{max-width:1140px;margin:0 auto;padding:0 24px;}
  section{padding:96px 0;}
  .eyebrow{
    display:inline-block;
    font-size:0.8rem;
    letter-spacing:0.12em;
    text-transform:uppercase;
    color:var(--sage-dark);
    font-weight:600;
    margin-bottom:14px;
  }
  .section-head{max-width:640px;margin:0 auto 56px;text-align:center;}
  .section-head h2{font-size:clamp(1.8rem,3vw,2.4rem);margin-bottom:16px;}
  .section-head p{color:var(--text-light);font-size:1.05rem;}
  .btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:14px 30px;
    border-radius:999px;
    font-weight:600;
    font-size:0.98rem;
    transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
    cursor:pointer;
    border:none;
  }
  .btn-primary{background:var(--terracotta);color:var(--white);box-shadow:var(--shadow);}
  .btn-primary:hover{background:var(--terracotta-dark);transform:translateY(-2px);}
  .btn-ghost{background:transparent;color:var(--text);border:1.5px solid var(--sand-dark);}
  .btn-ghost:hover{border-color:var(--terracotta);color:var(--terracotta-dark);}

  /* Header */
  header{
    position:sticky;top:0;z-index:100;
    background:rgba(251,246,239,0.9);
    backdrop-filter:saturate(180%) blur(12px);
    border-bottom:1px solid var(--sand-dark);
  }
  .nav{
    display:flex;align-items:center;justify-content:space-between;
    padding:18px 24px;max-width:1140px;margin:0 auto;
  }
  .logo{font-size:1.3rem;color:var(--terracotta-dark);display:flex;align-items:center;gap:10px;}
  .logo-mark{
    width:38px;height:38px;border-radius:50%;
    background:linear-gradient(135deg,var(--sage) 0%, var(--terracotta) 100%);
    display:flex;align-items:center;justify-content:center;
    color:white;font-size:1.1rem;flex-shrink:0;
  }
  .nav-links{display:flex;align-items:center;gap:36px;}
  .nav-links a{font-weight:500;font-size:0.96rem;color:var(--text);}
  .nav-links a:hover{color:var(--terracotta-dark);}
  .nav-cta{display:flex;align-items:center;gap:18px;}
  .nav-toggle{display:none;background:none;border:none;font-size:1.6rem;cursor:pointer;color:var(--text);}

  @media (max-width:860px){
    .nav-links{
      position:absolute;top:100%;left:0;right:0;
      background:var(--cream);
      flex-direction:column;
      align-items:flex-start;
      padding:20px 24px;
      gap:18px;
      border-bottom:1px solid var(--sand-dark);
      display:none;
    }
    .nav-links.open{display:flex;}
    .nav-toggle{display:block;}
    .nav-cta .btn-ghost{display:none;}
  }

  /* Hero */
  .hero{
    position:relative;
    padding:88px 0 64px;
    background:
      radial-gradient(circle at 85% 20%, rgba(192,135,63,0.16), transparent 55%),
      radial-gradient(circle at 10% 80%, rgba(193,68,59,0.14), transparent 55%);
  }
  .hero-grid{display:grid;grid-template-columns:1.1fr 0.9fr;gap:60px;align-items:center;}
  .hero-title{margin-bottom:22px;}
  .hero-line{
    display:block;
    font-size:clamp(1.8rem,3.6vw,2.9rem);
    opacity:0;
    transform:translateY(16px);
    animation:heroLineIn .7s ease forwards;
  }
  .hero-line.line-1{animation-delay:.05s;}
  .hero-line.line-2{animation-delay:.25s; color:var(--terracotta-dark);}
  .hero-line.line-3{animation-delay:.45s;}
  .hero-title em{font-style:normal;color:var(--terracotta-dark);position:relative;}
  .hero-title em::after{
    content:"";position:absolute;left:0;right:0;bottom:2px;height:0.35em;
    background:var(--sand-dark);z-index:-1;opacity:.6;
  }
  @keyframes heroLineIn{to{opacity:1;transform:none;}}
  .hero-lede{font-size:1.12rem;color:var(--text-light);margin-bottom:34px;max-width:520px;}
  .hero-actions{display:flex;gap:16px;flex-wrap:wrap;margin-bottom:36px;}
  .hero-trust{display:flex;gap:28px;flex-wrap:wrap;color:var(--text-light);font-size:0.92rem;}
  .hero-trust strong{display:block;color:var(--text);font-family:'Fraunces',serif;font-size:1.4rem;font-weight:600;}
  .reveal-in{opacity:0;transform:translateY(14px);animation:heroLineIn .7s ease forwards;animation-delay:.6s;}
  .hero-actions.reveal-in{animation-delay:.7s;}
  .hero-trust.reveal-in{animation-delay:.8s;}
  .hero-art{
    aspect-ratio:4/5;
    border-radius:28px;
    background:linear-gradient(160deg, var(--sand) 0%, var(--sage) 120%);
    position:relative;
    overflow:hidden;
    box-shadow:var(--shadow);
  }
  .hero-art::before, .hero-art::after{
    content:"";position:absolute;border-radius:50%;
    animation:heroFloat 7s ease-in-out infinite alternate;
  }
  .hero-art::before{
    width:70%;height:70%;top:-15%;right:-15%;
    background:rgba(255,255,255,0.18);
  }
  .hero-art::after{
    width:45%;height:45%;bottom:-10%;left:-10%;
    background:rgba(193,68,59,0.35);
    animation-delay:1.2s;
  }
  @keyframes heroFloat{
    from{transform:translate(0,0);}
    to{transform:translate(-4%,4%);}
  }
  .hero-scroll-cue{
    display:flex;align-items:center;justify-content:center;
    width:38px;height:38px;border-radius:50%;
    margin:36px auto 0;
    border:1.5px solid var(--sand-dark);
    color:var(--text-light);
    font-size:1.3rem;line-height:1;
    animation:heroBounce 2.2s ease-in-out infinite;
  }
  .hero-scroll-cue:hover{border-color:var(--terracotta);color:var(--terracotta-dark);}
  @keyframes heroBounce{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(6px);}
  }

  /* Intro / accueil */
  .intro{padding:8px 0 56px;}
  .intro-rule{width:56px;height:4px;border-radius:2px;background:var(--terracotta);margin:0 auto 28px;}
  .intro-text{
    max-width:720px;margin:0 auto;text-align:center;
    font-family:'Fraunces',serif;font-weight:500;
    font-size:clamp(1.2rem,2.2vw,1.55rem);
    line-height:1.55;color:var(--text);
  }

  @media (max-width:860px){
    .hero-grid{grid-template-columns:1fr;}
    .hero-art{order:-1;aspect-ratio:16/10;}
  }
  @media (prefers-reduced-motion:reduce){
    .hero-line,.reveal-in,.hero-art::before,.hero-art::after,.hero-scroll-cue{animation:none;opacity:1;transform:none;}
  }

  /* Services / Practices (accordion) */
  .service-icon{
    width:52px;height:52px;border-radius:14px;
    background:var(--sand);
    display:flex;align-items:center;justify-content:center;
    font-size:1.5rem;flex-shrink:0;
    overflow:hidden;
    transition:background .25s ease, transform .25s ease;
  }
  .service-icon img{width:100%;height:100%;object-fit:cover;display:block;}
  .practice-list{border-top:1px solid var(--sand-dark);}
  .practice-row{border-bottom:1px solid var(--sand-dark);}
  .practice-toggle{
    width:100%;
    display:flex;align-items:center;justify-content:space-between;
    gap:20px;
    padding:26px 4px;
    background:none;border:none;cursor:pointer;
    text-align:left;font-family:inherit;color:inherit;
    -webkit-tap-highlight-color:transparent;
  }
  .practice-toggle:hover .service-icon{background:var(--sand-dark);}
  .practice-row.open .practice-toggle .service-icon{background:var(--terracotta);transform:scale(1.05);}
  .practice-head{display:flex;align-items:center;gap:18px;min-width:0;}
  .practice-num{
    font-family:'Fraunces',serif;font-weight:600;
    font-size:0.95rem;color:var(--sand-dark);
    width:24px;flex-shrink:0;
  }
  .practice-row.open .practice-num{color:var(--terracotta);}
  .practice-head h3{font-size:1.18rem;transition:color .2s ease;}
  .practice-row.open .practice-head h3{color:var(--terracotta-dark);}
  .practice-chevron{
    position:relative;
    width:34px;height:34px;border-radius:50%;
    background:var(--sand);
    flex-shrink:0;
    transition:transform .3s ease, background .25s ease;
  }
  .practice-chevron::before,.practice-chevron::after{
    content:"";position:absolute;top:50%;left:50%;
    background:var(--terracotta-dark);
    transform:translate(-50%,-50%);
  }
  .practice-chevron::before{width:12px;height:2px;}
  .practice-chevron::after{width:2px;height:12px;transition:opacity .25s ease;}
  .practice-row.open .practice-chevron{background:var(--sand-dark);transform:rotate(180deg);}
  .practice-row.open .practice-chevron::after{opacity:0;}
  .practice-collapse{
    display:grid;
    grid-template-rows:0fr;
    transition:grid-template-rows .35s ease;
  }
  .practice-row.open .practice-collapse{grid-template-rows:1fr;}
  .practice-collapse-inner{overflow:hidden;}
  .practice-tags{display:flex;flex-wrap:wrap;gap:8px;margin:0 0 16px 74px;}
  .tag{
    background:var(--sand);color:var(--terracotta-dark);
    font-size:0.76rem;font-weight:600;
    padding:5px 13px;border-radius:999px;
    white-space:nowrap;
  }
  .practice-body{padding:0 4px 32px 74px;}
  .practice-body p{color:var(--text-light);font-size:0.98rem;margin-bottom:14px;}
  .practice-body p:last-child{margin-bottom:0;}
  .practice-note{font-style:italic;font-size:0.9rem !important;}

  @media (max-width:760px){
    .practice-toggle{padding:20px 0;}
    .practice-tags,.practice-body{margin-left:0;padding-left:0;}
  }
  @media (prefers-reduced-motion:reduce){
    .practice-collapse,.practice-chevron,.service-icon{transition:none;}
  }

  /* About / Team */
  .about{background:var(--white);}
  .team-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:32px;
  }
  .team-card{
    background:var(--cream);
    border-radius:var(--radius);
    overflow:hidden;
    box-shadow:var(--shadow);
    display:flex;flex-direction:column;
  }
  .team-photo{
    aspect-ratio:4/3;
    background:linear-gradient(150deg, var(--terracotta) 0%, var(--sand) 100%);
    overflow:hidden;
  }
  .team-card:nth-child(2) .team-photo{background:linear-gradient(150deg, var(--sage) 0%, var(--sand) 100%);}
  .team-card:nth-child(3) .team-photo{background:linear-gradient(150deg, var(--terracotta-dark) 0%, var(--sage) 100%);}
  .team-photo img{width:100%;height:100%;object-fit:cover;display:block;}
  .team-body{padding:28px 26px 32px;flex:1;display:flex;flex-direction:column;}
  .team-body h3{font-size:1.2rem;margin-bottom:6px;}
  .team-role{color:var(--terracotta-dark);font-weight:600;font-size:0.92rem;margin-bottom:18px;}
  .team-training-label{
    font-size:0.78rem;text-transform:uppercase;letter-spacing:0.06em;
    color:var(--text-light);font-weight:600;margin-bottom:10px;
  }
  .team-training{list-style:none;}
  .team-training li{
    position:relative;padding-left:16px;
    font-size:0.9rem;color:var(--text-light);
    margin-bottom:7px;line-height:1.4;
  }
  .team-training li:last-child{margin-bottom:0;}
  .team-training li::before{
    content:"";position:absolute;left:0;top:0.55em;
    width:5px;height:5px;border-radius:50%;
    background:var(--terracotta);
  }
  .team-link{margin-top:auto;align-self:flex-start;padding:11px 22px;font-size:0.92rem;}

  /* Hours / info band */
  .info-band{background:var(--sage-dark);color:var(--white);}
  .info-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:40px;}
  .info-grid h3{font-family:'Fraunces',serif;font-size:1.2rem;margin-bottom:14px;color:var(--sand);}
  .info-grid p, .info-grid li{color:rgba(255,255,255,0.88);font-size:0.96rem;}
  .info-grid ul{list-style:none;}
  .info-grid li{display:flex;justify-content:space-between;padding:6px 0;border-bottom:1px solid rgba(255,255,255,0.12);}
  @media (max-width:860px){.info-grid{grid-template-columns:1fr;gap:32px;}}

  /* Contact */
  .contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:50px;}
  .contact-card{
    background:var(--white);border-radius:var(--radius);
    padding:40px;box-shadow:var(--shadow);
  }
  .contact-card h3{margin-bottom:22px;font-size:1.3rem;}
  .contact-row{display:flex;gap:16px;margin-bottom:20px;align-items:flex-start;}
  .contact-icon{
    width:40px;height:40px;border-radius:12px;background:var(--sand);
    display:flex;align-items:center;justify-content:center;flex-shrink:0;
  }
  .contact-row strong{display:block;font-size:0.95rem;margin-bottom:2px;}
  .contact-row span, .contact-row a{color:var(--text-light);font-size:0.93rem;}
  .map-embed{
    border-radius:var(--radius);
    overflow:hidden;
    min-height:340px;
    height:100%;
    box-shadow:var(--shadow);
  }
  .map-embed iframe{
    width:100%;height:100%;min-height:340px;
    border:0;display:block;
  }

  @media (max-width:860px){.contact-grid{grid-template-columns:1fr;}}

  /* Resources */
  .resources{padding-top:0;}
  .resources-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:22px;
  }
  .resource-card{
    background:var(--white);
    border-radius:var(--radius);
    padding:30px 26px;
    box-shadow:var(--shadow);
    display:flex;flex-direction:column;
    transition:transform .2s ease, box-shadow .2s ease;
  }
  a.resource-card:hover{transform:translateY(-4px);box-shadow:0 14px 34px rgba(62,54,47,0.12);}
  .resource-icon{
    width:80px;height:80px;border-radius:20px;
    background:var(--sand);
    display:flex;align-items:center;justify-content:center;
    font-size:2.4rem;margin-bottom:20px;
  }
  .resource-card h3{font-size:1.05rem;margin-bottom:10px;line-height:1.35;}
  .resource-link{
    margin-top:auto;padding-top:6px;
    font-size:0.88rem;font-weight:600;color:var(--terracotta-dark);
  }
  .resource-card-rules{background:var(--sand);box-shadow:none;}
  .resource-rules{list-style:none;}
  .resource-rules li{
    position:relative;padding-left:18px;
    font-size:0.88rem;color:var(--text-light);
    margin-bottom:9px;line-height:1.4;
  }
  .resource-rules li:last-child{margin-bottom:0;}
  .resource-rules li::before{
    content:"";position:absolute;left:0;top:0.55em;
    width:6px;height:6px;border-radius:50%;
    background:var(--terracotta);
  }

  /* CTA band */
  .cta-band{
    background:linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
    color:var(--white);text-align:center;border-radius:28px;
    margin:0 24px;padding:64px 40px;
  }
  .cta-band h2{font-size:clamp(1.6rem,3vw,2.1rem);margin-bottom:16px;}
  .cta-band p{opacity:0.92;margin-bottom:30px;}
  .cta-band .btn-primary{background:var(--white);color:var(--terracotta-dark);}
  .cta-band .btn-primary:hover{background:var(--sand);}

  /* Footer */
  footer{padding:60px 0 30px;}
  .footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:40px;margin-bottom:40px;}
  .footer-grid h4{font-size:0.95rem;margin-bottom:16px;}
  .footer-grid ul{list-style:none;}
  .footer-grid li{margin-bottom:10px;}
  .footer-grid a, .footer-grid p{color:var(--text-light);font-size:0.92rem;}
  .footer-bottom{
    border-top:1px solid var(--sand-dark);padding-top:24px;
    display:flex;justify-content:space-between;flex-wrap:wrap;gap:12px;
    color:var(--text-light);font-size:0.85rem;
  }
  @media (max-width:860px){.footer-grid{grid-template-columns:1fr;}}

  .reveal{opacity:0;transform:translateY(18px);transition:opacity .6s ease, transform .6s ease;}
  .reveal.visible{opacity:1;transform:translateY(0);}

  /* Practice detail pages */
  .breadcrumb{
    display:inline-flex;align-items:center;gap:6px;
    font-size:0.9rem;font-weight:600;color:var(--text-light);
    margin-bottom:22px;
  }
  .breadcrumb:hover{color:var(--terracotta-dark);}
  .page-hero{
    padding:52px 0 60px;
    background:
      radial-gradient(circle at 85% 20%, rgba(192,135,63,0.16), transparent 55%),
      radial-gradient(circle at 10% 80%, rgba(193,68,59,0.14), transparent 55%);
  }
  .page-hero .eyebrow{margin-bottom:14px;}
  .page-hero h1{font-size:clamp(2rem,4vw,2.8rem);margin-bottom:18px;}
  .page-hero p{font-size:1.08rem;color:var(--text-light);max-width:640px;}
  .page-hero-actions{display:flex;gap:16px;flex-wrap:wrap;margin-top:30px;}

  .page-subnav{
    display:flex;flex-wrap:wrap;gap:10px;
    padding:22px 0;
    border-top:1px solid var(--sand-dark);
    border-bottom:1px solid var(--sand-dark);
  }
  .page-subnav a{
    font-size:0.86rem;font-weight:600;color:var(--text-light);
    background:var(--sand);padding:8px 16px;border-radius:999px;
    transition:background .2s ease, color .2s ease;
  }
  .page-subnav a:hover{background:var(--terracotta);color:var(--white);}

  .page-section{padding:56px 0;border-bottom:1px solid var(--sand-dark);}
  .page-section:last-of-type{border-bottom:none;}
  .page-section h2{font-size:clamp(1.4rem,2.6vw,1.8rem);margin-bottom:22px;}
  .page-section-num{
    display:inline-block;font-family:'Fraunces',serif;font-weight:600;
    color:var(--terracotta);font-size:0.95rem;margin-bottom:10px;
  }

  .content-placeholder{
    border:1.5px dashed var(--sand-dark);
    border-radius:var(--radius);
    padding:26px 28px;
    background:var(--cream);
    color:var(--text-light);
    font-style:italic;
    font-size:0.96rem;
  }

  /* Motif de consultation (liste 2 colonnes) */
  .motif-list{list-style:none;columns:2;column-gap:44px;}
  .motif-list li{
    break-inside:avoid;
    position:relative;padding-left:17px;
    margin-bottom:15px;
    font-size:0.95rem;color:var(--text-light);line-height:1.5;
  }
  .motif-list li::before{
    content:"";position:absolute;left:0;top:0.55em;
    width:6px;height:6px;border-radius:50%;
    background:var(--terracotta);
  }
  .motif-list strong{color:var(--text);font-weight:600;}
  @media (max-width:700px){.motif-list{columns:1;}}

  /* Chip lists (techniques, matériel) */
  .chip-list{display:flex;flex-wrap:wrap;gap:11px;}
  .chip{
    background:var(--sand);color:var(--terracotta-dark);
    font-weight:600;font-size:0.9rem;
    padding:10px 18px;border-radius:999px;
  }

  /* Tarifs */
  .page-section p{color:var(--text-light);margin-bottom:18px;max-width:720px;line-height:1.6;}
  .page-section p:last-child{margin-bottom:0;}

  .step-group{margin-bottom:30px;}
  .step-group:last-child{margin-bottom:0;}
  .step-label{
    display:block;font-size:0.8rem;font-weight:600;
    text-transform:uppercase;letter-spacing:0.06em;
    color:var(--terracotta);margin-bottom:10px;
  }

  .tarif-card{
    background:var(--sand);border-radius:var(--radius);
    padding:32px 34px;max-width:440px;
  }
  .tarif-amount{
    font-family:'Fraunces',serif;font-weight:600;
    font-size:2.3rem;color:var(--terracotta-dark);margin-right:8px;
  }
  .tarif-label{color:var(--text-light);font-size:0.9rem;}
  .tarif-card p{max-width:none;margin:16px 0 22px;}

  .course-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:22px;
  }
  .course-card{
    background:var(--white);
    border-radius:var(--radius);
    padding:26px 28px;
    box-shadow:var(--shadow);
  }
  .course-slot{
    display:inline-block;
    font-family:'Fraunces',serif;font-weight:600;
    color:var(--terracotta-dark);
    background:var(--sand);
    padding:6px 16px;border-radius:999px;
    font-size:0.9rem;margin-bottom:14px;
  }
  .course-card p{margin-bottom:0;}
  .price-list{list-style:none;border-top:1px solid var(--sand-dark);}
  .price-list li{
    display:flex;justify-content:space-between;align-items:baseline;gap:24px;
    padding:16px 0;border-bottom:1px solid var(--sand-dark);
  }
  .price-list li span:first-child{color:var(--text);font-size:0.95rem;}
  .price-list li span:last-child{
    font-weight:600;color:var(--terracotta-dark);
    white-space:nowrap;font-size:0.95rem;
  }

  .practice-more{
    display:inline-block;
    margin:18px 74px 0;
    font-size:0.88rem;font-weight:600;color:var(--terracotta-dark);
  }
  .practice-more:hover{text-decoration:underline;}

  @media (max-width:760px){
    .practice-more{margin:14px 0 0;}
  }
