/* ========================================
   L'Instant Psychomot' - Styles
   Style : enfant doux — soft, child-friendly
   ======================================== */

:root {
  --sombre: #0a1a3a;
  --psycho-principale: #3a8fb7;
  --psycho-deep: #035879;
  --pehp-principale: #6fcf8a;
  --pehp-deep: #4aaa65;
  --clair: #fefcf9;

  /* Soft pastel palette */
  --pastel-blue: #dbeefb;
  --pastel-blue-light: #eef7fd;
  --pastel-green: #e0f5e7;
  --pastel-green-light: #f0faf3;
  --pastel-pink: #fce4ee;
  --pastel-peach: #fef0e4;
  --pastel-lavender: #ede4f7;
  --warm-white: #fffdf8;

  /* Shadows */
  --shadow-soft: 0 4px 24px rgba(58, 143, 183, 0.10);
  --shadow-medium: 0 8px 32px rgba(58, 143, 183, 0.14);
  --shadow-lift: 0 12px 40px rgba(58, 143, 183, 0.18);
  --shadow-glow-blue: 0 0 30px rgba(58, 143, 183, 0.25);
  --shadow-glow-green: 0 0 30px rgba(111, 207, 138, 0.25);

  /* Typography */
  --font-title: 'Just Me Again Down Here', cursive;
  --font-body: 'Poppins', sans-serif;
  --font-nav: 'Inter', sans-serif;

  /* Radii */
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 40px;
  --radius-xl: 60px;
  --radius-pill: 999px;

  /* Transitions */
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.25s var(--ease-soft);
  --transition-medium: 0.4s var(--ease-soft);
  --transition-slow: 0.6s var(--ease-soft);
}

/* ========================================
   KEYFRAMES
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes gentlePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: var(--shadow-soft);
  }
  50% {
    transform: scale(1.02);
    box-shadow: var(--shadow-medium);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(-1.5deg); }
  25% { transform: rotate(-0.5deg); }
  75% { transform: rotate(-2.5deg); }
}

@keyframes softBounceIn {
  0% {
    opacity: 0;
    transform: scale(0.8) rotate(-3deg);
  }
  60% {
    transform: scale(1.03) rotate(0.5deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(-1.5deg);
  }
}

/* ========================================
   SCROLL REVEAL
   ======================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-soft), transform 0.8s var(--ease-bounce);
  will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.animate-left {
  transform: translateX(-40px);
}

.animate-on-scroll.animate-left.is-visible {
  transform: translateX(0);
}

.animate-on-scroll.animate-right {
  transform: translateX(40px);
}

.animate-on-scroll.animate-right.is-visible {
  transform: translateX(0);
}

.animate-on-scroll.animate-scale {
  transform: scale(0.85);
}

.animate-on-scroll.animate-scale.is-visible {
  transform: scale(1);
}

/* Stagger children */
.stagger-children .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.stagger-children .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }

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

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

body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--sombre);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--pastel-blue);
  color: var(--sombre);
}

:focus-visible {
  outline: 3px solid var(--psycho-principale);
  outline-offset: 2px;
  border-radius: 4px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ========================================
   HEADER
   ======================================== */
.header {
  display: flex;
  align-items: center;
  background: var(--sombre);
  height: 100px;
  padding: 0 32px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(10, 26, 58, 0.15);
  animation: slideDown 0.6s var(--ease-soft);
}

.header__logo img {
  width: 72px;
  height: 80px;
  object-fit: contain;
  transition: transform var(--transition-medium);
}

.header__logo:hover img {
  transform: scale(1.08) rotate(-3deg);
}

.header__nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
  margin-right: auto;
}

.nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-nav);
  font-size: 22px;
  font-weight: 500;
  color: white;
  padding: 0 28px;
  height: 52px;
  margin-top: auto;
  margin-bottom: auto;
  border-radius: var(--radius-pill);
  position: relative;
  transition: all var(--transition-medium);
}

.nav-btn:hover {
  background: rgba(58, 143, 183, 0.15);
}

.nav-btn--active {
  background: var(--psycho-principale);
  box-shadow: 0 0 20px rgba(58, 143, 183, 0.35);
}

.nav-btn--active:hover {
  background: var(--psycho-principale);
  transform: scale(1.04);
}

/* Burger menu (mobile) */
.header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 101;
}

.header__burger span {
  display: block;
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: all 0.3s var(--ease-soft);
}

.header__burger.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.header__burger.is-open span:nth-child(2) {
  opacity: 0;
}

