/* ===================================================
   CHA Theme — Main CSS
   Connexion Homme Animal — Élodie Lopes
   =================================================== */

/* ---- RESET & VARIABLES ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0B1F3A;
  --navy-mid:    #162E52;
  --blue:        #2563EB;
  --blue-light:  #3B82F6;
  --blue-pale:   #EFF6FF;
  --gold:        #C4933F;
  --gold-light:  #E8BA6A;
  --cream:       #F8F6F0;
  --white:       #FFFFFF;
  --dark:        #1A1A2E;
  --gray-600:    #6B7280;
  --gray-200:    #E5E7EB;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:   0 4px 16px rgba(11,31,58,.10);
  --shadow-lg:   0 20px 60px rgba(11,31,58,.15);
  --transition:  0.35s cubic-bezier(.4,0,.2,1);
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Nunito', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- TYPOGRAPHY ---- */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,99,235,.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,99,235,.4);
}

.btn-ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 9px 20px;
  font-size: .875rem;
}

.btn-full { width: 100%; justify-content: center; }

.btn-white {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
}

.btn-outline-light {
  border: 1.5px solid rgba(255,255,255,.4);
  color: var(--white);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.1);
}

/* ---- IMAGE PLACEHOLDERS ---- */
.img-placeholder {
  background: linear-gradient(135deg, #EEF4FF, #DBEAFE);
  border: 2px dashed rgba(37,99,235,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--blue-light);
}

.img-placeholder .placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: .6;
}

.img-placeholder .placeholder-inner p {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--blue-light);
}

.img-placeholder.small .placeholder-inner {
  gap: 6px;
}

.img-placeholder.avatar {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  color: var(--blue-light);
}

/* ---- SCROLL REVEAL ANIMATIONS ---- */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity .7s var(--transition), transform .7s var(--transition);
}

.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }
.delay-4 { transition-delay: .48s; }

/* ======================================================
   NAVIGATION
   ====================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 8px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(11,31,58,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 4px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.15rem;
}

.logo-icon {
  color: var(--gold);
  font-size: 1.3rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  border-radius: 50px;
  transition: all var(--transition);
}

.nav-link:hover { color: var(--white); background: rgba(255,255,255,.1); }

.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white) !important;
  padding: 9px 20px;
  box-shadow: 0 4px 15px rgba(37,99,235,.3);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,99,235,.4); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ======================================================
   HERO
   ====================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0F3460 50%, #1A237E 100%);
}

/* Animated grid/particle effect */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(37,99,235,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(196,147,63,.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(37,99,235,.05) 0%, transparent 70%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

@keyframes heroGlow {
  0%   { opacity: 1; }
  100% { opacity: .6; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(11,31,58,.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 120px 24px 60px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  padding: 6px 18px;
  border: 1px solid rgba(196,147,63,.3);
  border-radius: 50px;
  background: rgba(196,147,63,.08);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  line-height: 1.8;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .05em;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ======================================================
   ABOUT
   ====================================================== */
.about {
  padding: 120px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.badge-icon { font-size: 1.5rem; }

.about-badge strong {
  display: block;
  font-size: .9rem;
  color: var(--navy);
}

.about-badge small {
  display: block;
  font-size: .75rem;
  color: var(--gray-600);
}

.about-img-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, rgba(37,99,235,.08), rgba(37,99,235,.03));
  border-radius: var(--radius-lg);
  border: 2px solid rgba(37,99,235,.12);
  z-index: -1;
}

.about-content p {
  color: var(--gray-600);
  margin-bottom: 16px;
}

.about-lead {
  font-size: 1.15rem;
  color: var(--dark) !important;
  font-weight: 500;
  margin-bottom: 24px !important;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 36px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  color: var(--dark);
}

.value-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--gold));
}

/* ======================================================
   APPROCHE
   ====================================================== */
.approche {
  position: relative;
  padding: 120px 0;
  background: var(--blue-pale);
  overflow: hidden;
}

.approche-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(37,99,235,.07) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(196,147,63,.05) 0%, transparent 40%);
  pointer-events: none;
}

.approche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.approche-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.approche-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.approche-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.approche-card:hover::before { transform: scaleX(1); }

.card-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--blue-pale), #DBEAFE);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
}

.approche-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.approche-card p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ======================================================
   PRESTATIONS
   ====================================================== */
.prestations {
  padding: 120px 0;
  background: var(--white);
}

.prestations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.prestation-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all var(--transition);
  background: var(--white);
  position: relative;
  display: flex;
  flex-direction: column;
}

.prestation-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.prestation-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), var(--shadow-md);
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: .05em;
  text-transform: uppercase;
  z-index: 2;
}

.prestation-img {
  width: 100%;
  height: 200px;
  border-radius: 0;
  border: none;
  border-bottom: 2px dashed rgba(37,99,235,.15);
}

.prestation-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.prestation-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.prestation-tag.gold {
  color: var(--gold);
  background: rgba(196,147,63,.1);
}

.prestation-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.prestation-card p {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 16px;
}

.prestation-list {
  margin-bottom: 20px;
  flex: 1;
}

.prestation-list li {
  font-size: .85rem;
  color: var(--gray-600);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.prestation-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue-light);
  font-weight: 700;
  font-size: .8rem;
}

.prestation-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
  margin-top: auto;
}

.prestation-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}

/* ======================================================
   CTA BANNER
   ====================================================== */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue) 0%, #1D4ED8 50%, #1E40AF 100%);
}

.cta-banner-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0,0,0,.1) 0%, transparent 50%);
}

.cta-banner-content {
  position: relative;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

/* ======================================================
   CONTACT
   ====================================================== */
.contact {
  padding: 120px 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-title { margin-bottom: 16px; }

.contact-info > p {
  color: var(--gray-600);
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, var(--blue-pale), #DBEAFE);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  font-size: .85rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.contact-item span {
  font-size: .9rem;
  color: var(--gray-600);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--dark);
  transition: all var(--transition);
  background: var(--white);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-notice {
  text-align: center;
  font-size: .8rem;
  color: var(--gray-600);
  margin-top: 12px;
}

/* ======================================================
   FOOTER
   ====================================================== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all var(--transition);
}

.social-link:hover {
  border-color: var(--blue-light);
  color: var(--blue-light);
  background: rgba(37,99,235,.1);
}

.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--white); }

.footer-contact p {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-contact .btn {
  margin-top: 16px;
  font-size: .8rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255,255,255,.35);
  transition: color var(--transition);
}

.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 1024px) {
  .approche-grid { grid-template-columns: repeat(2, 1fr); }
  .prestations-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 280px;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 32px;
    gap: 4px;
    transition: right var(--transition);
    box-shadow: -20px 0 60px rgba(0,0,0,.3);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-link { padding: 12px 0; font-size: 1rem; width: 100%; }
  .nav-cta {
    margin-top: 20px;
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 16px 28px;
    font-size: 1rem;
    border-radius: 50px;
    display: flex;
  }
  .nav-toggle { display: flex; z-index: 1000; }

  /* Sections */
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .about-visual { order: -1; }
  .about-img { aspect-ratio: 16/9; }
  .about-badge { right: 0; bottom: -16px; }

  .approche-grid { grid-template-columns: 1fr; }
  .prestations-grid { grid-template-columns: 1fr; }

  .contact-form-wrap { padding: 28px 24px; }
  .contact-form .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-title { font-size: 2rem; }
}

/* ======================================================
   ELEMENTOR — Styles custom pour widgets HTML
   ====================================================== */

/* --- Reset Elementor margins sur notre contenu --- */
.elementor-widget-html .elementor-widget-container { line-height: 1; }

/* --- Approche cards (section Approche) --- */
.cha-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.cha-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.cha-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.cha-card:hover::before { transform: scaleX(1); }

.cha-card-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--blue-pale), #DBEAFE);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
}
.cha-card-title {
  font-family: var(--font-serif);
  font-size: 1.1rem; font-weight: 600; color: var(--navy);
  margin-bottom: 12px; line-height: 1.3;
}
.cha-card-desc {
  font-size: .9rem; color: var(--gray-600);
  line-height: 1.7; font-family: var(--font-sans);
}

/* --- Elementor section scroll animations --- */
.cha-section-hidden {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1);
}
.cha-section-hidden.cha-visible {
  opacity: 1;
  transform: none;
}
.cha-col-hidden {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}
.cha-col-hidden.cha-visible {
  opacity: 1;
  transform: none;
}

/* --- Elementor reset : supprimer marge par défaut sur certains éléments --- */
.elementor-widget-heading .elementor-heading-title { line-height: 1.2; }
.elementor-section.elementor-section-boxed > .elementor-container { max-width: 1200px; }


/* ============================================================
   HERO — Section native thème (ACF)   classes : .hr-*
   ============================================================ */

#hero { display: block; }

.hr {
  min-height: 100vh;
  background: #0B1F3A;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  font-family: var(--font-sans);
}
.hr::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

/* Scrim en haut — assure la lisibilité de la navbar quelle que soit l'image */
.hr::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 300px;
  background: linear-gradient(to bottom,
    rgba(11,31,58,.97) 0%,
    rgba(11,31,58,.85) 25%,
    rgba(11,31,58,.55) 55%,
    rgba(11,31,58,.15) 80%,
    transparent 100%);
  z-index: 4; /* au-dessus de .hr-img et .hr-paws */
  pointer-events: none;
}
.hr-glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.13) 0%, transparent 65%);
  top: -200px; left: -150px;
  pointer-events: none;
}

/* Image droite avec clip diagonal */
.hr-img {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 48%;
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.hr-img-ph {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #1E3A8A 0%, #1E40AF 40%, #1D4ED8 70%, #2563EB 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; position: relative; overflow: hidden;
}
.hr-img-ph::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hr-img-ph::after {
  content: ""; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 65%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.hr-img-ph-icon { position: relative; z-index: 1; }
.hr-img-ph-label {
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.3);
  position: relative; z-index: 1;
}
/* Image réelle dans le placeholder */
.hr-img-ph picture { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.hr-img-ph img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 1;
}
/* Masquer les décorations de placeholder quand la vraie image est là */
.hr-has-img::before,
.hr-has-img::after { display: none !important; }
.hr-has-img { background: none !important; }

/* Ligne or diagonale (SVG – suit exactement polygon(20% 0%, 0% 100%) de .hr-img) */
.hr-divider-svg {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 3; overflow: visible;
}

/* Contenu principal */
.hr-main {
  flex: 1;
  position: relative; z-index: 2;
  display: flex; align-items: center;
  max-width: 1200px; margin: 0 auto;
  width: 100%; padding: 130px 40px 60px;
}
.hr-left {
  width: 66%; padding-right: 20px;
  display: flex; flex-direction: column; align-items: flex-start;
}

/* Badge */
.hr-badge {
  display: inline-flex; align-items: center;
  border: 1px solid rgba(196,147,63,.45);
  border-radius: 50px; padding: 8px 22px;
  font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: #C4933F; margin-bottom: 32px;
  white-space: nowrap; width: fit-content;
}

/* H1 */
.hr-h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.1vw, 3.3rem);
  font-weight: 700; color: #fff; line-height: 1.18; margin-bottom: 26px;
}
.hr-h1 em {
  display: block;
  font-style: italic;
  background: linear-gradient(90deg, #93C5FD, #BFDBFE);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Sous-titre & signature */
.hr-sub {
  font-size: 1.08rem; color: rgba(255,255,255,.68);
  line-height: 1.75; margin-bottom: 8px;
}
.hr-author {
  font-family: var(--font-serif); font-style: italic; font-size: .9rem;
  color: rgba(196,147,63,.8); margin-bottom: 44px;
}

/* Boutons */
.hr-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hr-btn-p {
  display: inline-flex; align-items: center; gap: 9px;
  background: #2563EB; color: #fff;
  padding: 16px 34px; border-radius: 50px;
  font-size: 1rem; font-weight: 700; text-decoration: none !important;
  transition: background .2s, transform .18s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(37,99,235,.35);
}
.hr-btn-p:hover { background: #1D4ED8; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,99,235,.45); }
.hr-btn-p svg { transition: transform .2s; }
.hr-btn-p:hover svg { transform: translateX(3px); }

.hr-btn-s {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.88);
  border: 1.5px solid rgba(255,255,255,.28);
  padding: 15px 32px; border-radius: 50px;
  font-size: 1rem; font-weight: 600; text-decoration: none !important;
  transition: all .2s;
}
.hr-btn-s:hover {
  background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.45);
  color: #fff; transform: translateY(-2px);
}

/* Bande de stats */
.hr-stats {
  position: relative; z-index: 4;
  border-top: 1px solid rgba(255,255,255,.12);
  background: #071426; padding: 26px 40px;
}
.hr-stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-around; align-items: center;
}
.hr-stat { text-align: center; }
.hr-stat-val {
  display: block; font-family: var(--font-serif);
  font-size: 2.1rem; font-weight: 700; color: #fff; line-height: 1;
}
.hr-stat-val sup { font-size: 1rem; font-weight: 400; vertical-align: super; }
.hr-stat-lbl {
  display: block; font-size: .7rem; color: rgba(255,255,255,.45);
  text-transform: uppercase; letter-spacing: .1em; margin-top: 5px;
}
.hr-stat-sep { width: 1px; height: 36px; background: rgba(255,255,255,.1); }

