/* ============================================ */
  /*  POLICE DU LOGO : All Round Gothic Book      */
  /* ============================================ */
  @font-face {
    font-family: 'All Round Gothic';
    src: url('assets/fonts/AllRoundGothic-Book.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }

  /* ============================================ */
  /*  VARIABLES DE LA CHARTE                      */
  /* ============================================ */
  :root {
    --ink: #262626;          /* Noir du logo */
    --ink-soft: #3d3d3d;
    --blue: #068FFF;         /* Bleu exact du logo (extrait du SVG) */
    --blue-deep: #0066cc;
    --blue-light: #e1f1ff;
    --blue-tint: #f2f8ff;
    --white: #ffffff;
    --gray-soft: #f7f8fa;
    --gray-mid: #8891a0;
    --gray-border: rgba(38, 38, 38, 0.1);
  }

  /* ============================================ */
  /*  RESET & BASE                                 */
  /* ============================================ */
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; overflow-x: hidden; }
  /* Garantir que rien ne dépasse en largeur sur mobile */
  img, iframe, video, svg { max-width: 100%; }
  body {
    font-family: 'All Round Gothic', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--ink);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    line-height: 1.5;
  }

  /* Fraunces pour les titres (italique élégant en accent) */
  h1, h2, h3, h4, .serif {
    font-family: 'Fraunces', 'All Round Gothic', serif;
    font-weight: 400;
    letter-spacing: -0.02em;
  }
  h1 em, h2 em, h3 em {
    font-style: italic;
    color: var(--gray-mid); /* démarre en gris */
    display: inline-block; /* nécessaire pour transformer */
    transform: translateY(0);
    transition: color 2.5s cubic-bezier(.2,.7,.2,1), transform 2.5s cubic-bezier(.2,.7,.2,1);
  }
  /* Quand le em lui-même devient visible (classe ajoutée par JS), bleu + micro-pulse */
  h1 em.em-activate,
  h2 em.em-activate,
  h3 em.em-activate {
    color: var(--blue);
    animation: emPulse 1.4s cubic-bezier(.2,.7,.2,1) 0.2s 1;
  }
  @keyframes emPulse {
    0%   { transform: translateY(0) scale(1); }
    40%  { transform: translateY(-3px) scale(1.04); }
    100% { transform: translateY(0) scale(1); }
  }
  /* Les nombres des stats restent bleus direct (pas d'animation) */
  .stat .num em,
  .menu-dropdown a em {
    color: var(--blue) !important;
    transition: none;
    animation: none;
    transform: none;
  }

  /* ============================================ */
  /*  SMILE — signature exacte extraite du logo   */
  /* ============================================ */
  .smile-underline {
    display: inline-block;
    position: relative;
    padding-bottom: 22px;
  }
  .smile-underline::after {
    content: "";
    position: absolute;
    left: -2%;
    right: -2%;
    bottom: 0;
    height: 22px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='1345 210 270 70' preserveAspectRatio='xMidYMid meet'><path fill='%23068FFF' d='m 1350.2847,238.90983 c 1.4542,0.40445 3.0398,0.0782 4.1597,-0.85597 8.1235,-6.77706 19.8662,-9.43902 29.6272,-14.14587 2.0791,-1.0027 0.2226,-6.50124 -0.8828,-8.3724 -1.1053,-1.87139 -3.6874,-2.5756 -5.7667,-1.57274 -10.4031,5.01652 -20.0934,11.22737 -28.7588,18.45649 -1.731,1.44431 -1.8401,3.87628 -0.2436,5.43213 0.5073,0.49454 1.1505,0.85952 1.865,1.05836 z'/><path fill='%23068FFF' d='m 1606.4849,229.10407 c 0.3533,-1.05622 0.2822,-2.21565 -0.1974,-3.2231 -0.9991,-2.09738 -2.1998,-7.227 -4.2385,-6.21417 -68.2868,33.92398 -150.2411,41.17289 -221.5022,13.74859 -2.1299,-0.81967 -4.4942,0.2836 -5.2804,2.46411 -0.7866,2.18042 0.3024,4.61244 2.4324,5.43184 73.3664,28.23448 156.3208,25.16782 226.7065,-9.79879 0.9786,-0.48638 1.7267,-1.35269 2.0796,-2.40848 z'/></svg>");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
  }

  /* ============================================ */
  /*  NAVIGATION                                   */
  /* ============================================ */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
  }
  .nav.scrolled {
    padding: 10px 40px;
    border-bottom-color: var(--gray-border);
    background: rgba(255,255,255,0.95);
  }
  /* Nav qui se cache au scroll-down et revient au scroll-up
     (activé uniquement sur mobile via JS) */
  .nav.nav-hidden {
    transform: translateY(-100%);
  }

  /* ============================================ */
  /*  NAV HORIZONTALE — onglets sous le logo      */
  /* ============================================ */
  .nav-tabs {
    position: fixed;
    top: 160px; /* sous la nav principale (logo grand) */
    left: 0;
    right: 0;
    z-index: 99;
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 14px 40px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-border);
    transition: top 0.4s ease, transform 0.4s cubic-bezier(.2, .8, .2, 1);
  }
  /* Au scroll, la nav rétrécit → la nav-tabs remonte la suivre */
  .nav-tabs.compact {
    top: 110px;
  }
  /* Largeurs intermédiaires : nav un peu plus haute → adapter nav-tabs */
  @media (max-width: 1400px) and (min-width: 901px) {
    .nav-tabs {
      top: 145px;
    }
    .nav-tabs.compact {
      top: 100px;
    }
  }
  /* Comportement Chanel : rétractation au scroll vers le bas */
  .nav-tabs.hidden {
    transform: translateY(-100%);
  }
  .nav-tabs a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    font-family: 'All Round Gothic', sans-serif;
    font-size: 15px;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: 0.2px;
    border-radius: 8px;
    background: transparent;
    transition: background 0.25s, color 0.25s, padding 0.25s;
  }
  .nav-tabs a:hover {
    background: var(--gray-soft);
    color: var(--blue);
    padding-left: 28px;
  }
  .nav-tabs a:hover::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 18px;
    background: var(--blue);
    border-radius: 2px;
    opacity: 0.7;
  }
  .nav-tabs a.active {
    color: var(--blue);
    background: var(--blue-light);
    padding-left: 28px;
  }
  .nav-tabs a.active::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 18px;
    background: var(--blue);
    border-radius: 2px;
  }
  /* Sur mobile (< 900px), on cache la nav-tabs et on garde le hamburger */
  @media (max-width: 900px) {
    .nav-tabs { display: none; }
  }
  /* Sur desktop (≥ 900px), on cache le bouton hamburger (la nav-tabs le remplace) */
  @media (min-width: 901px) {
    .menu-wrap { display: none; }
  }


  .menu-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px 14px 8px 10px;
    border-radius: 10px;
    transition: background 0.2s;
    font-family: inherit;
  }
  .menu-btn:hover { background: var(--gray-soft); }
  .menu-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .menu-icon span {
    width: 18px;
    height: 1.8px;
    background: var(--ink);
    border-radius: 2px;
    transition: all 0.3s;
  }
  .menu-btn:hover .menu-icon span:nth-child(1) { width: 14px; }
  .menu-btn:hover .menu-icon span:nth-child(3) { width: 22px; }
  .menu-label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink);
  }

  .nav-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    min-width: 0;
    flex: 1 1 auto;
  }
  .nav-address {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--ink-soft);
    letter-spacing: 0.2px;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-address:hover { color: var(--blue); }
  .nav-address svg {
    color: var(--blue);
    flex-shrink: 0;
  }
  .nav-logo-link {
    display: inline-block;
    line-height: 0;
    transition: opacity 0.2s, transform 0.3s;
  }
  .nav-logo-link:hover {
    opacity: 0.88;
    transform: scale(1.02);
  }
  .nav-logo {
    width: 33vw;
    max-width: 520px;
    height: auto;
    display: block;
    transition: width 0.3s, max-width 0.3s;
  }
  /* Au scroll, la nav se compacte : logo plus petit */
  .nav.scrolled .nav-logo {
    width: 20vw;
    max-width: 340px;
  }

  /* ============================================ */
  /*  MENU DROPDOWN (remplace l'ancien overlay)   */
  /* ============================================ */
  .menu-wrap {
    position: relative; /* ancre du dropdown */
  }
  .menu-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--gray-border);
    border-radius: 14px;
    box-shadow: 0 12px 32px -8px rgba(38, 38, 38, 0.15);
    /* padding-top majoré = espace visuel sous le bouton
       sans créer de zone vide où la souris perd le hover */
    padding: 18px 10px 10px;
    margin-top: -6px;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.25s cubic-bezier(.2,.8,.2,1), transform 0.25s cubic-bezier(.2,.8,.2,1);
    z-index: 200;
    font-family: 'All Round Gothic', -apple-system, BlinkMacSystemFont, sans-serif;
  }
  .menu-wrap.open .menu-dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .menu-dropdown a {
    display: block;
    padding: 12px 18px;
    font-size: 15px;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: 0.2px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s, padding 0.2s;
    position: relative;
  }
  .menu-dropdown a:hover {
    background: var(--gray-soft);
    color: var(--blue);
    padding-left: 22px;
  }
  .menu-dropdown a.active {
    color: var(--blue);
    background: var(--blue-light);
  }
  .menu-dropdown a.active::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 18px;
    background: var(--blue);
    border-radius: 2px;
  }

  .phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    padding: 9px 18px;
    border: 1.5px solid var(--ink);
    border-radius: 100px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .phone-link:hover {
    background: var(--ink);
    color: white;
  }
  .phone-link svg { transition: transform 0.3s; }
  .phone-link:hover svg { transform: rotate(-12deg); }

  /* ============================================ */
  /*  HERO                                         */
  /* ============================================ */
  .hero {
    min-height: 100vh;
    padding: 250px 40px 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .hero::before {
    content: "";
    position: absolute;
    top: -15%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--blue-light) 0%, transparent 65%);
    z-index: 0;
    pointer-events: none;
  }
  .hero::after {
    /* Tooth watermark discret en bas à gauche */
    content: "";
    position: absolute;
    bottom: -60px;
    left: -30px;
    width: 200px;
    height: 200px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><path d='M50 15 C 30 15, 15 25, 15 45 C 15 55, 20 65, 22 75 C 24 82, 30 85, 33 80 C 36 70, 38 65, 42 65 C 46 65, 48 70, 50 80 C 52 85, 58 82, 60 75 C 62 65, 85 55, 85 45 C 85 25, 70 15, 50 15 Z' fill='%23e6f4ff'/></svg>");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
  }

  /* --- Logo XXL en haut du hero --- */
  .hero-logo-wrap {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    padding: 20px 0 10px;
    opacity: 0;
    animation: logoEntrance 1.2s cubic-bezier(.2,.7,.2,1) 0.15s forwards;
  }
  .hero-logo {
    max-width: min(640px, 70vw);
    width: 100%;
    height: auto;
    display: block;
    /* animation continue subtile une fois entré */
    animation: logoFloat 6s ease-in-out 1.4s infinite;
  }

  /* Animation d'entrée : le logo arrive du haut avec scale + rotation douce */
  @keyframes logoEntrance {
    0% {
      opacity: 0;
      transform: translateY(-40px) scale(0.85) rotate(-1.5deg);
      filter: blur(6px);
    }
    60% {
      opacity: 1;
      filter: blur(0);
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1) rotate(0deg);
      filter: blur(0);
    }
  }

  /* Animation de flottaison douce en continu */
  @keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }

  /* --- Grid 2 colonnes (texte + photo) --- */
  .hero-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
  }

  .hero-content {
    position: relative;
    z-index: 2;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
  }
  .hero-eyebrow::before {
    content: "";
    width: 36px;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
  }
  .hero h1 {
    font-size: clamp(52px, 6.5vw, 92px);
    line-height: 0.98;
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeUp 0.9s 0.4s forwards;
  }
  .hero p.lead {
    font-size: 19px;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 600px;
    margin-bottom: 56px;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
  }

  /* CTA 3 boutons */
  .cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 580px;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
  }
  .cta-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 26px 22px 24px;
    background: var(--white);
    border: 1.5px solid var(--gray-border);
    border-radius: 16px;
    text-decoration: none;
    color: var(--ink);
    transition: all 0.35s cubic-bezier(.2,.8,.2,1);
    position: relative;
    overflow: hidden;
  }
  .cta-card::before {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  .cta-card::after {
    content: "→";
    position: absolute;
    right: 18px;
    top: 22px;
    font-size: 18px;
    color: var(--blue);
    opacity: 0;
    transform: translate(-8px, 8px);
    transition: all 0.3s ease;
  }
  .cta-card:hover {
    border-color: var(--blue);
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(31, 162, 255, 0.15);
  }
  .cta-card:hover::before { transform: scaleX(1); }
  .cta-card:hover::after { opacity: 1; transform: translate(0, 0); }
  .cta-card .icon-wrap {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-light);
    border-radius: 12px;
    color: var(--blue);
    transition: all 0.3s;
  }
  .cta-card:hover .icon-wrap {
    background: var(--blue);
    color: white;
  }
  .cta-card .label {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.2px;
  }
  .cta-card .sub {
    font-size: 11px;
    color: var(--gray-mid);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: -8px;
  }

  /* Hero image — travelling horizontal */
  .hero-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 20px;
    z-index: 2;
    opacity: 0;
    animation: fadeInScale 1.1s 0.3s forwards;
    box-shadow: 0 30px 60px -20px rgba(31, 162, 255, 0.25);
    background: #000;
  }
  /* ============================================ */
  /*  PHOTO STACK (10 photos en Ken Burns)         */
  /* ============================================ */
  .photo-stack {
    position: absolute;
    inset: 0;
  }
  .photo-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 2.4s ease-in-out;
    pointer-events: none;
  }
  .photo-slide.active {
    opacity: 1;
    pointer-events: auto;
  }
  .photo-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    will-change: transform;
    /* État initial harmonisé : toutes les photos partent légèrement zoomées
       pour éviter le snap visible quand la photo apparaît */
    transform: scale(1.06);
  }

  /* Ken Burns : 4 variantes alternées. Durée 9s pour couvrir les 7s d'affichage
     + le crossfade de 2.4s sans interruption brutale.
     Tous les keyframes partent autour de scale(1.06) — pas de saut perceptible. */
  .photo-slide[data-idx="0"] img,
  .photo-slide[data-idx="4"] img,
  .photo-slide[data-idx="8"] img { animation: kb-zoomIn 9s cubic-bezier(.4,.0,.4,1) both; animation-play-state: paused; }
  .photo-slide[data-idx="1"] img,
  .photo-slide[data-idx="5"] img,
  .photo-slide[data-idx="9"] img { animation: kb-panRight 9s cubic-bezier(.4,.0,.4,1) both; animation-play-state: paused; }
  .photo-slide[data-idx="2"] img,
  .photo-slide[data-idx="6"] img { animation: kb-zoomOut 9s cubic-bezier(.4,.0,.4,1) both; animation-play-state: paused; }
  .photo-slide[data-idx="3"] img,
  .photo-slide[data-idx="7"] img { animation: kb-panDown 9s cubic-bezier(.4,.0,.4,1) both; animation-play-state: paused; }
  /* L'animation ne tourne que pour la photo active : pas de gaspillage CPU */
  .photo-slide.active img { animation-play-state: running; }

  @keyframes kb-zoomIn {
    from { transform: scale(1.04); }
    to   { transform: scale(1.14) translate(-1%, -1%); }
  }
  @keyframes kb-panRight {
    from { transform: scale(1.08) translate(-1.5%, 0); }
    to   { transform: scale(1.14) translate(1.5%, -1%); }
  }
  @keyframes kb-zoomOut {
    from { transform: scale(1.14) translate(1%, 1%); }
    to   { transform: scale(1.06) translate(-1%, 0); }
  }
  @keyframes kb-panDown {
    from { transform: scale(1.08) translate(0, -1.5%); }
    to   { transform: scale(1.12) translate(1%, 1.5%); }
  }

  /* Overlay dégradé en bas pour lisibilité des badges */
  .hero-image::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.30) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
  }

  .badge-floating {
    position: absolute;
    bottom: 28px;
    left: 28px;
    z-index: 3;
    background: white;
    padding: 16px 20px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    animation: floatGentle 3.5s ease-in-out infinite;
    /* Dimensions fixes pour éviter le "saut" entre slides de longueurs différentes */
    min-width: 170px;
    min-height: 62px;
    display: flex;
    align-items: center;
  }
  /* Chaque slide stat : superposée, fondu de l'une à l'autre */
  .badge-slide {
    display: flex;
    align-items: center;
    gap: 14px;
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
  }
  .badge-slide.active {
    opacity: 1;
  }
  .badge-slide .num {
    font-family: 'Fraunces', serif;
    font-size: 30px;
    line-height: 1;
    color: var(--blue);
    flex-shrink: 0;
  }
  .badge-slide .txt {
    font-size: 11px;
    line-height: 1.3;
    color: var(--gray-mid);
    text-transform: uppercase;
    letter-spacing: 1.2px;
  }

  /* Badge "ouvert maintenant" en haut à droite de l'image */
  .badge-open {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 3;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 8px 14px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--ink);
  }
  .badge-open .dot {
    width: 8px;
    height: 8px;
    background: #2ab76a;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
  }
  /* État fermé : point gris, pas d'animation */
  .badge-open.closed .dot {
    background: #999;
    animation: none;
  }

  /* ============================================ */
  /*  SECTIONS SCROLL                              */
  /* ============================================ */
  .section {
    padding: 90px 40px;
    position: relative;
  }
  .section-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .section.bg-soft { background: var(--gray-soft); }
  .section.bg-tint { background: var(--blue-tint); }

  .section-label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .section-label::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
  }
  .section h2 {
    font-size: clamp(38px, 4.8vw, 68px);
    line-height: 1.05;
    margin-bottom: 28px;
  }
  .section p.lead {
    font-size: 19px;
    line-height: 1.65;
    color: var(--ink-soft);
  }

  /* Lead riche (3 paragraphes éditoriaux) — option B */
  .lead-rich {
    margin-top: 16px;
    margin-bottom: 60px;
  }
  .lead-rich p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-bottom: 22px;
  }
  .lead-rich p:last-of-type {
    margin-bottom: 28px;
  }
  /* Première lettre du premier paragraphe légèrement mise en valeur */
  .lead-rich p:first-of-type::first-letter {
    color: var(--ink);
    font-weight: 500;
  }
  .lead-rich-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 0.3px;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.25s;
  }
  .lead-rich-link:hover {
    border-bottom-color: var(--blue);
  }
  .lead-rich-link svg {
    transition: transform 0.25s;
  }
  .lead-rich-link:hover svg {
    transform: translateX(3px);
  }

  /* Stats compteurs */
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 90px;
    padding-top: 70px;
    border-top: 1px solid var(--gray-border);
  }
  .stat .num {
    font-family: 'Fraunces', serif;
    font-size: clamp(52px, 5.5vw, 78px);
    line-height: 1;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -0.03em;
  }
  .stat .num em {
    font-style: italic;
    color: var(--blue);
  }
  .stat .label {
    font-size: 14px;
    color: var(--gray-mid);
    line-height: 1.4;
    letter-spacing: 0.2px;
  }

  /* ============================================ */
  /*  GALERIE PHOTOS                               */
  /* ============================================ */
  .gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: repeat(2, minmax(240px, 28vh));
    gap: 16px;
    margin-top: 70px;
  }
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
  }
  /* Cabinet 4 (vertical) = col 1, rangées 1-2 */
  .gallery-item.item-tall {
    grid-row: span 2;
    grid-column: 1;
  }
  /* Les 4 autres items se placent automatiquement dans les colonnes 2 et 3 */
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(.2,.8,.2,1);
  }
  .gallery-item:hover img { transform: scale(1.06); }
  .gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(38, 38, 38, 0.6) 0%, transparent 55%);
    opacity: 0.4;
    transition: opacity 0.4s;
  }
  .gallery-item:hover::after { opacity: 0.7; }
  .gallery-caption {
    position: absolute;
    bottom: 18px;
    left: 20px;
    color: white;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
  }
  .gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: none;
  }

  /* ============================================ */
  /*  ÉQUIPE                                       */
  /* ============================================ */
  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 70px;
  }
  .team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(.2,.8,.2,1), box-shadow 0.5s;
    border: 1px solid var(--gray-border);
  }
  .team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(31, 162, 255, 0.15);
  }
  .team-photo {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--blue-light);
    position: relative;
  }
  .team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(.2,.8,.2,1), filter 0.5s;
    filter: grayscale(100%) contrast(1.05);
  }
  /* Sur l'accueil : photos en couleur (variante .team-grid-color) */
  .team-grid-color .team-photo img {
    filter: none;
  }
  .team-card:hover .team-photo img {
    transform: scale(1.06);
  }
  .team-info {
    padding: 24px 26px 28px;
  }
  .team-info .role-tag {
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--blue);
    background: var(--blue-light);
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 12px;
  }
  .team-info h3 {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 6px;
  }
  .team-info .diploma {
    font-size: 13px;
    color: var(--gray-mid);
    line-height: 1.4;
  }
  .team-info .ordre-num {
    font-size: 11px;
    color: var(--gray-mid);
    line-height: 1.45;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--gray-border);
    letter-spacing: 0.1px;
  }
  .team-info .ordre-todo {
    color: var(--gray-mid);
    font-style: italic;
    opacity: 0.55;
  }

  /* ============================================ */
  /*  ENGAGEMENTS — nouveau bloc                   */
  /* ============================================ */
  .engagements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
  }
  /* Variante 6 engagements en 3 colonnes (3+3) */
  .engagements-grid.engagements-six {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .engagement {
    padding: 36px 32px;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--gray-border);
    transition: all 0.4s;
  }
  .engagement:hover {
    border-color: var(--blue);
    transform: translateY(-4px);
  }
  .engagement .icon-box {
    width: 48px;
    height: 48px;
    background: var(--blue-light);
    color: var(--blue);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  .engagement h3 {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .engagement p {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.55;
  }
  /* Variante compacte : utilisée dans la section "Le cabinet" (fusion) */
  .compact-engagements {
    margin-top: 50px;
    gap: 20px;
  }
  .compact-engagements .engagement {
    padding: 24px 22px;
    background: var(--gray-soft);
    border: 1px solid transparent;
  }
  .compact-engagements .engagement:hover {
    background: white;
    border-color: var(--blue-light);
  }
  .compact-engagements .engagement .icon-box {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
  }
  .compact-engagements .engagement h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .compact-engagements .engagement p {
    font-size: 14px;
  }

  /* ============================================ */
  /*  PILLARS — Philosophie / Plateau / Hygiène   */
  /* ============================================ */
  .cabinet-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 70px;
    padding-top: 50px;
    border-top: 1px solid var(--gray-border);
  }
  .pillar {
    position: relative;
    padding-top: 10px;
  }
  .pillar-num {
    font-family: 'Fraunces', serif;
    font-size: 48px;
    line-height: 1;
    color: var(--blue);
    opacity: 0.25;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
  }
  .pillar h3 {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 14px;
    color: var(--ink);
  }
  .pillar p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink-soft);
  }
  .pillar-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 14px;
    color: var(--blue);
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.25s, color 0.25s;
  }
  .pillar-link:hover {
    gap: 10px;
    color: var(--blue);
  }
  .pillar-link svg {
    flex-shrink: 0;
  }

  /* ============================================ */
  /*  FICHES CONSEILS (3 cartes en avant)         */
  /* ============================================ */
  .fiches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
  }
  /* Variante 2 colonnes (informations réglementaires) */
  .fiches-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Sous-titre de groupe sur la page Information & documentation */
  .info-subtitle {
    font-family: 'Fraunces', serif;
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 400;
    font-style: italic;
    color: var(--blue);
    margin-top: 70px;
    margin-bottom: 0;
    padding-top: 28px;
    border-top: 1px solid var(--gray-border);
  }
  .info-subtitle:first-of-type {
    margin-top: 50px;
    padding-top: 0;
    border-top: none;
  }
  .fiche-card {
    display: block;
    padding: 32px 28px;
    background: white;
    border: 1px solid var(--gray-border);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(.2,.8,.2,1);
    position: relative;
    overflow: hidden;
  }
  .fiche-card:hover {
    border-color: var(--blue);
    transform: translateY(-4px);
    box-shadow: 0 16px 32px -12px rgba(6, 143, 255, 0.15);
  }
  .fiche-icon {
    width: 52px;
    height: 52px;
    background: var(--blue-light);
    color: var(--blue);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s;
  }
  .fiche-card:hover .fiche-icon {
    background: var(--blue);
    color: white;
  }
  /* Variante avec logo (UFSBD, Ma Bouche Ma Santé, Ameli) */
  .fiche-logo {
    width: 100%;
    height: 90px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-soft);
    border-radius: 12px;
    padding: 14px 24px;
    transition: all 0.3s;
  }
  .fiche-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
  }
  /* Calages spécifiques par logo pour un rendu visuel équilibré
     entre les 3 bulles (chacun a un ratio différent) */
  .fiche-logo img[src*="ufsbd"]  { max-height: 50px; }   /* logo très allongé */
  .fiche-logo img[src*="mbms"]   { max-height: 60px; }   /* logo allongé */
  .fiche-logo img[src*="ameli"]  { max-height: 55px; }   /* logo moyen */
  .fiche-card-with-logo:hover .fiche-logo {
    background: white;
    box-shadow: inset 0 0 0 1px var(--gray-border);
  }
  /* Bloc unique Conseil de l'Ordre */
  .fiche-ordre-block {
    display: flex;
    align-items: center;
    gap: 40px;
    background: white;
    border: 1px solid var(--gray-border);
    border-radius: 20px;
    padding: 40px 44px;
    margin-top: 30px;
    transition: all 0.4s cubic-bezier(.2,.8,.2,1);
  }
  .fiche-ordre-block:hover {
    border-color: var(--blue);
    box-shadow: 0 16px 32px -12px rgba(6, 143, 255, 0.12);
  }
  .fiche-ordre-logo-link {
    flex-shrink: 0;
    text-decoration: none;
  }
  .fiche-ordre-logo {
    width: 180px;
    height: 130px;
    background: var(--gray-soft);
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
  }
  .fiche-ordre-logo-link:hover .fiche-ordre-logo {
    background: white;
    box-shadow: inset 0 0 0 1px var(--blue);
  }
  .fiche-ordre-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  .fiche-ordre-content {
    flex: 1;
  }
  .fiche-ordre-content h3 {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    line-height: 1.25;
    color: var(--ink);
    margin: 0 0 12px;
  }
  .fiche-ordre-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 0 0 20px;
  }
  .fiche-ordre-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
  }
  .fiche-ordre-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--blue-light);
    color: var(--blue);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
  }
  .fiche-ordre-link:hover {
    background: var(--blue);
    color: white;
  }
  @media (max-width: 700px) {
    .fiche-ordre-block {
      flex-direction: column;
      text-align: center;
      gap: 24px;
      padding: 28px 24px;
    }
    .fiche-ordre-logo { width: 160px; height: 120px; }
    .fiche-ordre-links { justify-content: center; }
  }
  .fiche-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
    font-weight: 600;
  }
  .fiche-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 12px;
    color: var(--ink);
  }
  .fiche-card p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.55;
    margin-bottom: 20px;
  }
  .fiche-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    letter-spacing: 0.3px;
    color: var(--blue);
    font-weight: 500;
    transition: gap 0.3s;
  }
  .fiche-card:hover .fiche-link {
    gap: 12px;
  }

  /* ============================================ */
  /*  BLOC URGENCE pleine largeur                 */
  /* ============================================ */
  .urgence-block {
    margin-top: 50px;
    padding: 36px 40px;
    background: linear-gradient(135deg, rgba(255, 166, 77, 0.08), rgba(255, 166, 77, 0.03));
    border: 1.5px solid rgba(255, 166, 77, 0.25);
    border-radius: 20px;
    display: flex;
    gap: 32px;
    align-items: flex-start;
  }
  .urgence-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: rgba(255, 166, 77, 0.18);
    color: rgb(255, 140, 40);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .urgence-content {
    flex: 1;
  }
  .urgence-content h3 {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--ink);
  }
  .urgence-intro {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.6;
    margin: 0 0 24px;
  }
  .urgence-intro strong {
    color: var(--ink);
    font-weight: 600;
  }
  /* Variante claire dans le bloc sombre */
  .urgence-on-dark .urgence-intro {
    color: rgba(255, 255, 255, 0.75);
  }
  .urgence-on-dark .urgence-intro strong {
    color: rgba(255, 255, 255, 0.95);
  }
  .urgence-numbers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .urgence-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 14px;
    border-left: 2px solid rgba(255, 166, 77, 0.35);
  }
  .urgence-item.urgence-vitale {
    border-left-color: rgba(220, 38, 38, 0.5);
  }
  .urgence-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgb(255, 140, 40);
    font-weight: 600;
  }
  .urgence-vitale .urgence-label {
    color: rgb(220, 38, 38);
  }
  .urgence-desc {
    font-size: 13px;
    color: var(--ink-soft);
    margin-bottom: 4px;
  }
  .urgence-phone {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    margin-top: auto;
    padding-top: 12px;
    white-space: nowrap;
  }
  .urgence-phone:hover {
    color: rgb(255, 140, 40);
  }
  .urgence-vitale .urgence-phone:hover {
    color: rgb(220, 38, 38);
  }
  /* Variante : bloc urgence sur fond sombre (section Contact) */
  .urgence-on-dark {
    margin-top: 70px;
    background: linear-gradient(135deg, rgba(255, 166, 77, 0.15), rgba(255, 166, 77, 0.06));
    border: 1.5px solid rgba(255, 166, 77, 0.35);
  }
  .urgence-on-dark .urgence-content h3 {
    color: white;
  }
  .urgence-on-dark .urgence-label {
    color: rgb(255, 180, 100);
  }
  .urgence-on-dark .urgence-desc {
    color: rgba(255, 255, 255, 0.65);
  }
  .urgence-on-dark .urgence-phone {
    color: white;
  }
  .urgence-on-dark .urgence-phone:hover {
    color: rgb(255, 180, 100);
  }
  .urgence-on-dark .urgence-vitale .urgence-label {
    color: rgb(248, 113, 113);
  }
  .urgence-on-dark .urgence-vitale .urgence-phone:hover {
    color: rgb(248, 113, 113);
  }

  /* ============================================ */
  /*  DOCUMENTS TÉLÉCHARGEABLES (page fiches)     */
  /* ============================================ */
  .documents-list {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .document-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: var(--gray-soft);
    border: 1px solid transparent;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
  }
  .document-item:hover {
    background: white;
    border-color: var(--blue-light);
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(6, 143, 255, 0.08);
  }
  .document-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--blue-light);
    color: var(--blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .document-info {
    flex: 1;
    min-width: 0;
  }
  .document-info h4 {
    font-family: 'Fraunces', serif;
    font-size: 17px;
    margin-bottom: 4px;
    color: var(--ink);
  }
  .document-info span {
    font-size: 13px;
    color: var(--gray-mid);
    letter-spacing: 0.2px;
  }
  .document-badge {
    flex-shrink: 0;
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--gray-mid);
    padding: 6px 12px;
    background: white;
    border: 1px solid var(--gray-border);
    border-radius: 100px;
    font-weight: 500;
  }
  .documents-note {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: var(--gray-mid);
    font-style: italic;
  }
  @media (max-width: 600px) {
    .document-item { flex-wrap: wrap; padding: 16px 18px; gap: 14px; }
    .document-info { width: 100%; }
    .document-badge { margin-left: auto; }
  }

  /* ============================================ */
  /*  VENUE — "Comment venir"                      */
  /* ============================================ */
  .venue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 70px;
  }
  .venue-photo {
    margin: 0;
  }
  /* Wrapper interne : permet de cropper le zoom au survol */
  .venue-photo-inner,
  .venue-plan-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    cursor: zoom-in;
    transition: box-shadow 0.4s ease;
  }
  /* Reset des styles button par défaut sur .venue-plan-inner (button) */
  button.venue-plan-inner {
    border: 0;
    padding: 0;
    background: transparent;
    font: inherit;
    color: inherit;
    text-align: inherit;
    display: block;
  }
  button.venue-plan-inner:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 3px;
  }
  .venue-photo-inner:hover,
  .venue-plan-inner:hover {
    box-shadow: 0 12px 30px -8px rgba(6, 143, 255, 0.25);
  }
  .venue-photo img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
  }
  /* Carte Google Maps dans la venue-grid (même dimensions qu'une photo) */
  .venue-map {
    position: relative;
  }
  .venue-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }
  /* Plan du centre commercial : object-fit contain pour ne pas tronquer.
     Pas de padding sur le conteneur — le SVG d'annotation (position absolute)
     doit s'aligner pixel à pixel avec le plan. */
  .venue-photo.venue-plan .venue-plan-inner {
    background: var(--blue-light, #f4f7fb);
  }
  .venue-photo.venue-plan img {
    object-fit: contain;
  }
  /* Annotation SVG du plan : invisible par défaut, apparaît au survol.
     Le viewBox du SVG = dimensions du PNG, donc avec object-fit:contain et le
     même conteneur, les coordonnées correspondent. */
  .venue-plan-annotation {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  /* Zoom doux au survol de la façade et du plan */
  .venue-photo-inner:hover img,
  .venue-plan-inner:hover img {
    transform: scale(1.04);
  }
  /* Au survol du plan : l'annotation apparaît */
  .venue-plan-inner:hover .venue-plan-annotation {
    opacity: 1;
  }
  .venue-photo figcaption {
    margin-top: 14px;
    font-size: 14px;
    color: var(--gray-mid);
    letter-spacing: 0.3px;
  }

  /* ============================================ */
  /*  LIGHTBOX (plan agrandi)                      */
  /* ============================================ */
  .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(20, 30, 50, 0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
  }
  .lightbox[hidden] {
    display: none;
  }
  .lightbox.open {
    opacity: 1;
    pointer-events: auto;
  }
  .lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 2;
  }
  .lightbox-close:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: scale(1.06);
  }
  .lightbox-content {
    width: 100%;
    max-width: 1400px;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .lightbox-plan {
    position: relative;
    width: 100%;
    aspect-ratio: 1022 / 734;
    max-height: 90vh;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
  }
  .lightbox.open .lightbox-plan {
    transform: scale(1);
  }
  .lightbox-plan img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  .lightbox-plan svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  /* Désactiver le scroll du body quand la lightbox est ouverte */
  body.lightbox-open {
    overflow: hidden;
  }

  /* ============================================ */
  /*  CONTACT FINAL                                */
  /* ============================================ */
  .contact {
    background: var(--ink);
    color: white;
    padding: 130px 40px;
    position: relative;
    overflow: hidden;
  }
  .contact::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(31, 162, 255, 0.25) 0%, transparent 65%);
    pointer-events: none;
  }
  .contact h2 { color: white; }
  .contact h2 em { color: var(--blue); }
  .contact .section-label {
    color: var(--blue);
  }
  .contact .section-label::before {
    background: var(--blue);
  }
  .contact p.lead { color: rgba(255,255,255,0.65); }

  .contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 70px;
    position: relative;
  }
  /* Variante 4 colonnes (déjà le cas maintenant) */
  .contact-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }

  /* Liste d'horaires structurée */
  .hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .hours-list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .hours-list li:last-child {
    border-bottom: none;
  }
  .hours-days {
    font-size: 12px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
  }
  .hours-time {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    font-variant-numeric: tabular-nums;
  }
  .hours-closed .hours-time {
    color: rgba(255,255,255,0.4);
    font-style: italic;
  }

  .contact-card {
    padding: 36px 32px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    transition: all 0.4s;
  }
  .contact-card:hover {
    border-color: var(--blue);
    background: rgba(31, 162, 255, 0.08);
  }
  /* Carte "Urgence dentaire" : accent chaud pour attirer l'œil */
  .contact-card-urgent {
    border-color: rgba(255, 166, 77, 0.22);
    background: rgba(255, 166, 77, 0.04);
  }
  .contact-card-urgent:hover {
    border-color: rgb(255, 166, 77);
    background: rgba(255, 166, 77, 0.10);
  }
  .contact-card-urgent .icon-urgent {
    background: rgba(255, 166, 77, 0.18);
    color: rgb(255, 166, 77);
  }
  .contact-card-urgent a {
    color: rgb(255, 166, 77);
  }
  .contact-card-urgent a:hover { color: white; }
  /* Espacement entre les sous-blocs d'infos urgence */
  .contact-card-urgent p + p {
    margin-top: 12px;
  }
  .contact-card .icon-wrap {
    width: 48px;
    height: 48px;
    background: rgba(31, 162, 255, 0.18);
    color: var(--blue);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
  }
  .contact-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    margin-bottom: 12px;
    color: white;
  }
  .contact-card p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.55;
  }
  .contact-card small {
    color: rgba(255,255,255,0.45);
    font-size: 12px;
  }
  .contact-card a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s;
  }
  .contact-card a:hover { color: white; }

  /* Lien Doctolib avec logo à gauche */
  .doctolib-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .doctolib-logo {
    border-radius: 3px;
    flex-shrink: 0;
    vertical-align: middle;
  }

  /* Footer */
  footer {
    background: #1a1a1a;
    color: rgba(255,255,255,0.45);
    padding: 36px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    letter-spacing: 0.3px;
  }
  footer .footer-logo {
    height: 30px;
    filter: brightness(0) invert(1);
    opacity: 0.5;
  }
  footer a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
  }
  footer a:hover { color: var(--blue); }

  /* ============================================ */
  /*  SCROLL REVEAL                                */
  /* ============================================ */
  .reveal {
    opacity: 0;
    transform: translateY(48px);
    transition: opacity 1s cubic-bezier(.2,.8,.2,1), transform 1s cubic-bezier(.2,.8,.2,1);
  }
  .reveal.visible { opacity: 1; transform: none; }

  /* ============================================ */
  /*  ANIMATIONS                                   */
  /* ============================================ */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: none; }
  }
  @keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: none; }
  }
  @keyframes floatGentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  @keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.4); }
  }

  /* ============================================ */
  /*  RESPONSIVE — MOBILE                          */
  /* ============================================ */
  @media (max-width: 900px) {
    .hero {
      padding: 150px 20px 50px;
      gap: 30px;
    }
    .page-hero {
      padding: 160px 20px 60px;
    }
    .hero-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .hero-image { aspect-ratio: 4/3; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
    .team-grid {
      grid-template-columns: 1fr;
    }
    .venue-grid {
      grid-template-columns: 1fr 1fr;
    }
    /* Le plan prend toute la largeur sur tablette, sous façade + carte */
    .venue-grid .venue-plan {
      grid-column: 1 / -1;
    }
    /* Engagements : 4 cartes → 2 colonnes sur tablette */
    .engagements-grid,
    .engagements-grid.engagements-six {
      grid-template-columns: repeat(2, 1fr);
    }
    /* La grille 4 cartes reste en 2 colonnes sur tablette (pas 1) */
    .contact-grid, .contact-grid-4 {
      grid-template-columns: repeat(2, 1fr);
    }
    /* 3 piliers passent en 1 colonne sur tablette */
    .cabinet-pillars {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    /* Fiches et urgence en responsive */
    .fiches-grid { grid-template-columns: 1fr; gap: 20px; }
    .urgence-block {
      flex-direction: column;
      gap: 20px;
      padding: 28px 24px;
    }
    .urgence-numbers { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .urgence-item { border-left-width: 3px; }
    .gallery {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: repeat(4, minmax(180px, 22vh));
    }
    .gallery-item.item-tall {
      grid-row: span 2;
    }
    /* Logo mobile : 55% de la largeur */
    .nav-logo { width: 55vw; max-width: 340px; }
    .nav.scrolled .nav-logo { width: 42vw; max-width: 260px; }
    /* L'adresse en nav cache le texte, juste l'icône */
    .nav-address span { display: none; }
  }

  @media (max-width: 600px) {
    .nav { padding: 10px 16px; }
    .nav.scrolled { padding: 8px 16px; }
    .nav-address { display: none; }
    .nav-center { padding: 0 8px; gap: 0; }
    .phone-link { padding: 7px 12px; font-size: 12px; gap: 6px; }
    .phone-link svg { width: 12px; height: 12px; }
    .menu-label { display: none; }

    /* Grilles 4 cartes passent en 1 colonne sur smartphone */
    .contact-grid, .contact-grid-4 { grid-template-columns: 1fr; }
    /* Engagements : 2 par 2 sur mobile (au lieu de 1 colonne pleine) */
    .engagements-grid,
    .engagements-grid.engagements-six { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .engagement { padding: 22px 18px; }
    .engagement h3 { font-size: 17px; line-height: 1.25; }
    .engagement p { font-size: 13px; line-height: 1.5; }
    .engagement .icon-box { width: 38px; height: 38px; margin-bottom: 14px; border-radius: 10px; }
    .compact-engagements .engagement { padding: 18px 16px; }
    .urgence-numbers { grid-template-columns: 1fr; }
    .venue-grid { grid-template-columns: 1fr; }
    .venue-grid .venue-plan { grid-column: auto; }

    .hero { padding: 130px 18px 40px; gap: 24px; }
    .page-hero { padding: 140px 18px 50px; }
    .hero h1 { font-size: 42px; }
    .hero p.lead { font-size: 16px; margin-bottom: 40px; }
    .hero-image { aspect-ratio: 1; border-radius: 16px; }
    .badge-floating { padding: 12px 14px; bottom: 16px; left: 16px; }
    .badge-floating .num { font-size: 24px; }
    .badge-floating .txt { font-size: 10px; }

    .cta-grid {
      grid-template-columns: 1fr;
      gap: 10px;
    }
    .cta-card {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 16px;
      align-items: center;
      padding: 18px 56px 18px 18px;
    }
    .cta-card::after {
      top: 50%;
      right: 20px;
      transform: translate(-8px, -50%);
      opacity: 1;
    }
    .cta-card:hover::after { transform: translate(0, -50%); }
    .cta-card .sub { margin-top: 0; }
    .cta-card .icon-wrap { margin-bottom: 0; }

    .section { padding: 80px 18px; }
    .section h2 { font-size: 36px; }
    .section p.lead { font-size: 16px; }
    .lead-rich p { font-size: 16px; line-height: 1.65; margin-bottom: 18px; }
    .lead-rich { margin-bottom: 40px; }
    .stats-grid { margin-top: 60px; padding-top: 50px; gap: 32px 16px; }

    .team-info { padding: 20px 22px 24px; }
    .engagement { padding: 28px 24px; }
    .contact { padding: 80px 18px; }
    .contact-card { padding: 28px 24px; }

    footer {
      flex-direction: column;
      gap: 16px;
      text-align: center;
      padding: 28px 20px;
    }
  }

  /* Réduction d'animations si l'utilisateur le demande */
  /* On ralentit les transitions courtes mais on laisse les animations lentes
     et contemplatives (Ken Burns, fondus) qui sont considérées comme sûres */
  @media (prefers-reduced-motion: reduce) {
    *:not(.photo-slide):not(.photo-slide img):not(.badge-slide), *::before, *::after {
      animation-duration: 0.01ms !important;
      transition-duration: 0.01ms !important;
    }
  }
/* =========================================== */
/*  PAGES INTERNES — styles spécifiques        */
/* =========================================== */

/* Hero compact pour pages internes (pas de logo XXL, juste le titre) */
.page-hero {
  padding: 270px 40px 80px;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -15%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--blue-light) 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-hero .breadcrumb {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-hero .breadcrumb a {
  color: var(--blue);
  text-decoration: none;
}
.page-hero .breadcrumb a:hover { text-decoration: underline; }
.page-hero .breadcrumb span { color: var(--gray-border); }
.page-hero h1 {
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1.02;
  margin-bottom: 24px;
}
.page-hero .lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ============================================ */
/*  ÉQUIPE — groupes multiples                  */
/* ============================================ */
.team-group { margin-top: 60px; }
.team-group-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.team-group-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
  color: var(--ink);
}
.team-group-count {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 13px;
  color: var(--gray-mid);
  padding: 6px 12px;
  background: var(--gray-soft);
  border-radius: 100px;
  letter-spacing: 0.5px;
}

/* Variante compacte pour assistantes/secrétaires (4 colonnes) */
.team-grid.compact {
  grid-template-columns: repeat(4, 1fr);
}
.team-grid.compact .team-info h3 {
  font-size: 20px;
}
@media (max-width: 900px) {
  .team-grid.compact { grid-template-columns: repeat(2, 1fr); }
  /* Forcer un padding-top raisonnable sur les sections inline des pages internes en mobile */
  .section[style*="padding-top: 280px"] { padding-top: 160px !important; }
  .section[style*="padding-top: 250px"] { padding-top: 160px !important; }
}
@media (max-width: 500px) {
  .team-grid.compact { grid-template-columns: 1fr; }
}

/* Placeholder élégant pour photos manquantes */
.team-photo.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gray-soft) 0%, var(--blue-light) 100%);
}
.team-photo.placeholder .initials {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 6vw, 72px);
  color: var(--blue);
  font-weight: 300;
  letter-spacing: -0.02em;
  opacity: 0.6;
}

