/* ============================================================
   Variante A — "Affinement éditorial"
   On garde l'ADN actuel et on l'élève d'un cran.
   ============================================================ */

:root {
  --color-primary: #d4a186;
  --color-primary-dark: #b88a70;
  --color-primary-soft: #f0dccf;
  --color-secondary: #e6d7ce;
  --color-bg: #fdfbf9;
  --color-bg-alt: #f7f3f0;
  --color-text: #2a201c;
  --color-text-light: #6d6058;
  --color-accent-warm: #e8bfa6;
  --shadow-sm: 0 2px 8px rgba(184, 138, 112, 0.08);
  --shadow-md: 0 8px 24px rgba(184, 138, 112, 0.12);
  --shadow-lg: 0 16px 40px rgba(184, 138, 112, 0.15);
}

/* Aération générale des sections */
.section { padding: 5rem 0; }
@media (max-width: 768px) { .section { padding: 3rem 0; } }

body { color: var(--color-text); }

/* ===================== HEADER ===================== */
.header { backdrop-filter: blur(10px); background-color: rgba(255,255,255,0.92); }
.logo-text { letter-spacing: -0.01em; }

/* ===================== HERO ===================== */
.hero {
  min-height: auto;
  padding: 3rem 0 3.5rem;
}
@media (min-width: 769px) {
  .hero { padding: 3.5rem 0 4rem; }
}

/* Hero immédiatement visible (LCP) — pas d'animation d'opacité initiale */
.hero-content > .reveal-item,
.hero-content .reveal-item {
  opacity: 1 !important;
  transform: none !important;
}

.hero-content { max-width: 820px; }

/* Pill "Une place disponible" — soft, translucide, cohérent avec les badges du hero */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #2d7a52;
  background-color: rgba(76, 163, 122, 0.14);
  border: 1px solid rgba(76, 163, 122, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0.5rem 1.1rem 0.5rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.hero-pill:hover {
  transform: translateY(-1px);
  background-color: rgba(76, 163, 122, 0.22);
  color: #2d7a52;
}
.hero-pill-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background-color: #3a9968;
  animation: pillDotPulse 2s ease-out infinite;
}

@keyframes pillDotPulse {
  0%   { box-shadow: 0 0 0 0   rgba(58, 153, 104, 0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(58, 153, 104, 0);    }
  100% { box-shadow: 0 0 0 0   rgba(58, 153, 104, 0);    }
}

@media (prefers-reduced-motion: reduce) {
  .hero-pill-dot { animation: none; }
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  background-color: rgba(255, 255, 255, 0.7);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #3d2e26;
  margin-bottom: 1.25rem;
}

.hero-accent {
  color: var(--color-primary-dark);
  position: relative;
  white-space: nowrap;
}
.hero-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 0.25em;
  background-color: var(--color-accent-warm);
  opacity: 0.55;
  z-index: -1;
  border-radius: 4px;
}

.hero-subtitle {
  font-size: 1.35rem;
  font-weight: 500;
  color: #5a4a40;
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.55;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 auto 2.5rem;
  padding: 0;
  max-width: 700px;
}
.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(212, 161, 134, 0.25);
  color: var(--color-primary-dark);
  padding: 0.55rem 1.1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-heading);
  box-shadow: var(--shadow-sm);
}
.hero-badges i { color: var(--color-primary); }

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-reviews {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.15rem;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(212, 161, 134, 0.22);
  color: #6d6058;
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(184, 138, 112, 0.08);
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-reviews:hover {
  background-color: rgba(255, 255, 255, 0.86);
  border-color: rgba(212, 161, 134, 0.34);
  color: #5a4a40;
  transform: translateY(-1px);
}

.hero-review-stars {
  display: inline-flex;
  gap: 0.12rem;
  color: #e0a23a;
  font-size: 0.82rem;
  line-height: 1;
}

.btn-ghost {
  background-color: rgba(255, 255, 255, 0.85);
  color: var(--color-primary-dark);
  border: 2px solid var(--color-primary);
  padding: 0.7rem 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-ghost:hover {
  background-color: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 6px 16px rgba(212, 161, 134, 0.35);
}

/* ===================== TITRES SECTIONS ===================== */
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  letter-spacing: -0.02em;
  color: #3d2e26;
  margin-bottom: 2.5rem;
}
.section-title::after {
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent-warm));
}