.header__burger.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  background: linear-gradient(170deg, var(--pastel-blue) 0%, var(--pastel-blue-light) 40%, var(--pastel-peach) 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 80px 40px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(58, 143, 183, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}


.hero__decoration {
  position: absolute;
  inset: -10%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hero__decoration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  animation: fadeInUp 1s var(--ease-soft);
}

.hero__title {
  font-family: var(--font-title);
  font-size: 140px;
  font-weight: 400;
  line-height: 0.75;
  color: var(--sombre);
  margin-bottom: 60px;
  position: relative;
}

.hero__text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  color: var(--sombre);
  text-align: center;
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.85;
}

/* ========================================
   CONTACT
   ======================================== */
.contact {
  background: linear-gradient(170deg, #000629 0%, #0d2b5a 100%);
  padding: 80px 40px 100px;
  position: relative;
  overflow: hidden;
}


.contact__title {
  font-family: var(--font-title);
  font-size: 80px;
  font-weight: 400;
  color: var(--clair);
  text-align: center;
  margin-bottom: 60px;
}

.contact__grid {
  display: flex;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: flex-start;
}

.contact__map {
  flex: 0 0 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow-medium);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.contact__map:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.contact__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact__label {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.contact__btn {
  display: flex;
  align-items: center;
  padding: 0 36px;
  height: 68px;
  background: linear-gradient(135deg, var(--psycho-principale), var(--psycho-deep));
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  color: white;
  transition: all var(--transition-medium);
}

.contact__btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-glow-blue);
}

/* ========================================
   MON PARCOURS (home section)
   ======================================== */
.parcours {
  background: linear-gradient(170deg, var(--pastel-blue-light) 0%, var(--pastel-green-light) 100%);
  padding: 80px 70px 100px;
  position: relative;
  overflow: hidden;
}

.parcours::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(58, 143, 183, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.parcours__title {
  font-family: var(--font-title);
  font-size: 80px;
  font-weight: 400;
  color: var(--sombre);
  margin-bottom: 50px;
}

.parcours__content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.parcours__photo {
  flex: 0 0 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.parcours__photo:hover {
  transform: translateY(-5px) rotate(-1deg);
  box-shadow: var(--shadow-lift);
}

.parcours__photo img {
  width: 340px;
  height: 480px;
  object-fit: cover;
}

.parcours__details {
  flex: 1;
}

.parcours__text {
  font-family: var(--font-title);
  font-size: 42px;
  font-weight: 400;
  color: var(--sombre);
  line-height: 1.3;
  margin-bottom: 40px;
}

.parcours__diplomas {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.parcours__diploma {
  background: white;
  border-radius: var(--radius-lg);
  width: 240px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-nav);
  font-size: 22px;
  color: var(--sombre);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-medium);
  border: 2px solid transparent;
}

.parcours__diploma:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--pastel-blue);
}


.parcours__more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft);
  font-family: var(--font-title);
  font-size: 64px;
  color: var(--sombre);
  text-align: center;
  padding: 0 48px;
  height: 90px;
  transition: all var(--transition-medium);
}

.parcours__more-btn:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: var(--shadow-medium);
  background: var(--pastel-blue);
}

/* ========================================
   CHAT RÉGULÉ (home section)
   ======================================== */
.cr {
  background: #7cc47f;
  position: relative;
  overflow: hidden;
}

/* subtle organic shape in background */
.cr::before,
.cr::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cr::before {
  width: 600px;
  height: 600px;
  top: -15%;
  right: -8%;
  background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, transparent 70%);
}
.cr::after {
  width: 400px;
  height: 400px;
  bottom: -10%;
  left: -5%;
  background: radial-gradient(circle, rgba(0,0,0,0.04) 0%, transparent 70%);
}

.cr__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 70px 70px 130px;
  position: relative;
  z-index: 1;
}

/* ---- Title ---- */
.cr__title {
  font-family: var(--font-title);
  font-size: 96px;
  font-weight: 400;
  color: var(--sombre);
  margin-bottom: 36px;
  line-height: 1;
}

/* ---- Grid ---- */
.cr__grid {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* ---- Left column: photos ---- */
.cr__col-left {
  flex: 0 0 420px;
}

/* ---- Photo groups ---- */
.cr__photo-group {
  position: relative;
}

.cr__photo-group--room {
  margin-top: 24px;
}

/* Polaroid-style card */
.cr__polaroid {
  background: white;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15), 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.5s var(--ease-soft), box-shadow 0.5s var(--ease-soft);
}

