/* ============================================================
   Théo & Léa — Micro-crèche
   Couleurs : teal doux + ambre chaud (pissenlit)
   ============================================================ */

/* ── Variables ───────────────────────────────────────────── */
:root {
  /* Bleus / teal */
  --blue-dark:   #2C5F7A;
  --blue-mid:    #4A8FA8;
  --blue-light:  #A8CBDA;
  --blue-pale:   #D9ECF4;

  /* Ambre / pissenlit (couleur logo) */
  --orange:      #D4883A;
  --orange-mid:  #C4986A;
  --orange-light:#F0C88A;
  --orange-pale: #FDF3E7;

  /* Crème / fond */
  --sand-light:  #EDE4D4;
  --sand-pale:   #F7F0E6;

  /* Neutres */
  --white:       #FDFAF6;
  --text-dark:   #2E3A45;
  --text-mid:    #4A5F6A;
  --text-light:  #8A9FAA;

  /* Typographie */
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Lato', 'Helvetica Neue', Arial, sans-serif;

  /* Espacements */
  --section-pad: 5rem 2rem;
  --radius:      0.75rem;
  --radius-sm:   0.4rem;
  --nav-height:  68px;

  /* Réseaux sociaux */
  --gradient-instagram: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

/* ── Reset & base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--sand-pale);
  color: var(--text-dark);
  font-family: var(--font-sans);
  line-height: 1.7;
}

img { max-width: 100%; display: block; }

a { color: var(--blue-mid); text-decoration: none; }
a:hover { color: var(--blue-dark); text-decoration: underline; }

/* ── Navigation ──────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(44, 95, 122, 0.95);
  backdrop-filter: blur(6px);
  padding: 0.6rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 12px rgba(44, 95, 122, 0.3);
}

.nav-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--blue-pale);
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--orange-light); text-decoration: none; }

.nav-toggle {
  display: none;
  border: 1px solid rgba(168, 203, 218, 0.55);
  background: rgba(44, 95, 122, 0.35);
  border-radius: var(--radius-sm);
  padding: 0.45rem;
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue-pale);
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(74, 143, 168, 0.08) 0%, transparent 50%),
              linear-gradient(to bottom, var(--sand-pale) 0%, var(--orange-pale) 100%);
}

#home {
  scroll-margin-top: var(--nav-height);
}

/* ── Pissenlits décoratifs ───────────────────────────────── */
.hero-dandelions {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.deco-pissenlit {
  position: absolute;
  color: var(--orange);
  opacity: 0.65;
}

/* ── Balancement doux des tiges (5 animations distinctes) ── */
@keyframes sway-a {
  0%, 100% { transform: rotate(-1.5deg); }
  50%       { transform: rotate(2deg);   }
}

@keyframes sway-b {
  0%, 100% { transform: rotate(2deg);   }
  50%       { transform: rotate(-1deg);  }
}

@keyframes sway-c {
  0%        { transform: rotate(-0.5deg); }
  33%       { transform: rotate(2.5deg);  }
  66%       { transform: rotate(-1.5deg); }
  100%      { transform: rotate(-0.5deg); }
}

@keyframes sway-d {
  0%, 100% { transform: rotate(-2deg);   }
  40%      { transform: rotate(3deg);    }
  70%      { transform: rotate(-0.5deg); }
}

@keyframes sway-e {
  0%, 100% { transform: rotate(0.5deg);  }
  25%      { transform: rotate(2.5deg);  }
  75%      { transform: rotate(-2.5deg); }
}

.deco-pissenlit { transform-origin: bottom center; }

/* ── 10 pissenlits répartis sur les bords ── */
.deco-p1  { width: 110px; bottom: 0; left:  1%;  animation: sway-a 6.5s 0.0s ease-in-out infinite; }
.deco-p2  { width: 125px; bottom: 0; left:  8%;  animation: sway-c 8.0s 1.2s ease-in-out infinite; }
.deco-p3  { width: 100px; bottom: 0; left: 15%;  animation: sway-b 7.2s 0.6s ease-in-out infinite; }
.deco-p4  { width: 118px; bottom: 0; left: 22%;  animation: sway-e 5.8s 2.0s ease-in-out infinite; }
.deco-p5  { width: 95px;  bottom: 0; left: 29%;  animation: sway-d 7.8s 0.4s ease-in-out infinite; }
.deco-p6  { width: 100px; bottom: 0; right: 28%; animation: sway-c 6.8s 1.6s ease-in-out infinite; }
.deco-p7  { width: 118px; bottom: 0; right: 21%; animation: sway-a 7.5s 0.9s ease-in-out infinite; }
.deco-p8  { width: 105px; bottom: 0; right: 14%; animation: sway-e 6.2s 2.3s ease-in-out infinite; }
.deco-p9  { width: 125px; bottom: 0; right:  7%; animation: sway-b 8.5s 0.2s ease-in-out infinite; }
.deco-p10 { width: 110px; bottom: 0; right:  0%; animation: sway-d 7.0s 1.8s ease-in-out infinite; }

.deco-p1,
.deco-p2,
.deco-p3,
.deco-p4,
.deco-p5,
.deco-p6,
.deco-p7,
.deco-p8,
.deco-p9,
.deco-p10 {
  bottom: 2px;
}


/* ── Hero logos ──────────────────────────────────────────── */
.hero-logo-img {
  width: clamp(180px, 36vw, 300px);
  height: auto;
  margin-bottom: 1.6rem;
  filter: drop-shadow(0 4px 18px rgba(44, 95, 122, 0.14));
}

.hero-enfants-img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5%;
  width: clamp(110px, 16vw, 230px);
  opacity: 0.22;
  pointer-events: none;
  filter: drop-shadow(0 4px 16px rgba(44, 95, 122, 0.1));
}

.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;
}