/* ============================================ */
/*  MOSAÏQUE STAFF (page équipe, sous l'intro)   */
/*  Disposition « piliers verticaux + grille »   */
/*  10 photos sur 4 colonnes × 4 rangées         */
/* ============================================ */
.staff-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  grid-template-rows: 230px 170px 230px 200px;
  gap: 14px;
  margin: 50px 0 10px;
}
.staff-mosaic-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: var(--gray-soft);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1), box-shadow 0.5s ease;
}
.staff-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(.2,.8,.2,1);
}
.staff-mosaic-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -14px rgba(38, 38, 38, 0.28);
  z-index: 2;
}
.staff-mosaic-item:hover img {
  transform: scale(1.04);
}

/* Object-position calé pour chaque photo : viser le visage du sujet */
.staff-mosaic-item img[data-pos="fauteuil"]      { object-position: center 28%; }
.staff-mosaic-item img[data-pos="telephone"]     { object-position: 65% 25%; }
.staff-mosaic-item img[data-pos="lay"]           { object-position: 60% 35%; }
.staff-mosaic-item img[data-pos="equipe"]        { object-position: 70% 30%; }
.staff-mosaic-item img[data-pos="soin"]          { object-position: center 28%; }
.staff-mosaic-item img[data-pos="comptoir"]      { object-position: 70% 35%; }
.staff-mosaic-item img[data-pos="sterilisation"] { object-position: 75% center; }
.staff-mosaic-item img[data-pos="planning"]      { object-position: 55% 30%; }
.staff-mosaic-item img[data-pos="accueil"]       { object-position: 65% 35%; }
.staff-mosaic-item img[data-pos="stiegler"]      { object-position: 30% 35%; }