/* Responsive hero — tablet intermédiaire (image encore visible) */
@media (min-width: 901px) and (max-width: 1100px) {
  .hr-left { width: 56%; }
  .hr-badge { font-size: .62rem; padding: 6px 14px; white-space: normal; max-width: 100%; }
}

/* Responsive hero */
@media (max-width: 900px) {
  .hr-img, .hr-divider-svg { display: none; }
  .hr-left { width: 100%; padding-right: 0; }
  .hr-main { text-align: center; padding-left: 24px; padding-right: 24px; }
  .hr-sub { max-width: 100%; }
  .hr-ctas { justify-content: center; }
  .hr-badge { margin-left: auto; margin-right: auto; }
}
@media (max-width: 560px) {
  .hr-h1 { font-size: 2.3rem; }
  .hr-sub { font-size: 1rem; }
  .hr-main { padding-top: 100px; }
  .hr-stats-inner { flex-wrap: wrap; gap: 8px; }
  .hr-stat-sep { display: none; }
  .hr-stat { padding: 8px 16px; }
}


/* ============================================================
   ABOUT — Section native thème (ACF)   classes : .ab-*
   ============================================================ */

.ab-section {
  background: #F8F6F0;
  padding: 100px 0;
}
.ab-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.ab-wrap * { box-sizing: border-box; }
.ab-wrap {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 72px;
  align-items: start;
  font-family: var(--font-sans);
}

/* Colonne photo */
.ab-left { display: flex; flex-direction: column; gap: 20px; }

.ab-photo-frame {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/5; max-height: 450px;
  background: #E0D8CB;
}
.ab-photo-frame picture { width: 100%; height: 100%; display: block; }
.ab-photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top; display: block;
}
.ab-photo-frame::before {
  content: ''; position: absolute; bottom: -1px; left: -1px;
  width: 70px; height: 6px;
  background: linear-gradient(90deg, #C4933F, #E8B96A);
  border-radius: 0 6px 0 0; z-index: 2;
}
.ab-photo-frame::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 65%, rgba(11,31,58,.18) 100%);
  pointer-events: none;
}
.ab-photo-placeholder {
  width: 100%; height: 100%; min-height: 300px;
  display: flex; align-items: center; justify-content: center;
}

/* Carte parcours */
.ab-creds {
  background: #0B1F3A; border-radius: 14px; padding: 18px 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.ab-cred-title {
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.42); margin-bottom: 2px;
}
.ab-cred-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .82rem; color: rgba(255,255,255,.88); line-height: 1.3;
}
.ab-cred-dot {
  width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: .95rem;
}

