/* ==========================================================================
   Les Drôles d'Abeilles — Design System
   main.css — Feuille de style unique du site

   Table des matières :
     1.  Variables & tokens
     2.  Reset & base
     3.  Navigation — topbar desktop
     4.  Navigation — dropdown desktop
     5.  Navigation — boutons de nav
     6.  Navigation — mobile (burger + menu)
     7.  Boutons globaux
     8.  Layout — shell & section générique
     9.  Typographie — eyebrow, titres, lead
    10.  Cartes génériques
    11.  Section 1 — Hero
    12.  Section 2 — Bandeau chiffres clés (stats)
    13.  Section 3 — Notre vocation (fondatrice)
    14.  Section 4 — Réassurance (cartes hexagonales)
    15.  Section 5 — Nos deux crèches
    16.  Section 6 — Pédagogie
    17.  Section 7 — Témoignage
    18.  Section 8 — CTA final (formulaire)
    19.  Footer
    20.  Utilitaires
    21.  Responsive
   ========================================================================== */


/* --------------------------------------------------------------------------
   1. Variables & tokens
   -------------------------------------------------------------------------- */
:root {
  /* Palette principale */
  --honey:        #F5A623;
  --honey-dark:   #D4820A;
  --honey-light:  #FFF3D6;
  --teal:         #2A9D8F;
  --teal-dark:    #1f7a6e;
  --teal-light:   #E0F5F2;
  --tangerine:    #E76F51;

  /* Fonds & texte */
  --cream:        #FDFAF4;
  --text:         #1E293B;
  --text-muted:   #64748B;
  --white:        #ffffff;
  --border:       rgba(245, 166, 35, .18);

  /* Ombres */
  --shadow:       0 16px 40px rgba(84, 63, 31, .10);
  --shadow-sm:    0 4px 12px rgba(84, 63, 31, .07);

  /* Typographie */
  --font-display: 'Fredoka', sans-serif;
  --font-body:    'Nunito', sans-serif;

  /* Rayons */
  --radius-sm:  .5rem;
  --radius-md:  1rem;
  --radius-lg:  1.5rem;
  --radius-xl:  2rem;

  /* Layout */
  --max:    1280px;
  --nav-h:  88px;
}


/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

img, svg { display: block; max-width: 100%; height: auto; }
a        { text-decoration: none; color: inherit; }

h1, h2, h3, h4 { line-height: 1.1; margin: 0 0 .5em; }
p               { margin: 0 0 1em; }
p:last-child    { margin-bottom: 0; }


/* --------------------------------------------------------------------------
   3. Navigation — topbar desktop
   -------------------------------------------------------------------------- */

/* Bandeau collant autour de la topbar */
.topbar-wrap {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
  transition: box-shadow .2s;
}
.topbar-wrap.scrolled {
  box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
}

/* Barre de progression de lecture */
.scroll-bar {
  position: absolute;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--honey), var(--teal));
  transition: width .1s linear;
}

/* Grille 3 colonnes : nav-gauche | logo centré | nav-droite */
.topbar {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--nav-h);
  gap: 1rem;
}

/* Logo centré */
.topbar-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.topbar-logo img {
  height: 72px;
  width: auto;
  transition: transform .25s;
}
.topbar-logo:hover img { transform: scale(1.04); }

/* Fallback logo texte (si image absente) */
.logo-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-display);
  line-height: 1.1;
}
.logo-fallback .bee   { font-size: 2rem; }
.logo-fallback strong { font-size: 1.05rem; color: var(--text); }
.logo-fallback span   { font-size: .82rem; color: var(--honey-dark); }

/* Colonnes gauche / droite de nav */
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: .4rem;
}
.nav-left  { justify-content: flex-end; }
.nav-right { justify-content: flex-start; }