.cr__polaroid img {
  width: 100%;
  display: block;
  border-radius: 6px;
}

.cr__polaroid--cat {
  width: 280px;
  transform: rotate(-5deg);
}
.cr__polaroid--cat:hover {
  transform: rotate(-3deg) translateY(-8px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.20);
}
.cr__polaroid--cat img {
  height: 230px;
  object-fit: cover;
}

.cr__polaroid--room {
  width: 310px;
  margin-left: 90px;
  transform: rotate(2deg);
}
.cr__polaroid--room:hover {
  transform: rotate(0deg) translateY(-8px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.20);
}
.cr__polaroid--room img {
  height: 200px;
  object-fit: cover;
}

/* ---- Annotations (handwriting + arrow) ---- */
.cr__annotation {
  display: flex;
  align-items: flex-start;
  gap: 2px;
}

.cr__annotation--cat {
  position: absolute;
  top: 10px;
  right: -30px;
  flex-direction: column;
  align-items: flex-end;
}

.cr__annotation--room {
  margin-left: 0;
  margin-bottom: -8px;
  flex-direction: column;
  align-items: flex-start;
}

.cr__handwriting {
  font-family: var(--font-title);
  font-size: 34px;
  color: var(--sombre);
  line-height: 1.1;
}

.cr__arrow {
  flex-shrink: 0;
}

.cr__arrow--cat {
  margin-right: 20px;
}

.cr__arrow--room {
  margin-left: 10px;
}

/* ---- Wave transition ---- */
.cr__wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 2;
  line-height: 0;
}

.cr__wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* ---- Right column: text ---- */
.cr__col-right {
  flex: 1;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--sombre);
  padding-top: 6px;
}

.cr__col-right p {
  margin-bottom: 18px;
}

.cr__col-right p:last-child {
  margin-bottom: 0;
}

.cr__emphasis {
  background: rgba(255,255,255,0.18);
  border-left: 3px solid var(--sombre);
  padding: 14px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 8px;
}

/* ========================================
   PSYCHOMOTRICITE / PEHP (home section)
   ======================================== */
.psycho {
  position: relative;
}

.psycho__tabs {
  display: flex;
}

.psycho__tab {
  flex: 1;
  height: 120px;
  border: none;
  cursor: pointer;
  font-family: var(--font-title);
  font-size: 72px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  transition: all var(--transition-medium);
}

.psycho__tab--psycho {
  background: linear-gradient(135deg, var(--psycho-principale), var(--psycho-deep));
}

.psycho__tab--pehp {
  background: linear-gradient(135deg, var(--pehp-principale), var(--pehp-deep));
}

.psycho__tab:not(.psycho__tab--active) {
  opacity: 0.6;
  filter: brightness(0.85);
}

.psycho__tab--active {
  opacity: 1;
  filter: brightness(1);
}

.psycho__tab:hover {
  transform: translateY(-4px);
  filter: brightness(1.08);
}

.psycho__tab-icon {
  width: 56px;
  height: 56px;
  animation: float 3s ease-in-out infinite;
}

.psycho__body {
  background: linear-gradient(170deg, var(--psycho-principale), var(--psycho-deep));
  padding: 60px 70px 80px;
  color: var(--clair);
  position: relative;
  overflow: hidden;
  transition: background 0.5s ease;
}

.psycho__body--pehp {
  background: linear-gradient(170deg, var(--pehp-principale), var(--pehp-deep));
}

.psycho__panel {
  display: none;
}

.psycho__panel--active {
  display: block;
}

.psycho__panel h3 {
  font-family: var(--font-title);
  font-size: 36px;
  margin: 40px 0 16px;
}

.psycho__panel ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.psycho__panel ul li {
  padding: 8px 0 8px 20px;
  position: relative;
  font-size: 18px;
  line-height: 1.6;
}

.psycho__panel ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  opacity: 0.7;
}

.psycho__body::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.psycho__text-content {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.8;
  margin-bottom: 60px;
  position: relative;
}

.psycho__text-content p {
  margin-bottom: 20px;
}

.psycho__tarifs-title {
  font-family: var(--font-title);
  font-size: 72px;
  font-weight: 400;
  text-align: center;
  color: var(--clair);
  margin-bottom: 40px;
}

.psycho__tarifs {
  font-family: var(--font-nav);
  font-size: 22px;
  color: var(--clair);
  margin-bottom: 60px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 32px 40px;
  backdrop-filter: blur(4px);
}

.psycho__tarifs h4 {
  font-size: 24px;
  margin-bottom: 16px;
  margin-top: 24px;
  color: var(--pastel-blue);
}

