/* ==========================================================================
   You Kids Thiverval Liberty — design system
   Charte reprise du site du réseau You Kids (rose / noir / blanc)
   ========================================================================== */

:root {
  --pink: #E6007E;
  --pink-dark: #B8005F;
  --pink-light: #FCE1F0;
  --pink-tint: #FFF5FA;
  --yellow: #FFE619;
  --black: #17151A;
  --white: #FFFFFF;
  --grey: #6E6B72;
  --grey-light: #EDEAF0;
  --radius: 999px;
  --radius-card: 20px;
  --shadow: 0 20px 45px rgba(23, 21, 26, 0.12);
  --container: 1180px;
  --font-display: 'Retro Brunch Sans', 'Baloo 2', 'Poppins', system-ui, sans-serif;
  --font: 'Houschka Pro', 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* Fichier fourni est nommé "Retro Brunch Serif.ttf" mais utilisé ici comme la police de titres (h1/h2) */
@font-face {
  font-family: 'Retro Brunch Sans';
  src: url('../fonts/retro-brunch-sans.ttf') format('truetype');
  font-weight: 400 800;
  font-display: swap;
}
/* Houschka Pro : seules les graisses Medium/DemiBold/ExtraBold ont été fournies (pas de Regular/Bold) */
@font-face {
  font-family: 'Houschka Pro';
  src: url('../fonts/houschka-pro-medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Houschka Pro';
  src: url('../fonts/houschka-pro-medium-italic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Houschka Pro';
  src: url('../fonts/houschka-pro-semibold.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Houschka Pro';
  src: url('../fonts/houschka-pro-extrabold.woff2') format('woff2');
  font-weight: 800;
  font-display: swap;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 500; /* pas de graisse Regular (400) fournie pour Houschka Pro, Medium sert de base */
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0; }
h1, h2 { font-family: var(--font-display); letter-spacing: 0; }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
mark {
  background: var(--pink);
  color: var(--white);
  padding: 0.05em 0.5em;
  border-radius: 0.4em;
  font-style: normal;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
section[data-color-scheme="pink"] mark,
section[data-color-scheme="black"] mark {
  background: var(--yellow);
  color: var(--black);
}

/* Buttons -------------------------------------------------------------- */
.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  border-radius: var(--radius);
  padding: 14px 26px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.button--fill {
  background: var(--pink);
  color: var(--white);
}
.button--fill:hover { background: var(--pink-dark); transform: translateY(-2px); }
.button--outline {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
}
.button--outline:hover { background: var(--pink); color: var(--white); }
.button--dark { background: var(--black); color: var(--white); }
.button--dark:hover { background: #000; transform: translateY(-2px); }
.button svg { width: 18px; height: 18px; flex-shrink: 0; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 18px rgba(0,0,0,0.06);
}
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.header-left { display: flex; align-items: center; gap: 20px; }
.header-logo { display: flex; align-items: center; }
.header-logo-image { height: 52px; width: auto; }
.header-store {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 20px;
  border-left: 1px solid var(--grey-light);
}
.header-store-pin {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--pink);
}
.header-store-text { display: flex; flex-direction: column; line-height: 1.3; }
.header-store-name { font-size: 13px; font-weight: 700; color: var(--black); }
.header-store-address { font-size: 12px; color: var(--grey); }
.header-store:hover .header-store-name { color: var(--pink); }
.menu { display: flex; align-items: center; gap: 24px; }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
}
.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
  content: '';
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: var(--black);
  transition: all 0.2s ease;
}
.menu-toggle-icon { top: 19px; }
.menu-toggle-icon::before { top: -7px; }
.menu-toggle-icon::after { top: 7px; }
.menu-wrapper { display: flex; align-items: center; gap: 24px; }
.menu-list {
  display: flex;
  align-items: center;
  gap: 6px;
}
.menu-item { position: relative; }
.menu-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  color: var(--black);
}
.menu-link:hover { background: var(--pink-light); color: var(--pink-dark); }
.menu-arrow { width: 12px; height: 12px; }
.menu-link[aria-expanded="true"] .menu-arrow { transform: rotate(180deg); }

.submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 22px;
  min-width: 320px;
  opacity: 0;
  visibility: hidden;
  translate: 0 8px;
  transition: all 0.18s ease;
}
.menu-item:has(> .menu-link[aria-expanded="true"]) .submenu,
.submenu.is-open {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
}
.submenu-close { display: none; }
.submenu-header { margin-bottom: 14px; }
.submenu-title { font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.submenu-text { font-size: 13px; color: var(--grey); margin-bottom: 10px; }
.submenu-wrapper { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 20px; }
.submenu-list { display: flex; flex-direction: column; gap: 4px; }
.submenu-link {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
}
.submenu-link:hover { background: var(--pink-tint); color: var(--pink-dark); }
.menu-book { padding: 12px 22px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.home {
  position: relative;
  color: var(--white);
  min-height: 640px;
  display: flex;
  align-items: flex-end;
}
.home-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.home-background img { width: 100%; height: 100%; object-fit: cover; }
.home-background::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.35) 100%);
}
.home-wrapper { position: relative; padding: 80px 24px 64px; max-width: 880px; }
.home-title {
  font-size: clamp(30px, 4.4vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
/* Garde "parc enfant indoor dès 6 mois" sur une seule ligne au-delà du mobile */
@media (min-width: 721px) {
  .home-title-sub { white-space: nowrap; }
}
.home-text { font-size: 18px; margin-bottom: 28px; opacity: 0.95; }
.home-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Google rating strip ---------------------------------------------------- */
.rating-strip {
  background: var(--black);
  color: var(--white);
}
.rating-strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  text-align: center;
}
.rating-strip-stars { display: inline-flex; gap: 2px; }
.rating-strip-stars svg { width: 18px; height: 18px; fill: var(--yellow); }
.rating-strip strong { font-weight: 700; }
.rating-strip a { color: var(--yellow); font-weight: 600; text-decoration: underline; }

/* ==========================================================================
   Generic section paddings
   ========================================================================== */
.section { padding: 88px 0; }
section[data-color-scheme="pink"] { background: var(--pink); color: var(--white); }
section[data-color-scheme="pink"] .grey { color: rgba(255,255,255,0.85); }
section[data-color-scheme="light-pink"] { background: var(--pink-light); }
section[data-color-scheme="black"] { background: var(--black); color: var(--white); }

.section-title, .mixed-title, .location-title, .faq-title {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 18px;
}
.section-description { max-width: 640px; color: var(--grey); font-size: 16px; }
section[data-color-scheme="pink"] .section-description { color: rgba(255,255,255,0.9); }
.section-header { text-align: center; margin: 0 auto 48px; max-width: 680px; }

/* Mixed (image + text) --------------------------------------------------- */
.mixed-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.mixed--reverse .mixed-wrapper { direction: rtl; }
.mixed--reverse .mixed-wrapper > * { direction: ltr; }
.mixed-media { border-radius: var(--radius-card); overflow: hidden; aspect-ratio: 4/3.4; box-shadow: var(--shadow); }
.mixed-media img { width: 100%; height: 100%; object-fit: cover; }
.mixed-description { margin: 18px 0 24px; }
.mixed-description p { margin-bottom: 12px; }
.mixed-description ul { margin: 12px 0; }
.mixed-description li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 8px;
  font-weight: 600;
}
.mixed-description li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink);
}
section[data-color-scheme="pink"] .mixed-description li::before { background: var(--yellow); }
.mixed-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Tarifs express ---------------------------------------------------------*/
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.price-card:hover { border-color: var(--pink); transform: translateY(-4px); }
.price-card-age { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--grey); }
.price-card-title { font-size: 19px; font-weight: 700; margin: 8px 0 14px; }
.price-card-value { font-size: 34px; font-weight: 800; color: var(--pink); }
.price-card-value span { font-size: 15px; font-weight: 600; color: var(--grey); }
.price-note { margin-top: 24px; font-size: 14px; color: var(--grey); text-align: center; }