/* Lien de nav desktop */
.nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .65rem .95rem;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  font-weight: 700;
  color: var(--text-muted);
  line-height: 1.2;
  white-space: nowrap;
  transition: color .15s, background .15s;
}
.nav-link sub           { font-weight: 500; font-size: .78rem; color: #9CA3AF; }
.nav-link:hover,
.nav-link--active       { color: var(--honey-dark); background: rgba(245, 166, 35, .08); }


/* --------------------------------------------------------------------------
   4. Navigation — dropdown desktop
   -------------------------------------------------------------------------- */
.nav-item          { position: relative; }

/* Zone de survol élargie pour couvrir le gap visuel vers le dropdown */
.nav-item::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  width: max(100%, 180px);
  height: 8px;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + .5rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
  min-width: 160px;
  padding: .5rem 0;
  z-index: 200;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown { display: block; }

.nav-dropdown a {
  display: block;
  padding: .5rem 1rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  transition: background .12s, color .12s;
}
.nav-dropdown a:hover { background: rgba(245, 166, 35, .08); color: var(--honey-dark); }


/* --------------------------------------------------------------------------
   5. Navigation — boutons de nav
   -------------------------------------------------------------------------- */

/* Bouton secondaire (contour teal) */
.btn-nav-secondary {
  padding: .7rem 1.2rem;
  border-radius: 1.5rem;
  font-size: .92rem;
  font-weight: 700;
  color: var(--teal);
  border: 2px solid var(--teal);
  transition: background .15s, color .15s;
}
.btn-nav-secondary:hover { background: var(--teal); color: var(--white); }

/* Bouton primaire (miel plein) */
.btn-nav-primary {
  padding: .75rem 1.3rem;
  border-radius: 1.5rem;
  font-size: .92rem;
  font-weight: 700;
  background: var(--honey);
  color: var(--white);
  transition: background .15s, transform .15s;
}
.btn-nav-primary:hover { background: var(--honey-dark); transform: scale(1.03); }


/* --------------------------------------------------------------------------
   6. Navigation — mobile (burger + menu)
   -------------------------------------------------------------------------- */

/* Topbar mobile (masqué au-delà de 1023 px) */
.topbar-mobile {
  display: none;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 70px;
  align-items: center;
  justify-content: space-between;
}
.topbar-mobile img { height: 54px; max-height: 54px; width: auto; object-fit: contain; }

/* Bouton burger */
.burger {
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  border-radius: .5rem;
  color: var(--text-muted);
  transition: background .15s;
}
.burger:hover { background: rgba(245, 166, 35, .1); color: var(--honey-dark); }

/* Menu déroulant mobile */
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: .65rem .75rem;
  border-radius: .5rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  transition: background .12s, color .12s;
}
.mobile-menu a:hover { background: rgba(245, 166, 35, .08); color: var(--honey-dark); }

/* Lien CTA en bas du menu mobile */
.mobile-cta {
  margin-top: 1rem;
  text-align: center;
  padding: .75rem;
  border-radius: 1.5rem;
  background: var(--honey);
  color: var(--white) !important;
  font-weight: 700 !important;
}

/* Affichage conditionnel desktop / mobile */
@media (max-width: 1279px) {
  .topbar        { display: none; }
  .topbar-mobile { display: flex; }
}



/* --------------------------------------------------------------------------
   7. Boutons globaux
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .92rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
  text-decoration: none;
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* Variantes de taille */
.btn-sm { padding: 8px 16px; font-size: .84rem; }
.btn-lg { padding: 16px 28px; font-size: 1rem; }

/* Variantes de couleur */
.btn-primary {
  color: #2f2414;
  background: linear-gradient(180deg, #f6ddad, #e8bc72);
  box-shadow: 0 10px 24px rgba(216, 167, 95, .28);
}
.btn-primary:hover { box-shadow: 0 14px 28px rgba(216, 167, 95, .38); }

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, .72);
  border-color: var(--border);
}