/* Colonne texte */
.ab-right { padding-top: 8px; }
.ab-eyebrow {
  font-size: .75rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: #2563EB; margin-bottom: 16px;
}
.ab-h2 {
  font-family: var(--font-serif); font-size: 2.1rem; font-weight: 700;
  color: #0B1F3A; line-height: 1.2; margin-bottom: 24px;
}
.ab-intro {
  font-size: 1rem; font-weight: 700; color: #1E3A5F;
  line-height: 1.6; margin-bottom: 16px;
}
.ab-text { font-size: .92rem; color: #4B5563; line-height: 1.75; margin-bottom: 20px; }

/* Citation */
.ab-quote {
  border-left: 4px solid #C4933F;
  background: linear-gradient(to right, rgba(196,147,63,.07), transparent);
  padding: 14px 20px; border-radius: 0 10px 10px 0;
  margin: 24px 0 28px;
}
.ab-quote p {
  font-family: var(--font-serif); font-size: 1rem; font-style: italic;
  color: #0B1F3A; line-height: 1.6; margin: 0;
}

/* Cartes double identité */
.ab-roles { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 28px; }
.ab-role-card {
  background: #F0F5FF; border: 1px solid #DBEAFE;
  border-radius: 14px; padding: 18px 16px;
}
.ab-role-card.gold { background: #FDFAF3; border-color: rgba(196,147,63,.3); }
.ab-role-icon { font-size: 1.4rem; margin-bottom: 8px; }
.ab-role-name {
  font-size: .8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: #2563EB; margin-bottom: 6px;
}
.ab-role-card.gold .ab-role-name { color: #A67425; }
.ab-role-desc { font-size: .82rem; color: #4B5563; line-height: 1.5; }

/* Bouton CTA */
.ab-cta {
  display: flex; align-items: center; gap: 8px;
  width: fit-content; margin: 0 auto;
  background: #2563EB; color: #fff;
  padding: 13px 28px; border-radius: 50px;
  font-size: .9rem; font-weight: 700; text-decoration: none;
  font-family: var(--font-sans); transition: background .2s, transform .2s;
}
.ab-cta:hover { background: #1D4ED8; color: #fff; transform: translateY(-1px); }
.ab-cta svg { transition: transform .2s; }
.ab-cta:hover svg { transform: translateX(3px); }

/* Alignement gauche (pas d'override Elementor nécessaire) */
.ab-right, .ab-eyebrow, .ab-h2, .ab-intro,
.ab-text, .ab-quote, .ab-roles, .ab-role-card,
.ab-role-name, .ab-role-desc { text-align: left; }

/* Responsive about */
@media (max-width: 900px) {
  .ab-wrap { grid-template-columns: 1fr; gap: 40px; }
  .ab-photo-frame { max-height: 380px; aspect-ratio: 3/2; }
  .ab-section { padding: 70px 0; }
}
@media (max-width: 560px) {
  .ab-roles { grid-template-columns: 1fr; }
  .ab-h2 { font-size: 1.7rem; }
  .ab-container { padding: 0 24px; }
  .ab-section { padding: 50px 0; }
}


/* ============================================================
   APPROCHE — Section native thème (ACF)   classes : .ap-*
   ============================================================ */

.ap-section { background: #FFFFFF; padding: 120px 0; contain: layout style; } /* Fond blanc pur */
.ap-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; text-align: center; }
.ap-eyebrow {
  font-size: .8rem; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: #3B82F6; margin-bottom: 12px;
}
.ap-h2 {
  font-family: var(--font-serif); font-size: 2.5rem; font-weight: 700;
  color: #0B1F3A; line-height: 1.2; margin-bottom: 20px;
}
.ap-subtitle {
  color: #6B7280; font-size: .95rem; line-height: 1.7;
  max-width: 600px; margin: 0 auto 56px;
}
.cha-approche-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 48px; text-align: left;
}
.ap-objectif {
  max-width: 720px;
  margin: 48px auto 40px;
  background: linear-gradient(135deg, rgba(37,99,235,.06), rgba(196,147,63,.06));
  border-left: 4px solid var(--or);
  border-radius: 0 16px 16px 0;
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.ap-objectif-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.ap-objectif p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--navy);
  font-family: var(--font-serif);
  font-style: italic;
}
.ap-objectif strong {
  font-style: normal;
  color: var(--or);
}

.ap-cta-wrap { text-align: center; }

@media (max-width: 1024px) {
  .cha-approche-grid { grid-template-columns: repeat(2, 1fr); }
  .cha-approche-grid .cha-card:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 12px);
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 600px) {
  .cha-approche-grid { grid-template-columns: 1fr; }
  .cha-approche-grid .cha-card:last-child {
    max-width: none;
    grid-column: auto;
  }
  .ap-section { padding: 80px 0; }
  .ap-container { padding: 0 24px; }
  .ap-h2 { font-size: 1.9rem; }
  .ap-objectif { padding: 22px 20px; gap: 12px; margin: 36px auto 32px; }
  .ap-objectif p { font-size: .95rem; }
}


/* ============================================================
   ANIMAUX ACCOMPAGNÉS — Section homepage
   ============================================================ */
.esp-section {
  background: var(--white);
  padding: 100px 0;
  contain: layout style;
}
.esp-container {
  max-width: 1200px; margin: 0 auto; padding: 0 40px; text-align: center;
}
.esp-eyebrow {
  font-size: .8rem; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.esp-h2 {
  font-family: var(--font-serif); font-size: 2.2rem; font-weight: 700;
  color: var(--navy); margin-bottom: 48px;
}
.esp-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 32px; max-width: 800px; margin: 0 auto;
}
.esp-card {
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-md); background: var(--white);
  transition: transform .3s ease, box-shadow .3s ease;
  text-align: left;
}
.esp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.esp-card-img {
  aspect-ratio: 4/3; overflow: hidden; background: var(--blue-pale);
}
.esp-card-img picture,
.esp-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.esp-card:hover .esp-card-img img { transform: scale(1.05); }
.esp-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-pale);
}
.esp-icon { font-size: 3.5rem; }
.esp-card-body { padding: 24px; }
.esp-card-title {
  font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.esp-card-desc {
  font-size: .9rem; color: var(--gray-600); line-height: 1.6;
}

@media (max-width: 600px) {
  .esp-section { padding: 70px 0; }
  .esp-container { padding: 0 24px; }
  .esp-h2 { font-size: 1.8rem; margin-bottom: 32px; }
  .esp-grid { grid-template-columns: 1fr; gap: 24px; }
}


/* ============================================================
   PRESTATIONS & TARIFS — Section native thème (ACF)
   classes : .prest-* · .cha-acc* · .cha-tl* · .cha-bull* · .cha-pc*
   ============================================================ */

.prest-section { background: #DBEAFE; padding: 120px 0; contain: layout style; } /* Fond bleu clair visible */
.prest-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; text-align: center; }
.prest-eyebrow {
  font-size: .8rem; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: #2563EB; margin-bottom: 12px;
}
.prest-h2 {
  font-family: var(--font-serif); font-size: 2.5rem; font-weight: 700;
  color: #0B1F3A; line-height: 1.2; margin-bottom: 16px;
}
.prest-subtitle {
  color: #6B7280; font-size: .95rem; line-height: 1.7;
  max-width: 600px; margin: 0 auto 56px;
}

/* Accordéon */
.cha-acc * { box-sizing: border-box; }
.cha-acc { max-width: 900px; margin: 0 auto; font-family: var(--font-sans); text-align: left; }
.cha-acc-item { border: 1px solid #DBEAFE; border-radius: 16px; margin-bottom: 12px; overflow: hidden; background: #fff; transition: box-shadow .28s, border-color .28s; }
.cha-acc-item.open { box-shadow: 0 8px 40px rgba(37,99,235,.12); border-color: #93C5FD; }
.cha-acc-hd { display: flex; align-items: center; gap: 16px; padding: 22px 28px; cursor: pointer; user-select: none; transition: background .2s; }
.cha-acc-hd:hover { background: #F8FAFF; }
.cha-acc-num { min-width: 44px; height: 44px; border-radius: 50%; background: #EFF6FF; color: #2563EB; font-family: var(--font-serif); font-size: .88rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .25s; }
.cha-acc-item.open .cha-acc-num { background: #2563EB; color: #fff; }
.cha-acc-info { flex: 1; min-width: 0; }
.cha-acc-title { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 700; color: #0B1F3A; margin: 0 0 3px; line-height: 1.3; }
.cha-acc-tag { font-size: .68rem; color: #9CA3AF; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.cha-acc-price { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; color: #2563EB; white-space: nowrap; flex-shrink: 0; }
.cha-acc-chv { min-width: 20px; transition: transform .3s; color: #9CA3AF; flex-shrink: 0; }
.cha-acc-item.open .cha-acc-chv { transform: rotate(180deg); }
.cha-acc-bd { max-height: 0; overflow: hidden; transition: max-height .48s cubic-bezier(.4,0,.2,1); }
.cha-acc-inner { border-top: 1px solid #EFF6FF; display: flex; flex-direction: column; }

/* Image bannière */
.cha-acc-img-wrap { margin: 0; height: 260px; overflow: hidden; position: relative; flex-shrink: 0; }
.cha-acc-img-wrap picture { width: 100%; height: 100%; display: block; }
.cha-acc-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.cha-acc-item.open .cha-acc-img-wrap img { transform: scale(1.02); }
.cha-acc-img-ph { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
.cha-acc-img-ph svg { opacity: .45; }
.cha-acc-img-ph-label { font-size: .78rem; font-weight: 600; opacity: .6; font-family: var(--font-sans); text-align: center; padding: 0 20px; }
.cha-acc-img-ph-hint { font-size: .65rem; opacity: .4; font-family: var(--font-sans); text-align: center; }
.cha-acc-img-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 55%, rgba(11,31,58,.18) 100%); pointer-events: none; }

/* Colonnes contenu */
.cha-acc-cols { display: grid; grid-template-columns: 1fr 268px; gap: 24px; padding: 24px 28px 28px; }

/* Timeline */
.cha-tl { list-style: none; margin: 0; padding: 0; }
.cha-tl-item { display: flex; gap: 14px; padding-bottom: 22px; position: relative; }
.cha-tl-item:not(:last-child)::before { content: ""; position: absolute; left: 15px; top: 34px; width: 2px; bottom: 0; background: #DBEAFE; }
.cha-tl-dot { min-width: 32px; height: 32px; border-radius: 50%; background: #EFF6FF; border: 2px solid #2563EB; color: #2563EB; font-size: .76rem; font-weight: 700; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; flex-shrink: 0; }
.cha-tl-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: #2563EB; margin-bottom: 3px; }
.cha-tl-title { font-size: .95rem; font-weight: 700; color: #0B1F3A; margin-bottom: 4px; }
.cha-tl-desc { font-size: .82rem; color: #6B7280; line-height: 1.55; }

/* Bullets */
.cha-bull { list-style: none; margin: 0; padding: 0; }
.cha-bull li { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; color: #374151; line-height: 1.55; margin-bottom: 9px; }
.cha-bull li::before { content: ""; min-width: 6px; height: 6px; border-radius: 50%; background: #2563EB; margin-top: 8px; flex-shrink: 0; }

/* Espacement entre paragraphes descriptifs et listes dans l'accordéon */
.cha-acc-bd p { margin-bottom: 14px; line-height: 1.65; }
.cha-acc-bd p:last-child { margin-bottom: 0; }
.cha-acc-bd p + .cha-bull { margin-top: 4px; }
.cha-acc-bd .cha-bull { margin-bottom: 4px; }

/* Espacement entre sous-paragraphes dans cha-tl-desc */
.cha-tl-desc > div + div { margin-top: 7px; }

/* Note */
.cha-note { background: #EFF6FF; border-left: 3px solid #2563EB; border-radius: 0 8px 8px 0; padding: 12px 15px; margin-top: 20px; font-size: .82rem; color: #374151; line-height: 1.5; }
.cha-note strong { color: #1D4ED8; display: block; margin-bottom: 3px; font-size: .72rem; text-transform: uppercase; letter-spacing: .07em; font-weight: 700; }

/* Carte tarif */
.cha-pc { background: #0B1F3A; border-radius: 14px; padding: 24px 22px; display: flex; flex-direction: column; gap: 14px; align-self: start; }
.cha-pc-price { text-align: center; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.1); }
.cha-pc-amount { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: #fff; line-height: 1; }
.cha-pc-amount span { font-size: 1.1rem; }
.cha-pc-sub { font-size: .72rem; color: rgba(255,255,255,.42); margin-top: 5px; }
.cha-dual-price { display: flex; gap: 8px; justify-content: center; align-items: center; }
.cha-dual-opt { text-align: center; }
.cha-dual-opt .cha-pc-amount { font-size: 1.5rem; }
.cha-dual-opt small { font-size: .64rem; color: rgba(255,255,255,.42); display: block; margin-top: 2px; }
.cha-dual-sep { color: rgba(255,255,255,.2); font-size: 1.4rem; font-weight: 200; }
.cha-pc-inc { list-style: none; margin: 0; padding: 0; }
.cha-pc-inc li { display: flex; gap: 8px; align-items: flex-start; font-size: .79rem; color: rgba(255,255,255,.74); margin-bottom: 7px; line-height: 1.4; }
.cha-pc-inc li::before { content: "✓"; color: #60A5FA; font-weight: 700; min-width: 14px; flex-shrink: 0; }
.cha-pc-note { font-size: .7rem; color: rgba(255,255,255,.36); text-align: center; line-height: 1.45; }
.cha-btn-rdv { display: flex; align-items: center; justify-content: center; gap: 8px; background: #2563EB; color: #fff !important; text-align: center; padding: 11px 22px; border-radius: 999px; font-size: .85rem; font-weight: 700; text-decoration: none !important; transition: background .2s, box-shadow .2s; font-family: var(--font-sans); }
.cha-btn-rdv:hover { background: #1D4ED8; }

/* Responsive prestations */
@media (max-width: 820px) {
  .cha-acc-cols { grid-template-columns: 1fr; }
  .cha-acc-img-wrap { height: 210px; }
}
@media (max-width: 640px) {
  .cha-acc-hd { padding: 18px 20px; gap: 12px; }
  .cha-acc-price { display: none; }
  .cha-acc-cols { padding: 20px; }
  .cha-acc-img-wrap { height: 180px; }
  .prest-section { padding: 80px 0; }
  .prest-container { padding: 0 24px; }
  .prest-h2 { font-size: 1.9rem; }
}


/* ============================================================
   CTA BANNER — Section native thème (ACF)   classes : .cta-*
   ============================================================ */

.cta-section {
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 50%, #1E40AF 100%);
  padding: 100px 0;
  text-align: center;
}
.cta-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.cta-h2 {
  font-family: var(--font-serif); font-size: 2.4rem; font-weight: 700;
  color: #fff; line-height: 1.2; margin-bottom: 16px;
}
.cta-sub { color: rgba(255,255,255,.82); font-size: 1.05rem; margin-bottom: 36px; }
.cta-btn {
  display: inline-block; background: #fff; color: #0B1F3A !important;
  padding: 14px 32px; border-radius: 50px; font-weight: 700; font-size: .95rem;
  text-decoration: none !important; transition: all .25s;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.cta-btn:hover { background: #F8F6F0; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.22); }

@media (max-width: 600px) {
  .cta-section { padding: 72px 0; }
  .cta-container { padding: 0 24px; }
  .cta-h2 { font-size: 1.8rem; }
}


/* ============================================================
   TÉMOIGNAGES — Section native thème (ACF)   classes : .temo-*
   ============================================================ */

/* ── Section & header ── */
.temo-section {
  background: linear-gradient(135deg, #0B1F3A 0%, #162E52 100%);
  padding: 120px 0;
}
.temo-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; text-align: center; }
.temo-header { margin-bottom: 56px; }
.temo-eyebrow {
  font-size: .8rem; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: #E8BA6A; margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px; justify-content: center;
}
.temo-h2 {
  font-family: var(--font-serif); font-size: 2.5rem; font-weight: 700;
  color: #fff; line-height: 1.2; margin-bottom: 16px;
}
.temo-subtitle { color: rgba(255,255,255,.6); font-size: .95rem; max-width: 600px; margin: 0 auto; }

/* ── Flip grid : 3 colonnes desktop ── */
.temo-flip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

/* ── Flip card container ── */
.temo-flip-card {
  perspective: 1000px;
  cursor: pointer;
}
.temo-flip-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  transition: transform 0.6s cubic-bezier(.4,.2,.2,1);
  transform-style: preserve-3d;
}
/* Flip au hover (desktop) */
@media (hover: hover) {
  .temo-flip-card:hover .temo-flip-inner {
    transform: rotateY(180deg);
  }
}
/* Flip au tap (mobile) — classe JS */
.temo-flip-card.flipped .temo-flip-inner {
  transform: rotateY(180deg);
}

/* ── Faces communes ── */
.temo-front, .temo-back {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}

/* ── Face avant : photo ── */
.temo-front {
  background: #0D2240;
}
.temo-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.temo-flip-card:hover .temo-front img {
  transform: scale(1.05);
}
.temo-front-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(to top, rgba(11,31,58,.9) 0%, rgba(11,31,58,.4) 60%, transparent 100%);
  text-align: left;
}
.temo-front-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.temo-front-animal {
  display: block;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}

/* Icône flip hint */
.temo-flip-hint {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity .3s;
}
.temo-flip-card:hover .temo-flip-hint { opacity: 1; }
.temo-flip-hint-back { opacity: 1; background: rgba(196,147,63,.3); }

/* ── Face arrière : témoignage ── */
.temo-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, #0D2240 0%, #162E52 100%);
  border: 1px solid rgba(196,147,63,.3);
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  text-align: left;
}
.temo-back-stars {
  color: #C4933F;
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.temo-back-quote {
  font-size: .88rem;
  color: rgba(255,255,255,.85);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  overflow-y: auto;
  margin: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(196,147,63,.4) transparent;
}
.temo-back-quote::-webkit-scrollbar { width: 4px; }
.temo-back-quote::-webkit-scrollbar-thumb { background: rgba(196,147,63,.4); border-radius: 2px; }
.temo-back-author {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.temo-back-name {
  display: block;
  font-size: .9rem;
  color: #fff;
  font-weight: 600;
}
.temo-back-animal {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
}

/* ── Responsive tablette ── */
@media (max-width: 1024px) {
  .temo-flip-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Responsive mobile : slider horizontal ── */
@media (max-width: 600px) {
  .temo-section { padding: 80px 0; }
  .temo-container { padding: 0 20px; }
  .temo-header { margin-bottom: 36px; }
  .temo-h2 { font-size: 1.9rem; }

  .temo-flip-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .temo-flip-grid::-webkit-scrollbar { display: none; }

  .temo-flip-card {
    flex: 0 0 82%;
    scroll-snap-align: center;
  }
  .temo-flip-inner {
    aspect-ratio: 3 / 4.2;
  }
  /* Sur mobile, montrer l'icône flip par défaut */
  .temo-flip-hint { opacity: .7; }
  .temo-back { padding: 20px 18px; }
  .temo-back-quote { font-size: .82rem; line-height: 1.7; }
}


/* ============================================================
   CONTACT — Section native thème (ACF)   classes : .ct-*
   ============================================================ */

.ct-section { background: #F8F6F0; padding: 120px 0; }
.ct-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.ct-wrap { display: grid; grid-template-columns: 2fr 3fr; gap: 64px; align-items: start; }

/* Colonne gauche */
.ct-eyebrow {
  font-size: .8rem; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: #3B82F6; margin-bottom: 12px;
}
.ct-h2 {
  font-family: var(--font-serif); font-size: 2.1rem; font-weight: 700;
  color: #0B1F3A; line-height: 1.2; margin-bottom: 16px;
}
.ct-subtitle { color: #6B7280; line-height: 1.7; margin-bottom: 36px; }
.ct-infos { display: flex; flex-direction: column; gap: 20px; }
.ct-info-item { display: flex; align-items: flex-start; gap: 16px; }
.ct-info-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.ct-info-label { font-size: .85rem; font-weight: 600; color: #0B1F3A; display: block; margin-bottom: 2px; }
.ct-info-value { font-size: .9rem; color: #6B7280; }

/* Formulaire */
.ct-form-wrap {
  background: #fff; border-radius: 24px; padding: 44px;
  box-shadow: 0 20px 60px rgba(11,31,58,.12);
}
.ct-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.ct-form-group { margin-bottom: 20px; }
.ct-label { display: block; font-size: .85rem; font-weight: 600; color: #0B1F3A; margin-bottom: 6px; }
.ct-input, .ct-select, .ct-textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid #E5E7EB;
  border-radius: 8px; font-family: var(--font-sans); font-size: .95rem;
  box-sizing: border-box; background: #fff; transition: border-color .2s;
  color: #0B1F3A;
}
.ct-input:focus, .ct-select:focus, .ct-textarea:focus { outline: none; border-color: #2563EB; }
.ct-textarea { resize: vertical; }
.ct-submit {
  width: 100%; padding: 14px 28px; border-radius: 50px;
  background: linear-gradient(135deg, #2563EB, #3B82F6);
  color: #fff; font-family: var(--font-sans); font-weight: 700;
  font-size: .95rem; border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(37,99,235,.3); transition: all .25s;
}
.ct-submit:hover {
  background: linear-gradient(135deg, #1D4ED8, #2563EB);
  transform: translateY(-1px); box-shadow: 0 6px 28px rgba(37,99,235,.4);
}
.ct-submit-note { text-align: center; font-size: .8rem; color: #9CA3AF; margin-top: 12px; }

/* Message succès */
.ct-success {
  background: #ECFDF5; border: 1.5px solid #6EE7B7; border-radius: 12px;
  padding: 20px 24px; color: #065F46; font-size: .95rem; line-height: 1.6;
  display: none; margin-bottom: 20px;
}

@media (max-width: 900px) {
  .ct-wrap { grid-template-columns: 1fr; gap: 40px; }
  .ct-section { padding: 80px 0; }
}
@media (max-width: 560px) {
  .ct-form-row { grid-template-columns: 1fr; }
  .ct-form-wrap { padding: 28px 20px; }
  .ct-container { padding: 0 24px; }
  .ct-h2 { font-size: 1.8rem; }
}

/* ======================================================
   ANIMATIONS & MICRO-INTERACTIONS
   ====================================================== */

/* ---- Keyframes ---- */
@keyframes wordIn {
  from { opacity: 0; transform: translateY(30px) translateZ(0); }
  to   { opacity: 1; transform: translateZ(0); }
}

@keyframes floatGlow {
  0%,100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(30px, -40px) scale(1.05); }
  66%      { transform: translate(-20px, 20px) scale(.97); }
}

@keyframes pawFloat {
  0%,100% { transform: translateY(0) rotate(var(--r,0deg)); opacity: var(--op,.04); }
  50%      { transform: translateY(-12px) rotate(var(--r,0deg)); opacity: calc(var(--op,.04) * 1.5); }
}

@keyframes sectionIn {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: none; }
}

@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: none; }
}

@keyframes fadeSlideRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: none; }
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(24px) scale(.97); }
  to   { opacity: 1; transform: none; }
}

@keyframes ctaPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(255,255,255,.15); }
  50%      { box-shadow: 0 4px 32px rgba(255,255,255,.35); }
}

/* ---- Hero : glow flottant ---- */
.hr-glow {
  animation: floatGlow 12s ease-in-out infinite !important;
  will-change: transform;
  transform: translateZ(0);
}

/* ---- Hero title : animation mot par mot ---- */
.hr-h1 .word {
  display: inline-block;
  opacity: 0;
  animation: wordIn .65s cubic-bezier(.22,.61,.36,1) forwards;
}
.hr-h1 em .word {
  background: linear-gradient(90deg, #93C5FD, #BFDBFE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Hero badge + sous-titre fade-in ---- */
.hr-badge  { opacity: 0; animation: wordIn .6s .05s cubic-bezier(.22,.61,.36,1) forwards; }
.hr-sub    { opacity: 0; animation: sectionIn .7s .55s ease forwards; }
.hr-author { opacity: 0; animation: sectionIn .6s .75s ease forwards; }
.hr-ctas   { opacity: 0; animation: sectionIn .6s .9s  ease forwards; }
.hr-stats  { opacity: 0; animation: sectionIn .7s 1.1s ease forwards; }

/* ---- Patounes décoratives (fond hero) ---- */
.hr-paws {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1; overflow: hidden;
}
.hr-paws .p {
  position: absolute;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cellipse cx='50' cy='66' rx='22' ry='18' fill='white'/%3E%3Cellipse cx='18' cy='42' rx='9' ry='12' transform='rotate(-12,18,42)' fill='white'/%3E%3Cellipse cx='36' cy='28' rx='9' ry='12' fill='white'/%3E%3Cellipse cx='64' cy='28' rx='9' ry='12' fill='white'/%3E%3Cellipse cx='82' cy='42' rx='9' ry='12' transform='rotate(12,82,42)' fill='white'/%3E%3C/svg%3E") center/contain no-repeat;
  animation: pawFloat 8s ease-in-out infinite;
  will-change: transform, opacity;
  transform: translateZ(0);
}

/* ---- Patoune inline dorée (eyebrows, bullets) ---- */
.patte {
  display: inline-block;
  width: 13px; height: 13px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cellipse cx='50' cy='66' rx='22' ry='18' fill='%23C4933F'/%3E%3Cellipse cx='18' cy='42' rx='9' ry='12' transform='rotate(-12,18,42)' fill='%23C4933F'/%3E%3Cellipse cx='36' cy='28' rx='9' ry='12' fill='%23C4933F'/%3E%3Cellipse cx='64' cy='28' rx='9' ry='12' fill='%23C4933F'/%3E%3Cellipse cx='82' cy='42' rx='9' ry='12' transform='rotate(12,82,42)' fill='%23C4933F'/%3E%3C/svg%3E") center/contain no-repeat;
  vertical-align: middle;
  margin-right: 7px;
  opacity: .75;
  flex-shrink: 0;
}
.patte-sm {
  width: 10px; height: 10px;
  margin-right: 5px;
  opacity: .6;
}
.patte-white {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cellipse cx='50' cy='66' rx='22' ry='18' fill='white'/%3E%3Cellipse cx='18' cy='42' rx='9' ry='12' transform='rotate(-12,18,42)' fill='white'/%3E%3Cellipse cx='36' cy='28' rx='9' ry='12' fill='white'/%3E%3Cellipse cx='64' cy='28' rx='9' ry='12' fill='white'/%3E%3Cellipse cx='82' cy='42' rx='9' ry='12' transform='rotate(12,82,42)' fill='white'/%3E%3C/svg%3E");
}

/* ---- Section reveal au scroll ---- */
.cha-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s ease, transform .75s ease;
  will-change: opacity, transform;
}
.cha-reveal.cha-visible { opacity: 1; transform: translateZ(0); will-change: auto; }

.cha-reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity .75s ease, transform .75s ease;
  will-change: opacity, transform;
}
.cha-reveal-left.cha-visible { opacity: 1; transform: translateZ(0); will-change: auto; }

.cha-reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity .75s ease, transform .75s ease;
  will-change: opacity, transform;
}
.cha-reveal-right.cha-visible { opacity: 1; transform: translateZ(0); will-change: auto; }

/* Stagger automatique pour les cartes */
.cha-card-anim {
  opacity: 0;
  transform: translateY(24px) scale(.97);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.cha-card-anim.cha-visible { opacity: 1; transform: translateZ(0); will-change: auto; }

/* ---- Hover micro-interactions ---- */
.cha-card {
  transition: transform .3s ease, box-shadow .3s ease !important;
}
.cha-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 48px rgba(11,31,58,.12) !important;
}


.cha-acc-item {
  transition: box-shadow .3s ease !important;
}
.cha-acc-item:hover {
  box-shadow: 0 4px 24px rgba(37,99,235,.08) !important;
}

/* ---- CTA button pulse ---- */
.cta-btn {
  animation: ctaPulse 2.8s ease-in-out infinite;
}

/* ---- Patounes décoratives dans la bannière CTA ---- */
.cta-section {
  position: relative;
  overflow: hidden;
}
.cta-section::before,
.cta-section::after {
  content: '';
  position: absolute;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cellipse cx='50' cy='66' rx='22' ry='18' fill='white'/%3E%3Cellipse cx='18' cy='42' rx='9' ry='12' transform='rotate(-12,18,42)' fill='white'/%3E%3Cellipse cx='36' cy='28' rx='9' ry='12' fill='white'/%3E%3Cellipse cx='64' cy='28' rx='9' ry='12' fill='white'/%3E%3Cellipse cx='82' cy='42' rx='9' ry='12' transform='rotate(12,82,42)' fill='white'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: .05;
  pointer-events: none;
}
.cta-section::before {
  width: 160px; height: 160px;
  bottom: -30px; left: 60px;
  transform: rotate(-25deg);
}
.cta-section::after {
  width: 100px; height: 100px;
  top: -10px; right: 80px;
  transform: rotate(20deg);
}

/* ---- Stagger delays section headers ---- */
.ap-h2.cha-reveal,
.prest-h2.cha-reveal,
.temo-h2.cha-reveal   { transition-delay: .12s; }

.ap-subtitle.cha-reveal,
.prest-subtitle.cha-reveal,
.temo-subtitle.cha-reveal { transition-delay: .22s; }

.cta-section .cta-sub.cha-reveal { transition-delay: .15s; }
.cta-section .cta-btn.cha-reveal { transition-delay: .3s; }

/* ---- Respect reduced motion preference ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .cha-reveal, .cha-reveal-left, .cha-reveal-right, .cha-card-anim {
    opacity: 1 !important; transform: none !important;
  }
  .hr-glow { display: none; }
  .hr-paws .p { display: none; }
}

/* ---- Active nav link indicator ---- */
.nav-link.active-link {
  color: var(--white) !important;
  background: rgba(255,255,255,.12);
}

/* ===================================================
   LOGO NAVBAR
   =================================================== */
.nav-logo-img {
  height: 150px;
  width: 150px;
  max-width: 150px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

/* ===================================================
   TÉMOIGNAGES — Avatar photo
   =================================================== */
.temo-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
}
.temo-avatar img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(196,147,63,.3);
}
.temo-avatar svg {
  opacity: .45;
  color: #9CA3AF;
}

/* ===================================================
   SECTION AVIS GOOGLE (GMB)
   =================================================== */
.gmb-section {
  background: #FFFFFF;
  padding: 100px 0;
}
.gmb-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.gmb-eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: #2563EB;
  margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center; gap: 7px;
}
.gmb-h2 {
  font-family: var(--font-serif); font-size: 2.4rem; font-weight: 700;
  color: #0B1F3A; line-height: 1.2; margin-bottom: 16px;
}
.gmb-subtitle {
  color: #6B7280; font-size: .95rem; line-height: 1.7;
  margin-bottom: 48px;
}
.gmb-rating-block {
  display: inline-flex; align-items: center; gap: 28px;
  background: #fff; border-radius: 20px;
  padding: 28px 40px;
  box-shadow: 0 4px 30px rgba(11,31,58,.08);
  margin-bottom: 36px;
  flex-wrap: wrap; justify-content: center;
}
.gmb-google-logo { flex-shrink: 0; }
.gmb-score { text-align: center; }
.gmb-score-number {
  font-family: var(--font-serif); font-size: 2.8rem; font-weight: 700;
  color: #0B1F3A; line-height: 1;
  margin-bottom: 6px;
}
.gmb-stars-row {
  display: flex; align-items: center; justify-content: center; gap: 2px;
  margin-bottom: 4px;
}
.gmb-count {
  font-size: .78rem; color: #9CA3AF; font-weight: 500;
}
.gmb-cta-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: #0B1F3A; color: #fff;
  padding: 12px 24px; border-radius: 50px;
  font-size: .85rem; font-weight: 700; text-decoration: none;
  font-family: var(--font-sans); transition: background .2s, transform .2s;
  white-space: nowrap;
}
.gmb-cta-btn:hover {
  background: #2563EB; color: #fff; transform: translateY(-2px);
}
.gmb-cta-btn svg { transition: transform .2s; }
.gmb-cta-btn:hover svg { transform: translateX(3px); }
.gmb-embed-wrap {
  margin-top: 36px;
  min-height: 60px;
}
@media (max-width: 600px) {
  .gmb-section { padding: 70px 0; }
  .gmb-container { padding: 0 24px; }
  .gmb-h2 { font-size: 1.8rem; }
  .gmb-rating-block { padding: 20px 24px; gap: 20px; }
  .gmb-score-number { font-size: 2.2rem; }
}

/* ===================================================
   CTA BUTTON — flèche (pour .cta-btn)
   =================================================== */
.cta-btn {
  display: inline-flex;
  align-items: center;
}

/* ===================================================
   HR-BTN-S — flèche hover
   =================================================== */
.hr-btn-s svg { transition: transform .2s; }
.hr-btn-s:hover svg { transform: translateX(3px); }

/* ===================================================
   PAGE MÉTIER & SAVOIR-FAIRE
   =================================================== */

/* Hero */
.met-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background: #0B1F3A;
  padding: 120px 40px 80px;
  overflow: hidden;
}
/* Gradient en haut pour lisibilité navbar */
.met-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to bottom,
    rgba(11,31,58,.75) 0%,
    rgba(11,31,58,.3) 50%,
    transparent 100%);
  z-index: 2;
  pointer-events: none;
}
.met-hero--img .met-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.met-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,31,58,.88) 0%, rgba(11,31,58,.5) 100%);
}
.met-hero-content {
  position: relative; z-index: 2;
  max-width: 720px; margin: 0 auto;
  text-align: center; color: #fff;
}
.met-breadcrumb {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .78rem; color: rgba(255,255,255,.6);
  margin-bottom: 20px;
  font-family: var(--font-sans);
}
.met-breadcrumb a { color: rgba(255,255,255,.6); text-decoration: none; }
.met-breadcrumb a:hover { color: #fff; }
.met-hero-title {
  font-family: var(--font-serif); font-size: clamp(2rem,4vw,3.2rem);
  font-weight: 700; line-height: 1.18; margin-bottom: 18px;
}
.met-hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.82);
  line-height: 1.7; margin-bottom: 32px; max-width: 580px; margin-left: auto; margin-right: auto;
}

/* Layout commun */
.met-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.met-eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: #2563EB;
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 7px;
}
.met-h2 {
  font-family: var(--font-serif); font-size: clamp(1.8rem,3vw,2.5rem);
  font-weight: 700; color: #0B1F3A; line-height: 1.2;
  margin-bottom: 28px;
}
.met-text {
  color: #374151; line-height: 1.8; font-size: .97rem;
  margin-bottom: 16px;
}

/* ---- Patounes décoratives — Page Métier ---- */
/* SVG paw navy encodé */
.met-def-section,
.met-diff-section,
.met-form-section,
.met-esp-section {
  position: relative;
  overflow: hidden;
}

/* Paw SVG navy : %230B1F3A — gold : %23C4933F */
.met-def-section::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -20px;
  width: 200px; height: 200px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cellipse cx='50' cy='66' rx='22' ry='18' fill='%230B1F3A'/%3E%3Cellipse cx='18' cy='42' rx='9' ry='12' transform='rotate(-12,18,42)' fill='%230B1F3A'/%3E%3Cellipse cx='36' cy='28' rx='9' ry='12' fill='%230B1F3A'/%3E%3Cellipse cx='64' cy='28' rx='9' ry='12' fill='%230B1F3A'/%3E%3Cellipse cx='82' cy='42' rx='9' ry='12' transform='rotate(12,82,42)' fill='%230B1F3A'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: .035;
  pointer-events: none;
  transform: rotate(20deg);
}

.met-diff-section::before {
  content: '';
  position: absolute;
  top: 30px; left: -30px;
  width: 180px; height: 180px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cellipse cx='50' cy='66' rx='22' ry='18' fill='%230B1F3A'/%3E%3Cellipse cx='18' cy='42' rx='9' ry='12' transform='rotate(-12,18,42)' fill='%230B1F3A'/%3E%3Cellipse cx='36' cy='28' rx='9' ry='12' fill='%230B1F3A'/%3E%3Cellipse cx='64' cy='28' rx='9' ry='12' fill='%230B1F3A'/%3E%3Cellipse cx='82' cy='42' rx='9' ry='12' transform='rotate(12,82,42)' fill='%230B1F3A'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: .045;
  pointer-events: none;
  transform: rotate(-30deg);
}
.met-diff-section::after {
  content: '';
  position: absolute;
  bottom: -20px; right: 5%;
  width: 120px; height: 120px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cellipse cx='50' cy='66' rx='22' ry='18' fill='%230B1F3A'/%3E%3Cellipse cx='18' cy='42' rx='9' ry='12' transform='rotate(-12,18,42)' fill='%230B1F3A'/%3E%3Cellipse cx='36' cy='28' rx='9' ry='12' fill='%230B1F3A'/%3E%3Cellipse cx='64' cy='28' rx='9' ry='12' fill='%230B1F3A'/%3E%3Cellipse cx='82' cy='42' rx='9' ry='12' transform='rotate(12,82,42)' fill='%230B1F3A'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: .03;
  pointer-events: none;
  transform: rotate(15deg);
}

.met-form-section::before {
  content: '';
  position: absolute;
  top: -20px; right: 8%;
  width: 160px; height: 160px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cellipse cx='50' cy='66' rx='22' ry='18' fill='%23C4933F'/%3E%3Cellipse cx='18' cy='42' rx='9' ry='12' transform='rotate(-12,18,42)' fill='%23C4933F'/%3E%3Cellipse cx='36' cy='28' rx='9' ry='12' fill='%23C4933F'/%3E%3Cellipse cx='64' cy='28' rx='9' ry='12' fill='%23C4933F'/%3E%3Cellipse cx='82' cy='42' rx='9' ry='12' transform='rotate(12,82,42)' fill='%23C4933F'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: .06;
  pointer-events: none;
  transform: rotate(-18deg);
}
.met-form-section::after {
  content: '';
  position: absolute;
  bottom: -30px; left: 3%;
  width: 140px; height: 140px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cellipse cx='50' cy='66' rx='22' ry='18' fill='%230B1F3A'/%3E%3Cellipse cx='18' cy='42' rx='9' ry='12' transform='rotate(-12,18,42)' fill='%230B1F3A'/%3E%3Cellipse cx='36' cy='28' rx='9' ry='12' fill='%230B1F3A'/%3E%3Cellipse cx='64' cy='28' rx='9' ry='12' fill='%230B1F3A'/%3E%3Cellipse cx='82' cy='42' rx='9' ry='12' transform='rotate(12,82,42)' fill='%230B1F3A'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: .04;
  pointer-events: none;
  transform: rotate(25deg);
}

.met-esp-section::before {
  content: '';
  position: absolute;
  top: 20px; right: -20px;
  width: 150px; height: 150px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cellipse cx='50' cy='66' rx='22' ry='18' fill='%23C4933F'/%3E%3Cellipse cx='18' cy='42' rx='9' ry='12' transform='rotate(-12,18,42)' fill='%23C4933F'/%3E%3Cellipse cx='36' cy='28' rx='9' ry='12' fill='%23C4933F'/%3E%3Cellipse cx='64' cy='28' rx='9' ry='12' fill='%23C4933F'/%3E%3Cellipse cx='82' cy='42' rx='9' ry='12' transform='rotate(12,82,42)' fill='%23C4933F'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: .055;
  pointer-events: none;
  transform: rotate(-22deg);
}

/* Section définition */
.met-def-section {
  background: #EFF6FF;
  padding: 100px 0;
}
.met-def-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.met-def-photo {
  width: 100%; border-radius: 20px;
  object-fit: cover; aspect-ratio: 3/4;
  box-shadow: 0 12px 40px rgba(11,31,58,.12);
}
.met-def-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: #F8F6F0; border-radius: 20px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  color: #9CA3AF; font-size: .85rem;
  border: 2px dashed rgba(196,147,63,.3);
}

/* Section différence */
.met-diff-section {
  background: #EFF6FF;
  padding: 100px 0;
}
.met-diff-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; margin-top: 48px;
}
.met-diff-card {
  background: #fff; border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(11,31,58,.06);
}
.met-diff-behav { border-top: 4px solid #2563EB; }
.met-diff-dress  { border-top: 4px solid #E5E7EB; }
.met-diff-emo    { border-top: 4px solid #C4933F; grid-column: 1 / -1; max-width: calc(50% - 14px); margin: 0 auto; }
.met-diff-emo .met-diff-badge { color: #C4933F; }
.met-diff-emo .met-diff-list li::before { color: #C4933F; }
@media (max-width: 768px) { .met-diff-emo { max-width: none; grid-column: auto; } }
.met-diff-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 20px;
  color: #374151;
}
.met-diff-behav .met-diff-badge { color: #2563EB; }
.met-diff-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.met-diff-list li {
  font-size: .9rem; color: #4B5563; line-height: 1.55;
  padding-left: 18px; position: relative;
}
.met-diff-list li::before {
  content: "–"; position: absolute; left: 0; color: #9CA3AF;
}
.met-diff-behav .met-diff-list li::before { content: "✓"; color: #2563EB; font-weight: 700; }

/* Section formation */
.met-form-section {
  background: #F8F6F0;
  padding: 100px 0;
}
.met-form-list {
  list-style: none; padding: 0; margin: 48px auto 0;
  max-width: 680px;
  display: flex; flex-direction: column; gap: 16px;
}
.met-form-item {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border-radius: 14px;
  padding: 18px 24px;
  font-size: .95rem; color: #374151;
  box-shadow: 0 2px 12px rgba(11,31,58,.05);
  font-family: var(--font-sans);
}
.met-form-check {
  width: 32px; height: 32px; flex-shrink: 0;
  background: #2563EB; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}

/* Section espèces */
.met-esp-section {
  background: #fff;
  padding: 100px 0;
}
.met-esp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 48px;
}
.met-esp-card {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(11,31,58,.08);
  background: #F8F6F0;
  transition: transform .3s ease, box-shadow .3s ease;
}
.met-esp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(11,31,58,.14);
}
.met-esp-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #EFF6FF;
  display: flex; align-items: center; justify-content: center;
}
.met-esp-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.met-esp-card:hover .met-esp-img-wrap img { transform: scale(1.05); }
.met-esp-icon { font-size: 3rem; }
.met-esp-body { padding: 20px; }
.met-esp-title {
  font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700;
  color: #0B1F3A; margin-bottom: 8px;
}
.met-esp-desc {
  font-size: .87rem; color: #6B7280; line-height: 1.6;
}

/* ── Section Partenaires ── */
.part-section {
  background: #EFF6FF;
  padding: 100px 0;
}
.part-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.part-header {
  text-align: center;
  margin-bottom: 48px;
}
.part-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #2563EB;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.part-h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
}
.part-subtitle {
  color: #6B7280;
  font-size: .95rem;
  max-width: 600px;
  margin: 0 auto;
}
.part-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.part-card {
  background: #F8F6F0;
  border: 1px solid rgba(11,31,58,.08);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  width: 200px;
  height: 140px;
}
.part-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(11,31,58,.1);
  border-color: rgba(196,147,63,.3);
}
.part-card img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter .3s;
}
.part-card:hover img {
  filter: grayscale(0%);
}
/* Responsive */
@media (max-width: 900px) {
  .part-grid { gap: 16px; }
  .part-section { padding: 70px 0; }
  .part-container { padding: 0 24px; }
}
@media (max-width: 560px) {
  .part-card { width: 160px; height: 110px; padding: 20px 16px; }
  .part-card img { max-height: 60px; }
}

/* Responsive page Métier */
@media (max-width: 900px) {
  .met-def-grid  { grid-template-columns: 1fr; }
  .met-diff-grid { grid-template-columns: 1fr; }
  .met-esp-grid  { grid-template-columns: repeat(2, 1fr); }
  .met-hero { padding: 100px 24px 60px; }
  .met-container { padding: 0 24px; }
  .met-def-section,
  .met-diff-section,
  .met-form-section,
  .met-esp-section { padding: 70px 0; }
}
@media (max-width: 560px) {
  .met-esp-grid { grid-template-columns: 1fr; }
  .met-diff-grid { gap: 16px; }
}


/* ================================================================
   RESPONSIVE MOBILE — Corrections complètes
   ================================================================ */

/* ---- TÉMOIGNAGES : fixes mobiles critiques ---- */
@media (max-width: 768px) {
  .temo-card {
    overflow-wrap: break-word;
    word-break: break-word;
  }
  /* Un seul grid, 1 colonne */
  .temo-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }
  .temo-card { padding: 28px 20px; }
}

/* ---- NAVBAR : logo compact sur mobile ---- */
@media (max-width: 768px) {
  .nav-logo-img {
    height: 44px;
    width: auto;
    max-width: 140px;
  }
  .nav-logo {
    gap: 8px;
  }
  .logo-text {
    font-size: 1rem;
  }
}

/* ---- HERO BADGE : empêcher le débordement horizontal ---- */
@media (max-width: 768px) {
  .hr-badge {
    white-space: normal;
    text-align: center;
    letter-spacing: .06em;
    max-width: 100%;
  }
}

/* ---- FOOTER : padding réduit sur mobile ---- */
@media (max-width: 768px) {
  .footer { padding: 56px 0 0; }
  .footer-grid { gap: 24px; padding-bottom: 40px; }
}

/* ---- HERO : boutons CTA colonne + pleine largeur sur petit écran ---- */
@media (max-width: 520px) {
  .hr-ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hr-btn-p,
  .hr-btn-s {
    justify-content: center;
    text-align: center;
    padding: 14px 20px;
    font-size: .95rem;
  }
}

/* ---- HERO STATS : padding compact sur mobile étroit ---- */
@media (max-width: 480px) {
  .hr-stats { padding: 20px 16px; }
  .hr-stat-val { font-size: 1.75rem; }
  .hr-stat { padding: 4px 10px; }
}

/* ---- CTA BANNER : bouton pleine largeur sur mobile ---- */
@media (max-width: 520px) {
  .cta-btn {
    display: flex;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
}

/* ---- GMB : bloc rating empilé sur mobile ---- */
@media (max-width: 520px) {
  .gmb-rating-block {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 24px 20px;
    box-sizing: border-box;
  }
  .gmb-cta-btn {
    width: 100%;
    justify-content: center;
  }
  .gmb-h2 { font-size: 1.7rem; }
}

/* ---- ACCORDION : très petits écrans ---- */
@media (max-width: 400px) {
  .cha-acc-hd { padding: 14px 16px; gap: 10px; }
  .cha-acc-num { min-width: 36px; height: 36px; font-size: .8rem; }
  .cha-acc-title { font-size: .92rem; }
  .cha-acc-cols { padding: 16px; }
  .cha-acc-img-wrap { height: 160px; }
}

/* ---- ABOUT : rôles empilés sur petit écran ---- */
@media (max-width: 400px) {
  .ab-roles { grid-template-columns: 1fr; }
}

/* ---- PAGE MÉTIER : ajustements très petit écran ---- */
@media (max-width: 480px) {
  .met-hero { padding: 90px 20px 48px; }
  .met-hero-title { font-size: 1.8rem; }
  .met-hero-sub { font-size: .95rem; }
  .met-form-item { padding: 14px 16px; font-size: .9rem; }
  .met-form-check { width: 28px; height: 28px; }
  .met-h2 { font-size: 1.7rem; }
}

/* ---- TRÈS PETITS ÉCRANS (< 380px — iPhone SE, ancien) ---- */
@media (max-width: 380px) {
  .nav-logo-img { height: 80px; width: 80px; max-width: 80px; }
  .logo-text { font-size: .88rem; }
  .hr-h1 { font-size: 1.85rem; }
  .hr-sub { font-size: .95rem; }
  .hr-badge { font-size: .65rem; padding: 6px 14px; }
  .hr-main { padding-top: 88px; }
  .ab-h2 { font-size: 1.6rem; }
  .ct-h2 { font-size: 1.65rem; }
  .temo-h2 { font-size: 1.75rem; }
  .prest-h2 { font-size: 1.75rem; }
  .cta-h2 { font-size: 1.65rem; }
  .gmb-h2 { font-size: 1.65rem; }
}


/* ============================================================
   PAGE 404   classes : .e404-*
   ============================================================ */

.page-404 { background: #0B1F3A; }

.e404-section {
  min-height: 100vh;
  background: #0B1F3A;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 140px 24px 80px;
}

.e404-bg-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.e404-glow {
  position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.12) 0%, transparent 65%);
  top: 50%; left: 50%; transform: translate(-50%, -55%);
  pointer-events: none;
}

.e404-container {
  position: relative; z-index: 2;
  text-align: center; max-width: 560px; margin: 0 auto;
}

.e404-paws {
  display: flex; justify-content: center; gap: 18px;
  margin-bottom: 32px;
}
.e404-paws span {
  display: inline-block;
  width: 28px; height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cellipse cx='32' cy='50' rx='14' ry='10' fill='%23C4933F' opacity='.35'/%3E%3Ccircle cx='16' cy='28' r='7' fill='%23C4933F' opacity='.35'/%3E%3Ccircle cx='48' cy='28' r='7' fill='%23C4933F' opacity='.35'/%3E%3Ccircle cx='24' cy='18' r='6' fill='%23C4933F' opacity='.35'/%3E%3Ccircle cx='40' cy='18' r='6' fill='%23C4933F' opacity='.35'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
  opacity: .6;
}
.e404-paws span:nth-child(2) { transform: translateY(8px); }

.e404-code {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 18vw, 9rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #C4933F 0%, #e8b96a 50%, #C4933F 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.e404-h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.25;
}

.e404-sub {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 44px;
}

.e404-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #2563EB, #1D4ED8);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  box-shadow: 0 6px 24px rgba(37,99,235,.35);
  transition: transform .2s ease, box-shadow .2s ease;
}
.e404-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37,99,235,.5);
  color: #fff;
}

@media (max-width: 520px) {
  .e404-section { padding: 120px 20px 60px; }
  .e404-btn { width: 100%; justify-content: center; }
}


/* ============================================================
   ABOUT — VARIANTE B : Immersive (fond sombre)   .abv2-*
   ============================================================ */

.abv2-section {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.abv2-section::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.abv2-container {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  position: relative; z-index: 1;
}
.abv2-wrap {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 70px;
  align-items: stretch;
}

/* Gauche : texte */
.abv2-eyebrow {
  font-size: .75rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.abv2-h2 {
  font-family: var(--font-serif); font-size: 2.1rem; font-weight: 700;
  color: #fff; line-height: 1.2; margin-bottom: 24px;
}
.abv2-intro {
  font-size: 1rem; font-weight: 600; color: rgba(255,255,255,.85);
  line-height: 1.6; margin-bottom: 16px;
}
.abv2-text {
  font-size: .92rem; color: rgba(255,255,255,.6); line-height: 1.75; margin-bottom: 16px;
}
.abv2-quote {
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,.04);
  padding: 14px 20px; border-radius: 0 10px 10px 0;
  margin: 20px 0 28px;
}
.abv2-quote p {
  font-family: var(--font-serif); font-size: 1rem; font-style: italic;
  color: rgba(255,255,255,.85); line-height: 1.6; margin: 0;
}
.abv2-left {
  display: flex;
  flex-direction: column;
}
.abv2-roles {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 32px;
}
.abv2-role-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 18px 16px;
}
.abv2-role-icon { font-size: 1.4rem; margin-bottom: 8px; }
.abv2-role-name {
  font-size: .8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: var(--gold-light); margin-bottom: 6px;
}
.abv2-role-desc { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.5; }
.abv2-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy);
  padding: 13px 28px; border-radius: 50px;
  font-size: .9rem; font-weight: 700; text-decoration: none;
  font-family: var(--font-sans); transition: background .2s, transform .2s;
}
.abv2-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Droite : photo + parcours */
.abv2-right {
  display: flex;
  flex-direction: column;
}
.abv2-photo-frame {
  position: relative; border-radius: 20px; overflow: hidden;
  flex: 1; margin-bottom: 16px; min-height: 300px;
}
.abv2-photo-frame picture { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.abv2-photo-frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block;
  position: absolute; inset: 0;
}
.abv2-photo-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(11,31,58,.5) 100%);
}
.abv2-creds {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 18px 20px;
  display: flex; flex-direction: column; gap: 10px;
}

