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

  :root {
    --blue:        #0F6FBF;
    --blue-light:  #2E93E4;
    --blue-dark:   #0A4E88;
    --navy:        #082A45;
    --blue-pale:   #EAF4FC;
    --blue-pale2:  #CFE6F8;
    --gold:        #F2B705;
    --white:       #FFFFFF;
    --gray-light:  #F5F8FB;
    --gray-mid:    #E4EBF2;
    --gray-text:   #5B6B7B;
    --dark:        #0E1E2B;

    --shadow:     0 4px 24px rgba(15,111,191,0.10);
    --shadow-lg:  0 16px 48px rgba(8,42,69,0.16);
    --radius:     18px;
    --radius-sm:  11px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Public Sans', system-ui, sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3, h4 { font-family: 'Sora', sans-serif; line-height: 1.18; letter-spacing: -0.02em; }
  img { display: block; max-width: 100%; }
  a { color: inherit; }

  /* ---------- NAV ---------- */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: transparent; border-bottom: 1px solid rgba(255,255,255,.14);
    padding: 0 2.5rem; height: 84px;
    display: flex; align-items: center; justify-content: space-between;
    transition: background .35s, height .35s, box-shadow .35s, border-color .35s;
  }
  nav.scrolled {
    background: rgba(255,255,255,.96); backdrop-filter: blur(14px);
    border-bottom-color: var(--gray-mid); height: 74px;
    box-shadow: 0 6px 28px rgba(8,42,69,.10);
  }
  .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .nav-logo img { height: 42px; width: auto; filter: brightness(0) invert(1); transition: filter .35s; }
  nav.scrolled .nav-logo img { filter: none; }
  .nav-logo .fallback { font-family: 'Sora',sans-serif; font-weight: 700; font-size: 1.15rem; color: #fff; }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a { text-decoration: none; color: rgba(255,255,255,.85); font-size: .9rem; font-weight: 600; transition: color .2s; }
  .nav-links a:hover, .nav-links a:focus-visible { color: #fff; }
  nav.scrolled .nav-links a { color: var(--gray-text); }
  nav.scrolled .nav-links a:hover { color: var(--blue); }
  .nav-right { display: flex; align-items: center; gap: 1.25rem; }
  .nav-phone { text-decoration: none; font-family: 'Sora',sans-serif; font-weight: 600; font-size: .9rem; color: #fff; display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; transition: color .35s; }
  nav.scrolled .nav-phone { color: var(--navy); }
  .nav-phone:hover { color: var(--blue-light); }
  .nav-cta {
    background: var(--blue); color: #fff; padding: .7rem 1.5rem; border-radius: 50px;
    text-decoration: none; font-family: 'Sora',sans-serif; font-weight: 600; font-size: .88rem;
    box-shadow: 0 6px 18px rgba(15,111,191,.35); transition: all .2s; white-space: nowrap;
  }
  .nav-cta:hover { background: var(--blue-dark); transform: translateY(-1px); }

  /* ---------- HERO PLEIN ÉCRAN ---------- */
  .hero {
    position: relative; overflow: hidden;
    min-height: 100vh; min-height: 100svh;
    display: flex; align-items: center;
    padding: 8rem 3.5rem 7rem;
    background: var(--navy);
  }
  .hero-bg { position: absolute; inset: 0; z-index: 0; }
  .hero-bg img {
    width: 100%; height: 100%; object-fit: cover; object-position: 58% 38%;
    animation: slowzoom 18s ease-out both;
  }
  @keyframes slowzoom { from { transform: scale(1.09); } to { transform: scale(1); } }
  .hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background:
      linear-gradient(100deg, rgba(6,32,53,.92) 0%, rgba(6,32,53,.80) 38%, rgba(6,32,53,.34) 72%, rgba(6,32,53,.55) 100%),
      linear-gradient(to top, rgba(6,32,53,.75) 0%, transparent 38%);
  }
  .hero-inner { position: relative; z-index: 2; width: 100%; max-width: 1320px; margin: 0 auto; }
  .hero-copy { max-width: 720px; }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 9px;
    color: var(--blue-dark); font-family: 'Sora',sans-serif;
    font-size: .74rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
    margin-bottom: 1.1rem;
  }
  .eyebrow::before { content:''; width: 26px; height: 2px; background: var(--blue); border-radius: 2px; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 9px;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.28); color: #fff;
    padding: 7px 16px 7px 13px; border-radius: 50px; backdrop-filter: blur(8px);
    font-size: .78rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
    margin-bottom: 1.6rem;
  }
  .dot { width: 9px; height: 9px; background: #22B573; border-radius: 50%; animation: pulse 2.2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }

  .hero h1 {
    font-size: clamp(2.25rem, 4.6vw, 3.9rem); font-weight: 700; margin-bottom: 1.2rem; color: #fff;
    text-shadow: 0 2px 24px rgba(4,20,34,.35);
  }
  .hero h1 em { font-style: normal; color: #7FC4F5; }
  .hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.84); max-width: 540px; margin-bottom: 1.9rem; }
  .hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; }

  .btn-primary {
    background: var(--blue); color: #fff; padding: 1.05rem 2rem; border-radius: 50px;
    text-decoration: none; font-family: 'Sora',sans-serif; font-weight: 600; font-size: .98rem;
    display: inline-flex; align-items: center; gap: 9px;
    box-shadow: 0 10px 26px rgba(15,111,191,.35); transition: all .25s; border: none; cursor: pointer;
  }
  .btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(15,111,191,.45); }
  .btn-ghost {
    color: #fff; padding: 1.05rem 2rem; border-radius: 50px; background: rgba(255,255,255,.10);
    text-decoration: none; font-family: 'Sora',sans-serif; font-weight: 600; font-size: .98rem;
    border: 1.5px solid rgba(255,255,255,.45); backdrop-filter: blur(8px);
    display: inline-flex; align-items: center; gap: 9px; transition: all .25s;
  }
  .btn-ghost:hover { background: rgba(255,255,255,.2); border-color: #fff; }


  /* ---------- TARIFS ---------- */
  .tarifs { padding: 6.5rem 3.5rem 0; position: relative; }
  .tarifs-head { max-width: 1320px; margin: 0 auto 2.25rem; }
  .tarifs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; max-width: 1320px; margin: 0 auto; }
  .atouts { padding-top: 5rem; }
  .tarif-card {
    background: #fff; border: 1px solid var(--gray-mid); border-radius: var(--radius);
    padding: 1.75rem; box-shadow: var(--shadow); transition: all .28s;
  }
  .tarif-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--blue-pale2); }
  .tarif-card.feature { background: var(--blue); border-color: var(--blue); box-shadow: 0 12px 32px rgba(15,111,191,.30); }
  .tarif-kicker { font-family:'Sora',sans-serif; font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); margin-bottom: .6rem; }
  .tarif-card.feature .tarif-kicker { color: rgba(255,255,255,.9); }
  .tarif-price { font-family:'Sora',sans-serif; font-size: 2rem; font-weight: 700; color: var(--navy); line-height: 1.1; }
  .tarif-card.feature .tarif-price { color: #fff; }
  .tarif-price small { font-size: .95rem; font-weight: 500; color: var(--gray-text); }
  .tarif-card.feature .tarif-price small { color: rgba(255,255,255,.7); }
  .tarif-desc { font-size: .88rem; color: var(--gray-text); margin-top: .5rem; }
  .tarif-card.feature .tarif-desc { color: rgba(255,255,255,.86); }
  .tarif-old { text-decoration: line-through; opacity: .65; }

  /* ---------- SECTIONS ---------- */
  section { padding: 6.5rem 3.5rem; }
  .sec-title { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
  .sec-title em { font-style: normal; color: var(--blue); }
  .sec-desc { font-size: 1.03rem; color: var(--gray-text); max-width: 620px; }
  .center { text-align: center; }
  .center .eyebrow { justify-content: center; }
  .center .sec-desc { margin-left: auto; margin-right: auto; }

  /* ---------- ATOUTS ---------- */
  .atouts-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-top: 3.25rem; }
  .atout {
    background: var(--gray-light); border: 1px solid transparent; border-radius: var(--radius);
    padding: 2rem 1.6rem; transition: all .28s;
  }
  .atout:hover { background: #fff; border-color: var(--blue-pale2); transform: translateY(-4px); box-shadow: var(--shadow); }
  .atout-icon { width: 54px; height: 54px; border-radius: 15px; background: #fff; box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
  .atout h3 { font-size: 1rem; font-weight: 600; margin-bottom: .5rem; color: var(--navy); }
  .atout p { font-size: .89rem; color: var(--gray-text); line-height: 1.65; }

  /* ---------- APPROCHE ---------- */
  .approche { background: var(--gray-light); }
  .approche-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .approche-media { position: relative; }
  .approche-media img { width: 100%; border-radius: 24px; }
  .approche-media::before {
    content:''; position: absolute; inset: 12% -4% -6% 8%;
    background: linear-gradient(150deg, var(--blue-pale2), transparent 70%);
    border-radius: 24px; z-index: -1;
  }
  .principes { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 1.1rem; }
  .principes li { display: flex; gap: 1rem; align-items: flex-start; }
  .principes .tick { width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; margin-top: 3px; }
  .principes strong { font-family: 'Sora',sans-serif; font-weight: 600; font-size: .96rem; color: var(--navy); display: block; }
  .principes span.txt { font-size: .9rem; color: var(--gray-text); }

  /* ---------- SERVICES ---------- */
  .services-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; margin-bottom: 3.25rem; }
  .services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
  .service {
    background: #fff; border: 1px solid var(--gray-mid); border-radius: var(--radius);
    overflow: hidden; transition: all .3s; display: flex; flex-direction: column;
  }
  .service:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue-pale2); }
  .service-img { height: 200px; overflow: hidden; background: var(--blue-pale); }
  .service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
  .service:hover .service-img img { transform: scale(1.06); }
  .service-body { padding: 1.5rem 1.5rem 1.75rem; flex: 1; display: flex; flex-direction: column; }
  .service-body h3 { font-size: 1.08rem; font-weight: 600; margin-bottom: .5rem; color: var(--navy); }
  .service-body p { font-size: .88rem; color: var(--gray-text); line-height: 1.65; margin-bottom: 1.1rem; flex: 1; }
  .service-link { color: var(--blue); font-family:'Sora',sans-serif; font-weight: 600; font-size: .85rem; text-decoration: none; display: inline-flex; align-items: center; gap: 7px; transition: gap .2s; }
  .service-link:hover { gap: 12px; }

  /* ---------- INSTALLATIONS / GALERIE ---------- */
  .install { background: var(--navy); color: #fff; }
  .install .sec-title { color: #fff; }
  .install .sec-desc { color: rgba(255,255,255,.72); }
  .install .eyebrow { color: var(--blue-light); }
  .install .eyebrow::before { background: var(--blue-light); }
  .gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; max-width: 1320px; margin-left: auto; margin-right: auto; }
  .shot {
    position: relative; border: none; padding: 0; background: none; cursor: zoom-in;
    border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 3; display: block; width: 100%;
  }
  .shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s; }
  .shot:hover img { transform: scale(1.06); }
  .shot::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(transparent 45%, rgba(6,32,53,.82));
  }
  .shot figcaption {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
    padding: 1.4rem 1.15rem 1rem; text-align: left;
    font-family:'Sora',sans-serif; font-size: .92rem; font-weight: 600; color: #fff;
  }
  .shot figcaption span { display: block; font-family:'Public Sans',sans-serif; font-weight: 400; font-size: .8rem; color: rgba(255,255,255,.7); margin-top: 2px; }
  .shot .zoom {
    position: absolute; top: .8rem; right: .8rem; z-index: 2;
    width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.18);
    backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center;
    opacity: 0; transform: translateY(-4px); transition: all .25s;
  }
  .shot:hover .zoom, .shot:focus-visible .zoom { opacity: 1; transform: none; }

  .lightbox {
    position: fixed; inset: 0; z-index: 200; background: rgba(4,20,34,.94);
    display: none; align-items: center; justify-content: center; padding: 4rem 1.5rem;
  }
  .lightbox.open { display: flex; }
  .lightbox img { max-width: min(1100px, 92vw); max-height: 80vh; border-radius: 14px; object-fit: contain; }
  .lb-caption { position: absolute; bottom: 1.75rem; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.8); font-family:'Sora',sans-serif; font-size: .9rem; }
  .lb-btn {
    position: absolute; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
    color: #fff; width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: background .2s;
  }
  .lb-btn:hover { background: rgba(255,255,255,.25); }
  .lb-close { top: 1.5rem; right: 1.5rem; }
  .lb-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
  .lb-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

  /* ---------- AVIS GOOGLE ---------- */
  .avis { padding-left: 0; padding-right: 0; background: var(--gray-light); overflow: hidden; }
  .avis-head { padding: 0 3.5rem; max-width: 1320px; margin: 0 auto; }
  .google-score {
    display: inline-flex; align-items: center; gap: 1rem; background: #fff;
    border: 1px solid var(--gray-mid); border-radius: 50px; padding: .6rem 1.4rem .6rem .8rem;
    box-shadow: var(--shadow); margin-top: 1.5rem; text-decoration: none;
    transition: transform .2s, box-shadow .2s;
  }
  .google-score:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
  .gs-count { font-family:'Sora',sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--navy); }
  .gs-label { font-size: .8rem; color: var(--gray-text); }
  .stars { display: inline-flex; gap: 2px; }

  .marquee { margin-top: 3rem; position: relative; }
  .marquee::before, .marquee::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 3; pointer-events: none;
  }
  .marquee::before { left: 0; background: linear-gradient(to right, var(--gray-light), transparent); }
  .marquee::after { right: 0; background: linear-gradient(to left, var(--gray-light), transparent); }
  .marquee-track { display: flex; gap: 1.25rem; width: max-content; animation: slide 64s linear infinite; }
  .marquee:hover .marquee-track, .marquee:focus-within .marquee-track { animation-play-state: paused; }
  @keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  .avis-card {
    width: 340px; flex-shrink: 0; background: #fff; border: 1px solid var(--gray-mid);
    border-radius: var(--radius); padding: 1.5rem; display: flex; flex-direction: column; gap: .9rem;
  }
  .avis-card p { font-size: .92rem; color: var(--gray-text); line-height: 1.65; flex: 1; }
  .avis-foot { display: flex; align-items: center; gap: .7rem; }
  .avis-initials {
    width: 38px; height: 38px; border-radius: 50%; background: var(--blue-pale); color: var(--blue-dark);
    display: flex; align-items: center; justify-content: center;
    font-family:'Sora',sans-serif; font-weight: 600; font-size: .82rem; flex-shrink: 0;
  }
  .avis-name { font-family:'Sora',sans-serif; font-weight: 600; font-size: .88rem; color: var(--navy); }
  .avis-src { font-size: .76rem; color: var(--gray-text); display: flex; align-items: center; gap: 5px; }
  .avis-cta { text-align: center; margin-top: 2.75rem; padding: 0 3.5rem; }

  /* ---------- FCC ---------- */
  .fcc { background: var(--gray-light); }
  .fcc-inner { display: grid; grid-template-columns: 200px 1fr; gap: 3rem; align-items: center; background: #fff; border: 1px solid var(--gray-mid); border-radius: 24px; padding: 3rem; box-shadow: var(--shadow); }
  .fcc-inner img { width: 150px; margin: 0 auto; }
  .fcc h2 { font-size: clamp(1.5rem,2.4vw,2rem); color: var(--navy); margin-bottom: .9rem; }
  .fcc p { color: var(--gray-text); max-width: 640px; }

  /* ---------- CONFIANCE ---------- */
  .confiance { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); color: #fff; }
  .confiance .sec-title { color: #fff; }
  .confiance .eyebrow { color: rgba(255,255,255,.85); }
  .confiance .eyebrow::before { background: rgba(255,255,255,.7); }
  .conf-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-top: 3rem; }
  .conf-card { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); border-radius: var(--radius); padding: 1.75rem; transition: all .3s; }
  .conf-card:hover { background: rgba(255,255,255,.18); transform: translateY(-4px); }
  .conf-num { font-family:'Sora',sans-serif; font-size: 1.9rem; font-weight: 700; margin-bottom: .35rem; }
  .conf-card p { font-size: .88rem; color: rgba(255,255,255,.85); line-height: 1.6; }

  /* ---------- FAQ ---------- */
  .faq-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 4rem; align-items: start; }
  .faq-items { display: flex; flex-direction: column; gap: .85rem; }
  .faq-item { border: 1px solid var(--gray-mid); border-radius: var(--radius-sm); overflow: hidden; transition: all .25s; background: #fff; }
  .faq-q { padding: 1.15rem 1.4rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; cursor: pointer; font-family:'Sora',sans-serif; font-weight: 600; font-size: .95rem; color: var(--navy); width: 100%; background: none; border: none; text-align: left; }
  .faq-toggle { width: 28px; height: 28px; flex-shrink: 0; background: var(--blue-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 1.15rem; font-weight: 400; line-height: 1; transition: all .25s; }
  .faq-a { padding: 0 1.4rem; max-height: 0; overflow: hidden; transition: all .3s; font-size: .9rem; color: var(--gray-text); line-height: 1.7; }
  .faq-item.open { border-color: var(--blue-pale2); box-shadow: var(--shadow); }
  .faq-item.open .faq-a { padding: 0 1.4rem 1.25rem; max-height: 320px; }
  .faq-item.open .faq-toggle { background: var(--blue); color: #fff; transform: rotate(45deg); }
  .faq-help { margin-top: 2rem; background: var(--blue-pale); border-left: 4px solid var(--blue); border-radius: var(--radius-sm); padding: 1.5rem; }
  .faq-help strong { font-family:'Sora',sans-serif; display: block; margin-bottom: .35rem; color: var(--navy); }
  .faq-help p { font-size: .88rem; color: var(--gray-text); }
  .faq-help a { color: var(--blue); font-weight: 700; font-size: .89rem; text-decoration: none; display: inline-flex; gap: 6px; margin-top: .75rem; }

  /* ---------- CONTACT ---------- */
  .contact { background: var(--gray-light); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; align-items: start; }
  .contact-list { display: flex; flex-direction: column; gap: 1rem; }
  .contact-item { display: flex; gap: 1rem; align-items: flex-start; background: #fff; border: 1px solid var(--gray-mid); border-radius: var(--radius-sm); padding: 1.15rem 1.4rem; }
  .ci-icon { width: 44px; height: 44px; flex-shrink: 0; background: var(--blue-pale); border-radius: 11px; display: flex; align-items: center; justify-content: center; }
  .ci-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gray-text); font-weight: 700; margin-bottom: 2px; }
  .ci-value { font-family:'Sora',sans-serif; font-size: .95rem; font-weight: 600; color: var(--navy); }
  .ci-value a { color: var(--blue); text-decoration: none; }
  .map-wrap { margin-top: 1rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-mid); height: 280px; }
  .map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

  .form-card { background: #fff; border: 1px solid var(--gray-mid); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
  .form-card h3 { font-size: 1.15rem; margin-bottom: .4rem; color: var(--navy); }
  .form-card > p.hint { font-size: .88rem; color: var(--gray-text); margin-bottom: 1.5rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .fg { margin-bottom: 1rem; }
  .fg label { display: block; font-size: .82rem; font-weight: 700; margin-bottom: 6px; color: var(--navy); }
  .fg input, .fg select, .fg textarea {
    width: 100%; padding: .8rem 1rem; border: 1.5px solid var(--gray-mid); border-radius: var(--radius-sm);
    font-family: 'Public Sans',sans-serif; font-size: .92rem; color: var(--dark); background: var(--gray-light);
    transition: all .2s; outline: none;
  }
  .fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(15,111,191,.14); }
  .fg textarea { resize: vertical; min-height: 96px; }
  .btn-form { width: 100%; background: var(--blue); color: #fff; padding: .95rem; border-radius: 50px; border: none; font-family:'Sora',sans-serif; font-weight: 600; font-size: .98rem; cursor: pointer; transition: all .25s; box-shadow: 0 8px 20px rgba(15,111,191,.32); }
  .btn-form:hover { background: var(--blue-dark); transform: translateY(-2px); }
  .form-note { text-align: center; font-size: .78rem; color: var(--gray-text); margin-top: .8rem; }

  /* ---------- FOOTER ---------- */
  footer { background: var(--navy); color: rgba(255,255,255,.72); padding: 4rem 3.5rem 2rem; }
  .footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 3rem; margin-bottom: 2.5rem; }
  .footer-brand img { height: 46px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
  .footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 280px; }
  .footer-col h4 { font-family:'Sora',sans-serif; font-size: .9rem; color: #fff; margin-bottom: 1rem; font-weight: 600; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
  .footer-col a { color: rgba(255,255,255,.62); text-decoration: none; font-size: .88rem; transition: color .2s; }
  .footer-col a:hover { color: var(--blue-light); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.5rem; display: flex; justify-content: space-between; gap: 1rem; font-size: .8rem; color: rgba(255,255,255,.45); flex-wrap: wrap; }
  .footer-badges { display: flex; align-items: center; gap: 1rem; margin-top: 1.25rem; }
  .footer-badges img { height: 38px; background: #fff; border-radius: 8px; padding: 4px 8px; }

  /* ---------- STICKY WHATSAPP ---------- */
  .sticky-wa {
    position: fixed; right: 1.75rem; bottom: 1.75rem; z-index: 99;
    background: #25D366; color: #fff; padding: .95rem 1.4rem; border-radius: 50px;
    text-decoration: none; font-family:'Sora',sans-serif; font-weight: 600; font-size: .9rem;
    box-shadow: 0 10px 30px rgba(37,211,102,.45); display: flex; align-items: center; gap: 9px;
    transition: transform .25s;
  }
  .sticky-wa:hover { transform: translateY(-3px) scale(1.03); }

  /* ---------- REVEAL ---------- */
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.visible { opacity: 1; transform: none; }

  a:focus-visible, button:focus-visible { outline: 3px solid var(--blue-light); outline-offset: 3px; border-radius: 4px; }

  @media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
  }

  /* Écrans peu hauts : le hero reste dans une page */
  @media (max-height: 780px) and (min-width: 761px) {
    .hero { padding: 7rem 3.5rem 6rem; }
    .hero h1 { font-size: clamp(1.95rem, 3.4vw, 2.7rem); margin-bottom: .9rem; }
    .hero-sub { font-size: 1rem; margin-bottom: 1.5rem; }
    .hero-badge { margin-bottom: 1.1rem; }
    .btn-primary, .btn-ghost { padding: .9rem 1.7rem; }
  }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 1080px) {
    .atouts-grid, .conf-grid { grid-template-columns: repeat(2,1fr); }
    .services-grid { grid-template-columns: repeat(2,1fr); }
    .gallery { grid-template-columns: repeat(2,1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .hero { padding: 8rem 2rem 6.5rem; }
    .hero-bg img { object-position: 62% 35%; }
  }
  @media (max-width: 760px) {
    nav { padding: 0 1.25rem; height: 70px; }
    .nav-phone span { display: none; }
    section { padding: 4.5rem 1.25rem; }
    .hero { padding: 7rem 1.25rem 5rem; min-height: 86vh; }
    .tarifs { padding: 3.5rem 1.25rem 0; }
    .tarifs-grid, .services-grid, .atouts-grid, .conf-grid,
    .approche-grid, .faq-grid, .contact-grid, .gallery { grid-template-columns: 1fr; }
    .avis-head, .avis-cta { padding: 0 1.25rem; }
    .avis-card { width: 280px; }
    .marquee::before, .marquee::after { width: 40px; }
    .lb-prev { left: .5rem; } .lb-next { right: .5rem; }
    .fcc-inner { grid-template-columns: 1fr; padding: 2rem; text-align: center; }
    .services-head { flex-direction: column; align-items: flex-start; }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    footer { padding: 3rem 1.25rem 2rem; }
    .sticky-wa span { display: none; }
  }

/* =========================================================
   COMPOSANTS MULTIPAGES
   ========================================================= */

/* --- Menu mobile --- */
.burger {
  display: none; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3);
  width: 44px; height: 44px; border-radius: 12px; cursor: pointer;
  align-items: center; justify-content: center; color: #fff; transition: all .25s;
}
nav.scrolled .burger, nav.solid .burger { background: var(--blue-pale); border-color: var(--blue-pale2); color: var(--blue-dark); }
.mobile-menu {
  position: fixed; inset: 0; z-index: 150; background: var(--navy);
  display: none; flex-direction: column; padding: 6rem 1.75rem 2.5rem; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: #fff; text-decoration: none; font-family: 'Sora',sans-serif; font-weight: 600;
  font-size: 1.15rem; padding: .95rem 0; border-bottom: 1px solid rgba(255,255,255,.12);
}
.mobile-menu .mm-close { position: absolute; top: 1.5rem; right: 1.5rem; background: rgba(255,255,255,.12); border: none; color: #fff; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; }
.mobile-menu .mm-cta { margin-top: 1.75rem; text-align: center; background: var(--blue); border: none; border-radius: 50px; padding: 1rem; }

/* --- Nav opaque (pages intérieures) --- */
nav.solid { background: rgba(255,255,255,.96); backdrop-filter: blur(14px); border-bottom-color: var(--gray-mid); }
nav.solid .nav-logo img { filter: none; }
nav.solid .nav-links a { color: var(--gray-text); }
nav.solid .nav-links a:hover, nav.solid .nav-links a[aria-current="page"] { color: var(--blue); }
nav.solid .nav-phone { color: var(--navy); }
nav .nav-links a[aria-current="page"] { color: #fff; }
nav.solid .nav-links a[aria-current="page"],
nav.scrolled .nav-links a[aria-current="page"] { color: var(--blue); }

/* --- Bandeau de page intérieure --- */
.page-hero {
  position: relative; overflow: hidden; background: var(--navy); color: #fff;
  padding: 9rem 3.5rem 6rem; text-align: center;
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.page-hero > .page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 42%;
  animation: slowzoom 20s ease-out both;
}
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% 45%, rgba(6,32,53,.62) 0%, rgba(6,32,53,.86) 62%, rgba(4,22,38,.94) 100%),
    linear-gradient(105deg, rgba(15,111,191,.26), transparent 60%);
}
.page-hero > *:not(.page-hero-bg) { position: relative; z-index: 2; }
.page-hero-inner { position: relative; z-index: 2; width: 100%; max-width: 940px; margin: 0 auto; }

.page-hero .eyebrow {
  color: #8ECBF7; justify-content: center; margin-bottom: 1.4rem;
  font-size: .76rem; letter-spacing: .18em;
}
.page-hero .eyebrow::before { background: #8ECBF7; }
.page-hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.6rem); line-height: 1.1; color: #fff;
  margin: 0 auto 1.3rem; max-width: 18ch;
  text-wrap: balance; text-shadow: 0 2px 30px rgba(4,20,34,.45);
}
.page-hero h1 em { font-style: normal; color: #8ECBF7; }
.page-hero-sub {
  color: rgba(255,255,255,.82); max-width: 620px; margin: 0 auto;
  font-size: clamp(1rem, 1.4vw, 1.14rem); line-height: 1.65; text-wrap: pretty;
}
.crumbs {
  font-size: .78rem; color: rgba(255,255,255,.45); margin-top: 2.5rem;
  padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.14);
  display: inline-block; letter-spacing: .02em;
}
.crumbs a { color: rgba(255,255,255,.7); text-decoration: none; }
.crumbs a:hover { color: #fff; }

/* --- Bloc mission (deux CTA) --- */
.mission { background: #fff; }
.mission-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.mission-lead { font-family: 'Sora',sans-serif; font-size: clamp(1.2rem, 2.1vw, 1.6rem); font-weight: 600; line-height: 1.45; color: var(--navy); margin-bottom: 1.25rem; }
.mission-inner > p { color: var(--gray-text); font-size: 1.02rem; }
.mission-actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.btn-outline {
  color: var(--blue-dark); padding: 1rem 1.9rem; border-radius: 50px; background: #fff;
  text-decoration: none; font-family:'Sora',sans-serif; font-weight: 600; font-size: .95rem;
  border: 1.5px solid var(--blue-pale2); display: inline-flex; align-items: center; gap: 9px; transition: all .25s;
}
.btn-outline:hover { border-color: var(--blue); background: var(--blue-pale); }

/* --- Équipe --- */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.team-card { background: #fff; border: 1px solid var(--gray-mid); border-radius: var(--radius); overflow: hidden; transition: all .3s; }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--blue-pale2); }
.team-photo { aspect-ratio: 4/3; background: var(--blue-pale); position: relative; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo .placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .5rem; color: var(--blue); font-family:'Sora',sans-serif; font-size: .82rem; text-align: center; padding: 1rem;
}
.team-body { padding: 1.5rem; }
.team-body h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: .2rem; }
.team-role { font-family:'Sora',sans-serif; font-size: .82rem; font-weight: 600; color: var(--blue); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .75rem; }
.team-body p { font-size: .89rem; color: var(--gray-text); line-height: 1.65; }
.team-skills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 1rem; }
.skill { background: var(--blue-pale); color: var(--blue-dark); font-size: .74rem; font-weight: 600; padding: 4px 11px; border-radius: 50px; }

/* --- Familles de soins (style Curavit) --- */
.soin-groups { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-top: 3rem; }
.soin-group { background: #fff; border: 1px solid var(--gray-mid); border-radius: var(--radius); padding: 2rem; transition: all .3s; }
.soin-group:hover { border-color: var(--blue-pale2); box-shadow: var(--shadow); }
.soin-group .sg-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--blue-pale); display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; }
.soin-group h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: .6rem; }
.soin-group > p { font-size: .9rem; color: var(--gray-text); margin-bottom: 1.25rem; }
.soin-list { list-style: none; display: flex; flex-direction: column; }
.soin-list li { border-top: 1px solid var(--gray-mid); }
.soin-list a {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .8rem 0; text-decoration: none; color: var(--navy); font-size: .92rem; font-weight: 500;
  transition: color .2s, padding .2s;
}
.soin-list a:hover { color: var(--blue); padding-left: 6px; }
.soin-list svg { flex-shrink: 0; color: var(--blue); opacity: .5; transition: opacity .2s; }
.soin-list a:hover svg { opacity: 1; }

/* --- Fiche détaillée d'une prestation --- */
.detail { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; padding-bottom: 0; }
.detail:nth-of-type(even) .detail-media { order: -1; }
.detail-media img { width: 100%; border-radius: 22px; box-shadow: var(--shadow); }
.detail h2 { font-size: clamp(1.5rem, 2.4vw, 2.05rem); color: var(--navy); margin-bottom: 1rem; }
.detail p { color: var(--gray-text); }
.detail ul { list-style: none; margin-top: 1.25rem; display: flex; flex-direction: column; gap: .7rem; }
.detail ul li { display: flex; gap: .75rem; font-size: .92rem; color: var(--gray-text); align-items: flex-start; }
.detail ul svg { flex-shrink: 0; margin-top: 4px; color: var(--blue); }

/* --- Bandeau CTA --- */
.cta-band { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); color: #fff; text-align: center; }
.cta-band h2 { font-size: clamp(1.6rem, 2.8vw, 2.3rem); color: #fff; margin-bottom: .9rem; }
.cta-band p { color: rgba(255,255,255,.82); max-width: 620px; margin: 0 auto 2rem; }
.cta-band .btn-primary { background: #fff; color: var(--blue-dark); box-shadow: 0 10px 26px rgba(4,20,34,.25); }
.cta-band .btn-primary:hover { background: #fff; color: var(--navy); }
.cta-band .btn-ghost { border-color: rgba(255,255,255,.5); }

/* --- Localisation --- */
.lieu { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.lieu-card { background: #fff; border: 1px solid var(--gray-mid); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.lieu-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 1.25rem; }
.lieu-line { display: flex; gap: .9rem; padding: .85rem 0; border-top: 1px solid var(--gray-mid); font-size: .93rem; color: var(--gray-text); }
.lieu-line:first-of-type { border-top: none; }
.lieu-line svg { flex-shrink: 0; color: var(--blue); margin-top: 3px; }
.lieu-line strong { display: block; color: var(--navy); font-family:'Sora',sans-serif; font-weight: 600; font-size: .92rem; }

@media (max-width: 1080px) {
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .page-hero { padding: 8.5rem 2rem 5rem; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .nav-phone { display: none; }
  .nav-cta { display: none; }
  .page-hero { padding: 7.5rem 1.25rem 4.5rem; min-height: 86vh; }
  .team-grid, .soin-groups, .detail, .lieu { grid-template-columns: 1fr; }
  .detail:nth-of-type(even) .detail-media { order: 0; }
  .mission-actions { flex-direction: column; }
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
.reveal-left, .reveal-right, .reveal-zoom {
  opacity: 0; transition: opacity .85s cubic-bezier(.22,.8,.3,1), transform .85s cubic-bezier(.22,.8,.3,1);
}
.reveal-left  { transform: translateX(-46px); }
.reveal-right { transform: translateX(46px); }
.reveal-zoom  { transform: scale(.94); }
.reveal-left.visible, .reveal-right.visible, .reveal-zoom.visible { opacity: 1; transform: none; }

/* --- Duo de thérapeutes (photo qui arrive) --- */
.duo { background: var(--gray-light); }
.duo-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2.5rem; margin-top: 3.25rem; }
.duo-card {
  background: #fff; border: 1px solid var(--gray-mid); border-radius: 24px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1.15fr; transition: box-shadow .35s, transform .35s;
}
.duo-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.duo-photo { position: relative; overflow: hidden; background: var(--blue-pale); min-height: 300px; }
.duo-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.22,.8,.3,1); }
.duo-card:hover .duo-photo img { transform: scale(1.06); }
.duo-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(15,111,191,.28), transparent 60%);
}
.duo-photo .tag {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  background: rgba(255,255,255,.92); color: var(--blue-dark); border-radius: 50px;
  padding: 5px 13px; font-family:'Sora',sans-serif; font-size: .7rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
}
.duo-body { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
.duo-body h3 { font-size: 1.35rem; color: var(--navy); margin-bottom: .25rem; }
.duo-role { font-family:'Sora',sans-serif; font-size: .78rem; font-weight: 600; color: var(--blue); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
.duo-body p { font-size: .92rem; color: var(--gray-text); line-height: 1.7; }
.duo-body .service-link { margin-top: 1.25rem; }

/* --- Compteurs animés --- */
.counter { font-variant-numeric: tabular-nums; }

/* --- Menu déroulant Prestations --- */
.has-drop { position: relative; }
.drop {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(-8px);
  background: #fff; border: 1px solid var(--gray-mid); border-radius: 16px;
  box-shadow: 0 18px 44px rgba(8,42,69,.16); padding: .6rem; min-width: 290px;
  opacity: 0; visibility: hidden; transition: all .25s; list-style: none; z-index: 120;
}
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.drop::before { content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.drop li a {
  display: flex; align-items: center; gap: .7rem; padding: .65rem .85rem; border-radius: 10px;
  color: var(--navy) !important; font-size: .89rem; font-weight: 500; transition: background .18s;
}
.drop li a:hover { background: var(--blue-pale); color: var(--blue-dark) !important; }
.drop li a svg { color: var(--blue); flex-shrink: 0; }
.drop-sep { height: 1px; background: var(--gray-mid); margin: .4rem .5rem; }
.mobile-menu .sub { padding-left: 1rem; font-size: .98rem; font-weight: 500; color: rgba(255,255,255,.75); }

/* --- Bandeau cookies --- */
.cookie-bar {
  position: fixed; left: 1.25rem; right: 1.25rem; bottom: 1.25rem; z-index: 180;
  background: #fff; border: 1px solid var(--gray-mid); border-radius: 18px;
  box-shadow: 0 20px 50px rgba(8,42,69,.22); padding: 1.5rem;
  display: none; gap: 1.5rem; align-items: center; max-width: 1000px; margin: 0 auto;
}
.cookie-bar.show { display: flex; animation: cookieIn .5s cubic-bezier(.22,.8,.3,1) both; }
@keyframes cookieIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
.cookie-bar p { font-size: .88rem; color: var(--gray-text); line-height: 1.6; flex: 1; }
.cookie-bar strong { display: block; font-family:'Sora',sans-serif; color: var(--navy); margin-bottom: .3rem; font-size: .95rem; }
.cookie-bar a { color: var(--blue); }
.cookie-actions { display: flex; gap: .6rem; flex-shrink: 0; flex-wrap: wrap; }
.cookie-actions button {
  font-family:'Sora',sans-serif; font-weight: 600; font-size: .85rem; padding: .75rem 1.4rem;
  border-radius: 50px; cursor: pointer; border: 1.5px solid var(--gray-mid); background: #fff; color: var(--navy);
  transition: all .2s;
}
.cookie-actions .accept { background: var(--blue); border-color: var(--blue); color: #fff; }
.cookie-actions .accept:hover { background: var(--blue-dark); }
.cookie-actions button:hover { border-color: var(--blue); }

/* --- Pages légales --- */
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { font-size: 1.4rem; color: var(--navy); margin: 2.5rem 0 .85rem; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 1.05rem; color: var(--navy); margin: 1.5rem 0 .5rem; }
.legal p, .legal li { color: var(--gray-text); font-size: .95rem; line-height: 1.75; }
.legal ul { margin: .75rem 0 .75rem 1.25rem; display: flex; flex-direction: column; gap: .4rem; }
.legal table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: .89rem; }
.legal th, .legal td { text-align: left; padding: .8rem .9rem; border: 1px solid var(--gray-mid); color: var(--gray-text); }
.legal th { background: var(--gray-light); color: var(--navy); font-family:'Sora',sans-serif; font-weight: 600; }
.legal .updated { font-size: .84rem; color: var(--gray-text); font-style: italic; margin-bottom: 2rem; }

/* --- Pages de prestation --- */
.svc-intro { padding-bottom: 3rem; }
.svc-lead {
  max-width: 780px; margin: 0 auto; font-family: 'Sora',sans-serif;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem); font-weight: 500; line-height: 1.55; color: var(--navy);
}
.svc-body { padding-top: 0; }
.svc-block { max-width: 780px; margin: 0 auto 2.75rem; }
.svc-block h2 { font-size: clamp(1.25rem, 2vw, 1.5rem); color: var(--navy); margin-bottom: .75rem; }
.svc-block p { color: var(--gray-text); font-size: 1rem; }
.svc-summary {
  max-width: 780px; margin: 0 auto; background: var(--blue-pale);
  border-left: 4px solid var(--blue); border-radius: var(--radius-sm); padding: 1.75rem 2rem;
}
.svc-summary h2 { font-size: 1.2rem; color: var(--navy); margin-bottom: 1rem; }
.svc-summary ul { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.svc-summary li { display: flex; gap: .75rem; align-items: flex-start; font-size: .95rem; color: var(--gray-text); }
.svc-summary li svg { flex-shrink: 0; margin-top: 4px; color: var(--blue); }

.svc-facts { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin: 2.25rem auto 0; max-width: 900px; }
.svc-fact { background: var(--blue-pale); border-radius: var(--radius-sm); padding: 1.1rem 1.25rem; }
.svc-fact .k { font-family:'Sora',sans-serif; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--blue-dark); font-weight: 600; margin-bottom: .25rem; }
.svc-fact .v { font-size: .92rem; color: var(--navy); font-weight: 500; }
.svc-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin: 3rem auto 0; max-width: 1100px; }
.svc-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 16px; }
.related { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 2.5rem; }
.related a {
  background: #fff; border: 1px solid var(--gray-mid); border-radius: var(--radius); padding: 1.4rem;
  text-decoration: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family:'Sora',sans-serif; font-weight: 600; font-size: .95rem; color: var(--navy); transition: all .25s;
}
.related a:hover { border-color: var(--blue-pale2); box-shadow: var(--shadow); transform: translateY(-3px); color: var(--blue); }

@media (max-width: 1080px) {
  .duo-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .duo-card { grid-template-columns: 1fr; }
  .duo-photo { min-height: 240px; }
  .svc-facts, .svc-gallery, .related { grid-template-columns: 1fr; }
  .cookie-bar { flex-direction: column; align-items: stretch; padding: 1.25rem; }
  .cookie-actions button { flex: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal-left, .reveal-right, .reveal-zoom { opacity: 1 !important; transform: none !important; }
}

/* Bandeaux de page sur écran peu haut : même compactage que la page d'accueil */
@media (max-height: 780px) and (min-width: 761px) {
  .page-hero { padding: 7.5rem 3.5rem 5rem; }
  .page-hero h1 { font-size: clamp(1.95rem, 3.6vw, 2.8rem); margin-bottom: .9rem; }
  .page-hero-sub { font-size: 1rem; }
  .page-hero .eyebrow { margin-bottom: 1rem; }
  .crumbs { margin-top: 1.6rem; padding-top: 1.1rem; }
}
@media (max-width: 760px) {
  .page-hero h1 { max-width: 100%; }
  .crumbs { margin-top: 2rem; padding-top: 1.2rem; font-size: .74rem; }
}