.hero-badge {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--orange-light);
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  color: var(--blue-dark);
  line-height: 1.15;
  margin-bottom: 0.6rem;
}

.hero h1 span { color: var(--orange); }


.hero-desc {
  max-width: 600px;
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
  border: none;
}

.btn:hover { transform: translateY(-2px); text-decoration: none; }

.btn-primary {
  background: var(--blue-dark);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(44, 95, 122, 0.35);
}

.btn-primary:hover {
  background: var(--blue-mid);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(44, 95, 122, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  margin-left: 1rem;
}

.btn-secondary:hover {
  background: var(--orange-pale);
  color: var(--orange);
}

/* ── Opening badge ───────────────────────────────────────── */
.opening-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  border: 1px solid var(--sand-light);
  border-radius: 2rem;
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin: 1.4rem 0;
  box-shadow: 0 2px 8px rgba(44, 95, 122, 0.07);
}

.opening-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.soon-text {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 0.2rem;
}

.hero-scroll {
  margin-top: 4rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-scroll svg { animation: bounce 1.8s infinite; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ── Section generic ─────────────────────────────────────── */
section { padding: var(--section-pad); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--blue-dark);
  line-height: 1.25;
  margin-bottom: 0.8rem;
}

.section-header p {
  color: var(--text-mid);
  font-size: 1.05rem;
}

/* ── About ───────────────────────────────────────────────── */
.about {
  background: var(--white);
  border-top: 1px solid var(--sand-light);
  border-bottom: 1px solid var(--sand-light);
}

/* ── Crèche (cocon de douceur) ───────────────────────────── */
.creche {
  background: var(--white);
}

.creche-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.creche-text .section-tag {
  display: block;
  margin-bottom: 0.5rem;
}

.creche-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--blue-dark);
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

.creche-text p {
  color: var(--text-mid);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.creche-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.enfants-img {
  max-width: 320px;
  width: 100%;
  opacity: 0.85;
  filter: drop-shadow(0 8px 24px rgba(44, 95, 122, 0.12));
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  background: var(--sand-pale);
  border: 1px solid var(--sand-light);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(44, 95, 122, 0.12);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--blue-dark);
  margin-bottom: 0.5rem;
}

.card p { color: var(--text-mid); font-size: 0.95rem; }

/* ── Notre histoire / Timeline ───────────────────────────── */
.story {
  background:
    linear-gradient(to bottom, var(--sand-pale) 0%, var(--blue-pale) 100%);
}

.timeline {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue-light), var(--orange-light));
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(even) { flex-direction: row-reverse; }

.timeline-dot {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--blue-pale);
  margin: 0 auto;
}

.timeline-content {
  background: var(--white);
  border: 1px solid var(--sand-light);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  flex: 1;
  box-shadow: 0 2px 12px rgba(44, 95, 122, 0.07);
}

.timeline-year {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.3rem;
}

.timeline-content h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--blue-dark);
  margin-bottom: 0.4rem;
}

.timeline-content p { color: var(--text-mid); font-size: 0.92rem; }

/* ── Galerie ─────────────────────────────────────────────── */
.gallery { background: var(--white); }

.gallery-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--sand-light);
  border: 1px solid var(--sand-light);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(44, 95, 122, 0.14);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 1;
}

.gallery-item figcaption {
  padding: 0.7rem 0.9rem;
  font-size: 0.85rem;
  color: var(--text-dark);
  background: var(--white);
  border-top: 1px solid var(--sand-light);
}

.gallery-item figcaption span {
  color: var(--text-light);
  font-size: 0.78rem;
}

/* ── Équipe ────────────────────────────────────────────────── */
.team {
  background: var(--white);
  border-top: 1px solid var(--sand-light);
}

/* ── Valeurs ─────────────────────────────────────────────── */
.values {
  background:
    linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  color: var(--white);
}

.values .section-tag { color: var(--orange-light); }
.values .section-header h2 { color: var(--white); }
.values .section-header p { color: var(--blue-pale); }

.values-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}

.value-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(4px);
}

.value-card .icon { font-size: 2rem; margin-bottom: 0.8rem; display: block; }
.value-card h3 { font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: 0.4rem; }
.value-card p { font-size: 0.88rem; opacity: 0.85; }

/* ── Contact ─────────────────────────────────────────────── */
/* (section contact déplacée dans le footer) */