@media (max-width: 960px) {
  .abv2-wrap { grid-template-columns: 1fr; gap: 40px; align-items: start; }
  .abv2-right { flex-direction: column; }
  .abv2-photo-frame { flex: none; aspect-ratio: 16/9; max-height: 340px; }
  .abv2-cta-group { margin-top: 28px; }
  .abv2-section { padding: 70px 0; }
}
@media (max-width: 560px) {
  .abv2-container { padding: 0 24px; }
  .abv2-roles { grid-template-columns: 1fr; }
  .abv2-h2 { font-size: 1.75rem; }
}


/* ============================================================
   NAVBAR — VARIANTE C : Glassmorphism permanent   .nav-v3
   ============================================================ */

.nav-v3 {
  background: rgba(11,31,58,.42) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.nav-v3.scrolled {
  background: rgba(11,31,58,.78) !important;
  border-bottom-color: rgba(255,255,255,.06);
}




/* ===================================================================
   STYLES NOUVELLES FONCTIONNALITÉS — v11 (2026-03-13)
   =================================================================== */

/* ── Hero badge mis en avant ─────────────────────────────────── */
.hr-badge-prominent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,147,63,.18);
  border: 1.5px solid rgba(196,147,63,.55);
  color: #E8B96A;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  padding: 9px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
  text-transform: uppercase;
}
.hr-badge-prominent svg { opacity: .8; }

