: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); }

/* ---------- 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;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 0 7px rgba(255, 150, 220, .35));
}
.hero__garden svg { position: absolute; bottom: -2px; }

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem;
  max-width: 500px;
}
.hero__logo {
  width: min(340px, 68vw);
  height: auto;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,.35));
}
.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; }

/* ---------- Panneau réglages (démo) ---------- */
.flora-panel {
  position: absolute;
  z-index: 4;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 230px;
  background: rgba(38, 19, 110, .55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  color: #fff;
  font-family: 'Jost', sans-serif;
  overflow: hidden;
}
.flora-panel__toggle {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: .85rem;
  letter-spacing: .05em;
  padding: .8rem 1rem;
  cursor: pointer;
}
.flora-panel__body { padding: 0 1rem 1rem; }
.flora-panel.is-collapsed .flora-panel__body { display: none; }
.flora-panel__hint { font-size: .72rem; opacity: .75; margin-bottom: .8rem; line-height: 1.4; }
.flora-panel label { display: block; font-size: .75rem; margin-bottom: .9rem; }
.flora-panel label span { display: block; margin-bottom: .3rem; opacity: .9; }
.flora-panel input[type=range] { width: 100%; accent-color: var(--magenta); }

/* ---------- 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; 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; }

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .nav__links { display: none; }
  .fees, .prestations { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .flora-panel { width: 190px; right: .8rem; bottom: .8rem; }
}

/* ---------- Animation florale ---------- */
.vine .stem {
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: draw var(--flora-speed) ease-out forwards;
  animation-delay: var(--delay, 0s);
}
.vine .leaf, .vine .bloom {
  transform: scale(0);
  transform-box: fill-box;
  transform-origin: center bottom;
}
.vine .leaf {
  animation: pop calc(var(--flora-speed) * .35) ease-out forwards;
  animation-delay: calc(var(--delay, 0s) + var(--flora-speed) * .55);
}
.vine .bloom {
  transform-origin: center center;
  animation: bloom calc(var(--flora-speed) * .5) cubic-bezier(.34,1.56,.64,1) forwards;
  animation-delay: calc(var(--delay, 0s) + var(--flora-speed) * .8);
}

@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes pop { to { transform: scale(1); } }
@keyframes bloom { 0% { transform: scale(0) rotate(-20deg); } to { transform: scale(1) rotate(0); } }

/* Accessibilité : mouvement réduit → tout s'affiche sans animation */
@media (prefers-reduced-motion: reduce) {
  .vine .stem { stroke-dashoffset: 0; animation: none; }
  .vine .leaf, .vine .bloom { transform: scale(1); animation: none; }
}