.psycho__tarifs h4:first-child {
  margin-top: 0;
}

.psycho__tarifs ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
}

.psycho__tarifs li {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.psycho__tarifs li:hover {
  background: rgba(255, 255, 255, 0.06);
}

.tarif {
  font-weight: 700;
  white-space: nowrap;
  margin-left: 20px;
  color: var(--psycho-principale);
}

.psycho__tarifs .tarif {
  color: var(--pastel-blue);
}

.tarif-extra {
  display: flex;
  justify-content: space-between;
  padding: 8px 16px;
  margin-top: 16px;
}

.psycho__more-btn {
  display: block;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft);
  font-family: var(--font-title);
  font-size: 64px;
  color: var(--psycho-deep);
  text-align: center;
  width: 400px;
  height: 100px;
  line-height: 100px;
  transition: all var(--transition-medium);
}

.psycho__more-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: var(--shadow-lift);
  background: var(--pastel-blue-light);
}

/* ========================================
   PARCOURS PAGE
   ======================================== */
.parcours-hero {
  background: linear-gradient(170deg, var(--sombre) 0%, var(--psycho-principale) 60%, var(--pastel-blue) 100%);
  padding: 80px 70px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.parcours-hero::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.parcours-hero__title {
  font-family: var(--font-title);
  font-size: 140px;
  font-weight: 400;
  line-height: 0.75;
  color: var(--clair);
  margin-bottom: 40px;
  animation: fadeInUp 0.8s var(--ease-soft);
}

.parcours-hero__text {
  font-family: var(--font-title);
  font-size: 52px;
  font-weight: 400;
  color: var(--clair);
  max-width: 1400px;
  margin: 0 auto;
  line-height: 1.2;
  opacity: 0.9;
  animation: fadeInUp 1s var(--ease-soft) 0.15s both;
}

/* Formations */
.formations {
  padding: 80px 70px 100px;
  background: var(--warm-white);
  position: relative;
}

.formations__title {
  font-family: var(--font-title);
  font-size: 80px;
  font-weight: 400;
  color: var(--sombre);
  text-align: center;
  margin-bottom: 50px;
}

.formations__subtitle {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  color: var(--psycho-principale);
  margin: 28px 0 12px;
  padding-left: 8px;
  border-left: 3px solid var(--psycho-principale);
}

.formations__list {
  list-style: none;
  padding-left: 24px;
  margin-bottom: 16px;
}

.formations__list li {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--sombre);
  margin-bottom: 10px;
  line-height: 1.6;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
  padding-left: 28px;
}

.formations__list li::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--psycho-principale);
  border-radius: 50%;
  opacity: 0.5;
  transition: opacity var(--transition-fast);
}

.formations__list li:hover {
  background: var(--pastel-blue-light);
}

.formations__list li:hover::before {
  opacity: 1;
}

.formations__list--sub {
  padding-left: 48px;
}

.formations__list--sub2 {
  padding-left: 72px;
}

.formations__diplomas {
  display: flex;
  justify-content: center;
  max-width: 900px;
  margin: 60px auto 0;
}

/* Frame style — scotché au mur, enfantin */
.formations__diploma-frame {
  position: relative;
  background: white;
  padding: 20px 20px 12px;
  border-radius: 6px;
  box-shadow:
    0 8px 40px rgba(58, 143, 183, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.06),
    inset 0 0 60px rgba(58, 143, 183, 0.03);
  transform: rotate(-1.5deg);
  transition: all 0.6s var(--ease-bounce);
  max-width: 750px;
}

.formations__diploma-frame.is-visible {
  animation: softBounceIn 0.9s var(--ease-bounce) both;
}

.formations__diploma-frame:hover {
  transform: rotate(0deg) translateY(-10px) scale(1.03);
  box-shadow:
    0 24px 70px rgba(58, 143, 183, 0.22),
    0 4px 12px rgba(0, 0, 0, 0.08),
    inset 0 0 60px rgba(58, 143, 183, 0.03);
}

.formations__diploma-frame--small {
  max-width: 500px;
}

/* Scotch tape effect */
.formations__tape {
  position: absolute;
  width: 80px;
  height: 28px;
  border-radius: 2px;
  z-index: 2;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s var(--ease-bounce);
}

.formations__diploma-frame:hover .formations__tape--left {
  transform: rotate(-15deg) scale(1.05);
}

.formations__diploma-frame:hover .formations__tape--right {
  transform: rotate(9deg) scale(1.05);
}