/* ── Séparateur hero → about ─────────────────────────────────── */

.abv2-section { background: var(--navy, #0B1F3A); }

/* ── About Variant B — CTA group ────────────────────────────── */
.abv2-cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: auto;
  padding-top: 28px;
}
.abv2-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  align-self: stretch;
  background: #2563EB;
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  padding: 15px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(37,99,235,.35);
}
.abv2-cta-primary:hover {
  background: #1D4ED8;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,99,235,.45);
}
.abv2-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: stretch;
  border: 1.5px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.8);
  font-size: .88rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 50px;
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}
.abv2-cta-secondary:hover {
  border-color: rgba(196,147,63,.7);
  color: #E8B96A;
  background: rgba(196,147,63,.07);
}

/* ── About Variant B — Certifications grille compacte ───────── */
.abv2-creds {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 18px;
  margin-top: 20px;
}
.abv2-creds-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  color: rgba(196,147,63,.9);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.abv2-certs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.abv2-cert-badge {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 9px 10px;
}
.abv2-cert-icon { font-size: .95rem; flex-shrink: 0; margin-top: 1px; line-height: 1; }
.abv2-cert-text { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.abv2-cert-text strong { font-size: .74rem; color: rgba(255,255,255,.9); font-weight: 600; line-height: 1.3; }
.abv2-cert-text em { font-size: .66rem; color: rgba(255,255,255,.45); font-style: normal; }

/* ── Footer logo ─────────────────────────────────────────────── */
.footer-logo-img {
  height: 80px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  margin-bottom: 4px;
}


/* ── CTA — Groupe de boutons ─────────────────────────────────── */
.cta-btns-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Responsive — Corrections générales ─────────────────────── */

/* Navbar : éviter que le CTA se casse */
@media (max-width: 1100px) {
  .nav-links { gap: 16px; }
  .nav-links li:last-child .nav-cta { padding: 8px 14px; font-size: .82rem; white-space: nowrap; }
  .nav-logo-img { height: 120px; width: 120px; max-width: 120px; }
}
@media (max-width: 900px) {
  .nav-container { padding: 0 20px; }
  .nav-logo-img { height: 70px; width: 70px; max-width: 70px; }
}

/* Hero responsive fixes */
@media (max-width: 768px) {
  .hr { min-height: 100svh; padding: 100px 20px 80px; }
  .hr-main { padding: 0; }
  .hr-h1 { font-size: clamp(1.8rem, 6vw, 2.8rem); }
  .hr-sub { font-size: .9rem; }
  .hr-stats { padding: 0 20px 24px; }
  .hr-stats-inner { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .hr-img { display: none; }
  .hr-divider-svg { display: none; }
  .hr-badge-prominent { font-size: .72rem; padding: 7px 14px; }
}

/* About immersive responsive */
@media (max-width: 768px) {
  .abv2-wrap { flex-direction: column; gap: 40px; }
  .abv2-left, .abv2-right { width: 100%; }
  .abv2-cta-group { flex-direction: column; align-items: stretch; }
}

/* CTA groupe responsive */
@media (max-width: 640px) {
  .cta-btns-group { flex-direction: column; align-items: stretch; }
  .cta-btns-group .cta-btn { justify-content: center; }
}

/* Footer logo responsive */
@media (max-width: 768px) {
  .footer-logo-img { height: 60px; }
}

/* Fix global : images ne débordent pas de leur conteneur */
img { max-width: 100%; height: auto; }
.hr-img img, .abv2-photo-frame img { max-width: 100%; object-fit: cover; }

/* Fix textes qui débordent sur images */
.temo-back-quote,
.abv2-text, .abv2-intro {
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Fix CTA navbar sur desktop intermédiaire */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-links { flex-wrap: nowrap; gap: 12px; }
  .nav-link { font-size: .82rem; }
  .nav-cta { padding: 7px 12px !important; font-size: .8rem !important; }
}

/* ── Hero GMB mini-badge ── */
.hr-gmb-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  flex-wrap: wrap;
}
.hr-gmb-stars {
  color: #FBBC05;
  font-size: 13px;
  letter-spacing: 1px;
}
.hr-gmb-score {
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.hr-gmb-sep {
  color: rgba(255,255,255,0.35);
}
.hr-gmb-link {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  transition: color .2s, border-color .2s;
}
.hr-gmb-link:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

/* ============================================================
   RESPONSIVE GLOBAL — REFONTE COMPLÈTE 2026-03-13
   ============================================================ */

/* ── Patounes : légèrement plus grandes ── */
.patte {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px;
}
.patte-sm {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
}

/* ── Navbar : burger dès 960px (tablette) ── */
@media (max-width: 960px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%; bottom: 0;
    width: 280px;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 32px;
    gap: 4px;
    transition: right var(--transition);
    box-shadow: -20px 0 60px rgba(0,0,0,.3);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-link { padding: 12px 0; font-size: 1rem; width: 100%; }
  .nav-cta {
    margin-top: 20px; width: 100%; text-align: center;
    justify-content: center; padding: 16px 28px;
    font-size: 1rem; border-radius: 50px; display: flex;
  }
  .nav-toggle { display: flex !important; z-index: 1000; }
  /* Annuler les hacks tablette précédents */
  .nav-links { flex-wrap: unset; gap: unset; }
  .nav-link { font-size: 1rem; }
}
/* Desktop : masquer toggle + liens visibles */
@media (min-width: 961px) {
  .nav-toggle { display: none !important; }
  .nav-links {
    position: static; flex-direction: row;
    width: auto; background: transparent;
    box-shadow: none; padding: 0;
    gap: 8px; transition: none;
  }
  .nav-link { padding: 8px 10px; font-size: .88rem; }
}
@media (min-width: 961px) and (max-width: 1200px) {
  .nav-links { gap: 4px; }
  .nav-link { font-size: .83rem; padding: 8px 8px; }
  .nav-cta { padding: 8px 14px !important; font-size: .83rem !important; }
  .nav-logo-img { height: 100px !important; width: 100px !important; max-width: 100px !important; }
}

/* ── Hero : badge Google + espacement + centrage mobile ── */
.hr-gmb-badge { margin-top: 24px; }

@media (max-width: 768px) {
  .hr-left { align-items: center; text-align: center; }
  .hr-badge-prominent { align-self: center; }
  .hr-h1 { text-align: center; }
  .hr-sub, .hr-author { text-align: center; }
  .hr-ctas { justify-content: center; flex-wrap: wrap; }
  .hr-gmb-badge { justify-content: center; }
}

/* ── About immersive : desktop ── */
.abv2-mobile-photo { display: none; }
.abv2-photo-desktop { display: block; }
.abv2-creds-mobile { display: none; }
.abv2-creds-desktop { display: block; }

/* ── About : responsive tablette/mobile ── */
@media (max-width: 960px) {
  .abv2-wrap {
    display: flex !important;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  /* Photo mobile : apparaît avant le texte */
  .abv2-mobile-photo {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    max-height: 320px;
    margin-bottom: 32px;
    position: relative;
  }
  .abv2-mobile-photo img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    display: block;
  }
  /* Colonne gauche : texte complet */
  .abv2-left { width: 100%; }
  /* Colonne droite : uniquement certifications desktop → masquées */
  .abv2-right { width: 100%; }
  .abv2-photo-desktop { display: none !important; }
  .abv2-creds-desktop { display: none !important; }
  /* Certifications accordéon mobile → visible */
  .abv2-creds-mobile { display: block !important; margin-top: 24px; }
  .abv2-right { display: none !important; }
  /* Roles : 1 colonne */
  .abv2-roles { grid-template-columns: 1fr; }
  /* CTAs : full width */
  .abv2-cta-group { flex-direction: column; align-items: stretch; }
  .abv2-cta-primary, .abv2-cta-secondary { align-self: stretch; justify-content: center; }
  .abv2-section { padding: 60px 0; }
  .abv2-container { padding: 0 20px; }
  .abv2-h2 { font-size: 1.75rem; }
}

/* ── About accordéon certifications (mobile) ── */
.abv2-creds-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  padding: 14px 18px;
  color: rgba(255,255,255,.9);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  cursor: pointer;
  font-family: var(--font-sans);
  margin-bottom: 0;
  transition: background .2s;
}
.abv2-creds-toggle:hover { background: rgba(255,255,255,.12); }
.abv2-toggle-arrow { margin-left: auto; transition: transform .3s; }
.abv2-creds-toggle[aria-expanded="true"] .abv2-toggle-arrow { transform: rotate(180deg); }

.abv2-certs-collapsible {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  margin-top: 0;
}
.abv2-certs-collapsible.open {
  max-height: 600px;
  margin-top: 12px;
}

/* ── Hero GMB badge : espacement supplémentaire ── */
@media (max-width: 960px) {
  .hr-stats-inner { justify-content: center; }
  .hr-stat { min-width: 80px; }
}

/* ── Sections générales responsive ── */
@media (max-width: 768px) {
  /* Approche */
  .cha-approche-grid { grid-template-columns: 1fr !important; }
  /* Prestations */
  .prest-header { padding: 0 20px; }
  /* CTA Banner */
  .cta-section { padding: 60px 20px; }
  .cta-h2 { font-size: 1.6rem; }
  /* Contact */
  .contact-grid { grid-template-columns: 1fr !important; gap: 32px; }
  /* GMB */
  .gmb-container { padding: 0 20px; }
  .gmb-embed-wrap { margin-top: 24px; }
  /* Footer */
  .footer-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { justify-content: center; }
}

/* Tablette : 2 colonnes pour sections sympa */
@media (min-width: 601px) and (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr !important; }
  .cha-approche-grid { grid-template-columns: 1fr 1fr !important; }
  .cha-approche-grid .cha-card:last-child {
    grid-column: 1 / -1 !important;
    max-width: calc(50% - 12px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .contact-grid { grid-template-columns: 1fr !important; }
}

/* ── Textes ne débordent pas ── */
* { box-sizing: border-box; }
img { max-width: 100%; height: auto; }

/* ============================================================
   PAGE MÉTIER — Certifications + Espèces
   ============================================================ */

/* Grille certifications 4×2 */
.met-cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.met-cert-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(11,31,58,.05);
  transition: transform .25s, box-shadow .25s;
}
.met-cert-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(11,31,58,.1);
}
/* Ligne du haut : emoji à gauche, médaille à droite */
.met-cert-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.met-cert-icon-wrap {
  width: 44px; height: 44px; flex-shrink: 0;
  background: #EFF6FF;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.met-cert-emoji { font-size: 1.4rem; line-height: 1; }
.met-cert-badge-icon {
  color: var(--gold);
  opacity: .65;
  flex-shrink: 0;
  margin-top: 2px;
}
/* Textes en bas */
.met-cert-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.met-cert-label {
  font-size: .875rem;
  font-weight: 700;
  color: #0B1F3A;
  line-height: 1.4;
  font-family: var(--font-sans);
}
.met-cert-org {
  font-size: .76rem;
  color: #6B7280;
  font-family: var(--font-sans);
  font-style: italic;
}

/* Espèces 2 cartes centrées */
.met-esp-grid--2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.met-esp-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; background: #EFF6FF;
  min-height: 220px;
}
.met-esp-placeholder-txt {
  font-size: .75rem; color: #9CA3AF;
  font-family: var(--font-sans);
  text-align: center; padding: 0 12px;
}