.btn-accent {
  color: #1a3d2b;
  background: linear-gradient(180deg, #bcd9c8, #8fbfa1);
  box-shadow: 0 10px 24px rgba(143, 191, 161, .28);
}

/* Bouton contour teal (utilisé dans les sections) */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 2rem;
  border: 2px solid var(--teal);
  color: var(--teal);
  font-weight: 700;
  font-size: .9rem;
  transition: background .2s, color .2s;
  margin-top: 1rem;
}
.btn-outline:hover { background: var(--teal); color: var(--white); }


/* --------------------------------------------------------------------------
   8. Layout — shell & section générique
   -------------------------------------------------------------------------- */

/* Enveloppe de page */
.page-shell {
  max-width: var(--max);
  margin: 22px auto 90px;
  padding: 0 18px 64px;
}

/* Section générique (fond card) */
.section {
  padding: 5rem 1.5rem;
}
.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

/* En-tête de section avec titre + lien */
.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.section-head h2 { font-size: 1.5rem; margin: 0 0 6px; }
.section-head p  { color: var(--text-muted); margin: 0; }

/* Grilles génériques */
.grid   { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }


/* --------------------------------------------------------------------------
   9. Typographie — eyebrow, titres de section, lead
   -------------------------------------------------------------------------- */

/* Étiquette au-dessus d'un titre */
.eyebrow,
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 600;
  color: var(--honey-dark);
  background: var(--honey-light);
  padding: .3rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

/* Variante accent (teal) */
.eyebrow-accent {
  background: var(--teal-light);
  color: var(--teal-dark);
}

/* Titre de section centré */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: .5rem;
}

/* Sous-titre de section */
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-size: 1rem;
}

/* Grand titre de page (h1) */
h1.page-title {
  font-size: clamp(2rem, 2.5vw + 1rem, 3.4rem);
  line-height: 1.02;
  margin: 0 0 16px;
}

/* Texte d'intro accrocheur */
.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 60ch;
  line-height: 1.6;
}


/* --------------------------------------------------------------------------
   10. Cartes génériques
   -------------------------------------------------------------------------- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 22px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.card h3    { font-size: 1.05rem; margin: 0 0 8px; }
.card p     { color: var(--text-muted); }

/* Carte article blog */
.article-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.article-card:hover  { transform: translateY(-2px); box-shadow: var(--shadow); }

.article-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: linear-gradient(180deg, var(--teal-light), var(--honey-light));
}
.article-body        { padding: 20px; }
.article-body h3     { font-size: 1.05rem; margin: 0 0 8px; }
.article-body p      { color: var(--text-muted); font-size: .92rem; }

/* Carte plan du site */
.site-map-card {
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,248,239,.8));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.site-map-card h3  { margin: 0 0 8px; }
.site-map-card ul  {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--text-muted);
}


/* --------------------------------------------------------------------------
   11. Section 1 — Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1a2e3b; /* fond de secours si image absente */
}

/* Photo de fond semi-transparente */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/hero-locaux.jpg');
  background-size: cover;
  background-position: center;
  opacity: .45;
}

/* Dégradé gauche pour la lisibilité du texte */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 46, 59, .75) 40%, transparent 100%);
}

/* Motif hexagonal décoratif (droite) */
.hero-hexagons {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
  overflow: hidden;
  pointer-events: none;
}
.hero-hexagons::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='92'%3E%3Cpath d='M40 4l36 20v44L40 88 4 68V24z' fill='none' stroke='rgba(245,166,35,0.15)' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: 80px 92px;
}

/* Contenu texte du hero */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 1.5rem;
  width: 100%;
}

/* Étiquette eyebrow du hero */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(245, 166, 35, .18);
  border: 1px solid rgba(245, 166, 35, .4);
  color: var(--honey);
  padding: .3rem 1rem;
  border-radius: 2rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .05em;
  margin-bottom: 1.5rem;
}

/* Titre principal */
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  max-width: 640px;
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--honey); /* mot-clé mis en avant */
}

/* Sous-titre */
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .8);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* Groupe de boutons */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