.formations__tape--left {
  top: -10px;
  left: 30px;
  transform: rotate(-18deg);
  background: linear-gradient(135deg, rgba(255, 228, 150, 0.65), rgba(255, 218, 130, 0.45));
  backdrop-filter: blur(1px);
}

.formations__tape--right {
  top: -10px;
  right: 30px;
  transform: rotate(12deg);
  background: linear-gradient(135deg, rgba(180, 230, 200, 0.6), rgba(160, 220, 190, 0.4));
  backdrop-filter: blur(1px);
}

.formations__diploma-card {
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
}

.formations__diploma-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%, rgba(0,0,0,0.02) 100%);
  pointer-events: none;
}

.formations__diploma-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s var(--ease-soft);
}

.formations__diploma-frame:hover .formations__diploma-img {
  transform: scale(1.02);
}

.formations__diploma-caption {
  text-align: center;
  font-family: var(--font-title);
  font-size: 34px;
  color: var(--psycho-principale);
  margin: 12px 0 2px;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.formations__diploma-frame:hover .formations__diploma-caption {
  color: var(--psycho-deep);
}

/* Experience */
.experience {
  padding: 80px 70px 120px;
  background: linear-gradient(170deg, var(--warm-white) 0%, var(--pastel-blue-light) 100%);
  position: relative;
}

.experience__title {
  font-family: var(--font-title);
  font-size: 80px;
  font-weight: 400;
  color: var(--sombre);
  text-align: center;
  margin-bottom: 60px;
}

.experience__timeline {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

/* SVG path connecting experience items */
.experience__path-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: 0;
}

.experience__path-line {
  fill: none;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.12;
}

.experience__path-draw {
  fill: none;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(58, 143, 183, 0.4));
}

.experience__dot {
  transition: opacity 0.4s ease, r 0.4s ease;
}

.experience__dot-glow {
  transition: opacity 0.4s ease;
}

.experience__item--left {
  align-self: flex-start;
  margin-left: 60px;
}

.experience__item--center {
  align-self: center;
}

.experience__item--right {
  align-self: flex-end;
  margin-right: 60px;
}

.experience__pill {
  display: inline-block;
  background: linear-gradient(135deg, var(--sombre), var(--psycho-principale));
  border-radius: var(--radius-pill);
  padding: 18px 40px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  color: var(--clair);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-medium);
  position: relative;
  z-index: 1;
}

.experience__pill:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: var(--shadow-glow-blue);
}

.experience__pill--highlight {
  font-size: 24px;
  padding: 22px 48px;
  background: linear-gradient(135deg, var(--psycho-principale), var(--pehp-principale));
  box-shadow: var(--shadow-medium);
  animation: gentlePulse 4s ease-in-out infinite;
}

/* ========================================
   PSYCHO PAGE
   ======================================== */
.header--psycho {
  background: linear-gradient(135deg, var(--psycho-principale), var(--psycho-deep));
}

.footer--psycho {
  background: linear-gradient(135deg, var(--psycho-principale), var(--psycho-deep));
}

.psycho-page-hero {
  background: linear-gradient(170deg, var(--psycho-principale) 0%, var(--pastel-blue) 100%);
  padding: 120px 70px 110px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.psycho-page-hero::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.psycho-page-hero__title {
  font-family: var(--font-title);
  font-size: 140px;
  font-weight: 400;
  line-height: 0.75;
  color: var(--clair);
  animation: fadeInUp 0.8s var(--ease-soft);
}

.psycho-page-content {
  padding: 60px 70px 120px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Accordion */
.accordion {
  margin-bottom: 24px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: box-shadow var(--transition-medium), transform var(--transition-medium);
  border: 2px solid transparent;
}

.accordion:hover {
  box-shadow: var(--shadow-medium);
  border-color: var(--pastel-blue);
  transform: translateY(-2px);
}

.accordion__header {
  display: flex;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 32px;
  width: 100%;
  text-align: left;
  transition: background var(--transition-fast);
}

.accordion__header:hover {
  background: var(--pastel-blue-light);
}

.accordion__icon {
  font-family: var(--font-body);
  font-size: 40px;
  color: var(--psycho-principale);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pastel-blue);
  border-radius: 50%;
  transition: all var(--transition-medium);
}

.accordion.is-open .accordion__icon {
  background: var(--psycho-principale);
  color: white;
  transform: rotate(45deg);
}

.accordion__title {
  font-family: var(--font-title);
  font-size: 52px;
  color: var(--psycho-principale);
  line-height: 1.2;
  word-break: break-word;
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-soft), padding 0.5s var(--ease-soft);
  padding: 0 32px;
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--sombre);
  line-height: 1.7;
}

