/* =========================================================
   Katia Kids Maquillage — feuille de style
   ========================================================= */
:root {
  --blue: #2a3bb0;
  --blue-deep: #1c2680;
  --magenta: #e0178a;
  --pink: #f49ac6;
  --pink-soft: #fde6f1;
  --yellow: #ffc400;
  --yellow-soft: #fff2d0;
  --turquoise: #17b8c4;
  --turquoise-soft: #e0f7f8;
  --purple: #8b3fe0;
  --purple-soft: #f2e8fc;
  --ink: #241a3d;
  --ink-soft: #5b5470;
  --cream: #fff9f2;
  --white: #ffffff;
  --line: #efe6dc;

  --radius-s: 12px;
  --radius: 20px;
  --radius-l: 34px;
  --shadow: 0 18px 40px -18px rgba(42, 30, 80, 0.35);
  --shadow-soft: 0 10px 30px -14px rgba(42, 30, 80, 0.25);
  --wrap: 1150px;
  --font-head: "Fredoka", "Trebuchet MS", sans-serif;
  --font-body: "Nunito Sans", "Segoe UI", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  color: var(--blue-deep);
  margin: 0 0 .5em;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  text-align: center;
}

a { color: var(--magenta); }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }

section { padding: clamp(3.5rem, 8vw, 6rem) 0; }

.lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 46ch;
}
.centered { text-align: center; margin-inline: auto; }

.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .8rem;
  font-weight: 600;
  color: var(--magenta);
  margin-bottom: .6rem;
  display: block;
}
.eyebrow.centered { text-align: center; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--magenta); color: #fff; box-shadow: var(--shadow-soft); }
.btn-primary:hover { background: #b0248b; }
.btn-blue { background: var(--blue); color: #fff; box-shadow: var(--shadow-soft); }
.btn-blue:hover { background: var(--blue-deep); }
.btn-ghost { background: #fff; color: var(--blue-deep); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--magenta); color: var(--magenta); }
.btn-wa { background: #25d366; color: #08331b; }
.btn-wa:hover { background: #1fbe5a; }
.btn-lg { padding: 1rem 2rem; font-size: 1.08rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 249, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
}
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; margin-right: auto; }
.brand img { width: 46px; height: 46px; object-fit: contain; }
.brand strong {
  font-family: var(--font-head);
  color: var(--blue-deep);
  font-size: 1.05rem;
  line-height: 1;
}
.brand span { display: block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--magenta); }

.nav { display: flex; align-items: center; gap: 1.4rem; }
.nav > a:not(.btn), .nav-drop > button {
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  font-size: .98rem;
  background: none; border: 0; cursor: pointer; padding: 0;
}
.nav > a:not(.btn) { position: relative; }
.nav > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -4px;
  height: 2px; border-radius: 2px; background: var(--magenta);
  transition: right .25s cubic-bezier(.2, .7, .3, 1);
}
.nav > a:not(.btn):hover::after, .nav > a[aria-current="page"]:not(.btn)::after { right: 0; }
.nav > a:not(.btn):hover, .nav-drop > button:hover { color: var(--magenta); }
.nav a[aria-current="page"]:not(.btn) { color: var(--magenta); }

/* menu déroulant Prestations */
.nav-drop { position: relative; }
.nav-drop > button::after { content: " ▾"; font-size: .8em; }
.nav-drop-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: .5rem;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu,
.nav-drop-menu.open {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-drop-menu a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink);
  text-decoration: none;
  padding: .55rem .7rem;
  border-radius: var(--radius-s);
}
.nav-drop-menu a:hover, .nav-drop-menu a[aria-current="page"] { background: var(--pink-soft); color: var(--magenta); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .3rem; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 24px; height: 2.5px; background: var(--blue-deep); border-radius: 2px; transition: .2s;
}
.nav-toggle span::before { transform: translateY(-7px); }
.nav-toggle span::after { transform: translateY(4.5px); }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(2.5rem, 6vw, 4.5rem); overflow: hidden; }
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.1rem, 5.2vw, 3.5rem);
  margin-bottom: .4em;
}
.hero h1 .hl { color: var(--magenta); }
.hero p { font-size: 1.15rem; color: var(--ink-soft); max-width: 44ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.hero-zone {
  margin-top: 1.7rem;
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--blue-deep);
  display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
}
.hero-zone b { color: var(--magenta); }

