/* VERSION 7 - COULEURS NUDE-VERT - HEADER CREME */
/* ============================
   CSS VARIABLES & RESET
   ============================ */
:root {
  /* === Palette Les Apprentis Doudous === */
  /* Marron ourson — couleur principale */
  --honey: #C3693C;
  --honey-dark: #A0522D;
  --honey-light: #F5E6DA;

  /* Vert sauge du nuage logo */
  --sage: #D4EAD4;
  --sage-dark: #4A6741;
  --sage-mid: #8AAE85;

  /* Crème / fond chaud */
  --cream: #F7F4EE;
  --cream-dark: #EDE8DE;

  /* Textes */
  --bee-black: #2A2217;
  --warm-gray: #6B6058;

  /* Bordures */
  --border: #DDD5C8;
  --white: #FFFFFF;

  /* Ombres */
  --shadow-sm: 0 2px 12px rgba(60,35,15,0.08);
  --shadow-md: 0 8px 32px rgba(60,35,15,0.13);
  --shadow-lg: 0 20px 60px rgba(60,35,15,0.18);

  --radius: 16px;
  --radius-sm: 8px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito', system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--bee-black);
  line-height: 1.7;
  overflow-x: hidden;
}

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 80px 0; }

/* ============================
   HEADER & NAV
   ============================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0.75rem 0;
  background: rgba(247, 244, 238, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(180,160,130,0.2);
}

#header.scrolled {
  background: var(--cream);
  box-shadow: 0 2px 16px rgba(100,70,40,0.10);
}

.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo-img {
  height: 68px;
  width: auto;
  transition: transform var(--transition);
  object-fit: contain;
  max-width: 210px;
}
.logo-link:hover .logo-img { transform: scale(1.03); }

/* Footer logo */
.footer-logo img {
  height: 68px !important;
  width: auto;
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav > ul > li { position: relative; }

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  color: var(--bee-black);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

#header.scrolled .nav-link { color: var(--bee-black); }

.nav-link:hover,
.nav-link.active {
  background: var(--honey);
  color: var(--white) !important;
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  min-width: 180px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  list-style: none;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  color: var(--bee-black);
  border-radius: 6px;
  transition: background var(--transition);
}
.dropdown a:hover { background: var(--sage); color: var(--honey-dark); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--bee-black);
  border-radius: 2px;
  transition: all var(--transition);
}
#header.scrolled .hamburger span { background: var(--bee-black); } /* already dark */

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 280px; height: 100vh;
  background: var(--white);
  z-index: 200;
  padding: 6rem 2rem 2rem;
  box-shadow: var(--shadow-lg);
  transition: right var(--transition);
  display: none;
}
.mobile-menu.open { right: 0; display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu li { border-bottom: 1px solid var(--border); }
.mobile-menu a {
  display: block;
  padding: 1rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--bee-black);
}
.mobile-menu a:hover { color: var(--honey); }

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--honey);
  color: var(--white);
  border-color: var(--honey);
}
.btn-primary:hover {
  background: var(--honey-dark);
  border-color: var(--honey-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(163,82,45,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.75);
}
.btn-outline:hover {
  background: var(--sage);
  color: var(--honey-dark);
  transform: translateY(-2px);
}
.btn-light {
  background: var(--white);
  color: var(--bee-black);
  border-color: var(--white);
}
.btn-light:hover {
  background: var(--sage);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #4a3520 0%, #7a5230 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(42,28,15,0.55) 0%, rgba(100,80,50,0.18) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 100px 2rem 0;
  margin-left: max(2rem, calc((100vw - 1160px)/2 + 2rem));
  animation: heroFadeIn 1.2s ease both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.badge {
  display: inline-block;
  background: var(--honey);
  color: var(--white);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
  animation: heroFadeIn 1s 0.2s ease both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
  animation: heroFadeIn 1s 0.4s ease both;
}
.hero-title em { color: var(--honey); font-style: italic; }
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  animation: heroFadeIn 1s 0.6s ease both;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: heroFadeIn 1s 0.8s ease both;
}
.hero-phone {
  margin-top: 1.5rem;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  animation: heroFadeIn 1s 1s ease both;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ============================
   SECTION TAGS
   ============================ */
.section-tag {
  display: inline-block;
  background: var(--sage);
  color: var(--honey-dark);
  padding: 0.25rem 0.85rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
  color: var(--bee-black);
}
.lead { color: var(--warm-gray); font-size: 1.05rem; }

/* ============================
   ABOUT SECTION
   ============================ */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  margin-bottom: 1rem;
}
.about-text p { color: var(--warm-gray); margin-bottom: 1rem; }
.adresses {
  list-style: none;
  margin: 1rem 0 1.5rem;
}
.adresses li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--sage);
  font-weight: 500;
}
.about-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid var(--sage);
  box-shadow: var(--shadow-md);
}