/* Bouton primaire hero (miel) */
.btn-hero-primary {
  padding: .85rem 2rem;
  border-radius: 2rem;
  background: var(--honey);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition: background .2s, transform .2s;
  box-shadow: 0 4px 20px rgba(245, 166, 35, .4);
}
.btn-hero-primary:hover { background: var(--honey-dark); transform: translateY(-2px); }

/* Bouton secondaire hero (contour blanc) */
.btn-hero-secondary {
  padding: .85rem 2rem;
  border-radius: 2rem;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .6);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  transition: background .2s, border-color .2s;
}
.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--white);
}

/* Badges de réassurance en bas du hero */
.hero-badges  { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 2rem;
  padding: .4rem 1rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--white);
}
.hero-badge .badge-icon {
  width: 28px;
  height: 28px;
  background: rgba(245, 166, 35, .25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
}


/* --------------------------------------------------------------------------
   12. Section 2 — Bandeau chiffres clés (stats)
   -------------------------------------------------------------------------- */
.stats-band {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
}
.stats-band-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

/* Chaque statistique */
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
}

/* Icône hexagonale */
.stat-icon {
  width: 52px;
  height: 52px;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: .75rem;
}
.stat-icon--honey     { background: var(--honey-light); }
.stat-icon--teal      { background: var(--teal-light); }
.stat-icon--tangerine { background: #FEF0EB; }

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: .3rem;
}
.stat-label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.3;
}

/* Séparateur vertical entre stats */
.stat-separator {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 1rem 0;
}


/* --------------------------------------------------------------------------
   13. Section 3 — Notre vocation (portrait fondatrice)
   -------------------------------------------------------------------------- */

/* Grille 2 colonnes : photo | texte */
.vocation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Colonne photo */
.vocation-photo-wrap { position: relative; }

.vocation-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
}

/* Placeholder affiché si l'image est absente */
.vocation-photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--honey-light) 0%, var(--teal-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: .9rem;
  gap: 1rem;
}
.vocation-photo-placeholder span { font-size: 3rem; }

/* Badge flottant (expérience) superposé sur la photo */
.vocation-badge {
  position: absolute;
  bottom: 1.5rem;
  left: -1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: .75rem 1.25rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
  border-left: 4px solid var(--honey);
}
.vocation-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--honey-dark);
}
.vocation-badge span {
  font-size: .78rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Colonne texte */
.vocation-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text);
}

/* Citation mise en avant */
.vocation-quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--honey-dark);
  border-left: 4px solid var(--honey);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  line-height: 1.4;
}

.vocation-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}


/* --------------------------------------------------------------------------
   14. Section 4 — Réassurance (cartes hexagonales)
   -------------------------------------------------------------------------- */
.reassurance {
  background: var(--white);
  padding: 5rem 1.5rem;
}

.reassurance-header { text-align: center; margin-bottom: 3rem; }
.reassurance-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
}
.reassurance-header p { color: var(--text-muted); margin-top: .5rem; font-size: 1rem; }

.reassurance-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.reassurance-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.reassurance-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
}

/* Icône hexagonale (clip-path) */
.hex-icon {
  width: 64px;
  height: 64px;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.25rem;
}
.hex-icon--honey     { background: var(--honey-light); }
.hex-icon--teal      { background: var(--teal-light); }
.hex-icon--tangerine { background: #FEF0EB; }

.reassurance-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .5rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.reassurance-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }


/* --------------------------------------------------------------------------
   15. Section 5 — Nos deux crèches
   -------------------------------------------------------------------------- */
.creches        { padding: 5rem 1.5rem; }
.creches-inner  { max-width: var(--max); margin: 0 auto; }

/* Grille 2 cartes */
.creches-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* Carte crèche */
.creche-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
  transition: transform .25s, box-shadow .25s;
}
.creche-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .14);
}

/* Zone image */
.creche-img-wrap { position: relative; overflow: hidden; height: 240px; }
.creche-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.creche-card:hover .creche-img { transform: scale(1.05); }

