/* ===== CaniPlus — Styles propres à la page d'accueil ===== */
/* Sorti du bloc <style> de index.html le 27 août 2026, sans en modifier
   une seule règle. Chargé APRÈS assets/style.css : à spécificité égale,
   c'est celui-ci qui gagne, donc le rendu ne bouge pas.

   Étape suivante, à faire séparément : retirer d'ici tout ce que
   style.css couvre déjà, en contrôlant visuellement à chaque bloc. */

  :root {
    --cyan: #2babe1;            /* décoratif uniquement : fonds, bordures, icônes */
    --cyan-dark: #176E94;       /* aligné sur --bleu-texte (ancien #1e8db8 : 3,8:1, insuffisant) */
    --bleu-texte: #176E94;      /* texte/liens/libellés : ≥ 4,5:1 sur blanc, cyan-light et sand */
    --bleu-texte-hover: #135C7C;
    --cyan-titre: #1796CB;      /* très grands titres décoratifs uniquement (≥ 3:1) */
    --cyan-light: #e8f6fc;
    --ink: #1f1f20;
    --ink-soft: #3d3d3d;
    --sand: #f8f5f0;
    --gray-bg: #f5f7f9;         /* pastille "hors zone" de la carte uniquement, plus aucun fond de section */
    --white: #ffffff;
    --border: #e6e9ec;

    /* ---- Grille de valeurs -------------------------------------------------
       Une seule echelle par propriete repetee. Avant : 19 arrondis, 25 ombres,
       7 fonds clairs quasi identiques. Les valeurs purement geometriques
       (50%, la goutte du pin, les coins asymetriques) restent litterales :
       ce sont des formes, pas des reglages de style. */
    --r-sm: 10px;               /* champs, petits boutons, pastilles */
    --r-md: 16px;               /* cartes */
    --r-lg: 24px;               /* grands panneaux, modales */
    --r-pill: 999px;

    --sh-card: 0 2px 16px rgba(0,0,0,0.04);        /* carte au repos */
    --sh-float: 0 12px 32px rgba(0,0,0,0.08);      /* carte survolee, flottant */
    --sh-float-cyan: 0 16px 40px rgba(43,171,225,0.12);
    --sh-modal: 0 24px 60px rgba(0,0,0,0.3);
    --sh-btn: 0 4px 14px rgba(23, 110, 148, 0.3);
    --sh-btn-hover: 0 6px 20px rgba(23, 110, 148, 0.4);
    --ring: 0 0 0 3px rgba(43,171,225,0.15);       /* anneau de focus/actif */
  --sh-pill: 0 2px 8px rgba(43, 171, 225, 0.1);  /* pilule eyebrow */       /* anneau de focus/actif */

    --field-bg: #fafafa;        /* fond des champs de saisie */
    --amber: #9a5b00;           /* etoiles et badges : 5,43:1 sur blanc */
    --amber-soft: #fdf3e3;      /* fond des badges ambre */
    --on-dark-soft: #9b9b9d;    /* texte discret sur le pied de page sombre */
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; overflow-x: hidden; }
  body {
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
    font-weight: 400;
    overflow-x: hidden;
  }
  h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 600; line-height: 1.2; }
  .script { font-family: 'Great Vibes', cursive; }
  a { color: var(--bleu-texte); text-decoration: none; }
  .container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

  /* Accessibilité : focus visible partout (jamais d'outline:none sans remplacement) */
  a:focus-visible, button:focus-visible, input:focus-visible, [tabindex]:focus-visible {
    outline: 3px solid var(--bleu-texte);
    outline-offset: 2px;
    border-radius: 4px;
  }
  /* Lien d'évitement */
  .skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 1000;
    background: var(--ink); color: white; padding: 12px 20px;
    border-radius: 0 0 10px 0; font-weight: 600; font-size: 15px;
  }
  .skip-link:focus { left: 0; }
  /* Cibles d'ancres : pas de saut de focus perdu */
  [id] { scroll-margin-top: 110px; }
  /* Animations réduites sur demande */
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }

  /* NAVBAR */
  header.nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 24px; max-width: 1180px; margin: 0 auto; gap: 18px;
  }
  .nav-inner > .btn { white-space: nowrap; }
  .logo-img {
    height: 58px; width: auto; display: block;
  }
  .logo-fallback {
    font-family: 'Great Vibes', cursive;
    font-size: 34px; color: var(--ink); font-weight: 700;
    display: none;
  }
  .logo-fallback span { color: var(--cyan); }
  nav ul {
    display: flex; gap: 3px; list-style: none;
    background: var(--cyan-light); padding: 6px; border-radius: var(--r-pill);
  }
  nav a {
    display: inline-block; white-space: nowrap;
    color: var(--ink-soft); font-weight: 500; font-size: 14px;
    padding: 9px 13px; border-radius: var(--r-pill);
    transition: all .2s;
  }
  nav a:hover { color: white; background: var(--bleu-texte); }
  nav a[aria-current="page"] { color: white; background: var(--bleu-texte); }
  .btn {
    display: inline-block; padding: 12px 26px; border-radius: var(--r-pill);
    font-weight: 600; font-size: 15px; transition: all .25s;
    cursor: pointer; border: none;
  }
  .btn-primary {
    background: var(--bleu-texte); color: white;
    box-shadow: var(--sh-btn);
  }
  .btn-primary:hover { background: var(--bleu-texte-hover); transform: translateY(-2px); box-shadow: var(--sh-btn-hover); }
  .btn-outline {
    background: transparent; color: var(--ink); border: 2px solid var(--ink);
  }
  .btn-outline:hover { background: var(--ink); color: white; }

  /* HERO */
  .hero {
    padding: 90px 0 110px;
    background: linear-gradient(135deg, #ffffff 0%, var(--cyan-light) 100%);
    position: relative; overflow: hidden;
  }
  .hero-grid {
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center;
  }
  .hero-eyebrow {
    display: inline-block; padding: 8px 16px; border-radius: var(--r-pill);
    background: white; color: var(--cyan-dark); font-weight: 600; font-size: 13px;
    letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 20px;
    box-shadow: var(--sh-pill);
  }
  .hero h1 {
    font-size: 56px; margin-bottom: 22px; color: var(--ink);
  }
  .hero h1 em { font-style: normal; color: var(--cyan-titre); font-family: 'Great Vibes', cursive; font-weight: 700; }
  .hero p.lead {
    font-size: 18px; color: var(--ink-soft); margin-bottom: 36px; max-width: 520px;
  }
  .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
  .hero-visual {
    position: relative; aspect-ratio: 1/1; width: 100%; max-width: 460px; margin-left: auto;
  }
  .hero-visual .circle {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--cyan) 0%, #7fd4ef 100%);
    border-radius: 50%;
    box-shadow: 0 30px 60px rgba(43, 171, 225, 0.25);
  }
  .hero-visual .photo-placeholder {
    position: absolute; inset: 14px; border-radius: 50%;
    background: #d8d8d8;
    border: 8px solid white;
    overflow: hidden;
  }
  .hero-visual .photo-placeholder img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .trust-row {
    display: flex; gap: 28px; margin-top: 40px; padding-top: 28px;
    border-top: 1px solid rgba(0,0,0,0.08);
  }
  .trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-soft); }
  .trust-item .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); }

  /* SECTION */
  section { padding: 100px 0; }
  .section-head { text-align: center; max-width: 680px; margin: 0 auto 60px; }
  .section-eyebrow {
    color: var(--bleu-texte); font-weight: 600; font-size: 14px;
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px;
    display: block;
  }
  .section-head h2 { font-size: 40px; margin-bottom: 16px; }
  .section-head p { font-size: 17px; color: var(--ink-soft); }

  /* APPROCHE */
  .approche { background: var(--sand); }
  .pillars {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  }
  .pillar {
    background: white; padding: 40px 32px; border-radius: var(--r-md);
    box-shadow: var(--sh-card); transition: all .3s;
  }
  .pillar:hover { transform: translateY(-6px); box-shadow: var(--sh-float); }
  .pillar-icon {
    width: 60px; height: 60px; border-radius: var(--r-md);
    background: var(--cyan-light); color: var(--cyan-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; margin-bottom: 22px;
  }
  .pillar h3 { font-size: 22px; margin-bottom: 12px; }
  .pillar p { color: var(--ink-soft); font-size: 15px; }

  /* PRESTATIONS */
  .prestations-grid {
    /* Cinq prestations : en deux colonnes elles tombaient en 2+2+1 et la
       derniere carte restait seule sur sa ligne. En trois, c'est 3+2. */
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  .prestation {
    padding: 40px; border-radius: var(--r-md); background: white;
    border: 1px solid var(--border); display: flex; flex-direction: column;
    transition: all .3s; position: relative; overflow: hidden;
  }
  .prestation::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--cyan), #7fd4ef);
  }
  .prestation:hover { transform: translateY(-4px); box-shadow: var(--sh-float-cyan); border-color: var(--cyan-light); }
  .prestation-tag {
    display: inline-block; padding: 6px 14px; border-radius: var(--r-pill);
    background: var(--cyan-light); color: var(--cyan-dark);
    font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
    text-transform: uppercase; margin-bottom: 16px; align-self: flex-start;
  }
  .prestation h3 { font-size: 26px; margin-bottom: 12px; }
  .prestation p.desc { color: var(--ink-soft); margin-bottom: 22px; flex: 1; }
  .prestation-features { list-style: none; margin-bottom: 26px; }
  .prestation-features li {
    padding: 6px 0 6px 26px; position: relative; font-size: 15px; color: var(--ink-soft);
  }
  .prestation-features li::before {
    content: '✓'; position: absolute; left: 0; top: 6px;
    color: var(--bleu-texte); font-weight: 700;
  }
  .prestation-price {
    display: flex; align-items: baseline; gap: 8px; padding-top: 20px;
    border-top: 1px solid var(--border); margin-top: auto;
  }
  .price-amount { font-size: 36px; font-weight: 700; color: var(--ink); font-family: 'Playfair Display', serif; }
  .price-unit { color: var(--ink-soft); font-size: 14px; }

  .prestation-extra { font-size: 13px; color: var(--ink-soft); margin-top: 8px; line-height: 1.5; }
  .prestation-extra a {
    color: var(--cyan-dark); font-weight: 500;
    text-decoration: underline; text-decoration-color: rgba(43,171,225,0.4);
    text-underline-offset: 3px;
  }
  .prestation-extra a:hover { color: var(--bleu-texte-hover); }
  .prestation .btn { margin-top: 18px; align-self: flex-start; }
  /* Deux actions cote a cote sur une meme carte (cours collectifs : WhatsApp
     et formulaire d'adhesion). Les boutons passent l'un sous l'autre quand la
     carte devient etroite, plutot que de deborder. */
  .prestation-actions {
    display: flex; flex-wrap: wrap; gap: 12px;
    margin-top: 18px; align-self: flex-start;
  }
  .prestation-actions .btn { margin-top: 0; }

  /* Carte activité partenaire (hors prestations CaniPlus) */
  .prestation.is-partner::before { background: linear-gradient(90deg, #b06a12, #e0a458); }
  .prestation.is-partner:hover { box-shadow: 0 16px 40px rgba(176, 106, 18, 0.12); border-color: #edd6ad; }
  .prestation-badge {
    display: inline-block; padding: 6px 14px; border-radius: var(--r-pill);
    background: var(--amber-soft); color: #8a5310; border: 1px solid #edd6ad;
    font-size: 12px; font-weight: 700; letter-spacing: 0.5px;
    text-transform: uppercase; margin-bottom: 16px; align-self: flex-start;
  }

  /* ZONE DE SERVICE */
  .zone-service { background: var(--sand); }
  .zone-grid {
    display: grid; grid-template-columns: 1.15fr 1fr; gap: 50px; align-items: start;
  }
  .zone-map-wrap {
    border-radius: var(--r-md);
    overflow: hidden;
    background: var(--sand);
    box-shadow: var(--sh-float-cyan);
    border: 1px solid rgba(43,171,225,0.25);
  }
  #zone-map-leaflet {
    width: 100%;
    height: 540px;
    background: #f2efe8;
    z-index: 0;
  }
  .zone-pin {
    width: 28px; height: 28px;
    background: var(--cyan);
    border: 3px solid white;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    position: relative;
  }
  .zone-pin::after {
    content: ''; width: 8px; height: 8px;
    background: white; border-radius: 50%;
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
  }
  .zone-tooltip {
    background: white !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12) !important;
    border-radius: var(--r-pill) !important;
    font-weight: 600 !important;
    font-size: 12px !important;
    padding: 4px 12px !important;
    color: var(--ink) !important;
    font-family: 'Inter', sans-serif !important;
  }
  .zone-tooltip.is-main {
    background: var(--bleu-texte) !important;
    color: white !important;
    font-size: 13px !important;
    padding: 5px 14px !important;
  }
  .zone-tooltip::before { display: none !important; }
  .leaflet-container { font-family: 'Inter', sans-serif; background: #f2efe8 !important; }
  .leaflet-control-attribution {
    font-size: 10px !important;
    background: rgba(255,255,255,0.85) !important;
  }
  .zone-info { display: flex; flex-direction: column; gap: 22px; }
  .zone-legend {
    list-style: none; display: flex; flex-direction: column; gap: 12px;
    padding: 0; margin: 0;
  }
  .zone-legend li {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 14px 18px;
    background: white;
    border-radius: var(--r-sm);
    box-shadow: var(--sh-card);
  }
  .zone-dot {
    width: 22px; height: 22px; border-radius: 6px; flex-shrink: 0;
    margin-top: 3px;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
  }
  .zone-legend li strong { display: block; color: var(--ink); font-size: 15px; margin-bottom: 3px; font-weight: 600; }
  .zone-legend li .zone-detail { font-size: 13px; color: var(--ink-soft); line-height: 1.55; }
  .zone-notes {
    background: var(--cyan-light);
    border-left: 3px solid var(--cyan);
    padding: 16px 20px;
    border-radius: 0 10px 10px 0;
  }
  .zone-notes p {
    font-size: 14px; color: var(--ink-soft); margin: 8px 0; line-height: 1.6;
  }
  .zone-notes p:first-child { margin-top: 0; }
  .zone-notes p:last-child { margin-bottom: 0; }
  .zone-notes strong { color: var(--cyan-dark); font-weight: 600; }
  .zone-finder {
    background: white;
    border-radius: var(--r-md);
    padding: 18px 20px;
    box-shadow: var(--sh-card);
    border: 1px solid rgba(43,171,225,0.18);
  }
  .zone-finder-label {
    display: block; font-size: 13px; font-weight: 600;
    color: var(--cyan-dark); letter-spacing: 0.4px;
    text-transform: uppercase; margin-bottom: 10px;
  }
  .zone-finder-row { display: flex; gap: 10px; }
  .zone-finder-row input {
    flex: 1; min-width: 0;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    padding: 12px 14px;
    font-size: 15px;
    font-family: inherit;
    color: var(--ink);
    background: var(--field-bg);
    transition: border-color .2s, background .2s;
  }
  .zone-finder-row input:focus {
    outline: none;
    border-color: var(--bleu-texte);
    background: white;
    box-shadow: var(--ring);
  }
  .zone-finder-row button {
    background: var(--bleu-texte); color: white; border: none;
    padding: 0 22px; border-radius: var(--r-sm);
    font-weight: 600; font-size: 14px; cursor: pointer;
    transition: background .2s, transform .15s;
    font-family: inherit;
  }
  .zone-finder-row button:hover { background: var(--bleu-texte-hover); }
  .zone-finder-row button:active { transform: scale(0.97); }
  .zone-finder-row button:disabled { opacity: 0.6; cursor: wait; }
  .zone-finder-result {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--ink);
    display: none;
  }
  .zone-finder-result.is-visible { display: block; }
  .zone-finder-result.is-error { color: #b91c1c; }
  .zone-finder-result-pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--r-pill);
    font-size: 12px;
    font-weight: 600;
    margin-right: 8px;
  }
  .zone-finder-result-pill.zone-1 { background: #e7f3dc; color: #3e6f1e; }
  .zone-finder-result-pill.zone-2 { background: #fdf3c4; color: #7a5e10; }
  .zone-finder-result-pill.zone-3 { background: #fde2c4; color: #8a4d10; }
  .zone-finder-result-pill.zone-4 { background: var(--gray-bg); color: #444; }
  .zone-finder-result strong { color: var(--cyan-dark); font-weight: 700; }
  .zone-finder-result-price {
    font-size: 28px; font-weight: 700;
    color: var(--cyan-dark); font-family: 'Playfair Display', serif;
    display: block; margin-top: 8px; line-height: 1.1;
  }
  .zone-finder-result-breakdown {
    display: block;
    font-size: 14px;
    color: var(--ink);
    margin-top: 4px;
    font-weight: 500;
  }
  .zone-finder-result-detail {
    display: block;
    color: var(--ink-soft); font-size: 12px; margin-top: 6px;
    line-height: 1.55;
  }
  @media (max-width: 900px) {
    .zone-grid { grid-template-columns: 1fr; gap: 28px; }
    #zone-map-leaflet { height: 420px; }
  }

  /* BOUTIQUE */
  .boutique { /* fond blanc : alternance stricte avec la zone de service */ }
  .shop-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  }
  .shop-card {
    background: white; border-radius: var(--r-md); overflow: hidden;
    box-shadow: var(--sh-card);
    display: flex; flex-direction: column;
    transition: all .3s; border: 1px solid var(--border);
  }
  .shop-card:hover { transform: translateY(-5px); box-shadow: var(--sh-float-cyan); border-color: var(--cyan); }
  .shop-cover {
    aspect-ratio: 3/4; background: linear-gradient(135deg, var(--cyan-light) 0%, #d0ecf8 100%);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .shop-cover-icon {
    font-size: 56px; opacity: 0.5;
  }
  .shop-cover-badge {
    position: absolute; top: 12px; right: 12px;
    background: var(--bleu-texte); color: white; border-radius: var(--r-pill);
    font-size: 11px; font-weight: 700; padding: 4px 10px;
    text-transform: uppercase; letter-spacing: 0.5px;
  }
  .shop-info { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
  .shop-type {
    font-size: 11px; font-weight: 700; color: var(--cyan-dark);
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px;
  }
  .shop-info h3 { font-size: 18px; margin-bottom: 8px; line-height: 1.3; }
  .shop-info p { font-size: 14px; color: var(--ink-soft); margin-bottom: 18px; flex: 1; line-height: 1.6; }
  .shop-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 16px; border-top: 1px solid var(--border);
  }
  .shop-price { font-size: 22px; font-weight: 700; color: var(--ink); font-family: 'Playfair Display', serif; }
  .shop-price span { font-size: 13px; font-weight: 400; color: var(--ink-soft); }
  .btn-shop {
    background: var(--bleu-texte); color: white; border: none; border-radius: var(--r-pill);
    padding: 9px 18px; font-size: 13px; font-weight: 600; cursor: pointer;
    transition: background .2s; text-decoration: none;
  }
  .btn-shop:hover { background: var(--bleu-texte-hover); }
  .boutique-cta {
    text-align: center; margin-top: 48px;
  }
  .boutique-note {
    font-size: 15px; color: var(--ink-soft); margin-top: 14px;
  }


  .boutique-featured {
    display: grid; grid-template-columns: 320px 1fr; gap: 40px;
    background: white; border-radius: var(--r-lg);
    padding: 32px; margin-bottom: 56px;
    box-shadow: var(--sh-float-cyan);
    border: 1px solid var(--border);
  }
  .boutique-featured-cover {
    position: relative; aspect-ratio: 3/4;
    border-radius: var(--r-md); overflow: hidden;
    background: linear-gradient(135deg, var(--cyan-light) 0%, #d0ecf8 100%);
  }
  .boutique-featured-cover img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .boutique-featured-fallback {
    position: absolute; inset: 0;
    flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 20px;
  }
  .boutique-featured-fallback-title {
    font-family: 'Playfair Display', serif; font-size: 22px; color: var(--cyan-dark);
    font-weight: 700; line-height: 1.2;
  }
  .boutique-featured-fallback-sub {
    font-size: 12px; color: var(--ink-soft); margin-top: 8px; letter-spacing: 1px; text-transform: uppercase;
  }
  .boutique-featured-badge {
    position: absolute; top: 14px; right: 14px;
    background: #1E7B41; color: white; border-radius: var(--r-pill);
    font-size: 11px; font-weight: 700; padding: 5px 12px;
    text-transform: uppercase; letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(45,161,86,0.3);
  }
  .boutique-featured-info {
    display: flex; flex-direction: column;
  }
  .boutique-featured-tag {
    font-size: 12px; font-weight: 700; color: var(--cyan-dark);
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px;
  }
  .boutique-featured-info h3 {
    font-size: 28px; margin-bottom: 8px; line-height: 1.2;
  }
  .boutique-featured-sub {
    font-size: 16px; color: var(--ink); margin-bottom: 16px; font-weight: 500;
  }
  .boutique-featured-desc {
    font-size: 14px; color: var(--ink-soft); line-height: 1.65; margin-bottom: 20px;
  }
  .boutique-featured-bullets {
    list-style: none; padding: 0; margin: 0 0 24px;
  }
  .boutique-featured-bullets li {
    font-size: 14px; color: var(--ink); padding: 6px 0 6px 26px;
    position: relative; line-height: 1.5;
  }
  .boutique-featured-bullets li::before {
    content: '✓'; position: absolute; left: 0; top: 6px;
    color: var(--bleu-texte); font-weight: 700;
  }
  .boutique-featured-foot {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: auto; padding-top: 20px; border-top: 1px solid var(--border);
    gap: 16px; flex-wrap: wrap;
  }
  .boutique-featured-price {
    font-size: 32px; font-weight: 700; color: var(--ink); font-family: 'Playfair Display', serif;
    line-height: 1;
  }
  .boutique-featured-price span {
    font-size: 12px; font-weight: 400; color: var(--ink-soft); display: block; font-family: 'Inter', sans-serif; margin-top: 4px; text-transform: none; letter-spacing: 0;
  }
  .boutique-featured-cta { white-space: nowrap; }

  @media (max-width: 768px) {
    .boutique-featured { grid-template-columns: 1fr; padding: 24px; gap: 24px; }
    .boutique-featured-cover { max-width: 240px; margin: 0 auto; }
    .boutique-featured-info h3 { font-size: 22px; }
    .boutique-featured-price { font-size: 26px; }
  }

  /* Les styles de la modale (coquille .buy-modal-* et fenêtre de réservation
     .book-*) vivent dans assets/booking.css, partagé avec les pages de
     prestation. Cette feuille garde ce qui n'existe que sur l'accueil. */
  .buy-success-banner {
    background: #e7f3dc; color: #2e5a13;
    border: 1px solid #b9d99a; border-radius: var(--r-sm);
    padding: 16px 20px; margin-bottom: 24px;
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 14px; line-height: 1.6;
  }
  .buy-success-banner strong { font-weight: 600; }
  .buy-success-banner .buy-success-icon {
    flex-shrink: 0; width: 24px; height: 24px;
    background: #1E7B41; color: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: bold;
  }

  /* BOUTIQUE : coming soon */
  .boutique-coming-soon {
    background: white; border-radius: var(--r-lg); padding: 56px 40px;
    text-align: center; max-width: 780px; margin: 0 auto;
    border: 1px solid var(--border);
    box-shadow: var(--sh-float-cyan);
  }
  .boutique-coming-soon-badge {
    display: inline-block; background: var(--bleu-texte); color: white;
    border-radius: var(--r-pill); padding: 8px 18px;
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    margin-bottom: 24px;
  }
  .boutique-coming-soon h3 {
    font-size: 30px; line-height: 1.25;
    margin: 0 0 16px; color: var(--ink);
    font-family: 'Playfair Display', serif;
  }
  .boutique-coming-soon > p {
    font-size: 17px; color: var(--ink-soft);
    line-height: 1.6; max-width: 560px; margin: 0 auto 36px;
  }
  .boutique-preview-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 16px; margin-bottom: 36px; text-align: left;
  }
  .boutique-preview-item {
    background: var(--cyan-light); border-radius: var(--r-md);
    padding: 18px 20px; border: 1px solid rgba(43,171,225,0.25);
  }
  .boutique-preview-title {
    font-weight: 700; color: var(--cyan-dark);
    font-size: 15px; margin-bottom: 4px;
  }
  .boutique-preview-sub {
    font-size: 13px; color: var(--ink-soft); line-height: 1.5;
  }
  .boutique-coming-soon-cta { margin-top: 8px; }
  .boutique-coming-soon-cta .boutique-note {
    margin-top: 12px;
  }
  @media (max-width: 720px) {
    .boutique-coming-soon { padding: 40px 22px; }
    .boutique-coming-soon h3 { font-size: 24px; }
    .boutique-preview-grid { grid-template-columns: 1fr; }
  }

  /* A PROPOS - EQUIPE */
  .apropos { background: var(--sand); }
  .team-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px; margin-top: 20px;
  }
  .team-card {
    background: white; border-radius: var(--r-md); overflow: hidden;
    box-shadow: var(--sh-card);
    display: flex; flex-direction: column;
    transition: all .3s;
  }
  .team-card:hover { transform: translateY(-6px); box-shadow: var(--sh-float); }
  .team-photo {
    aspect-ratio: 4/3; position: relative; overflow: hidden;
  }
  .team-photo img {
    width: 100%; height: 100%; object-fit: cover; object-position: center top;
    display: block;
  }
  .team-photo.laetitia img { object-position: center 30%; }
  .team-photo::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.35));
    pointer-events: none;
  }
  .team-info { padding: 32px 32px 36px; display: flex; flex-direction: column; flex: 1; }
  .team-name {
    font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 600;
    color: var(--ink); margin-bottom: 4px;
  }
  .team-role {
    font-size: 13px; color: var(--cyan-dark); font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px;
  }
  .team-quote {
    color: var(--ink-soft); font-size: 15px; font-style: italic;
    line-height: 1.7; margin-bottom: 22px; flex: 1;
    padding-left: 16px; border-left: 3px solid var(--cyan);
  }
  .team-qualifs {
    list-style: none; padding-top: 18px; border-top: 1px solid var(--border);
  }
  .team-qualifs li {
    padding: 5px 0 5px 22px; position: relative;
    font-size: 13px; color: var(--ink-soft);
  }
  .team-qualifs li::before {
    content: '✓'; position: absolute; left: 0; top: 5px;
    color: var(--bleu-texte); font-weight: 700; font-size: 12px;
  }

  /* RALLYE */
  .rallye-cta {
    background: linear-gradient(135deg, var(--ink) 0%, #2a2a2a 100%);
    color: white; padding: 70px 60px; border-radius: var(--r-lg);
    /* Une seule colonne tant qu'il n'y a pas de visuel : le texte occupe toute
       la carte. Repasser à 1.5fr 1fr le jour où la photo du Rallye est
       ajoutée à côté du texte. */
    display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center;
    position: relative; overflow: hidden;
  }
  .rallye-cta::before {
    content: ''; position: absolute; right: -100px; top: -100px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(43,171,225,0.15) 0%, transparent 70%);
  }
  .rallye-cta h2 { color: white; font-size: 38px; margin-bottom: 16px; }
  .rallye-cta p { color: #c9c9c9; margin-bottom: 28px; font-size: 17px; }
  .rallye-date {
    display: inline-block; padding: 8px 18px; border-radius: var(--r-pill);
    background: var(--bleu-texte); color: white;
    font-weight: 600; font-size: 13px; letter-spacing: 1px;
    text-transform: uppercase; margin-bottom: 20px;
  }

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

  /* FOOTER */
  footer {
    background: var(--ink); color: #c9c9c9; padding: 70px 0 30px;
  }
  footer .ico { display: inline-block; vertical-align: -2px; margin-right: 4px; opacity: .85; }
  .footer-grid {
    /* Cinq blocs. « Découvrir » comptait 8 liens quand « Suivre » en avait 3 :
       deux colonnes sur quatre s'arretaient 200 px plus haut. Les liens sont
       repartis, et « Mon espace » et « Installer l'app » quittent « Suivre »
       (ce ne sont pas des reseaux sociaux) pour un groupe « Membres ». */
    display: grid; grid-template-columns: 1.6fr 1.15fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px;
  }
  /* Bande "Zones d'intervention" avant le footer */
  .regions-band {
    background: var(--cyan-light);
    padding: 28px 0;
    text-align: center;
    border-top: 1px solid rgba(43,171,225,0.15);
    border-bottom: 1px solid rgba(43,171,225,0.15);
  }
  .regions-band p {
    margin: 0; font-size: 15px; color: var(--ink); line-height: 1.7;
  }
  .regions-band strong { color: var(--bleu-texte); font-weight: 600; }
  .regions-band a {
    color: var(--ink); text-decoration: underline; text-decoration-color: rgba(43,171,225,0.4);
    text-underline-offset: 3px; transition: color .2s;
  }
  .regions-band a:hover { color: var(--bleu-texte-hover); }
  .footer-logo { font-family: 'Great Vibes', cursive; font-size: 36px; color: white; margin-bottom: 14px; }
  .footer-logo span { color: var(--cyan); }
  .footer-about { font-size: 14px; line-height: 1.7; }
  .footer-contact { list-style: none; margin-top: 16px; }
  .footer-bottom .sep { margin: 0 10px; color: var(--on-dark-soft); }
  footer h3 { color: white; font-family: 'Inter', sans-serif; font-size: 14px;
    font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
  footer ul { list-style: none; }
  footer ul li { padding: 2px 0; }
  footer a { color: #c9c9c9; font-size: 14px; transition: color .2s; display: inline-block; padding: 8px 0; }
  @media (max-width: 600px) {
    footer a { padding: 12px 0; } /* zone tactile ≥ 44px sur mobile */
    .footer-bottom a { padding: 12px 4px; }
  }
  footer a:hover { color: var(--cyan); }
  .social-list li a {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 6px 0;
  }
  .social-list li a svg { transition: transform .25s; }
  .social-list li a:hover svg { transform: scale(1.15); }
  .footer-bottom {
    padding-top: 30px; border-top: 1px solid #333; text-align: center; font-size: 13px; color: #888;
  }

  /* DERNIERS ARTICLES */
  .derniers-articles { background: var(--sand); }

  /* TÉMOIGNAGES */
  .temoignages { background: var(--sand); }
  .temoignages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .temoignage-card {
    background: white; padding: 32px; border-radius: var(--r-md);
    box-shadow: var(--sh-card);
    display: flex; flex-direction: column; transition: all .3s;
  }
  .temoignage-card:hover { transform: translateY(-4px); box-shadow: var(--sh-float); }
  .temoignage-stars { color: var(--amber); font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
  .temoignage-texte {
    color: var(--ink-soft); font-size: 15px; line-height: 1.7;
    font-style: italic; flex: 1; margin-bottom: 20px;
  }
  .temoignage-nom {
    font-weight: 700; font-size: 14px; color: var(--ink);
    padding-top: 16px; border-top: 1px solid var(--border);
  }

  /* FAQ */
  .faq-list { max-width: 820px; margin: 0 auto; }
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-question {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    gap: 16px; padding: 22px 0; background: none; border: none; cursor: pointer;
    font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 600;
    color: var(--ink); text-align: left; transition: color .2s;
  }
  .faq-question:hover { color: var(--cyan-dark); }
  .faq-chevron { flex-shrink: 0; transition: transform .3s; color: var(--cyan); }
  .faq-item.open .faq-chevron { transform: rotate(180deg); }
  .faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
  }
  .faq-item.open .faq-answer { max-height: 300px; padding-bottom: 22px; }
  .faq-answer p { color: var(--ink-soft); font-size: 15px; line-height: 1.7; }
  .faq-answer a { text-decoration: underline; text-underline-offset: 3px; }

  /* RESPONSIVE */
  /* Hamburger button - hidden by default (desktop) */
  .menu-toggle {
    display: none;
    background: transparent; border: none; cursor: pointer;
    width: 44px; height: 44px; padding: 10px;
    flex-direction: column; justify-content: space-between;
  }
  .menu-toggle span {
    display: block; width: 100%; height: 3px;
    background: var(--ink); border-radius: 2px; transition: all .3s;
  }
  .menu-toggle.open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

  /* === TABLET (max 1050px) === */
  @media (max-width: 1050px) {
    /* 3 colonnes -> 2 -> 1 : evite de passer d'un coup a une seule colonne */
    .prestations-grid { grid-template-columns: repeat(2, 1fr); }
    nav ul { gap: 2px; }
    nav a { padding: 8px 12px; font-size: 13px; }
    .hero h1 { font-size: 46px; }
    section { padding: 80px 0; }
  }

  /* === MOBILE LANDSCAPE / SMALL TABLET (max 900px) === */
  @media (max-width: 900px) {
    .nav-inner { padding: 12px 20px; gap: 12px; }
    .logo-img { height: 56px; }
    .menu-toggle { display: flex; }

    /* Mobile menu overlay */
    #mainNav {
      position: fixed; top: 0; right: 0; width: 80%; max-width: 340px;
      height: 100vh; background: white; padding: 100px 24px 40px;
      box-shadow: -10px 0 40px rgba(0,0,0,0.15);
      transition: transform .35s ease;
      transform: translateX(100%);
      overflow-y: auto;
      z-index: 200;
    }
    #mainNav.open { transform: translateX(0); }
    #mainNav ul {
      display: flex; flex-direction: column; gap: 8px;
      background: transparent; padding: 0; border-radius: 0;
    }
    #mainNav a {
      display: block; padding: 16px 20px; font-size: 16px;
      border-radius: var(--r-sm); background: var(--cyan-light); color: var(--ink);
    }
    #mainNav a[aria-current="page"], #mainNav a:hover { background: var(--bleu-texte); color: white; }

    /* Dark overlay when menu open */
    body.menu-open::before {
      content: ''; position: fixed; inset: 0; background: rgba(0,0,0,0.4);
      z-index: 99; backdrop-filter: blur(4px);
    }

    /* Hide "Espace membre" button text on small, keep icon feel */
    .nav-inner > .btn { padding: 10px 18px; font-size: 13px; }

    /* Layouts stack */
    .hero { padding: 50px 0 70px; }
    .hero-grid, .team-grid, .rallye-cta {
      grid-template-columns: 1fr; gap: 32px;
    }
    .hero h1 { font-size: 36px; line-height: 1.15; }
    .hero p.lead { font-size: 17px; }
    .hero-visual { max-width: 340px; margin: 0 auto; }
    .trust-row { flex-wrap: wrap; gap: 16px; }

    section { padding: 70px 0; }
    .section-head { margin-bottom: 40px; }
    .section-head h2 { font-size: 30px; }
    .section-head p { font-size: 16px; }

    .pillars, .temoignages-grid { grid-template-columns: 1fr; gap: 20px; }
    .prestations-grid { grid-template-columns: 1fr; gap: 20px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 32px; }
    .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .shop-cover { aspect-ratio: 4/3; }
    .shop-cover-icon { font-size: 40px; }
    .pillar { padding: 32px 26px; }
    .prestation { padding: 32px 26px; }
    .shop-info { padding: 18px 18px 22px; }
    .shop-info h3 { font-size: 16px; }
    .temoignages-grid { grid-template-columns: 1fr; gap: 16px; }
    .temoignage-card { padding: 24px; }

    .team-info { padding: 26px 24px 30px; }
    .team-name { font-size: 24px; }
    .team-quote { font-size: 14px; }

    .rallye-cta { padding: 50px 28px; text-align: center; }
    .rallye-cta h2 { font-size: 30px; }
    .rallye-cta > div:last-child { display: none; }


    footer { padding: 50px 0 24px; }
    .footer-grid { gap: 32px; margin-bottom: 36px; }
  }

  /* === PHONE (max 600px) === */
  @media (max-width: 600px) {
    .shop-grid { grid-template-columns: 1fr; }
    .shop-card { flex-direction: row; align-items: stretch; }
    .shop-cover { aspect-ratio: 1/1; width: 120px; min-width: 120px; border-radius: 20px 0 0 20px; }
    .shop-cover-icon { font-size: 32px; }
    .shop-cover-badge { top: 8px; right: 8px; font-size: 10px; padding: 3px 8px; }
    .shop-info { padding: 16px; }
    .shop-info h3 { font-size: 16px; }
    .shop-info p { font-size: 13px; margin-bottom: 12px; }
    .shop-price { font-size: 20px; }
    .shop-footer { padding-top: 12px; }
    .container { padding: 0 18px; }
    .nav-inner { padding: 10px 16px; gap: 8px; }
    .logo-img { height: 48px; }
    .nav-inner > .btn { padding: 9px 14px; font-size: 12px; }

    .hero { padding: 40px 0 60px; }
    .hero-eyebrow { font-size: 11px; padding: 6px 14px; }
    .hero h1 { font-size: 30px; margin-bottom: 18px; }
    .hero p.lead { font-size: 16px; margin-bottom: 28px; }
    .hero-cta { flex-direction: column; gap: 12px; }
    .hero-cta .btn { width: 100%; text-align: center; padding: 14px 20px; }
    .hero-visual { max-width: 280px; }
    .trust-row { gap: 12px; margin-top: 32px; padding-top: 22px; font-size: 12px; }
    .trust-item { font-size: 13px; }

    section { padding: 56px 0; }
    .section-head h2 { font-size: 26px; }
    .section-head p { font-size: 15px; }
    .section-eyebrow { font-size: 12px; letter-spacing: 1.5px; }

    .pillar { padding: 28px 22px; }
    .pillar h3 { font-size: 20px; }
    .prestation { padding: 28px 22px; }
    .prestation h3 { font-size: 22px; }
    .price-amount { font-size: 30px; }

    .temoignages-grid { grid-template-columns: 1fr; gap: 14px; }
    .temoignage-card { padding: 22px; }
    .temoignage-texte { font-size: 14px; margin-bottom: 14px; }

    .team-grid { gap: 20px; }
    .team-name { font-size: 22px; }
    .team-info { padding: 24px 22px 28px; }
    .team-quote { font-size: 13px; }
    .team-qualifs li { font-size: 12px; }

    .faq-question { font-size: 15px; padding: 18px 0; }

    .rallye-cta { padding: 40px 22px; }
    .rallye-cta h2 { font-size: 26px; }
    .rallye-cta p { font-size: 15px; }


    .footer-grid { grid-template-columns: 1fr; gap: 26px; }
    .footer-logo { font-size: 32px; }
  }

  /* === SMALL PHONE (max 380px) === */
  @media (max-width: 380px) {
    .logo-img { height: 44px; }
    .nav-inner > .btn { padding: 8px 12px; font-size: 11px; }
    .hero h1 { font-size: 26px; }
    .section-head h2 { font-size: 22px; }
  }