.pricing-slider { position: relative; margin-top: 40px; }
.pricing-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 12px;
  margin: -4px -4px 0;
}
.pricing-track::-webkit-scrollbar { display: none; }
.pricing-track { scrollbar-width: none; -ms-overflow-style: none; }
.pricing-track .price-card {
  flex: 0 0 250px;
  scroll-snap-align: start;
}
.pricing-arrow {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 2;
}
.pricing-arrow svg { width: 18px; height: 18px; }
.pricing-arrow:hover { background: var(--pink-dark); }
.pricing-arrow--prev { left: -22px; }
.pricing-arrow--next { right: -22px; }

/* Activities -------------------------------------------------------------*/
.activities-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 24px;
  margin-top: 44px;
}
.activity-card {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-card);
  overflow: hidden;
  text-align: center;
  padding-bottom: 22px;
  transition: transform 0.2s ease;
}
.activity-card:hover { transform: translateY(-6px); }
.activity-card-image { aspect-ratio: 1/1; overflow: hidden; position: relative; }
.activity-card-image img { width: 100%; height: 100%; object-fit: cover; }
.activity-card-title { font-size: 18px; font-weight: 700; margin: 18px 0 4px; }
.activity-card-text { font-size: 13px; color: rgba(255,255,255,0.85); padding: 0 16px 16px; }
.activity-card-link { display: block; height: 100%; }
.activity-card-link:hover .activity-card-title { text-decoration: underline; }