/* ============================
   VALUES SECTION
   ============================ */
.values { background: #F2F7F0; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--sage);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.value-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.25rem;
  border: 4px solid var(--sage);
}
.value-img img { width: 100%; height: 100%; object-fit: cover; }
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--bee-black);
}
.value-card p { color: var(--warm-gray); font-size: 0.95rem; line-height: 1.7; }

/* ============================
   CTA BANNER
   ============================ */
.cta-banner {
  background: linear-gradient(135deg, #7A5230 0%, #5C3A1E 100%);
  padding: 60px 0;
  overflow: hidden;
}
.cta-banner .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.cta-content p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 1.5rem; }
.cta-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* ============================
   PAGE HERO
   ============================ */
.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-color: #4a3520;
  margin-top: 80px;
}
.page-hero--small { height: 280px; }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,28,15,0.70) 0%, rgba(80,60,30,0.15) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 3rem 2rem;
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
}
.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  line-height: 1.1;
}
.page-hero-content h1 em { color: var(--honey); font-style: italic; }
.page-hero-content p { color: rgba(255,255,255,0.85); margin-top: 0.5rem; font-size: 1.05rem; }

/* ============================
   CRECHES PAGE
   ============================ */
.creche-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding: 3rem 0;
}
.creche-block.reverse { direction: rtl; }
.creche-block.reverse > * { direction: ltr; }
.creche-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.creche-info h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--bee-black);
}
.creche-address { color: var(--honey-dark); font-weight: 500; margin-bottom: 1rem; }
.creche-info p { color: var(--warm-gray); margin-bottom: 1rem; }
.creche-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: var(--sage);
  border-radius: var(--radius);
}
.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.detail-icon { font-size: 1.3rem; flex-shrink: 0; }
.detail-item div { font-size: 0.95rem; }
.detail-item strong { color: var(--bee-black); display: block; }
.creche-note { font-style: italic; font-size: 0.92rem; color: var(--warm-gray); }
.creche-divider {
  border: none;
  border-top: 2px dashed var(--border);
  margin: 1rem 0;
}

/* ============================
   GALLERY PAGE
   ============================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item:nth-child(4) { grid-column: span 1; }
.gallery-item:nth-child(6) { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: '🔍';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 3rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }

/* ============================
   FORMS (Pre-inscription & Contact)
   ============================ */
.form-wrapper, .contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}
.form-intro h2, .contact-form-wrapper h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.form-intro p { color: var(--warm-gray); margin-bottom: 1.5rem; }
.form-note {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--sage);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.form-note span { font-size: 1.5rem; flex-shrink: 0; }

.inscription-form, .contact-form { margin-top: 1.5rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group--full { margin-bottom: 1.25rem; }
label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--bee-black);
}
.required { color: var(--honey); }
input, select, textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--bee-black);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--honey);
  box-shadow: 0 0 0 3px rgba(195,105,60,0.18);
  background: var(--white);
}
textarea { resize: vertical; }

