/* ===== VARIABLES ===== */
:root {
  --primary: #eb32a6;
  --secondary: #ffe5af;
  --pearl: #fcfcf7;
  --neutral-50: #fafafa;
  --neutral-500: #737373;
  --black: #000;
  --white: #fff;
  --font-parisienne: 'Parisienne', cursive;
  --font-poppins: 'Poppins', system-ui, Arial, sans-serif;
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-2xl: 1rem;
}

/* ===== RESET ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--font-poppins);
  font-weight: 400;
  line-height: 1.5;
  min-width: 320px;
  min-height: 100vh;
  color: #171717;
  background: var(--white);
}
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== ANIMATIONS ===== */
@keyframes fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slide-in-r {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

.animate-fade-in {
  animation: fade-in 0.6s ease-out both;
}

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
.text-primary { color: var(--primary); }
.block { display: block; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: color-mix(in oklab, var(--pearl) 60%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  max-height: 5rem;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.75rem;
}
.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
.logo-img {
  width: auto;
  max-width: 4rem;
  max-height: 4rem;
}
.logo-text {
  font-family: var(--font-parisienne);
  color: var(--primary);
  align-self: flex-end;
}
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  white-space: nowrap;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--primary); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header-email-link {
  display: none;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.15s;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
}
.header-email-link:hover { background: rgba(115,115,115,.1); }
.email-text {
  font-size: 0.875rem;
  display: none;
}
.burger-btn {
  background: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  transition: background 0.15s;
}
.burger-btn:hover { background: color-mix(in oklab, var(--primary) 10%, transparent); }

/* ===== MOBILE DRAWER ===== */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(23,23,23,.5);
  z-index: 55;
}
.drawer-overlay.open { display: block; }
.drawer {
  position: fixed;
  right: 0;
  top: 0.5rem;
  width: calc(100% - 1rem);
  max-width: 28rem;
  height: calc(100dvh - 1rem);
  background: var(--pearl);
  z-index: 60;
  border-radius: var(--radius-2xl);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transform: translateX(110%);
  transition: transform 0.3s ease-out;
}
.drawer.open { animation: slide-in-r 0.3s ease-out forwards; }
.drawer-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}
.drawer-close:hover { background: color-mix(in oklab, var(--primary) 10%, transparent); }
.drawer-title {
  font-family: var(--font-parisienne);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
}
.drawer-title-sub { display: block; }
.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.nav-link-mobile {
  font-size: 1rem;
  transition: color 0.15s;
}
.nav-link-mobile:hover { color: var(--primary); }

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100vh;
  min-height: 100svh;
}
.hero-text-panel {
  background: linear-gradient(135deg, var(--secondary) 0%, color-mix(in oklab, var(--primary) 20%, var(--pearl)) 100%);
  display: flex;
  align-items: center;
  padding: 7rem 1.5rem 3rem;
}
.hero-image-panel {
  display: block;
  overflow: hidden;
  height: 260px;
}
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 38rem;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  background: color-mix(in oklab, var(--primary) 12%, transparent);
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  align-self: flex-start;
}
.hero-text { display: flex; flex-direction: column; gap: 1rem; }
.hero-title {
  font-family: var(--font-parisienne);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
}
.hero-subtitle {
  display: block;
  color: var(--black);
}
.hero-tagline {
  font-size: 1.25rem;
  line-height: 1.625;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-badges {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 2rem;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.badge-icon {
  padding: 0.5rem;
  background: color-mix(in oklab, var(--primary) 10%, transparent);
  border-radius: 9999px;
  color: var(--primary);
  display: flex;
  align-items: center;
}
.badge-label {
  font-weight: 600;
  color: color-mix(in oklab, var(--primary) 80%, transparent);
}
.badge-desc { font-size: 0.875rem; color: var(--black); }
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  transition: all 0.15s;
  font-family: inherit;
  font-weight: 500;
  text-decoration: none;
}
.btn-large {
  min-height: 3rem;
  padding: 0 1.5rem;
  font-size: 1.125rem;
  border-radius: var(--radius-lg);
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover { background: color-mix(in oklab, var(--primary) 80%, transparent); }
.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-icon { flex-shrink: 0; transition: transform 0.15s; }
.btn:hover .btn-icon { transform: translateX(4px); }

/* ===== SECTION BACKGROUNDS ===== */
.section-pearl { background: var(--pearl); padding-block: 5rem; }
.section-gradient {
  background: linear-gradient(to right, color-mix(in oklab, var(--primary) 10%, transparent), color-mix(in oklab, var(--secondary) 30%, transparent));
  padding-block: 5rem;
}

/* ===== SECTION HEADER ===== */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}
.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.about-text {
  font-size: 1rem;
  line-height: 1.625;
  max-width: 60rem;
}
.about-cards-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.about-card { width: 100%; max-width: 22.5rem; }
.about-card-img-wrap {
  position: relative;
  width: 100%;
  height: 18.75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.about-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
}
.about-card-img-wrap:hover .about-card-img { transform: scale(1.05); }
.about-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,.6), rgba(0,0,0,.8));
}
.about-card-sentence {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 1rem;
  font-size: 1.125rem;
  margin-top: auto;
}