.hero-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 130px;
  gap: 14px;
}
.hero-collage picture { display: block; height: 100%; }
.hero-collage img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-collage > :nth-child(1) { grid-row: span 2; }
.hero-collage > :nth-child(1) img { border-radius: var(--radius-l); }
.hero-collage > :nth-child(2) { grid-row: span 2; margin-top: 34px; }
.hero-collage > :nth-child(3) { grid-column: 1 / 2; }
.hero-collage > :nth-child(4) { grid-column: 2 / 3; }

/* confetti dots */
.confetti { position: relative; }
.confetti::before, .confetti::after {
  content: ""; position: absolute; border-radius: 50%; z-index: 0;
}
.confetti::before { width: 16px; height: 16px; background: var(--yellow); top: 6%; left: -10px; }
.confetti::after { width: 22px; height: 22px; background: var(--pink); bottom: 8%; right: -14px; }

/* ---------- Bandeau valeurs (marquee) ---------- */
.marquee-band {
  background: var(--blue);
  color: #fff;
  padding: .9rem 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee-band:hover .marquee-track { animation-play-state: paused; }
.marquee-group {
  display: flex; align-items: center;
  gap: 2.4rem;
  padding-right: 2.4rem;
  font-family: var(--font-head); font-size: .98rem;
  white-space: nowrap;
}
.marquee-group > span { display: inline-flex; align-items: center; gap: .5rem; }
.marquee-band .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); flex: none; }
.marquee-group > span:nth-child(5n+1) .dot { background: var(--magenta); }
.marquee-group > span:nth-child(5n+2) .dot { background: var(--turquoise); }
.marquee-group > span:nth-child(5n+3) .dot { background: var(--yellow); }
.marquee-group > span:nth-child(5n+4) .dot { background: var(--purple); }
.marquee-group > span:nth-child(5n+5) .dot { background: var(--pink); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Prestations ---------- */
.prestations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  margin-top: 2.5rem;
}
.presta-card {
  background: #fff;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform .18s ease, box-shadow .18s ease;
}
a.presta-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.presta-card .body h3 { transition: color .15s ease; }
a.presta-card:hover .body h3 { color: var(--magenta); }
.presta-card .media { aspect-ratio: 16 / 11; overflow: hidden; }
.presta-card .media picture { display: block; width: 100%; height: 100%; }
.presta-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.presta-card:hover .media img { transform: scale(1.04); }
.presta-card .body { padding: 1.6rem 1.7rem 1.8rem; }
.presta-card h3 { font-size: 1.4rem; display: flex; align-items: center; gap: .5rem; }
.presta-card p { color: var(--ink-soft); font-size: 1rem; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.chip {
  background: var(--pink-soft);
  color: var(--magenta);
  font-size: .82rem;
  font-weight: 700;
  padding: .3rem .8rem;
  border-radius: 999px;
}
.chip.alt { background: var(--yellow-soft); color: #a9760a; }

/* ---------- Galerie ---------- */
.gallery-tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem;
  margin: 2rem 0 2.2rem;
}
.tab-btn {
  font-family: var(--font-head);
  font-weight: 500;
  background: #fff;
  border: 2px solid var(--line);
  color: var(--blue-deep);
  padding: .55rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  transition: .15s;
}
.tab-btn[aria-selected="true"] { background: var(--magenta); border-color: var(--magenta); color: #fff; }
.tab-btn:hover { border-color: var(--magenta); }

.masonry {
  columns: 4 220px;
  column-gap: 14px;
}
.masonry[hidden] { display: none; }
.masonry .gphoto {
  display: block; width: 100%;
  border: 0; padding: 0; margin: 0 0 14px;
  background: none; cursor: zoom-in;
  break-inside: avoid;
  border-radius: var(--radius-s);
  overflow: hidden;
}
.masonry .gphoto picture { display: block; }
.masonry .gphoto img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius-s);
  box-shadow: var(--shadow-soft);
  background: var(--pink-soft);
  transition: transform .18s ease, filter .18s ease;
}
.masonry .gphoto:hover img { transform: translateY(-3px) scale(1.01); filter: saturate(1.08); }
.masonry .gphoto:focus-visible { outline: 2px solid var(--magenta); outline-offset: 2px; }

