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

    :root {
      --fond: #F7F9F7;
      --blanc: #FFFFFF;
      --sauge: #769488;
      --sauge-profond: #254E42;
      --sauge-clair: #DDE9E3;
      --beige: #E8DDD6;
      --beige-clair: #F5F0EC;
      --brun: #26332F;
      --brun-moyen: #5D6B66;
      --brun-clair: #87918D;
      --terracotta: #B5655B;
      --terracotta-clair: #F3DFDB;
      --texte: #26332F;
      --texte-doux: #596762;
      --bordure: #DCE4E0;
      --radius: 8px;
      --radius-sm: 6px;
      --radius-lg: 8px;
      --ombre: 0 18px 45px rgba(37,78,66,0.12);
      --ombre-sm: 0 8px 24px rgba(37,78,66,0.08);
      --serif: 'Iowan Old Style', 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
      --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      --transition: 0.3s ease;
    }

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: var(--sans);
      background: var(--fond);
      color: var(--texte);
      line-height: 1.75;
      -webkit-font-smoothing: antialiased;
    }

    .skip-link {
      position: fixed;
      top: 0.75rem;
      left: 0.75rem;
      z-index: 1000;
      padding: 0.7rem 1rem;
      background: var(--brun);
      color: #fff;
      border-radius: var(--radius-sm);
      text-decoration: none;
      transform: translateY(-160%);
      transition: transform var(--transition);
    }
    .skip-link:focus { transform: translateY(0); }

    /* ======= NAVIGATION ======= */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--bordure);
      transition: var(--transition);
    }

    .nav-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 2rem;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      text-decoration: none;
      min-width: 0;
    }
    .nav-logo-mark {
      width: 42px;
      height: 42px;
      flex: 0 0 42px;
      color: var(--sauge-profond);
      filter: drop-shadow(0 4px 10px rgba(63,95,82,0.12));
    }
    .nav-logo-mark svg {
      display: block;
      width: 100%;
      height: 100%;
    }
    .nav-logo-text {
      display: flex;
      flex-direction: column;
      min-width: 0;
    }
    .nav-logo-name {
      font-family: var(--serif);
      font-size: 1.12rem;
      font-weight: 600;
      color: var(--sauge-profond);
      line-height: 1.2;
    }
    .nav-logo-titre {
      font-size: 0.7rem;
      font-weight: 300;
      color: var(--brun-moyen);
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 0.25rem;
      list-style: none;
    }

    .nav-links a {
      display: block;
      padding: 0.4rem 0.75rem;
      font-size: 0.85rem;
      font-weight: 400;
      color: var(--texte-doux);
      text-decoration: none;
      border-radius: var(--radius-sm);
      transition: var(--transition);
      cursor: pointer;
    }

    .nav-links a:hover, .nav-links a.active {
      color: var(--sauge-profond);
      background: #EDF3F0;
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.5rem 1.1rem;
      background: var(--sauge-profond);
      color: #fff !important;
      border-radius: var(--radius-sm);
      font-size: 0.85rem !important;
      font-weight: 500 !important;
      text-decoration: none;
      transition: var(--transition);
    }
    .nav-cta:hover {
      background: var(--brun) !important;
      color: #fff !important;
    }
    .nav-links .nav-cta.active {
      background: var(--sauge-profond);
      color: #fff;
    }

    .nav-burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      border: none;
      background: none;
    }
    .nav-burger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--sauge-profond);
      border-radius: 2px;
      transition: var(--transition);
    }

    .nav-mobile {
      display: none;
      flex-direction: column;
      background: var(--fond);
      border-top: 1px solid var(--bordure);
      padding: 1rem 2rem 1.5rem;
      gap: 0.25rem;
    }
    .nav-mobile.open { display: flex; }
    .nav-mobile a {
      padding: 0.6rem 0;
      font-size: 0.9rem;
      color: var(--texte);
      text-decoration: none;
      border-bottom: 1px solid var(--bordure);
      cursor: pointer;
    }
    .nav-mobile a:last-child { border-bottom: none; }

    /* ======= PAGES ======= */
    .page { display: none; }
    .page.active { display: block; }

    /* ======= HERO ======= */
    .hero {
      min-height: 90svh;
      display: flex;
      align-items: center;
      padding: 112px 2rem 4rem;
      position: relative;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: #F0F5F2;
    }

    .hero-ornament {
      display: none;
    }

    .hero-content {
      position: relative;
      max-width: 1180px;
      margin: 0 auto;
      width: 100%;
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(340px, 430px);
      gap: clamp(3rem, 7vw, 7rem);
      align-items: center;
    }

    .hero-eyebrow {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 400;
      letter-spacing: 0;
      text-transform: uppercase;
      color: var(--terracotta);
      margin-bottom: 1.25rem;
      padding: 0 0 0 0.8rem;
      border-left: 3px solid var(--terracotta);
    }

    .hero h1 {
      font-family: var(--serif);
      font-size: 4.4rem;
      font-weight: 400;
      line-height: 1.08;
      color: var(--brun);
      margin-bottom: 0.5rem;
    }
    .hero h1 em {
      font-style: italic;
      color: var(--sauge-profond);
    }

    .hero-sub {
      font-family: var(--serif);
      font-size: 1.45rem;
      font-weight: 400;
      font-style: normal;
      color: var(--brun-moyen);
      margin-bottom: 1.75rem;
      line-height: 1.6;
    }

    .hero-accroche {
      font-size: 1rem;
      color: var(--texte-doux);
      max-width: 520px;
      margin-bottom: 2.5rem;
      line-height: 1.8;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.85rem 1.75rem;
      background: var(--sauge-profond);
      color: #fff;
      border-radius: var(--radius-sm);
      font-size: 0.95rem;
      font-weight: 500;
      text-decoration: none;
      transition: var(--transition);
      border: none;
      cursor: pointer;
    }
    .btn-primary:hover { background: var(--brun); transform: translateY(-1px); box-shadow: var(--ombre-sm); }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.85rem 1.75rem;
      background: transparent;
      color: var(--sauge-profond);
      border-radius: var(--radius-sm);
      font-size: 0.95rem;
      font-weight: 500;
      text-decoration: none;
      transition: var(--transition);
      border: 1.5px solid var(--sauge);
      cursor: pointer;
    }
    .btn-secondary:hover { background: var(--sauge-clair); border-color: var(--sauge-profond); }

    .hero-infos {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
    }
    .hero-info-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.85rem;
      color: var(--brun-moyen);
    }
    .hero-info-icon {
      width: 32px; height: 32px;
      border-radius: 50%;
      background: var(--beige);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.85rem;
      flex-shrink: 0;
    }

    .hero-card {
      background: transparent;
      padding: 0;
      border: 0;
    }
    .hero-card-photo {
      width: 100%;
      aspect-ratio: 4/5;
      border-radius: var(--radius-lg);
      background: var(--sauge-clair);
      margin-bottom: 1.5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      color: var(--sauge-profond);
      overflow: hidden;
      box-shadow: var(--ombre);
    }
    .hero-card-photo img,
    .qui-photo img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center 38%;
    }
    .hero-card-photo picture,
    .qui-photo picture { width: 100%; height: 100%; display: block; }
    .hero-card-photo svg { width: 48px; height: 48px; opacity: 0.5; }
    .hero-card-photo span { display: none; font-size: 0.75rem; color: var(--brun-clair); }

    .hero-card-name {
      font-family: var(--serif);
      font-size: 1.35rem;
      font-weight: 600;
      color: var(--brun);
      margin-bottom: 0.25rem;
    }
    .hero-card-titre { font-size: 0.8rem; color: var(--brun-moyen); margin-bottom: 1rem; }

    .hero-card-tel {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.7rem 0;
      background: transparent;
      border-radius: var(--radius-sm);
      color: var(--sauge-profond);
      font-weight: 500;
      font-size: 0.95rem;
      text-decoration: none;
      transition: var(--transition);
    }
    .hero-card-tel:hover { color: var(--terracotta); }

    .hero-card-note {
      margin-top: 0.75rem;
      font-size: 0.75rem;
      color: var(--brun-clair);
      text-align: left;
    }

    /* ======= SECTIONS COMMUNES ======= */
    .section {
      padding: 5rem 2rem;
    }
    .section-inner {
      max-width: 1180px;
      margin: 0 auto;
    }
    .section-alt { background: #EEF3F0; }
    .section-dark { background: var(--sauge-profond); color: #fff; }

    .section-label {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 400;
      letter-spacing: 0;
      text-transform: uppercase;
      color: var(--terracotta);
      margin-bottom: 1rem;
      padding: 0 0 0 0.7rem;
      background: transparent;
      border-left: 2px solid var(--terracotta);
    }
    .section-dark .section-label {
      background: rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.8);
    }

    .section-titre {
      font-family: var(--serif);
      font-size: 2.6rem;
      font-weight: 400;
      line-height: 1.2;
      color: var(--brun);
      margin-bottom: 1rem;
    }
    .section-dark .section-titre { color: #fff; }

    .section-sous-titre {
      font-size: 1.05rem;
      color: var(--texte-doux);
      max-width: 600px;
      line-height: 1.8;
    }
    .section-dark .section-sous-titre { color: rgba(255,255,255,0.75); }

    .section-head {
      margin-bottom: 3rem;
    }
    .section-head.centré { text-align: center; }
    .section-head.centré .section-sous-titre { margin: 0 auto; }

    /* ======= GRID CARDS ======= */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }
    .cards-grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

    .card {
      background: var(--blanc);
      border-radius: var(--radius);
      padding: 1.75rem;
      border: 1px solid var(--bordure);
      transition: var(--transition);
    }
    .card:hover { transform: translateY(-3px); box-shadow: var(--ombre); }

    .card-icon {
      width: 48px; height: 48px;
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
      margin-bottom: 1.1rem;
    }
    .card-icon-sauge { background: var(--sauge-clair); }
    .card-icon-beige { background: var(--beige); }
    .card-icon-terra { background: var(--terracotta-clair); }

    .card-titre {
      font-family: var(--serif);
      font-size: 1.2rem;
      font-weight: 500;
      color: var(--brun);
      margin-bottom: 0.6rem;
    }

    .card-texte {
      font-size: 0.9rem;
      color: var(--texte-doux);
      line-height: 1.75;
      margin-bottom: 1.2rem;
    }

    .card-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-bottom: 1rem;
    }
    .tag {
      font-size: 0.72rem;
      padding: 0.25rem 0.6rem;
      background: var(--beige-clair);
      color: var(--brun-moyen);
      border-radius: 20px;
      border: 1px solid var(--bordure);
    }

    .card-lien {
      font-size: 0.85rem;
      color: var(--sauge-profond);
      font-weight: 500;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      transition: var(--transition);
      cursor: pointer;
    }
    .card-lien:hover { gap: 0.55rem; }

    /* ======= POURQUOI ======= */
    .motifs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 1rem;
    }

    .motif-item {
      padding: 1.1rem 1.25rem;
      background: var(--blanc);
      border-radius: var(--radius-sm);
      border: 1px solid var(--bordure);
      font-size: 0.88rem;
      color: var(--texte-doux);
      display: flex;
      align-items: center;
      gap: 0.6rem;
      transition: var(--transition);
    }
    .motif-item:hover {
      border-color: var(--sauge);
      background: var(--sauge-clair);
      color: var(--sauge-profond);
    }
    .motif-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--sauge);
      flex-shrink: 0;
    }

    .texte-rassurant {
      max-width: 740px;
      margin: 2.5rem auto 0;
      padding: 2rem 2.5rem;
      background: var(--blanc);
      border-radius: var(--radius);
      border-left: 3px solid var(--sauge);
      font-size: 1rem;
      color: var(--texte-doux);
      line-height: 1.85;
      font-style: italic;
    }

    /* ======= PREMIER RDV ======= */
    .rdv-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5rem;
      margin-bottom: 3rem;
    }

    .rdv-step {
      display: flex;
      gap: 1rem;
      padding: 1.5rem;
      background: var(--blanc);
      border-radius: var(--radius);
      border: 1px solid var(--bordure);
    }

    .rdv-step-num {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--sauge-profond);
      color: #fff;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--serif);
      font-size: 1rem;
      font-weight: 500;
      flex-shrink: 0;
    }

    .rdv-step-titre {
      font-weight: 500;
      font-size: 0.95rem;
      color: var(--brun);
      margin-bottom: 0.4rem;
    }
    .rdv-step-texte { font-size: 0.87rem; color: var(--texte-doux); line-height: 1.7; }

    .rdv-infos {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
      margin-bottom: 3rem;
    }

    .rdv-info-item {
      padding: 1.25rem 1.5rem;
      background: var(--beige-clair);
      border-radius: var(--radius-sm);
      border: 1px solid var(--beige);
    }
    .rdv-info-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0; color: var(--brun-clair); margin-bottom: 0.4rem; }
    .rdv-info-val { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; color: var(--brun); }

    /* ======= FAQ ======= */
    .faq { max-width: 720px; }

    .faq-item {
      border-bottom: 1px solid var(--bordure);
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      text-align: left;
      padding: 1.1rem 0;
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      font-family: var(--sans);
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--brun);
      transition: color var(--transition);
    }
    .faq-question:hover { color: var(--sauge-profond); }

    .faq-icon {
      width: 22px; height: 22px;
      border-radius: 50%;
      background: var(--sauge-clair);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      font-size: 0.9rem;
      color: var(--sauge-profond);
      transition: var(--transition);
    }
    .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--sauge-profond); color: #fff; }

    .faq-reponse {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.3s ease;
      font-size: 0.9rem;
      color: var(--texte-doux);
      line-height: 1.8;
    }
    .faq-item.open .faq-reponse {
      max-height: 300px;
      padding-bottom: 1.25rem;
    }

    /* ======= QUI SUIS-JE ======= */
    .qui-grid {
      display: grid;
      grid-template-columns: 340px 1fr;
      gap: 4rem;
      align-items: start;
    }

    .qui-photo {
      aspect-ratio: 3/4;
      border-radius: var(--radius-lg);
      background: var(--sauge-clair);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      color: var(--sauge-profond);
      position: sticky;
      top: 88px;
      overflow: hidden;
    }
    .qui-photo svg { width: 52px; height: 52px; opacity: 0.4; }
    .qui-photo span { display: none; font-size: 0.75rem; color: var(--brun-clair); }

    .qui-diplomes {
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .diplome-item {
      display: flex;
      gap: 0.75rem;
      padding: 1rem 1.25rem;
      background: var(--blanc);
      border-radius: var(--radius-sm);
      border: 1px solid var(--bordure);
    }
    .diplome-annee { font-size: 0.75rem; font-weight: 500; color: var(--sauge-profond); min-width: 44px; }
    .diplome-texte { font-size: 0.87rem; color: var(--texte-doux); line-height: 1.6; }

    .qui-texte { font-size: 1rem; color: var(--texte-doux); line-height: 1.85; }
    .qui-texte p { margin-bottom: 1.25rem; }
    .qui-texte strong { color: var(--brun); font-weight: 500; }

    .qui-expertises {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 1.5rem;
    }
    .expertise-tag {
      padding: 0.4rem 0.9rem;
      background: var(--sauge-clair);
      color: var(--sauge-profond);
      border-radius: 20px;
      font-size: 0.82rem;
      font-weight: 500;
    }

    /* ======= INFOS PRATIQUES ======= */
    .infos-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
      margin-bottom: 3rem;
    }

    .info-card {
      background: var(--blanc);
      border-radius: var(--radius);
      padding: 1.75rem;
      border: 1px solid var(--bordure);
    }

    .info-card-titre {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-weight: 500;
      font-size: 0.95rem;
      color: var(--brun);
      margin-bottom: 1rem;
    }
    .info-card-icon {
      width: 32px; height: 32px;
      border-radius: 8px;
      background: var(--sauge-clair);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.85rem;
    }

    .info-card-body { font-size: 0.88rem; color: var(--texte-doux); line-height: 1.75; }
    .info-card-body strong { color: var(--brun); }
    .info-card-body a { color: var(--sauge-profond); }

    .contact-form {
      background: var(--blanc);
      border-radius: var(--radius);
      padding: 2.5rem;
      border: 1px solid var(--bordure);
      max-width: 640px;
    }

    .form-notice {
      padding: 1rem 1.25rem;
      background: var(--terracotta-clair);
      border-radius: var(--radius-sm);
      border-left: 3px solid var(--terracotta);
      font-size: 0.82rem;
      color: var(--brun);
      margin-bottom: 1.5rem;
      line-height: 1.65;
    }

    .form-group { margin-bottom: 1.25rem; }

    .form-label {
      display: block;
      font-size: 0.82rem;
      font-weight: 500;
      color: var(--brun);
      margin-bottom: 0.4rem;
    }
    .form-required { color: var(--terracotta); }

    .form-control {
      width: 100%;
      padding: 0.75rem 1rem;
      border: 1.5px solid var(--bordure);
      border-radius: var(--radius-sm);
      background: var(--fond);
      color: var(--texte);
      font-family: var(--sans);
      font-size: 0.9rem;
      transition: border-color var(--transition);
      outline: none;
    }
    .form-control:focus { border-color: var(--sauge); background: var(--blanc); }
    textarea.form-control { resize: vertical; min-height: 130px; }
    .form-honeypot {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }
    .form-status {
      display: none;
      padding: 1rem 1.25rem;
      border-radius: var(--radius-sm);
      margin-top: 1rem;
      font-size: 0.88rem;
      line-height: 1.6;
    }
    .form-status.success { background: var(--sauge-clair); color: var(--sauge-profond); }
    .form-status.error { background: var(--terracotta-clair); color: var(--brun); }

    .form-rgpd {
      display: flex;
      gap: 0.75rem;
      align-items: flex-start;
      padding: 1rem 1.25rem;
      background: var(--beige-clair);
      border-radius: var(--radius-sm);
      margin-bottom: 1.5rem;
      font-size: 0.82rem;
      color: var(--texte-doux);
      line-height: 1.7;
    }
    .form-rgpd input[type="checkbox"] {
      margin-top: 3px;
      accent-color: var(--sauge-profond);
      flex-shrink: 0;
    }

    .map-placeholder {
      width: 100%;
      height: 280px;
      border-radius: var(--radius);
      background: var(--sauge-clair);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      color: var(--sauge-profond);
      border: 1px solid var(--bordure);
      margin-top: 2rem;
    }
    .map-placeholder svg { width: 36px; height: 36px; opacity: 0.5; }
    .map-placeholder p { font-size: 0.85rem; color: var(--brun-moyen); }
    .map-placeholder .btn-secondary { background: var(--blanc); }

    /* ======= ENTREPRISES ======= */
    .entreprise-services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
      margin-bottom: 3rem;
    }

    .ent-service {
      padding: 1.75rem;
      background: rgba(255,255,255,0.1);
      border-radius: var(--radius);
      border: 1px solid rgba(255,255,255,0.2);
    }

    .ent-service-titre {
      font-family: var(--serif);
      font-size: 1.15rem;
      font-weight: 400;
      color: #fff;
      margin-bottom: 0.6rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }
    .ent-service-texte { font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.75; }

    /* ======= CTA BANDE ======= */
    .cta-bande {
      padding: 3.5rem 2rem;
      background: var(--beige);
      text-align: center;
    }

    .cta-bande-titre {
      font-family: var(--serif);
      font-size: 2.1rem;
      font-weight: 400;
      color: var(--brun);
      margin-bottom: 1rem;
    }

    .cta-bande-texte {
      font-size: 0.95rem;
      color: var(--texte-doux);
      margin-bottom: 2rem;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-actions {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .btn-tel {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.85rem 1.75rem;
      background: var(--terracotta);
      color: #fff;
      border-radius: var(--radius-sm);
      font-size: 0.95rem;
      font-weight: 500;
      text-decoration: none;
      transition: var(--transition);
    }
    .btn-tel:hover { background: var(--brun); }

    /* ======= URGENCE BANDEAU ======= */
    .urgence-bandeau {
      background: #fff8f6;
      border: 1px solid #f0d4c8;
      border-radius: var(--radius-sm);
      padding: 0.75rem 1.25rem;
      font-size: 0.8rem;
      color: var(--brun-moyen);
      text-align: center;
      max-width: 1180px;
      margin: 0 auto 2rem;
    }
    .urgence-bandeau strong { color: var(--terracotta); }

    /* ======= FOOTER ======= */
    .footer {
      background: var(--sauge-profond);
      color: rgba(255,255,255,0.8);
      padding: 3.5rem 2rem 2rem;
    }

    .footer-inner {
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-brand-name {
      font-family: var(--serif);
      font-size: 1.25rem;
      color: #fff;
      margin-bottom: 0.3rem;
    }
    .footer-brand-sub { font-size: 0.78rem; color: rgba(255,255,255,0.58); margin-bottom: 1rem; letter-spacing: 0; text-transform: uppercase; }
    .footer-brand-desc { font-size: 0.85rem; line-height: 1.75; color: rgba(255,255,255,0.6); }

    .footer-col-titre {
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0;
      color: rgba(255,255,255,0.4);
      margin-bottom: 1rem;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
    .footer-col ul a {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.65);
      text-decoration: none;
      cursor: pointer;
      transition: color var(--transition);
    }
    .footer-col ul a:hover { color: #fff; }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.4);
    }
    .footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; cursor: pointer; }
    .footer-bottom a:hover { color: rgba(255,255,255,0.8); }

    /* ======= MENTIONS LÉGALES / CONFIDENTIALITÉ ======= */
    .legal-content {
      max-width: 800px;
      margin: 0 auto;
      padding: 6rem 2rem 4rem;
    }
    .legal-content h1 {
      font-family: var(--serif);
      font-size: 2rem;
      font-weight: 300;
      color: var(--brun);
      margin-bottom: 2rem;
    }
    .legal-content h2 {
      font-family: var(--serif);
      font-size: 1.3rem;
      font-weight: 500;
      color: var(--brun);
      margin: 2.5rem 0 0.75rem;
    }
    .legal-content p, .legal-content li {
      font-size: 0.9rem;
      color: var(--texte-doux);
      line-height: 1.85;
      margin-bottom: 0.75rem;
    }
    .legal-content ul { padding-left: 1.25rem; }
    .legal-content .placeholder {
      background: var(--beige-clair);
      border: 1px dashed var(--bordure);
      border-radius: var(--radius-sm);
      padding: 0.5rem 0.75rem;
      color: var(--terracotta);
      font-size: 0.82rem;
      display: inline;
    }

    /* ======= OUTILS ======= */
    .outils-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }

    .outil-card {
      background: var(--blanc);
      border-radius: var(--radius);
      padding: 2rem;
      border: 1px solid var(--bordure);
      transition: var(--transition);
    }
    .outil-card:hover { transform: translateY(-2px); box-shadow: var(--ombre); }

    .outil-titre {
      font-family: var(--serif);
      font-size: 1.25rem;
      font-weight: 500;
      color: var(--brun);
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }
    .outil-emoji { font-size: 1.1rem; }
    .outil-texte { font-size: 0.9rem; color: var(--texte-doux); line-height: 1.8; }

    .avertissement-outil {
      max-width: 720px;
      margin: 2.5rem auto 0;
      padding: 1.25rem 1.75rem;
      background: var(--sauge-clair);
      border-radius: var(--radius-sm);
      border-left: 3px solid var(--sauge-profond);
      font-size: 0.88rem;
      color: var(--sauge-profond);
      line-height: 1.75;
    }

    /* ======= PAGE HEADER ======= */
    .page-header {
      padding: 7rem 2rem 3.5rem;
      background: #EEF3F0;
    }
    .page-header-inner {
      max-width: 1100px;
      margin: 0 auto;
    }
    .breadcrumb {
      font-size: 0.78rem;
      color: var(--brun-clair);
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .breadcrumb a { color: var(--brun-clair); text-decoration: none; cursor: pointer; }
    .breadcrumb a:hover { color: var(--sauge-profond); }
    .page-header h1 {
      font-family: var(--serif);
      font-size: 3rem;
      font-weight: 400;
      color: var(--brun);
      line-height: 1.15;
    }
    .page-header p {
      margin-top: 1rem;
      font-size: 1.05rem;
      color: var(--texte-doux);
      max-width: 620px;
      line-height: 1.8;
    }

    /* ======= URGENCE NOTE ======= */
    .urgence-note {
      background: #fff8f6;
      border: 1px solid #f0d4c8;
      border-radius: var(--radius);
      padding: 1.5rem 2rem;
      margin-bottom: 3rem;
      font-size: 0.88rem;
      color: var(--brun);
      line-height: 1.75;
    }
    .urgence-note strong { color: var(--terracotta); }

    /* ======= THÈME CABINET CONTEMPORAIN ======= */
    a, button, input, select, textarea { outline-offset: 3px; }
    a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
      outline: 3px solid rgba(181, 101, 91, 0.45);
    }
    .section-dark .section-label {
      background: transparent;
      color: rgba(255,255,255,0.82);
      border-left-color: rgba(255,255,255,0.58);
    }
    .card, .rdv-step, .info-card, .outil-card, .diplome-item {
      box-shadow: 0 1px 0 rgba(37,78,66,0.03);
    }
    .card:hover, .outil-card:hover {
      border-color: #BFD0C8;
      box-shadow: var(--ombre-sm);
    }
    .card-icon { border-radius: var(--radius); }
    .tag, .expertise-tag { border-radius: 4px; }
    .rdv-info-item { background: var(--blanc); border-color: var(--bordure); }
    .contact-form { box-shadow: var(--ombre-sm); }
    .map-placeholder { background: #E6EFEA; }
    .home-split, .profile-preview, .contact-layout {
      display: grid;
      gap: 4rem;
      align-items: center;
    }
    .home-split { grid-template-columns: 1fr 1fr; }
    .profile-preview { grid-template-columns: 360px 1fr; }
    .contact-layout { grid-template-columns: 1fr 1.2fr; align-items: start; }

    /* ======= RESPONSIVE ======= */
    @media (max-width: 900px) {
      .hero-content { grid-template-columns: 1fr; }
      .hero-card { max-width: 440px; }
      .qui-grid { grid-template-columns: 1fr; }
      .home-split, .profile-preview, .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
      .qui-photo { aspect-ratio: 4/3; position: static; }
      .footer-inner { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 680px) {
      .nav-links { display: none; }
      .nav-burger { display: flex; }
      .nav-inner { padding: 0 1.25rem; }
      .nav-logo { gap: 0.55rem; }
      .nav-logo-mark { width: 38px; height: 38px; flex-basis: 38px; }
      .nav-logo-name { font-size: 1.05rem; }
      .nav-logo-titre { font-size: 0.62rem; letter-spacing: 0; }
      .section { padding: 3.5rem 1.25rem; }
      .hero { padding: 88px 1.25rem 3rem; }
      .hero h1 { font-size: 2.55rem; }
      .hero-sub { font-size: 1.25rem; }
      .section-titre { font-size: 2.05rem; }
      .cta-bande-titre { font-size: 1.75rem; }
      .page-header h1 { font-size: 2.25rem; }
      .hero-actions { flex-direction: column; }
      .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; justify-content: center; }
      .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .contact-form { padding: 1.5rem; }
      .legal-content { padding: 5rem 1.25rem 3rem; }
      .page-header { padding: 5rem 1.25rem 2.5rem; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
      .reveal, .animate-in { opacity: 1; transform: none; }
    }

    /* ======= ANIMATIONS ======= */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(18px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .animate-in {
      opacity: 0;
      animation: fadeInUp 0.7s ease forwards;
    }
    .delay-1 { animation-delay: 0.1s; }
    .delay-2 { animation-delay: 0.2s; }
    .delay-3 { animation-delay: 0.35s; }
    .delay-4 { animation-delay: 0.5s; }

    /* ======= SCROLL REVEAL ======= */
    .reveal {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ======= DIVERS ======= */
    .divider {
      width: 40px;
      height: 2px;
      background: var(--sauge);
      margin: 1rem 0;
      border-radius: 2px;
    }

    .tel-link {
      color: var(--sauge-profond);
      font-weight: 500;
      text-decoration: none;
    }
    .tel-link:hover { text-decoration: underline; }

    .sr-only {
      position: absolute; width: 1px; height: 1px;
      padding: 0; margin: -1px; overflow: hidden;
      clip: rect(0,0,0,0); white-space: nowrap; border: 0;
    }