/* Responsive certifications */
@media (max-width: 1024px) {
  .met-cert-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .met-cert-grid { grid-template-columns: 1fr; }
  .met-esp-grid--2 { grid-template-columns: 1fr; }
}

/* =============================================
   PAGE LÉGALE (mentions légales, politique conf.)
   ============================================= */

/* Hero */
.legal-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #112b50 100%);
  padding: 120px 24px 64px;
  text-align: center;
}
.legal-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.65);
  font-size: .85rem;
  font-family: var(--font-sans);
  text-decoration: none;
  transition: color .2s;
  align-self: flex-start;
}
.legal-back:hover { color: #fff; }
.legal-h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  margin: 0;
  line-height: 1.15;
}
.legal-meta {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin: 0;
  font-family: var(--font-sans);
}

/* Content area */
.legal-main {
  background: var(--cream);
  padding: 64px 24px 96px;
}
.legal-container {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.8;
  color: #374151;
}
.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--navy);
  margin: 2.5rem 0 .75rem;
  padding-bottom: .4rem;
  border-bottom: 2px solid rgba(196,147,63,.35);
}
.legal-content h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
  margin: 1.75rem 0 .5rem;
}
.legal-content p {
  margin: 0 0 1rem;
}
.legal-content ul,
.legal-content ol {
  margin: 0 0 1rem 1.5rem;
  padding: 0;
}
.legal-content li { margin-bottom: .35rem; }
.legal-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-content a:hover { color: var(--navy); }
.legal-content strong { color: var(--navy); }
.legal-content hr {
  border: none;
  border-top: 1px solid rgba(11,31,58,.12);
  margin: 2rem 0;
}