.gallery-more { text-align: center; margin-top: 2.5rem; }

/* ---------- Carousel (pages de contenu) ---------- */
.carousel-wrap { position: relative; margin-top: 2rem; }
.carousel {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  padding: .3rem .1rem 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.carousel[hidden] { display: none; }
.carousel::-webkit-scrollbar { height: 6px; }
.carousel::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
.carousel .gphoto {
  flex: 0 0 auto;
  width: 240px;
  scroll-snap-align: start;
  border: 0; padding: 0; margin: 0;
  background: none; cursor: zoom-in;
  border-radius: var(--radius-s);
  overflow: hidden;
}
.carousel .gphoto picture { display: block; }
.carousel .gphoto img {
  width: 240px; height: 310px;
  object-fit: cover; object-position: 50% 22%;
  display: block;
  border-radius: var(--radius-s);
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, filter .18s ease;
}
.carousel .gphoto:hover img { transform: scale(1.03); filter: saturate(1.08); }
.carousel .gphoto:focus-visible { outline: 2px solid var(--magenta); outline-offset: 2px; }

.carousel-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  color: var(--blue-deep); font-size: 1.5rem; line-height: 1;
  cursor: pointer; z-index: 3;
  display: flex; align-items: center; justify-content: center;
}
.carousel-nav:hover { color: var(--magenta); border-color: var(--magenta); }
.carousel-nav.prev { left: -12px; }
.carousel-nav.next { right: -12px; }
.carousel-nav[hidden] { display: none; }

@media (max-width: 760px) {
  .carousel .gphoto { width: 74vw; }
  .carousel .gphoto img { width: 74vw; height: 92vw; max-height: 440px; }
  .carousel-nav { display: none; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(28, 20, 46, 0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 4vw;
  animation: lb-fade .2s ease both;
}
.lightbox[hidden] { display: none; }
.lightbox img { animation: lb-pop .28s cubic-bezier(.2, .7, .3, 1) both; }
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes lb-pop { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: none; } }
.lightbox picture { display: flex; max-width: 100%; max-height: 88vh; }
.lightbox img { max-width: 100%; max-height: 88vh; border-radius: var(--radius-s); box-shadow: var(--shadow); object-fit: contain; }
.lightbox button {
  position: absolute; background: rgba(255,255,255,.14); color: #fff; border: 0;
  width: 52px; height: 52px; border-radius: 50%; font-size: 1.6rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.lightbox button:hover { background: rgba(255,255,255,.28); }
.lb-close { top: 18px; right: 18px; }
.lb-prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 14px; top: 50%; transform: translateY(-50%); }

/* ---------- Avis Google ---------- */
.avis-score {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  width: fit-content; margin: 1.6rem auto 0; padding: .6rem 1.3rem;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  box-shadow: var(--shadow-soft); text-decoration: none; color: var(--ink);
  font-family: var(--font-head); font-size: .95rem; transition: transform .15s ease;
}
.avis-score:hover { transform: translateY(-2px); }
.avis-score strong { color: var(--blue-deep); }
.avis-stars { color: var(--yellow); letter-spacing: .1em; font-size: 1.05rem; }
.avis-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 3vw, 2rem); margin-top: 2.5rem;
}
.avis-card {
  background: #fff; border-radius: var(--radius); border: 1px solid var(--line);
  padding: 1.6rem 1.7rem; display: flex; flex-direction: column; gap: .8rem;
}
.avis-card p { color: var(--ink-soft); font-size: .96rem; line-height: 1.55; }
.avis-author { font-family: var(--font-head); font-weight: 600; color: var(--blue-deep); font-size: .9rem; }
.avis-more { text-align: center; margin-top: 2.2rem; }
@media (max-width: 760px) { .avis-grid { grid-template-columns: 1fr; } }