.accordion__body.open {
  max-height: 1200px;
  padding: 0 32px 44px 96px;
}

.accordion__body p {
  margin-bottom: 18px;
}

.accordion__body p:last-child {
  margin-bottom: 0;
}

/* Psycho page tarifs */
.psycho-page-tarifs {
  margin-top: 60px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-soft);
  transition: box-shadow var(--transition-medium);
}

.psycho-page-tarifs:hover {
  box-shadow: var(--shadow-medium);
}

.psycho-page-tarifs__title {
  font-family: var(--font-title);
  font-size: 72px;
  font-weight: 400;
  color: var(--sombre);
  margin-bottom: 32px;
}

.psycho-page-tarifs__content {
  font-family: var(--font-nav);
  font-size: 20px;
  color: var(--sombre);
}

.psycho-page-tarifs__content h3 {
  font-size: 22px;
  margin: 28px 0 16px;
  color: var(--psycho-principale);
  padding-left: 8px;
  border-left: 3px solid var(--psycho-principale);
}

.psycho-page-tarifs__content h3:first-child {
  margin-top: 0;
}

.psycho-page-tarifs__content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
}

.psycho-page-tarifs__content li {
  margin-bottom: 4px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.psycho-page-tarifs__content li:hover {
  background: var(--pastel-blue-light);
}

/* ========================================
   PEHP PAGE
   ======================================== */
.pehp-hero {
  background: linear-gradient(170deg, var(--pehp-principale) 0%, var(--pehp-deep) 40%, var(--pastel-green) 100%);
  padding: 120px 70px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pehp-hero::before {
  content: '';
  position: absolute;
  top: 15%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.pehp-hero__title {
  font-family: var(--font-title);
  font-size: 140px;
  font-weight: 400;
  color: white;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s var(--ease-soft);
}

.pehp-hero__subtitle {
  font-family: var(--font-body);
  font-size: 22px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1s var(--ease-soft) 0.15s both;
}

.pehp-content {
  padding: 80px 70px 100px;
  max-width: 1400px;
  margin: 0 auto;
}

.pehp-content__text {
  font-family: var(--font-body);
  font-size: 19px;
  color: var(--sombre);
  line-height: 1.8;
}

.pehp-content__text p {
  margin-bottom: 20px;
}

.pehp-content__text h2 {
  font-family: var(--font-title);
  font-size: 52px;
  font-weight: 400;
  color: var(--pehp-deep);
  margin: 48px 0 20px;
  position: relative;
  padding-left: 20px;
}

.pehp-content__text h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 4px;
  background: var(--pehp-principale);
  border-radius: var(--radius-pill);
}

.pehp-content__text ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}

.pehp-content__text li {
  margin-bottom: 10px;
  padding: 10px 16px 10px 36px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: all var(--transition-fast);
}

.pehp-content__text li::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--pehp-principale);
  border-radius: 50%;
  opacity: 0.6;
  transition: opacity var(--transition-fast);
}

.pehp-content__text li:hover {
  background: var(--pastel-green-light);
}

.pehp-content__text li:hover::before {
  opacity: 1;
}

.pehp-content__tarif {
  background: linear-gradient(135deg, var(--pehp-principale), var(--pehp-deep));
  border-radius: var(--radius-lg);
  padding: 48px 60px;
  margin-top: 50px;
  color: white;
  box-shadow: var(--shadow-glow-green);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.pehp-content__tarif:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(111, 207, 138, 0.3);
}

.pehp-content__tarif h2 {
  color: white;
  padding-left: 0;
}

.pehp-content__tarif h2::before {
  display: none;
}

.pehp-content__tarif p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 22px;
}

/* ========================================
   WALKING CAT
   ======================================== */
.walking-cat {
  position: fixed;
  bottom: 0;
  z-index: 9999;
  pointer-events: none;
  width: 150px;
  height: auto;
  opacity: 0.45;
  transition: opacity 0.3s ease;
}

.walking-cat:hover {
  opacity: 0.8;
}

.walking-cat video {
  width: 100%;
  height: auto;
  display: block;
  transform: scaleX(-1);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--sombre);
  padding: 48px 70px;
  display: flex;
  align-items: center;
  gap: 60px;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--psycho-principale), var(--pehp-principale), var(--psycho-principale));
  background-size: 200% auto;
  animation: shimmer 6s linear infinite;
}