/* Steps --------------------------------------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.step-card { position: relative; }
.step-card-number {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  z-index: 2;
  box-shadow: 0 6px 14px rgba(230,0,126,0.35);
}
.step-card-image { border-radius: var(--radius-card); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow); }
.step-card-image img { width: 100%; height: 100%; object-fit: cover; }
.step-card-title { font-size: 17px; font-weight: 700; margin: 18px 0 8px; }
.step-card-text { font-size: 14px; color: var(--grey); }

.step-card--simple {
  background: var(--pink-tint);
  border-radius: var(--radius-card);
  padding: 28px 24px;
}
.step-card-number--static {
  position: static;
  box-shadow: none;
  margin-bottom: 18px;
}
.step-card--simple .step-card-title { margin: 0 0 8px; }

/* Location ----------------------------------------------------------- */
.location-wrapper {
  background: var(--white);
  border-radius: 32px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  color: var(--black);
}
.location-subtitle { font-size: 17px; font-weight: 700; margin: 26px 0 10px; }
.location-text { font-style: normal; color: var(--grey); }
.location-status { display: inline-block; margin-top: 14px; font-weight: 700; padding: 6px 14px; border-radius: var(--radius); font-size: 13px; }
.location-status--open { background: #E4F7EC; color: #1E8A4C; }
.location-status--closed { background: #FBE6E6; color: #C23A3A; }
.location-hours { width: 100%; border-collapse: collapse; margin-top: 4px; }
.location-hours tr { border-bottom: 1px solid var(--grey-light); }
.location-hours th, .location-hours td { text-align: left; padding: 8px 0; font-size: 14px; }
.location-hours th { font-weight: 600; color: var(--black); width: 40%; }
.location-hours td { color: var(--grey); }
.location-note { margin-top: 14px; font-size: 13px; color: var(--grey); }
.location-map { display: flex; flex-direction: column; gap: 16px; }
.location-map-canvas { border-radius: var(--radius-card); overflow: hidden; flex: 1; min-height: 280px; box-shadow: var(--shadow); border: 0; }
.location-map-canvas iframe { width: 100%; height: 100%; border: 0; display: block; }
.location-map-button { justify-content: center; }

/* FAQ ------------------------------------------------------------------ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.question { background: var(--pink); border-radius: var(--radius-card); overflow: hidden; color: var(--white); }
.question-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 26px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  color: var(--white);
  text-align: left;
}
.question-title { font-size: 16px; font-weight: 700; }
.question-arrow { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.2s ease; }
.question-header[aria-expanded="true"] .question-arrow { transform: rotate(180deg); }
.question-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  background: var(--white);
  color: var(--black);
}
.question-wrapper.is-open { max-height: 600px; }
.question-inner { padding: 20px 26px; }
.question-content p { margin-bottom: 10px; color: var(--grey); font-size: 15px; }
.question-content ul { margin: 10px 0; }
.question-content li { padding-left: 20px; position: relative; margin-bottom: 6px; font-size: 15px; }
.question-content li::before { content: '•'; position: absolute; left: 4px; color: var(--pink); }

/* Avis Google ------------------------------------------------------------*/
.reviews-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--black);
  color: var(--white);
  border-radius: 32px;
  padding: 56px;
  text-align: center;
}
.reviews-score { font-size: 64px; font-weight: 800; line-height: 1; }
.reviews-stars { display: flex; justify-content: center; gap: 6px; margin: 18px 0; }
.reviews-stars svg { width: 28px; height: 28px; fill: var(--yellow); }
.reviews-count { color: rgba(255,255,255,0.75); margin-bottom: 28px; }
.reviews-source { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 20px; }