/* Disposition desktop : piliers Lay (gauche) + Stiegler (droite) sur 2 rangées,
   scènes de groupe au centre, puis bandeaux bas pour les 5 autres scènes      */
.staff-mosaic .m-lay       { grid-column: 1;          grid-row: 1 / span 2; }
.staff-mosaic .m-soin      { grid-column: 2 / span 2; grid-row: 1; }
.staff-mosaic .m-stiegler  { grid-column: 4;          grid-row: 1 / span 2; }
.staff-mosaic .m-comptoir  { grid-column: 2;          grid-row: 2; }
.staff-mosaic .m-equipe    { grid-column: 3;          grid-row: 2; }
.staff-mosaic .m-fauteuil  { grid-column: 1 / span 2; grid-row: 3; }
.staff-mosaic .m-steri     { grid-column: 3 / span 2; grid-row: 3; }
.staff-mosaic .m-accueil   { grid-column: 1 / span 2; grid-row: 4; }
.staff-mosaic .m-planning  { grid-column: 3;          grid-row: 4; }
.staff-mosaic .m-telephone { grid-column: 4;          grid-row: 4; }

/* Tablette : passage à 2 colonnes, hauteur fixe par cellule, ordre simplifié */
@media (max-width: 900px) {
  .staff-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-auto-rows: 200px;
    gap: 10px;
  }
  .staff-mosaic .staff-mosaic-item,
  .staff-mosaic .m-lay, .staff-mosaic .m-soin, .staff-mosaic .m-stiegler,
  .staff-mosaic .m-comptoir, .staff-mosaic .m-equipe,
  .staff-mosaic .m-fauteuil, .staff-mosaic .m-steri,
  .staff-mosaic .m-accueil, .staff-mosaic .m-planning, .staff-mosaic .m-telephone {
    grid-column: span 1;
    grid-row: span 1;
  }
  /* Les 2 piliers prennent toute leur hauteur en tablette aussi */
  .staff-mosaic .m-lay, .staff-mosaic .m-stiegler {
    grid-row: span 2;
  }
}
/* Mobile : 1 colonne, grandes vignettes simples */
@media (max-width: 500px) {
  .staff-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
    gap: 10px;
  }
  .staff-mosaic .staff-mosaic-item,
  .staff-mosaic .m-lay, .staff-mosaic .m-soin, .staff-mosaic .m-stiegler,
  .staff-mosaic .m-comptoir, .staff-mosaic .m-equipe,
  .staff-mosaic .m-fauteuil, .staff-mosaic .m-steri,
  .staff-mosaic .m-accueil, .staff-mosaic .m-planning, .staff-mosaic .m-telephone {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ============================================ */
/*  NOUS TROUVER — carte + infos                */
/* ============================================ */
.map-wrap {
  margin-top: 50px;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
  box-shadow: 0 20px 40px -10px rgba(38, 38, 38, 0.12);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.venue-subtitle-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-border);
  flex-wrap: wrap;
}
.venue-subtitle {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  font-style: italic;
  color: var(--blue);
  margin: 0;
}
.venue-gmaps-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  flex-shrink: 0;
  margin-bottom: 6px;
}
@media (max-width: 700px) {
  .venue-subtitle-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* Décalage pour ancres internes (compense la nav fixe) */
section[id] {
  scroll-margin-top: 220px;
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 50px;
  margin-top: 40px;
}
.access-block h3 {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.access-block h3 .icon-wrap {
  width: 40px;
  height: 40px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.access-block p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.access-block strong {
  color: var(--ink);
  font-weight: 400;
}
.access-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.access-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.access-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
.access-list li:last-child {
  margin-bottom: 0;
}
@media (max-width: 700px) {
  .access-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================ */
/*  CONTACT — gros boutons                      */
/* ============================================ */
.contact-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 60px;
}
.contact-choice {
  display: flex;
  flex-direction: column;
  padding: 48px 40px;
  background: var(--white);
  border: 1.5px solid var(--gray-border);
  border-radius: 20px;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.4s cubic-bezier(.2,.8,.2,1);
  position: relative;
  overflow: hidden;
}
.contact-choice::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0;
  background: var(--blue);
  transition: height 0.4s ease;
  z-index: 0;
}
.contact-choice > * { position: relative; z-index: 1; }
.contact-choice:hover {
  border-color: var(--blue);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(31, 162, 255, 0.2);
}
.contact-choice:hover::before { height: 4px; }
.contact-choice .choice-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all 0.3s;
}
.contact-choice:hover .choice-icon {
  background: var(--blue);
  color: white;
}
.contact-choice h3 {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  line-height: 1.15;
  margin-bottom: 12px;
}
.contact-choice p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.contact-choice .cta-arrow {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  color: var(--blue);
  letter-spacing: 0.3px;
}
.contact-choice .cta-arrow .arrow {
  transition: transform 0.3s;
}
.contact-choice:hover .cta-arrow .arrow {
  transform: translateX(6px);
}
@media (max-width: 700px) {
  .contact-choices { grid-template-columns: 1fr; gap: 16px; }
  .contact-choice { padding: 32px 28px; }
  .contact-choice h3 { font-size: 24px; }
}

/* ============================================ */
/*  MENTIONS LÉGALES — typographie soignée      */
/* ============================================ */
.legal-content {
  margin: 0 auto;
}
.legal-content h2 {
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.2;
  margin-top: 48px;
  margin-bottom: 16px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.legal-content a {
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid var(--blue-light);
  transition: border-color 0.2s;
}
.legal-content a:hover { border-bottom-color: var(--blue); }
.legal-content strong { color: var(--ink); font-weight: 400; }

