:root {
  --indigo: #3a1fb0;
  --indigo-deep: #26136e;
  --magenta: #c0269f;
  --aubergine: #6d1b6e;
  --cream: #f4f2f6;
  --ink: #2a1a3a;
  --muted: #6b5b7a;

  /* Piloté par les sliders (démo) / futur back-office */
  --flora-speed: 6s;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

a { color: inherit; }

/* ---------- Bandeau maquette ---------- */
.draft-banner {
  background: repeating-linear-gradient(45deg, #3a1fb0, #3a1fb0 12px, #4326c4 12px, #4326c4 24px);
  color: #fff;
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-size: .8rem;
  letter-spacing: .03em;
  padding: .5rem 1rem;
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 2rem;
  background: rgba(244, 242, 246, .9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(109, 27, 110, .12);
}
.nav__brand {
  font-family: 'Great Vibes', cursive;
  font-size: 1.9rem;
  color: var(--aubergine);
  text-decoration: none;
}
.nav__links { display: flex; gap: 1.6rem; }
.nav__links a {
  font-family: 'Jost', sans-serif;
  font-size: .9rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  transition: color .2s;
}
.nav__links a:hover { color: var(--magenta); }
.nav__links a.is-active { color: var(--aubergine); }
.nav__links a.is-active::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 3px;
  background: var(--magenta);
  border-radius: 2px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 10%, #4a2ad0 0%, var(--indigo) 40%, var(--indigo-deep) 100%);
}

.hero__garden {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem;
  max-width: 500px;
}
.hero__logo {
  width: min(360px, 70vw);
  height: auto;
  /* Halo lumineux : détache le médaillon foncé du fond indigo */
  filter:
    drop-shadow(0 0 26px rgba(255, 255, 255, .55))
    drop-shadow(0 0 64px rgba(226, 130, 220, .5))
    drop-shadow(0 12px 34px rgba(0, 0, 0, .3));
}
.hero__tagline {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(1.8rem, 5vw, 2.7rem);
  color: #fff;
  max-width: 300px;
  margin: .6rem auto 1.6rem;
  text-shadow: 0 2px 20px rgba(192, 38, 159, .6);
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--magenta), #8a1fb0);
  padding: .85rem 2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 6px 20px rgba(192, 38, 159, .4);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(192, 38, 159, .5); }
.btn--ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: none;
  padding: .5rem 1.2rem;
  font-size: .75rem;
}
.btn--ghost:hover { background: rgba(255,255,255,.12); transform: none; }

/* ---------- Sections ---------- */
.section { padding: 5.5rem 1.5rem; max-width: 1100px; margin: 0 auto; }
.section__title {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  color: var(--aubergine);
  text-align: center;
  margin-bottom: .6rem;
}
.section__lead {
  text-align: center;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 3rem;
  font-size: 1.2rem;
}

/* Concept */
.fees { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.fee-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.4rem 2rem;
  text-align: center;
  box-shadow: 0 14px 40px rgba(109, 27, 110, .1);
  border: 1px solid rgba(109, 27, 110, .08);
}
.fee-card__img { height: 150px; width: auto; align-self: center; flex-shrink: 0; object-fit: contain; margin-bottom: 1rem; }
.fee-card h3 { font-size: 1.7rem; color: var(--indigo-deep); }
.fee-card__role {
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
  color: var(--magenta);
  margin-bottom: 1rem;
}
.fee-card__text { color: var(--muted); margin-bottom: 1rem; }
.fee-card__tel { font-family: 'Jost', sans-serif; font-weight: 500; color: var(--indigo); }