/* ---------- Occasions ---------- */
.occasions { background: var(--pink-soft); }
.occ-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem; margin-top: 2.2rem;
}
.occ-card {
  background: #fff; border-radius: var(--radius);
  padding: 1.4rem 1rem; text-align: center;
  border: 1px solid var(--line);
}
.occ-card .emoji {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; margin: 0 auto; border-radius: 50%;
  font-size: 1.6rem; background: var(--magenta);
}
.occ-card:nth-child(4n+2) .emoji { background: var(--turquoise); }
.occ-card:nth-child(4n+3) .emoji { background: var(--yellow); }
.occ-card:nth-child(4n+4) .emoji { background: var(--purple); }
.occ-card b { display: block; font-family: var(--font-head); color: var(--blue-deep); margin-top: .3rem; }
.occ-card span { font-size: .86rem; color: var(--ink-soft); }

/* ---------- À propos ---------- */
.about .wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.about-photo { display: block; border-radius: var(--radius-l); box-shadow: var(--shadow); overflow: hidden; }
.about-photo img { display: block; width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; }
.about h2 { text-align: left; }
.about ul { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.about li { padding-left: 1.8rem; position: relative; margin-bottom: .6rem; }
.about li::before { content: "✦"; position: absolute; left: 0; color: var(--yellow); }

/* ---------- Zone ---------- */
.zone { background: var(--blue); color: #fff; text-align: center; }
.zone h2 { color: #fff; }
.zone .lead { color: rgba(255,255,255,.85); margin-inline: auto; }
.zone-deps { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2rem; }
.zone-dep {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  padding: 1.1rem 1.6rem;
  min-width: 160px;
}
.zone-dep b { font-family: var(--font-head); font-size: 1.5rem; display: block; color: var(--yellow); }

/* ---------- Réservation ---------- */
.reserve { background: var(--yellow-soft); }
.reserve-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); margin-top: 2.4rem; align-items: start; }
.form-card {
  background: #fff; border-radius: var(--radius-l); padding: clamp(1.5rem, 4vw, 2.4rem);
  box-shadow: var(--shadow-soft); border: 1px solid var(--line);
}
.field { margin-bottom: 1.15rem; }
.field > label { display: block; font-family: var(--font-head); font-weight: 500; margin-bottom: .4rem; color: var(--blue-deep); }
.field .req { color: var(--magenta); }
.field input[type="text"], .field input[type="email"], .field input[type="number"], .field textarea, .field select {
  width: 100%;
  padding: .75rem .9rem;
  border: 2px solid var(--line);
  border-radius: var(--radius-s);
  font: inherit;
  color: var(--ink);
  background: var(--cream);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--magenta); }
.field textarea { min-height: 110px; resize: vertical; }
.radio-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.radio-pill { position: relative; }
.radio-pill input { position: absolute; opacity: 0; }
.radio-pill span {
  display: inline-block; padding: .5rem 1rem; border: 2px solid var(--line);
  border-radius: 999px; cursor: pointer; font-size: .92rem; font-weight: 700; color: var(--ink-soft);
}
.radio-pill input:checked + span { background: var(--magenta); border-color: var(--magenta); color: #fff; }
.radio-pill input:focus-visible + span { outline: 2px solid var(--blue); outline-offset: 2px; }
.hp { position: absolute; left: -9999px; }
.form-note { font-size: .85rem; color: var(--ink-soft); margin-top: .3rem; }
.form-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }

.reserve-aside .contact-block { background: #fff; border-radius: var(--radius-l); padding: 1.8rem; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.contact-block h3 { font-size: 1.3rem; }
.contact-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.contact-list li { display: flex; align-items: center; gap: .7rem; margin-bottom: .8rem; font-weight: 600; }
.contact-list a { color: var(--ink); text-decoration: none; }
.contact-list a:hover { color: var(--magenta); }
.contact-list .ic {
  width: 38px; height: 38px; flex: none; border-radius: 50%;
  background: var(--pink-soft); color: var(--magenta);
  display: flex; align-items: center; justify-content: center; font-size: 1.05rem;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.8); padding: 3rem 0 2rem; }