/* Mobile */
@media (max-width: 640px) {
  .legal-hero { padding: 100px 20px 48px; }
  .legal-h1 { font-size: 1.75rem; }
  .legal-main { padding: 48px 20px 72px; }
  .legal-content h2 { font-size: 1.25rem; }
}

/* =============================================
   MOBILE FIXES — Menu, Hero, About, Stats
   ============================================= */

/* ── 1. HERO : dégradé top allégé (badge lisible) ── */
@media (max-width: 900px) {
  .hr::after {
    height: 100px;
    background: linear-gradient(to bottom,
      rgba(11,31,58,.45) 0%,
      rgba(11,31,58,.12) 60%,
      transparent 100%);
  }
}

/* ── 2. HERO : espace entre badge Google et bande stats ── */
@media (max-width: 768px) {
  .hr-gmb-badge { margin-bottom: 36px; }
}

/* ── 3. STATS : amélioration mobile ── */
@media (max-width: 640px) {
  .hr-stats { padding: 18px 8px; }
  .hr-stat { padding: 0 6px; }
  .hr-stat-val { font-size: 1.5rem; }
  .hr-stat-lbl {
    font-size: .58rem;
    letter-spacing: .04em;
    margin-top: 4px;
    line-height: 1.3;
  }
  .hr-stat-sep { height: 22px; }
}