/* ===================== ENCADRÉS ROSES → TERRACOTTA SOFT ===================== */
#services [style*="background-color: #fff5f5"],
#services [style*="background-color:#fff5f5"] {
  background-color: var(--color-primary-soft) !important;
  border: none !important;
  border-left: 4px solid var(--color-primary) !important;
  border-radius: 12px !important;
  box-shadow: var(--shadow-sm);
}

/* ===================== APPROCHE GRID ===================== */
#approche .approche-grid > div {
  background-color: rgba(255, 255, 255, 0.6);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(212, 161, 134, 0.18);
}

/* ===================== ESPACE-VIE INTRO/CONCLUSION ===================== */
#espace-vie .conclusion-box,
#espace-vie [style*="border-left: 4px solid var(--color-primary)"] {
  background-color: #fff !important;
  border: none !important;
  border-left: 4px solid var(--color-primary) !important;
  box-shadow: var(--shadow-sm);
}

/* ===================== CARTES "FOURNIS / PAS FOURNIS" ===================== */
#services .services-grid {
  gap: 2rem;
}
#services .service-card[style*="background-color: #e8f5e8"] {
  background-color: #f0f7ed !important;
  border: 1px solid #c5dbb6;
  box-shadow: var(--shadow-sm);
}
#services .service-card[style*="background-color: #ffeaea"] {
  background-color: #fbeeec !important;
  border: 1px solid #e8c5be;
  box-shadow: var(--shadow-sm);
}
#services .service-card {
  padding: 2.5rem;
  border-radius: 20px;
}
#services .service-card h3 {
  font-size: 1.5rem;
}
#services .service-card ul li {
  padding: 0.5rem 0 0.5rem 2rem !important;
  border-bottom: 1px dashed rgba(0,0,0,0.06);
  font-size: 1.02rem;
}
#services .service-card ul li:last-child { border-bottom: none; }
#services .service-card[style*="background-color: #e8f5e8"] ul li span {
  color: #4a8849 !important;
  font-weight: 700;
}
#services .service-card[style*="background-color: #ffeaea"] ul li span {
  color: #b8463d !important;
  font-weight: 700;
}

/* ===================== SECTION CONTACT ===================== */
#contact {
  background: linear-gradient(160deg, #e6d7ce 0%, #d4b8a8 100%) !important;
  position: relative;
}
#contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.4) 0%, transparent 40%),
                    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.3) 0%, transparent 40%);
  pointer-events: none;
}
#contact > * { position: relative; z-index: 1; }
#contact .section-title { color: #3d2e26; }
#contact .section-title::after { background: #fff; }
#contact .contact-intro {
  background-color: rgba(255,255,255,0.85) !important;
  backdrop-filter: blur(6px);
  border-radius: 20px !important;
  box-shadow: var(--shadow-md);
}
.contact-wrapper {
  background-color: #fff !important;
  border-radius: 24px !important;
  box-shadow: var(--shadow-lg);
  padding: 3rem !important;
}
@media (max-width: 768px) {
  .contact-wrapper { padding: 1.5rem !important; }
}

/* ===================== ANIMAUX (cartes plus chaudes) ===================== */
.animal-card img {
  border: 4px solid #fff;
  box-shadow: var(--shadow-md);
}

/* ===================== FOOTER ADOUCI ===================== */
.footer { background-color: #6d4838 !important; padding: 1.5rem 0 !important; }

/* ===================== INSTAGRAM SECTION ===================== */
section[style*="Suivez nos aventures"] h2,
behold-widget {
  /* léger margin pour aérer */
}

/* ===================== INFOS PRATIQUES — micro-cartes ===================== */
#infos .service-card {
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(212, 161, 134, 0.15);
}
#infos .service-card h3 {
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}