.footer__logo img {
  width: 72px;
  height: 80px;
  object-fit: contain;
  transition: transform var(--transition-medium);
}

.footer__logo:hover img {
  transform: scale(1.1) rotate(-3deg);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__links a {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  transition: all var(--transition-fast);
  position: relative;
  display: inline-block;
}

.footer__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--psycho-principale);
  border-radius: var(--radius-pill);
  transition: width var(--transition-medium);
}

.footer__links a:hover {
  color: white;
  transform: translateX(4px);
}

.footer__links a:hover::after {
  width: 100%;
}

.footer__contact {
  margin-left: auto;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
}

.footer__contact p {
  font-family: var(--font-body);
  font-size: 18px;
  margin-bottom: 6px;
}

.footer__copyright {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-nav);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

/* ========================================
   RESPONSIVE — 1200px
   ======================================== */
@media (max-width: 1200px) {
  .hero__title,
  .parcours-hero__title,
  .psycho-page-hero__title,
  .pehp-hero__title {
    font-size: 100px;
  }

  .parcours-hero__text {
    font-size: 38px;
  }

  .formations__diploma-frame {
    max-width: 600px;
  }

  .formations__diploma-frame--small {
    max-width: 420px;
  }

  .experience__item--left,
  .experience__item--right {
    margin-left: 0;
    margin-right: 0;
    align-self: center;
  }

  .experience__path-svg {
    display: none;
  }

  .accordion__title {
    font-size: 42px;
    line-height: 1.2;
  }

  .accordion__icon {
    font-size: 28px;
    width: 40px;
    height: 40px;
  }

  .accordion__body.open {
    padding: 0 32px 44px 56px;
  }

  .psycho-page-tarifs__title {
    font-size: 52px;
  }

  .psycho-page-tarifs__content {
    font-size: 18px;
  }

  .contact__grid {
    flex-direction: column;
  }

  .contact__map {
    flex: none;
    width: 100%;
    height: 360px;
  }

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

  .parcours__diplomas {
    gap: 20px;
    justify-content: center;
  }

  .psycho__tarifs {
    font-size: 18px;
  }

  .nav-btn {
    font-size: 18px;
    padding: 0 18px;
  }

  .pehp-content__text h2 {
    font-size: 40px;
  }
}

/* ========================================
   RESPONSIVE — 768px
   ======================================== */