/* ── Inscription ─────────────────────────────────────────── */
.inscription {
  background: var(--blue-pale);
  text-align: center;
  border-top: 1px solid var(--blue-light);
}

.inscription-wrapper {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--blue-light);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  box-shadow: 0 4px 24px rgba(44, 95, 122, 0.1);
}

.inscription-wrapper h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--blue-dark);
  margin-bottom: 0.6rem;
}

.inscription-wrapper p {
  color: var(--text-mid);
  margin-bottom: 2rem;
}


/* ── Contact info list ──────────────────────────────────── */
.contact-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2rem;
  text-align: left;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-mid);
  font-size: 0.97rem;
}

.contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0.1em;
  color: var(--blue-mid);
}

.contact-info a {
  color: var(--blue-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info a:hover { color: var(--blue-dark); text-decoration: underline; }

/* ── Social links ────────────────────────────────────────── */
.contact-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.social-link:hover { transform: translateY(-2px); }

.social-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.social-link--facebook {
  background: #1877f2;
  color: #fff;
}

.social-link--facebook:hover { background: #0d65d8; }

.social-link--instagram {
  background: var(--gradient-instagram);
  color: #fff;
}

.social-link--instagram:hover { filter: brightness(1.1); }

/* ── Meeko CTA ────────────────────────────────────────────── */
.meeko-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: #27b899;
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius);
  padding: 1rem 2rem;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(39, 184, 153, 0.35);
}

.meeko-cta:hover,
.meeko-cta:focus-visible {
  background: #1fa382;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(39, 184, 153, 0.4);
}

.meeko-favicon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  flex-shrink: 0;
}

.meeko-cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.meeko-cta-label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.meeko-cta-sub {
  font-size: 0.82rem;
  opacity: 0.9;
}

/* ── Footer ──────────────────────────────────────────────── */
footer {
  background: var(--blue-dark);
  color: var(--blue-pale);
}

/* ── Footer contact (pleine largeur) ────────────────────── */
.footer-contact {
  padding: 3rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}

.footer-contact-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-contact-desc {
  color: var(--blue-pale);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  opacity: 0.85;
}

.footer-contact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-contact .contact-info {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 0;
}

.footer-contact .contact-info li { color: var(--blue-pale); }
.footer-contact .contact-icon { color: var(--orange-light); }
.footer-contact .contact-info a { color: var(--blue-pale); }
.footer-contact .contact-info a:hover { color: var(--white); text-decoration: underline; }
.footer-contact .contact-social { margin-bottom: 0; }

/* ── Footer bottom ───────────────────────────────────────── */
.footer-bottom {
  padding: 2.5rem 2rem;
  text-align: center;
}

.footer-logo-link { display: inline-block; }
.footer-logo-link:focus-visible { outline: 2px solid var(--orange-light); border-radius: 4px; }

.footer-logo-img {
  height: 60px;
  width: auto;
  margin: 0 auto 0.8rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.2s;
}
.footer-logo-link:hover .footer-logo-img { opacity: 1; }

.footer-bottom p { font-size: 0.85rem; opacity: 0.8; margin-bottom: 0.3rem; }

/* ── Contact address link ────────────────────────────────── */
.contact-address-link { color: var(--blue-pale); text-decoration: none; }
.contact-address-link:hover { color: var(--white); text-decoration: underline; }

/* ── Contact map ─────────────────────────────────────────── */
.contact-map {
  margin-top: 2.5rem;
}
.contact-map-card {
  max-width: 760px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(0,0,0,0.3);
  border: 2px solid rgba(168, 203, 218, 0.2);
}
.contact-map-card iframe {
  width: 100%;
  height: 340px;
  border: none;
  display: block;
}
.contact-map-iframe-wrap {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.contact-map-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0.65rem 1.2rem;
  background: rgba(20, 50, 65, 0.92);
}
.contact-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1.1rem;
  background: var(--orange);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.contact-map-btn svg { width: 12px; height: 12px; }
.contact-map-btn:hover { background: var(--blue-mid); color: var(--white); text-decoration: none; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  nav {
    padding: 0.6rem 1rem;
    flex-wrap: wrap;
  }

  .nav-logo-img {
    height: 42px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 0.7rem;
    padding: 0.65rem;
    border-radius: var(--radius-sm);
    background: rgba(44, 95, 122, 0.96);
    box-shadow: 0 8px 18px rgba(44, 95, 122, 0.28);
  }

  .nav-links.nav-links--open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 0.5rem 0.45rem;
    font-size: 0.88rem;
  }

  .btn-secondary { margin-left: 0; margin-top: 0.8rem; }

  .creche-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .creche-visual { order: -1; }
  .enfants-img { max-width: 240px; }
  .opening-badge { justify-content: center; }

  .timeline::before { left: 24px; }

  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: column;
    padding-left: 4rem;
  }

  .timeline-dot { position: absolute; left: 0; }

  .about-grid { grid-template-columns: 1fr; }

  .hero-enfants-img { display: none; }

  .footer-contact .contact-info { flex-direction: column; }
  .footer-contact-row { flex-direction: column; gap: 1.5rem; }
}