/* Placeholder image (couleur thématique par crèche) */
.creche-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.creche-img-placeholder--charenton { background: linear-gradient(135deg, var(--honey-light), #FDE8B0); }
.creche-img-placeholder--dugommier { background: linear-gradient(135deg, var(--teal-light), #B2E8E2); }

/* Badge de localisation sur l'image */
.creche-loc-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--white);
  border-radius: 2rem;
  padding: .3rem .9rem;
  font-size: .78rem;
  font-weight: 800;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}

/* Corps de la carte */
.creche-body       { padding: 1.5rem; }
.creche-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: .4rem;
}
.creche-body address {
  font-style: normal;
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: .75rem;
}
.creche-body p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* Lien "Découvrir" animé */
.creche-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  font-size: .88rem;
  color: var(--teal);
  transition: gap .15s;
}
.creche-link:hover { gap: .7rem; }


/* --------------------------------------------------------------------------
   16. Section 6 — Pédagogie
   -------------------------------------------------------------------------- */
.pedagogy       { background: var(--white); padding: 5rem 1.5rem; }
.pedagogy-inner { max-width: var(--max); margin: 0 auto; }

/* Grille 3 cartes */
.pedagogy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.pedagogy-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--cream);
  transition: transform .2s, box-shadow .2s;
}
.pedagogy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
}

/* Zone illustration en haut de la carte */
.pedagogy-card-top {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
/* Couleurs thématiques de chaque méthode */
.pedagogy-card-top--montessori { background: linear-gradient(135deg, #FEF3C7, #FDE68A); }
.pedagogy-card-top--kamishibai { background: linear-gradient(135deg, #E0F2FE, #BAE6FD); }
.pedagogy-card-top--snoezelen  { background: linear-gradient(135deg, #F0FDF4, #BBF7D0); }
.pedagogy-card-top--ferme      { background: linear-gradient(135deg, #FDECC8, #CDECC7); }

.pedagogy-card-body { padding: 1.25rem 1.5rem 1.5rem; }
.pedagogy-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.pedagogy-card-body p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }


/* --------------------------------------------------------------------------
   17. Section 7 — Témoignage
   -------------------------------------------------------------------------- */
.testimonial {
  padding: 5rem 1.5rem;
  background: var(--honey-light);
  position: relative;
  overflow: hidden;
}

/* Formes courbes haut et bas (découpe elliptique) */
.testimonial::before,
.testimonial::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 48px;
  background: var(--white);
}
.testimonial::before {
  top: 0;
  clip-path: ellipse(55% 100% at 50% 0%);
}
.testimonial::after {
  bottom: 0;
  clip-path: ellipse(55% 100% at 50% 100%);
}

.testimonial-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Guillemet décoratif */
.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: .6;
  color: var(--honey);
  opacity: .4;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.testimonial-author { font-size: .88rem; font-weight: 700; color: var(--text-muted); }


/* --------------------------------------------------------------------------
   18. Section 8 — CTA final (texte + formulaire de contact rapide)
   -------------------------------------------------------------------------- */
.cta-final {
  padding: 5rem 1.5rem;
  background: var(--teal);
  position: relative;
  overflow: hidden;
}

/* Motif hexagonal décoratif en fond */
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='92'%3E%3Cpath d='M40 4l36 20v44L40 88 4 68V24z' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: 80px 92px;
}

/* Grille 2 colonnes : texte | formulaire */
.cta-final-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Colonne texte */
.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.cta-text p { color: rgba(255, 255, 255, .8); line-height: 1.7; margin-bottom: 1.5rem; }

/* Liste de points clés avec coche */
.cta-checklist { list-style: none; margin-bottom: 2rem; }
.cta-checklist li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .92rem;
  color: rgba(255, 255, 255, .9);
  margin-bottom: .6rem;
  font-weight: 600;
}
.cta-checklist li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: rgba(255, 255, 255, .2);
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* Bouton blanc dans le CTA teal */
.btn-cta-white {
  display: inline-block;
  padding: .9rem 2rem;
  border-radius: 2rem;
  background: var(--white);
  color: var(--teal-dark);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
}
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0, 0, 0, .2); }

/* Colonne formulaire : carte frosted-glass */
.cta-form-card {
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius-xl);
  padding: 2rem;
}
.cta-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
}

/* Champ de formulaire */
.form-field { display: flex; flex-direction: column; margin-bottom: 1rem; }
.form-field label {
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .7);
  margin-bottom: .35rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.form-field input,
.form-field select {
  padding: .65rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .25);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .9rem;
  outline: none;
  transition: border-color .15s, background .15s;
}
.form-field input::placeholder { color: rgba(255, 255, 255, .5); }
.form-field input:focus,
.form-field select:focus {
  border-color: var(--honey);
  background: rgba(255, 255, 255, .2);
}
/* Correction couleur des options dans les navigateurs */
.form-field select option { color: var(--text); background: var(--white); }