/* Newsletter -------------------------------------------------------------*/
.newsletter-wrapper { text-align: center; max-width: 640px; margin: 0 auto; }
.newsletter-title { font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.newsletter-text { color: var(--grey); margin-bottom: 32px; }
.newsletter-form { background: var(--white); border-radius: var(--radius-card); padding: 32px; box-shadow: var(--shadow); }
.form-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.form-row input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--grey-light);
  font-family: var(--font);
  font-size: 15px;
}
.form-consent { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--grey); text-align: left; margin-bottom: 20px; }
.form-consent input { margin-top: 3px; }
.form-description { font-size: 12px; color: var(--grey); margin-top: 14px; text-align: left; }
.form-description a { text-decoration: underline; }
.form-submit-button { width: 100%; justify-content: center; }

/* Footer ------------------------------------------------------------------*/
.footer { background: var(--black); color: rgba(255,255,255,0.8); padding: 64px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-logo { height: 48px; width: auto; margin-bottom: 10px; }
.footer-brand {
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-text { font-size: 14px; line-height: 1.7; }
.footer-heading { color: var(--white); font-weight: 700; margin-bottom: 16px; font-size: 15px; }
.footer-nav li, .footer-contact li { margin-bottom: 10px; font-size: 14px; }
.footer-nav a:hover { color: var(--white); }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
}
.footer-social-link:hover { background: var(--pink); }
.footer-social-link svg { width: 18px; height: 18px; fill: currentColor; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  font-size: 13px;
}

/* ==========================================================================
   Barre sticky "Réserver" (mobile uniquement)
   ========================================================================== */
.sticky-reserve {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: var(--white);
  box-shadow: 0 -8px 24px rgba(23, 21, 26, 0.14);
}
.sticky-reserve-button {
  width: 100%;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 15px;
}
.footer-bottom a:hover { color: var(--white); }

/* ==========================================================================
   Breadcrumb
   ========================================================================== */
.breadcrumb { padding: 22px 0; font-size: 13px; color: var(--grey); }
.breadcrumb a:hover { color: var(--pink); }
.breadcrumb .sep { margin: 0 8px; color: var(--grey-light); }
.breadcrumb .current { color: var(--black); font-weight: 600; }

/* ==========================================================================
   Page hero (sous-pages sans image plein cadre)
   ========================================================================== */
.page-hero { padding: 20px 0 64px; }
.page-hero-title { font-size: clamp(30px, 4.4vw, 46px); font-weight: 800; line-height: 1.2; max-width: 760px; }
.page-hero-text { margin-top: 16px; color: var(--grey); font-size: 17px; max-width: 560px; }
.home--compact { min-height: 420px; }

/* ==========================================================================
   Formulaire de contact
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-form-card { background: var(--pink); border-radius: var(--radius-card); padding: 44px; color: var(--white); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-item-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-item--full { grid-column: 1 / -1; }
.form-label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 8px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 14px;
  border: none;
  font-family: var(--font);
  font-size: 15px;
  color: var(--black);
  background: var(--white);
}
.form-textarea { min-height: 130px; resize: vertical; font-family: var(--font); }
.form-phone { display: flex; gap: 8px; }
.form-phone select { width: 92px; flex-shrink: 0; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; margin-bottom: 10px; }
.form-checkbox input { margin-top: 3px; }
.form-legal { font-size: 12px; opacity: 0.85; margin: 10px 0 20px; line-height: 1.6; }
.form-legal a { text-decoration: underline; }

/* ==========================================================================
   Bandeau d'infos (icônes)
   ========================================================================== */
.info-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.info-item { display: flex; align-items: center; gap: 16px; }
.info-item-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 14px;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
}
.info-item-icon svg { width: 26px; height: 26px; }
.info-item-label { font-size: 16px; font-weight: 700; margin-bottom: 3px; }
.info-item-value { font-weight: 500; font-size: 14px; opacity: 0.8; }