.jours-options {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.jour-option {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border: 2px solid var(--border);
  border-radius: 50px;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.jour-option:has(input:checked) {
  border-color: var(--honey);
  background: var(--sage);
  color: var(--honey-dark);
}
.jour-option input { display: none; }

.form-legal {
  font-size: 0.8rem;
  color: var(--warm-gray);
  margin: 1.5rem 0;
  line-height: 1.6;
}
.btn-submit { width: 100%; padding: 1rem; font-size: 1rem; }

.form-success {
  text-align: center;
  padding: 3rem;
}
.success-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.form-success h3 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 0.5rem; }
.form-success p { color: var(--warm-gray); margin-bottom: 1.5rem; }

/* ============================
   CONTACT PAGE
   ============================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-infos h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 1.5rem; }
.contact-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--sage);
  margin-bottom: 1rem;
  background: var(--white);
  transition: box-shadow var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-sm); }
.contact-card-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-card strong { display: block; margin-bottom: 0.25rem; }
.contact-card p { color: var(--warm-gray); font-size: 0.95rem; }
.contact-card a { color: var(--honey); font-weight: 600; }

/* ============================
   FOOTER
   ============================ */
.footer { background: #3D2B1A; color: var(--white); padding: 3rem 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem;
  align-items: start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo img { height: 52px; width: auto; opacity: 0.92; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: flex-start;
}
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: #F0C396; }
.footer-info p { color: rgba(255,255,255,0.65); font-size: 0.92rem; line-height: 1.8; }
.footer-legal {
  text-align: center;
  padding: 1rem 2rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
}

/* ============================
   SCROLL REVEAL
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
  .creche-block { grid-template-columns: 1fr; gap: 2rem; }
  .creche-block.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .cta-banner .container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }

  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-img img { width: 200px; height: 200px; }

  .values-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(6) { grid-column: span 1; }

  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }

  .form-row { grid-template-columns: 1fr; }
  .form-wrapper, .contact-form-wrapper { padding: 2rem 1.25rem; }

  .hero-content { margin-left: 1.5rem; margin-right: 1.5rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .jours-options { gap: 0.4rem; }
  .hero-cta { flex-direction: column; }
}

/* ============================
   MEEKO PRE-INSCRIPTION PAGE
   ============================ */
.meeko-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.meeko-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 0.5rem 0 1rem;
}

.meeko-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}
.meeko-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--sage);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.meeko-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.meeko-card-header {
  background: linear-gradient(135deg, #7A5230 0%, #5C3A1E 100%);
  padding: 1.75rem 2rem 1.5rem;
  color: var(--white);
  position: relative;
}
.meeko-badge {
  display: inline-block;
  background: rgba(255,255,255,0.22);
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.meeko-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--white);
}
.meeko-card-header h3 span {
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  opacity: 0.9;
}
.meeko-card-body {
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1;
}
.meeko-infos {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.meeko-infos li {
  font-size: 0.92rem;
  color: var(--warm-gray);
}
.meeko-note {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.6;
  flex: 1;
}
.btn-meeko {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  text-align: center;
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
}
.btn-icon { font-size: 1.1rem; }

/* Process steps */
.meeko-process {
  background: var(--sage);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}
.meeko-process h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--bee-black);
}
.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  max-width: 140px;
}
.step-num {
  width: 44px; height: 44px;
  background: var(--honey);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(163,82,45,0.30);
}
.step-text {
  font-size: 0.88rem;
  color: var(--bee-black);
  text-align: center;
  line-height: 1.4;
}
.process-arrow {
  font-size: 1.5rem;
  color: var(--honey-dark);
  font-weight: 300;
  flex-shrink: 0;
}

.meeko-contact {
  text-align: center;
  color: var(--warm-gray);
  font-size: 0.95rem;
}
.meeko-contact a { color: var(--honey); font-weight: 600; }
.meeko-contact a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .meeko-cards { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; }
  .process-arrow { transform: rotate(90deg); }
}

/* ============================
   HERO LOGO
   ============================ */
.hero-logo-wrap {
  margin-bottom: 1.25rem;
  animation: heroFadeIn 1s 0s ease both;
}
.hero-logo {
  height: 110px;
  width: auto;
  max-width: 260px;
  border-radius: 14px;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.25));
  display: block;
}

/* Ourson dans section about : style doux */
.about-img img[src*="ourson"] {
  border-radius: 50%;
  border: 6px solid #e8f5e9;
  background: #f9fbe7;
  padding: 8px;
  object-fit: contain;
}

/* ============================
   PHOTO INTÉRIEURE CRÈCHE
   ============================ */
.creche-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  margin-top: 1rem;
  box-shadow: var(--shadow-md);
}
/* Photo Lamartine : format paysage, cover propre */
.creche-photo--contain {
  object-fit: cover;
  height: 280px;
}

/* ============================
   HERO SVG ILLUSTRATION
   ============================ */
.page-hero--svg {
  background: #F5ECD7;
  overflow: hidden;
}
.hero-svg-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ============================
   GALERIE - TITRES DE SECTION
   ============================ */
.gallery-section-title {
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--sage);
}
.gallery-section-title h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--bee-black);
  margin-bottom: 0.2rem;
}
.gallery-section-title p {
  color: var(--warm-gray);
  font-size: 0.9rem;
}
.gallery-section-title:first-child {
  margin-top: 0;
}

/* Photo large pleine largeur */
.gallery-item--wide {
  grid-column: span 3;
}
.gallery-item--wide img {
  height: 420px;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--wide img { height: 280px; }
}
@media (max-width: 480px) {
  .gallery-item--wide { grid-column: span 1; }
}