/* Bouton de soumission */
.btn-form {
  width: 100%;
  padding: .8rem;
  border-radius: 2rem;
  background: var(--honey);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-top: .5rem;
  transition: background .2s, transform .2s;
}
.btn-form:hover { background: var(--honey-dark); transform: scale(1.02); }


/* --------------------------------------------------------------------------
   19. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: #1E293B; /* ardoise foncée */
  color: #94A3B8;
  margin-top: 0;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2rem;
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr 1fr;
  gap: 2rem;
}

/* Colonne marque */
.footer-brand img {
  height: 108px;
  width: auto;
  max-width: 160px;
  margin-bottom: .75rem;
}
.footer-brand p { font-size: .85rem; line-height: 1.6; }

/* Colonnes de liens */
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: .75rem;
}
.footer-col ul  { list-style: none; }
.footer-col li  { margin-bottom: .4rem; }
.footer-col a {
  font-size: .85rem;
  color: #94A3B8;
  transition: color .15s;
}
.footer-col a:hover { color: var(--honey); }

/* Barre de copyright */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
  color: #94A3B8;
}


/* --------------------------------------------------------------------------
   20. Utilitaires
   -------------------------------------------------------------------------- */
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }
.text-sm     { font-size: .88rem; }

.mt-0  { margin-top: 0; }
.mt-4  { margin-top: 4px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }

/* Masquer visuellement (mais garder pour les lecteurs d'écran) */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* --------------------------------------------------------------------------
   21. Responsive
   -------------------------------------------------------------------------- */

/* ---- Tablette paysage et petits écrans ---------------------------------- */
@media (max-width: 1279px) {
  /* Déjà géré dans la section navigation mobile */
}

@media (max-width: 900px) {
  /* Section vocation : passage en colonne */
  .vocation-grid    { grid-template-columns: 1fr; gap: 2rem; }
  .vocation-badge   { left: 1rem; }

  /* CTA final : passage en colonne */
  .cta-final-inner  { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ---- Tablette portrait -------------------------------------------------- */
@media (max-width: 768px) {
  /* Bandeau stats : 2 colonnes */
  .stats-band-inner   { grid-template-columns: repeat(2, 1fr); }
  .stat-separator     { display: none; }

  /* Réassurance : colonne unique centrée */
  .reassurance-grid   { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  /* Crèches : colonne unique */
  .creches-grid       { grid-template-columns: 1fr; }

  /* Pédagogie : colonne unique */
  .pedagogy-grid      { grid-template-columns: 1fr; }

  /* Footer : 2 colonnes */
  .footer-inner       { grid-template-columns: 1fr 1fr; }
  .footer-bottom      { flex-direction: column; gap: .5rem; }
}

/* ---- Mobile portrait ---------------------------------------------------- */
@media (max-width: 640px) {
  /* Hero : hauteur réduite et titre plus petit */
  .hero     { min-height: 70vh; }
  .hero h1  { font-size: 2rem; }
}

@media (max-width: 480px) {
  /* Footer : colonne unique */
  .footer-inner { grid-template-columns: 1fr; }
}