@media (max-width: 768px) {
  .hero__decoration {
    display: none;
  }

  .header {
    height: 70px;
    flex-direction: row;
    padding: 0 16px;
    gap: 0;
  }

  .header__burger {
    display: flex;
    margin-left: auto;
  }

  .header__nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--sombre);
    flex-direction: column;
    padding: 16px;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    z-index: 100;
    animation: slideDown 0.3s var(--ease-soft);
  }

  .header__nav.is-open {
    display: flex;
  }

  .nav-btn {
    font-size: 18px;
    height: 48px;
    padding: 0 20px;
    justify-content: flex-start;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 60px 24px;
  }

  .hero__title {
    font-size: 56px;
    line-height: 0.85;
    margin-bottom: 36px;
  }

  .hero__text {
    font-size: 16px;
  }

  /* Contact */
  .contact {
    padding: 48px 24px;
  }

  .contact__title {
    font-size: 42px;
  }

  .contact__btn {
    font-size: 15px;
    padding: 0 20px;
    height: 56px;
  }

  /* Parcours home */
  .parcours {
    padding: 48px 24px;
  }

  .parcours__title {
    font-size: 48px;
  }

  .parcours__text {
    font-size: 28px;
  }

  .parcours__photo {
    flex: none;
    width: 100%;
    max-width: 340px;
  }

  .parcours__photo img {
    width: 100%;
    height: auto;
  }

  .parcours__diploma {
    width: 100%;
    max-width: 240px;
  }

  .parcours__more-btn {
    font-size: 42px;
    height: 70px;
    padding: 0 30px;
  }

  /* Psycho home tabs */
  .psycho__tab {
    font-size: 36px;
    height: 80px;
  }

  .psycho__tab-icon {
    width: 32px;
    height: 32px;
  }

  .psycho__body {
    padding: 36px 24px;
  }

  .psycho__tarifs-title {
    font-size: 42px;
  }

  .psycho__tarifs {
    font-size: 15px;
    padding: 20px;
  }

  .psycho__tarifs li {
    flex-direction: column;
    gap: 2px;
  }

  .psycho__more-btn {
    width: 100%;
    max-width: 300px;
    font-size: 42px;
    height: 70px;
    line-height: 70px;
  }

  /* Parcours page */
  .parcours-hero {
    padding: 48px 24px 60px;
  }

  .parcours-hero__title {
    font-size: 56px;
  }

  .parcours-hero__text {
    font-size: 26px;
  }

  .formations {
    padding: 48px 24px;
  }

  .formations__title {
    font-size: 48px;
  }

  .formations__list li {
    font-size: 16px;
  }

  .formations__diploma-frame {
    max-width: 100%;
    padding: 12px 12px 8px;
  }

  .formations__diploma-frame--small {
    max-width: 100%;
  }

  .formations__tape {
    width: 60px;
    height: 22px;
  }

  .formations__tape--left {
    left: 16px;
  }

  .formations__tape--right {
    right: 16px;
  }

  .formations__diploma-caption {
    font-size: 26px;
  }

  .experience {
    padding: 48px 24px 60px;
  }

  .experience__title {
    font-size: 48px;
    margin-bottom: 32px;
  }

  .experience__path-svg {
    display: none;
  }

  .experience__item--left,
  .experience__item--right {
    margin: 0;
    align-self: center;
  }

  .experience__pill {
    font-size: 16px;
    padding: 14px 24px;
  }

  .experience__pill--highlight {
    font-size: 18px;
    padding: 16px 28px;
  }

  /* Psycho page */
  .psycho-page-hero {
    padding: 60px 24px 48px;
  }

  .psycho-page-hero__title {
    font-size: 56px;
  }

  .psycho-page-content {
    padding: 32px 20px 80px;
  }

  .accordion {
    margin-bottom: 14px;
  }

  .accordion__header {
    padding: 18px 20px;
  }

  .accordion__title {
    font-size: 32px;
    line-height: 1.2;
  }

  .accordion__icon {
    font-size: 22px;
    width: 36px;
    height: 36px;
  }

  .accordion__body {
    font-size: 16px;
  }

  .accordion__body.open {
    padding: 0 20px 36px 20px;
  }

  .psycho-page-tarifs {
    padding: 28px 20px;
  }

  .psycho-page-tarifs__title {
    font-size: 36px;
  }

  .psycho-page-tarifs__content {
    font-size: 15px;
  }

  .psycho-page-tarifs__content h3 {
    font-size: 18px;
  }

  .psycho-page-tarifs__content li {
    flex-direction: column;
    gap: 2px;
  }

  /* Chat régulé */
  .cr__inner {
    padding: 40px 24px 100px;
  }

  .cr__title {
    font-size: 48px;
  }

  .cr__grid {
    flex-direction: column;
    gap: 32px;
  }

  .cr__col-left {
    flex: none;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .cr__polaroid--cat {
    width: 200px;
    transform: rotate(-3deg);
  }

  .cr__polaroid--cat img {
    height: 170px;
  }

  .cr__polaroid--room {
    width: 220px;
    margin-left: 0;
    transform: rotate(2deg);
  }

  .cr__polaroid--room img {
    height: 150px;
  }

  .cr__annotation--cat {
    position: relative;
    top: auto;
    right: auto;
    align-items: center;
  }

  .cr__annotation--room {
    align-items: center;
  }

  .cr__arrow {
    display: none;
  }

  .cr__handwriting {
    font-size: 26px;
    text-align: center;
  }

  .cr__col-right {
    font-size: 15px;
  }

  /* Psycho home tabs */
  .psycho__text-content {
    font-size: 16px;
  }

  /* PEHP page */
  .pehp-hero {
    padding: 60px 24px 48px;
  }

  .pehp-hero__title {
    font-size: 56px;
  }

  .pehp-hero__subtitle {
    font-size: 16px;
  }

  .pehp-content {
    padding: 36px 24px 48px;
  }

  .pehp-content__text {
    font-size: 16px;
  }

  .pehp-content__text h2 {
    font-size: 32px;
    margin: 28px 0 14px;
  }

  .pehp-content__tarif {
    padding: 28px 24px;
    border-radius: var(--radius-md);
  }

  .pehp-content__tarif p {
    font-size: 16px;
  }

  /* Footer */
  .footer {
    flex-direction: column;
    text-align: center;
    padding: 36px 24px 56px;
    gap: 20px;
  }

  .footer__links {
    align-items: center;
  }

  .footer__links a:hover {
    transform: none;
  }

  .footer__contact {
    margin-left: 0;
  }

  .footer__copyright {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 12px;
  }
}

/* ========================================
   REDUCED MOTION — accessibility
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}