/* ===== TWO-COL GRID ===== */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  width: fit-content;
  margin-inline: auto;
}
.two-col-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}
.two-col-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
}
.two-col-img {
  max-height: 37.5rem;
  width: auto;
  max-width: 21rem;
  margin-inline: auto;
  transition: transform 0.5s ease-in-out;
}
.two-col-img:hover { transform: scale(1.05); }
.desktop-only { display: none; }
.mobile-only { width: fit-content; margin-inline: auto; }

.family-video {
  margin-inline: auto;
  max-height: 37.5rem;
  border-radius: var(--radius-md);
  display: block;
  width: 100%;
}

/* ===== FEATURE LIST ===== */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
}
.feature-icon {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--primary);
}

/* ===== SERVICE CARDS ===== */
.cards-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
}
.service-card {
  background: linear-gradient(to top, color-mix(in oklab, var(--secondary) 10%, transparent), #fafafa);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  transition: all 0.15s;
  width: 100%;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
}
.service-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
  transform: translateY(-4px);
}
.service-icon {
  padding: 0.75rem;
  background: color-mix(in oklab, var(--secondary) 50%, transparent);
  border-radius: 9999px;
  color: var(--primary);
  display: flex;
  flex-shrink: 0;
}
.service-title {
  font-size: 1.25rem;
  font-weight: 600;
}
.service-desc {
  color: var(--neutral-500);
  font-size: 0.875rem;
  line-height: 1.625;
}
.service-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
.service-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}
.service-price { font-weight: 600; color: var(--primary); }
.service-duration { font-weight: 500; }
.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  font-size: 0.8rem;
  color: var(--neutral-500);
  width: 100%;
  text-align: left;
  list-style: none;
  padding-left: 0;
}
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  line-height: 1.5;
  font-weight: 600;
  color: #171717;
}
.service-features li::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 0.1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23eb32a6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m10 8 4 4-4 4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.btn-savoir-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: auto;
  padding: 0.625rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--primary);
  background: color-mix(in oklab, var(--primary) 10%, transparent);
  color: var(--primary);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.btn-savoir-plus:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-savoir-plus svg { flex-shrink: 0; transition: transform 0.15s; }
.btn-savoir-plus:hover svg { transform: translateX(4px); }

/* ===== CONTACT CARDS ===== */
.contact-card {
  background: linear-gradient(to top, color-mix(in oklab, var(--secondary) 10%, transparent), #fafafa);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
  transition: all 0.15s;
  width: 100%;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
}
.contact-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
  transform: translateY(-4px);
}
.contact-icon {
  padding: 0.75rem;
  background: color-mix(in oklab, var(--secondary) 50%, transparent);
  border-radius: 9999px;
  color: var(--primary);
  display: flex;
}
.contact-title { font-size: 1.125rem; font-weight: 600; }
.contact-value { font-weight: 600; color: var(--primary); }
.contact-email:hover { text-decoration: underline; }
.contact-annotation { font-size: 0.875rem; color: var(--neutral-500); line-height: 1.625; }

/* ===== FOOTER ===== */
.footer {
  position: relative;
  background: linear-gradient(to right, var(--secondary), color-mix(in oklab, var(--primary) 80%, transparent));
  padding-block: 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.footer-brand {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
  color: var(--primary);
}
.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.footer-list { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-list-item { display: flex; align-items: center; gap: 0.5rem; }

/* ===== RESPONSIVE ===== */

/* Mobile (< 480px) : 1 colonne */
@media (max-width: 30rem) {
  .hero-title { font-size: 2.5rem; }
  .hero-tagline { font-size: 1rem; }
  .btn-large { font-size: 1rem; padding: 0 1rem; }
  .section-pearl, .section-gradient { padding-block: 3rem; }
  .cards-row { grid-template-columns: 1fr; }
}

/* ≥ 480px : email header visible, badges en ligne */
@media (min-width: 30rem) {
  .header-email-link { display: flex; }
  .hero-badges { flex-direction: row; }
}

/* Tablette (≥ 640px) : footer 2 colonnes */
@media (min-width: 40rem) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablette large (≥ 768px) */
@media (min-width: 48rem) {
  .hero-title { font-size: 3.25rem; }
  .family-video { width: auto; }
}

/* Desktop (≥ 1024px) : 4 colonnes sur une ligne */
@media (min-width: 64rem) {
  .nav-desktop { display: flex; }
  .burger-btn { display: none; }
  .email-text { display: inline; }
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-text-panel { padding: 5rem 4rem 5rem 3rem; justify-content: flex-end; }
  .hero-image-panel { height: auto; }
  .hero-content { max-width: 32rem; }
  .hero-title { font-size: 3.75rem; }
  .section-title { font-size: 2.25rem; }
  .two-col-grid { grid-template-columns: auto 1fr; }
  .reverse-grid { grid-template-columns: auto 1fr; }
  .desktop-only { display: block; }
  .mobile-only { display: none; }
  .cards-row { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