/* ── 4. CITATION ÉLODIE : masquer sur mobile ── */
@media (max-width: 960px) {
  .abv2-quote, .ab-quote { display: none !important; }
}

/* ── 5. HERO : masquer sous-titre sur mobile ── */
@media (max-width: 768px) {
  .hr-sub, .hr-author { display: none !important; }
}

/* ── 6. MENU MOBILE : dropdown top (réécriture propre) ── */

/* Overlay sombre derrière le menu */
body.nav-open::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 997;
}

@media (max-width: 960px) {
  /* Dropdown depuis le haut, pleine largeur, fond navy solide */
  .nav-links {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    width: 100% !important;
    background: #0B1F3A !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding: 72px 0 16px !important;
    transform: translateY(-110%) !important;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .4) !important;
    z-index: 999 !important;
  }
  .nav-links.open {
    transform: translateY(0) !important;
  }

  /* Items : séparateurs discrets */
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
  }
  .nav-links li:last-child {
    border-bottom: none;
    padding: 16px 20px 8px;
    display: flex;
    justify-content: center;
  }

  /* Liens standard */
  .nav-link {
    display: block !important;
    padding: 15px 24px !important;
    font-size: 1rem !important;
    width: 100% !important;
    border-radius: 0 !important;
    color: rgba(255, 255, 255, .82) !important;
  }
  .nav-link:hover {
    background: rgba(255, 255, 255, .07) !important;
    color: #fff !important;
  }

  /* Bouton "Prendre RDV" : largeur auto, centré */
  .nav-cta {
    display: inline-flex !important;
    width: auto !important;
    padding: 12px 32px !important;
    font-size: .95rem !important;
    border-radius: 50px !important;
    margin: 0 !important;
    background: linear-gradient(135deg, #2563EB, #3B82F6) !important;
    box-shadow: 0 4px 15px rgba(37, 99, 235, .4) !important;
    color: #fff !important;
  }
  .nav-cta:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 20px rgba(37, 99, 235, .5) !important;
    background: linear-gradient(135deg, #2563EB, #3B82F6) !important;
    color: #fff !important;
  }
}

/* ============================================================
   SECTION CONTACT — Refonte avec Calendly inline
   ============================================================ */

/* En-tête centré */
.ct-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.ct-header .ct-eyebrow { justify-content: center; }
.ct-header .ct-h2 { margin-bottom: 12px; }
.ct-header .ct-subtitle { color: var(--navy); opacity: .72; font-size: .95rem; margin-bottom: 0; }

/* Grille 2 colonnes : infos | formulaire */
.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

/* Colonne infos */
.ct-infos {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ct-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.ct-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, var(--blue-pale, #EFF6FF), #DBEAFE);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-top: 2px;
}
.ct-info-item strong {
  display: block;
  font-size: .85rem;
  color: var(--navy);
  margin-bottom: 2px;
}
.ct-info-item span {
  font-size: .9rem;
  color: var(--gray-600, #6B7280);
}
.ct-info-note {
  margin-top: 16px;
  padding: 20px;
  background: rgba(37,99,235,.06);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--blue);
}
.ct-info-note p {
  font-size: .88rem;
  color: var(--navy);
  line-height: 1.6;
  margin: 0;
}

/* Colonne formulaire */
.ct-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

/* ── Responsive tablette ── */
@media (max-width: 900px) {
  .ct-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 560px) {
  .ct-header { margin-bottom: 32px; }
  .ct-form-wrap { padding: 24px; }
}

/* ============================================================
   PAGE CONTACT (page-contact.php)
   ============================================================ */

/* Hero compact */
.pc-hero {
  background: linear-gradient(135deg, #0B1F3A 0%, #1E3A8A 60%, #1D4ED8 100%);
  padding: 120px 40px 64px;
  position: relative;
  overflow: hidden;
}
.pc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(37,99,235,.18) 0%, transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(196,147,63,.08) 0%, transparent 45%);
  pointer-events: none;
}
.pc-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.pc-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(196,147,63,.85);
  text-decoration: none;
  margin-bottom: 28px;
  letter-spacing: .05em;
  transition: color .2s;
}
.pc-back:hover { color: #C4933F; }
.pc-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(196,147,63,.9);
  margin-bottom: 16px;
}
.pc-h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
}
.pc-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.pc-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.pc-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: .8rem;
  color: rgba(255,255,255,.82);
  font-family: var(--font-sans);
}

/* Body : infos + formulaire */
.pc-body { background: #F8F6F0; padding: 72px 40px 96px; }
.pc-container { max-width: 1160px; margin: 0 auto; }

/* CTA inline dans page-metier */
.met-section-cta {
  text-align: center;
  margin-top: 36px;
}
.met-def-section .met-section-cta {
  text-align: left;
  margin-top: 16px;
}

/* Responsive page contact */
@media (max-width: 900px) {
  .pc-hero { padding: 100px 24px 48px; }
  .pc-body { padding: 48px 24px 64px; }
}
@media (max-width: 600px) {
  .pc-h1 { font-size: 1.7rem; }
}

/* ============================================================
   PATOUNES DÉCORATIVES — sections homepage
   ============================================================ */

/* SVG patoune : navy pour fonds clairs, blanc pour fonds colorés, or pour crème */
:root {
  --paw-navy: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cellipse cx='50' cy='66' rx='22' ry='18' fill='%230B1F3A'/%3E%3Cellipse cx='18' cy='42' rx='9' ry='12' transform='rotate(-12,18,42)' fill='%230B1F3A'/%3E%3Cellipse cx='36' cy='28' rx='9' ry='12' fill='%230B1F3A'/%3E%3Cellipse cx='64' cy='28' rx='9' ry='12' fill='%230B1F3A'/%3E%3Cellipse cx='82' cy='42' rx='9' ry='12' transform='rotate(12,82,42)' fill='%230B1F3A'/%3E%3C/svg%3E");
  --paw-blue: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cellipse cx='50' cy='66' rx='22' ry='18' fill='%232563EB'/%3E%3Cellipse cx='18' cy='42' rx='9' ry='12' transform='rotate(-12,18,42)' fill='%232563EB'/%3E%3Cellipse cx='36' cy='28' rx='9' ry='12' fill='%232563EB'/%3E%3Cellipse cx='64' cy='28' rx='9' ry='12' fill='%232563EB'/%3E%3Cellipse cx='82' cy='42' rx='9' ry='12' transform='rotate(12,82,42)' fill='%232563EB'/%3E%3C/svg%3E");
  --paw-gold: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cellipse cx='50' cy='66' rx='22' ry='18' fill='%23C4933F'/%3E%3Cellipse cx='18' cy='42' rx='9' ry='12' transform='rotate(-12,18,42)' fill='%23C4933F'/%3E%3Cellipse cx='36' cy='28' rx='9' ry='12' fill='%23C4933F'/%3E%3Cellipse cx='64' cy='28' rx='9' ry='12' fill='%23C4933F'/%3E%3Cellipse cx='82' cy='42' rx='9' ry='12' transform='rotate(12,82,42)' fill='%23C4933F'/%3E%3C/svg%3E");
}

/* Approche — fond blanc → patounes navy */
.ap-section { position: relative; overflow: hidden; }
.ap-section::before {
  content: ''; position: absolute;
  width: 180px; height: 180px;
  top: 40px; right: -30px;
  background: var(--paw-navy) center/contain no-repeat;
  opacity: .03; pointer-events: none; transform: rotate(15deg);
}
.ap-section::after {
  content: ''; position: absolute;
  width: 110px; height: 110px;
  bottom: 60px; left: -20px;
  background: var(--paw-navy) center/contain no-repeat;
  opacity: .03; pointer-events: none; transform: rotate(-20deg);
}

/* Prestations — fond bleu clair → patounes bleues */
.prest-section { position: relative; overflow: hidden; }
.prest-section::before {
  content: ''; position: absolute;
  width: 200px; height: 200px;
  top: -20px; left: -40px;
  background: var(--paw-blue) center/contain no-repeat;
  opacity: .06; pointer-events: none; transform: rotate(-15deg);
}
.prest-section::after {
  content: ''; position: absolute;
  width: 130px; height: 130px;
  bottom: 40px; right: -20px;
  background: var(--paw-blue) center/contain no-repeat;
  opacity: .06; pointer-events: none; transform: rotate(25deg);
}

/* Avis Google — fond blanc → patounes navy */
.gmb-section { position: relative; overflow: hidden; }
.gmb-section::before {
  content: ''; position: absolute;
  width: 160px; height: 160px;
  top: 30px; right: 5%;
  background: var(--paw-navy) center/contain no-repeat;
  opacity: .03; pointer-events: none; transform: rotate(10deg);
}
.gmb-section::after {
  content: ''; position: absolute;
  width: 90px; height: 90px;
  bottom: 50px; left: 4%;
  background: var(--paw-navy) center/contain no-repeat;
  opacity: .03; pointer-events: none; transform: rotate(-30deg);
}

/* Contact — fond crème → patounes or */
.ct-section { position: relative; overflow: hidden; }
.ct-section::before {
  content: ''; position: absolute;
  width: 170px; height: 170px;
  top: -10px; left: 3%;
  background: var(--paw-gold) center/contain no-repeat;
  opacity: .06; pointer-events: none; transform: rotate(-10deg);
}
.ct-section::after {
  content: ''; position: absolute;
  width: 100px; height: 100px;
  bottom: 60px; right: 4%;
  background: var(--paw-gold) center/contain no-repeat;
  opacity: .06; pointer-events: none; transform: rotate(20deg);
}

/* ── Offset scroll pour navbar fixe ── */
section[id] {
  scroll-margin-top: 100px;
}