.site-footer .wrap { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.site-footer h4 { color: #fff; font-size: 1rem; letter-spacing: .05em; }
.site-footer a { color: rgba(255,255,255,.8); text-decoration: none; }
.site-footer a:hover { color: var(--pink); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .45rem; }
.footer-brand img { width: 54px; margin-bottom: .6rem; }
.footer-bottom { text-align: center; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .82rem; color: rgba(255,255,255,.55); }
.footer-bottom a { color: rgba(255,255,255,.75); text-decoration: underline; text-underline-offset: 2px; }
.footer-bottom a:hover { color: var(--pink); }

/* ---------- Merci ---------- */
.thanks { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.thanks .wrap { max-width: 560px; }
.thanks .big { font-size: 3.4rem; }

/* ---------- Video ---------- */
.demo-video { margin-top: 2.5rem; display: flex; justify-content: center; }
.demo-video[hidden] { display: none; }
.demo-video video { width: min(520px, 100%); border-radius: var(--radius-l); box-shadow: var(--shadow); }

/* ---------- Reveal au scroll ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s cubic-bezier(.2, .7, .3, 1), transform .55s cubic-bezier(.2, .7, .3, 1);
  transition-delay: calc(var(--i, 0) * 55ms);
}
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal-zoom { opacity: 0; transform: scale(.94); transition: opacity .5s ease, transform .5s cubic-bezier(.2, .7, .3, 1); transition-delay: calc(var(--i, 0) * 45ms); }
.js .reveal-zoom.in { opacity: 1; transform: none; }

/* ---------- Entrée du hero (au chargement) ---------- */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}
.js .hero-text > *,
.js .page-hero .wrap > div:first-child > * {
  animation: fade-up .6s cubic-bezier(.2, .7, .3, 1) both;
}
.js .hero-text > :nth-child(1), .js .page-hero .wrap > div:first-child > :nth-child(1) { animation-delay: .05s; }
.js .hero-text > :nth-child(2), .js .page-hero .wrap > div:first-child > :nth-child(2) { animation-delay: .12s; }
.js .hero-text > :nth-child(3), .js .page-hero .wrap > div:first-child > :nth-child(3) { animation-delay: .19s; }
.js .hero-text > :nth-child(4), .js .page-hero .wrap > div:first-child > :nth-child(4) { animation-delay: .26s; }
.js .hero-text > :nth-child(5), .js .page-hero .wrap > div:first-child > :nth-child(5) { animation-delay: .33s; }
/* image LCP : on n'anime que la position, jamais l'opacité */
@keyframes hero-img-in { from { transform: translateY(16px) scale(.985); } to { transform: none; } }
.js .hero-collage, .js .page-hero-img { animation: hero-img-in .7s cubic-bezier(.2, .7, .3, 1) both; }

/* ---------- Points confettis flottants ---------- */
@keyframes float-a { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-9px) rotate(12deg); } }
@keyframes float-b { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(10px); } }
.confetti::before { animation: float-a 5s ease-in-out infinite; }
.confetti::after { animation: float-b 6.5s ease-in-out infinite; }

/* ---------- Page prestation ---------- */
.page-hero { padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(1.5rem, 4vw, 2.5rem); }
.page-hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.page-hero + .presta-body { padding-top: clamp(2rem, 4vw, 3rem); }
.page-hero h1 { font-size: clamp(1.9rem, 4.6vw, 3rem); }
.page-hero p.lead { font-size: 1.12rem; max-width: 48ch; }
.page-hero .hero-cta { margin-top: 1.4rem; }
.page-hero-img {
  display: block;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow);
  overflow: hidden;
  width: 100%;
}
.page-hero-img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.breadcrumb { font-size: .85rem; color: var(--ink-soft); margin-bottom: .8rem; }
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--magenta); }

.prose { max-width: 720px; margin-inline: auto; }
.prose > :first-child { margin-top: 0; }
.prose h2 { font-size: clamp(1.4rem, 3.3vw, 1.9rem); margin-top: 2.4rem; }
.prose h3 { font-size: 1.2rem; margin-top: 1.6rem; }
.prose p { color: var(--ink-soft); }
.prose > ul { color: var(--ink-soft); padding-left: 0; list-style: none; margin-top: 1rem; }
.prose > ul > li {
  position: relative; padding-left: 1.6rem; margin-bottom: .6rem;
}
.prose > ul > li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 8px; height: 8px; border-radius: 50%; background: var(--magenta);
}
.prose > ul > li strong { color: var(--blue-deep); }