/* ==========================================================================
   Cartes formules détaillées (tarifs / anniversaire)
   ========================================================================== */
.options-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 44px; }
.option-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  color: var(--black);
}
.option-card-image { aspect-ratio: 16/10; overflow: hidden; }
.option-card-image img { width: 100%; height: 100%; object-fit: cover; }
.option-card-content { padding: 30px; display: flex; flex-direction: column; flex: 1; }
.option-card-eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--pink); margin-bottom: 8px; }
.option-card-title { font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.option-card-subtitle { font-size: 14px; color: var(--grey); margin-bottom: 18px; }
.option-card-list { margin-bottom: 24px; flex: 1; }
.option-card-list li { padding-left: 26px; position: relative; margin-bottom: 10px; font-size: 14px; font-weight: 600; }
.option-card-list li::before { content: '✓'; position: absolute; left: 0; color: var(--pink); font-weight: 800; }
.option-card-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-top: 20px; border-top: 1px solid var(--grey-light);
}
.option-card-price { font-size: 26px; font-weight: 800; color: var(--pink); }
.option-card-price span { font-size: 13px; font-weight: 600; color: var(--grey); }

/* ==========================================================================
   Checklist (pourquoi nous choisir)
   ========================================================================== */
.checklist li { padding-left: 30px; position: relative; margin-bottom: 12px; font-weight: 600; }
.checklist li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font-size: 12px;
  display: flex; align-items: center; justify-content: center;
}
section[data-color-scheme="pink"] .checklist li::before { background: var(--yellow); color: var(--black); }

/* ==========================================================================
   Galerie + lightbox
   ========================================================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px; }
.gallery-item {
  border-radius: 16px; overflow: hidden; aspect-ratio: 1/1;
  cursor: pointer; position: relative; border: none; padding: 0;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px; text-align: left;
  background: linear-gradient(0deg, rgba(0,0,0,0.7), transparent);
  color: var(--white); font-size: 13px; font-weight: 700;
}
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(10,9,12,0.92);
  display: none; align-items: center; justify-content: center;
  padding: 60px 24px;
}
.lightbox-overlay.is-open { display: flex; }
.lightbox-overlay img { max-width: 100%; max-height: 100%; border-radius: 14px; display: block; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: var(--white); color: var(--black);
  border: none; border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .header-store { display: none; }
  .mixed-wrapper { grid-template-columns: 1fr; }
  .mixed--reverse .mixed-wrapper { direction: ltr; }
  .location-wrapper { grid-template-columns: 1fr; padding: 36px 24px; border-radius: 24px; }
  .activities-list { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .info-row { grid-template-columns: 1fr 1fr; }
  .options-list { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .section { padding: 56px 0; }
  .menu-toggle { display: block; }
  .menu-list {
    position: fixed;
    inset: 0;
    top: 68px;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
  }
  .menu-wrapper.is-open .menu-list { transform: translateX(0); }
  .menu-link { justify-content: space-between; padding: 16px; font-size: 17px; }
  .submenu {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    display: none;
    padding: 10px 0 10px 16px;
  }
  .submenu.is-open { display: block; }
  .submenu-wrapper { grid-template-columns: 1fr; }
  .menu-book { order: 10; justify-content: center; margin-top: 12px; }
  .home { min-height: 520px; }
  .home-wrapper { padding: 56px 20px 48px; }
  .activities-list { grid-template-columns: 1fr 1fr; gap: 14px; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .reviews-card { padding: 36px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px; }
  .info-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .lightbox-prev, .lightbox-next { width: 36px; height: 36px; }
  .pricing-track {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: visible;
    gap: 14px;
    padding: 0;
    margin: 0;
  }
  .pricing-track .price-card { flex: unset; scroll-snap-align: unset; padding: 18px 16px; }
  .pricing-track .price-card-age { font-size: 11px; }
  .pricing-track .price-card-title { font-size: 16px; margin: 6px 0 10px; }
  .pricing-track .price-card-value { font-size: 24px; }
  .pricing-track .price-card-value span { display: block; margin-top: 2px; font-size: 12px; }
  .pricing-arrow { display: none; }
  .sticky-reserve { display: flex; }
  body { padding-bottom: 72px; }
}