/* Prestations */
.section--prestations { background: linear-gradient(180deg, transparent, rgba(192,38,159,.04)); border-radius: 30px; }
.prestations { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.prestations__cat {
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .95rem;
  color: var(--magenta);
  text-align: center;
  padding-bottom: .8rem;
  margin-bottom: 1.6rem;
  border-bottom: 2px solid rgba(192,38,159,.2);
}
.soin-list { list-style: none; }
.soin { padding: 1rem 0; border-bottom: 1px dashed rgba(109,27,110,.15); }
.soin__head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.soin__name { font-size: 1.35rem; color: var(--indigo-deep); font-weight: 600; }
.soin__price { font-family: 'Jost', sans-serif; color: var(--magenta); white-space: nowrap; }
.soin__desc { color: var(--muted); font-size: 1.05rem; }
.soin__desc em { font-style: normal; color: var(--aubergine); font-family: 'Jost', sans-serif; font-size: .8rem; letter-spacing: .05em; }

/* Bons cadeaux */
.section--cadeaux { max-width: none; padding: 0; }
.cadeaux__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  padding: 5rem 1.5rem;
  background: radial-gradient(120% 120% at 50% 0%, #4a2ad0, var(--indigo-deep));
  border-radius: 30px;
  color: #fff;
}
.cadeaux__inner .section__title { color: #fff; }
.cadeaux__inner .section__lead { color: rgba(255,255,255,.8); }

/* Contact */
.contact { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.contact__block h3 {
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .8rem;
  color: var(--magenta);
  margin-bottom: .6rem;
}
.contact__block a { color: var(--indigo); text-decoration: none; }
.contact__block a:hover { text-decoration: underline; }

/* Footer */
.footer {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--indigo-deep);
  color: rgba(255,255,255,.85);
}
.footer__brand { font-family: 'Great Vibes', cursive; font-size: 2.2rem; color: #fff; }
.footer__small { font-family: 'Jost', sans-serif; font-size: .75rem; opacity: .6; margin-top: 1rem; }

/* ---------- Hero compact (pages internes) ---------- */
.page-hero {
  position: relative;
  padding: 4.5rem 1.5rem 4rem;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: radial-gradient(120% 140% at 50% 0%, #4a2ad0 0%, var(--indigo) 45%, var(--indigo-deep) 100%);
}
.page-hero__title {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2.8rem, 7vw, 4.4rem);
  line-height: 1.1;
  text-shadow: 0 2px 24px rgba(192, 38, 159, .5);
}
.page-hero__sub {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, .85);
  max-width: 620px;
  margin: .8rem auto 0;
}

/* ---------- Cartes-liens (accueil → pages) ---------- */
.fee-card--link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.fee-card--link:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(109, 27, 110, .18);
}
.fee-card__more {
  margin-top: auto;
  padding-top: 1rem;
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
  color: var(--magenta);
}

/* ---------- Bio praticienne ---------- */
.bio {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 4rem;
}
.bio__aside { text-align: center; }
.bio__img { height: 190px; width: auto; margin-bottom: 1.2rem; }
.bio__role {
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .8rem;
  color: var(--magenta);
  margin-bottom: .4rem;
}
.bio__tel { font-family: 'Jost', sans-serif; font-weight: 500; color: var(--indigo); }
.bio__body p { margin-bottom: 1.1rem; }
.bio__body p:last-child { margin-bottom: 0; }

/* ---------- Bloc contact réutilisable ---------- */
.section--contact-page { text-align: center; }
.contact-cta { text-align: center; margin-top: 3rem; }

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    padding: .7rem 1rem;
    gap: .3rem;
  }
  .nav__brand { flex-basis: 100%; text-align: center; font-size: 1.7rem; }
  .nav__links { flex-wrap: wrap; justify-content: center; gap: .5rem 1rem; }
  .nav__links a { font-size: .72rem; }
  .fees, .prestations { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .bio { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
}

/* ---------- Fleurs aquarelle animées ---------- */
.flora-bloom {
  position: absolute;
  bottom: 0;
  height: auto;
  transform-origin: center bottom;
  rotate: var(--rot, 0deg);
  /* Fond noir des PNG rendu invisible, seule la fleur lumineuse ressort */
  mix-blend-mode: screen;
  opacity: 0;
  animation: bloom-grow var(--flora-speed) cubic-bezier(.34, 1.4, .5, 1) both;
  animation-delay: var(--delay, 0s);
  will-change: transform, opacity;
}

@keyframes bloom-grow {
  from { transform: translateY(26px) scale(.08); opacity: 0; }
  55%  { opacity: var(--op, .9); }
  to   { transform: translateY(0) scale(1); opacity: var(--op, .9); }
}

/* Accessibilité : mouvement réduit → tout s'affiche sans animation */
@media (prefers-reduced-motion: reduce) {
  .flora-bloom {
    opacity: var(--op, .9);
    transform: none;
    animation: none;
  }
}