/* ---------- Corps des pages prestation : contenu + colonne latérale ---------- */
.presta-body-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.presta-body-grid .prose { max-width: none; margin: 0; }
.presta-aside { position: sticky; top: 96px; display: grid; gap: 1.4rem; }
.presta-aside picture { display: block; border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow-soft); }
.presta-aside img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; }
.aside-cta {
  background: var(--pink-soft);
  border-radius: var(--radius-l);
  padding: 1.5rem;
  display: grid; gap: .65rem;
}
.aside-cta h3 { margin: 0; font-size: 1.15rem; }
.aside-cta p { margin: 0 0 .3rem; font-size: .92rem; color: var(--ink-soft); }
.aside-cta .btn { justify-content: center; width: 100%; }

/* étapes numérotées */
.steps { list-style: none; counter-reset: step; padding: 0; margin: 1rem 0 0; display: grid; gap: .9rem; }
.steps li {
  counter-increment: step;
  position: relative; padding-left: 3.1rem;
  color: var(--ink-soft); min-height: 2rem;
  display: flex; align-items: center;
}
.steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
}

/* bande "zones desservies" */
.zones-band { background: var(--yellow-soft); }
.zones-band .wrap { max-width: 820px; }
.zones-band h2 { font-size: clamp(1.4rem, 3.3vw, 1.9rem); text-align: center; margin-top: 0; }
.zones-band p { color: #7a5a12; text-align: center; }

/* ---------- FAQ ---------- */
.faq { max-width: 720px; margin: 2.5rem auto 0; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .3rem 1.2rem;
  margin-bottom: .8rem;
}
.faq summary {
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--blue-deep);
  cursor: pointer;
  padding: .9rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--magenta); font-size: 1.3rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq details p { color: var(--ink-soft); margin: .9rem 0; }

/* ---------- Cross-links prestations ---------- */
.cross { background: var(--pink-soft); }
.cross-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2rem; }
.cross-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  text-decoration: none;
  display: block;
  transition: transform .15s ease, box-shadow .15s ease;
}
.cross-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.cross-card .emoji { font-size: 1.6rem; }
.cross-card b { display: block; font-family: var(--font-head); color: var(--blue-deep); margin: .3rem 0; }
.cross-card span { font-size: .88rem; color: var(--ink-soft); }

/* ---------- Bande CTA ---------- */
.cta-band { background: var(--blue); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 44ch; margin: 0 auto 1.6rem; }
.cta-band .hero-cta { justify-content: center; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .wrap, .page-hero .wrap { grid-template-columns: 1fr; }
  .hero-collage { max-width: 420px; }
  .prestations-grid { grid-template-columns: 1fr; }
  .about .wrap { grid-template-columns: 1fr; }
  .about-photo { max-width: 360px; }
  .reserve-grid { grid-template-columns: 1fr; }
  .site-footer .wrap { grid-template-columns: 1fr 1fr; }
  .masonry { columns: 3 200px; }
  .cross-grid { grid-template-columns: 1fr; }
  .page-hero-img { max-width: 380px; }
  .presta-body-grid { grid-template-columns: 1fr; gap: 2rem; }
  .presta-aside { position: static; grid-template-columns: 280px 1fr; }
  .presta-aside picture { max-width: 280px; }
}
@media (max-width: 620px) {
  .presta-aside { grid-template-columns: 1fr; }
  .presta-aside picture { max-width: none; }
}

@media (max-width: 760px) {
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .5rem 1.25rem 1.25rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    display: none;
  }
  .nav.open { display: flex; }
  .nav > a:not(.btn) { padding: .7rem 0; border-bottom: 1px solid var(--line); }
  .nav > a::after { display: none; }
  .nav .btn { margin-top: .7rem; justify-content: center; }
  .nav-toggle { display: block; }
  /* dropdown -> liste à plat sur mobile */
  .nav-drop { display: contents; }
  .nav-drop > button { display: none; }
  .nav-drop-menu {
    position: static; transform: none; opacity: 1; visibility: visible;
    box-shadow: none; border: 0; border-radius: 0; padding: 0; min-width: 0;
  }
  .nav-drop-menu a { padding: .7rem 0; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-drop-menu a::before { content: "— "; color: var(--pink); }
  .site-footer .wrap { grid-template-columns: 1fr; }
  .masonry { columns: 2 150px; }
  .hero-collage > :nth-child(2) { margin-top: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-zoom { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none !important; }
  .confetti::before, .confetti::after { animation: none !important; }
}
