/* ============================================================
   ATELIER BYSARAH — Feuille de style
   Direction artistique : luxe éditorial, féminin, moderne
   Palette : cream / nude / rose poudré / taupe / or doux
   ============================================================ */

/* ------------------------------------------------------------
   1. VARIABLES & RESET
   ------------------------------------------------------------ */
:root {
  /* Couleurs principales */
  --cream: #FAF6F1;          /* fond principal */
  --cream-deep: #F3ECE2;     /* variations */
  --nude: #EADFD5;           /* accent doux */
  --blush: #E8CFC9;          /* rose poudré clair */
  --rose: #C8A39A;           /* rose poudré moyen */
  --rose-deep: #A8827A;      /* rose foncé pour survol */
  --taupe: #8B6F65;          /* texte secondaire */
  --gold: #B8915C;           /* accent or doux */
  --gold-light: #D4B896;     /* or clair */
  --ink: #2B2220;            /* presque noir, pour texte */
  --ink-soft: #4A3B35;       /* texte moyen */
  --white: #FFFFFF;
  --line: rgba(43, 34, 32, 0.12);  /* traits séparateurs */
  --line-soft: rgba(43, 34, 32, 0.06);

  /* Typographie */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans: 'Manrope', -apple-system, sans-serif;

  /* Espacements & rayons */
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-soft: cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

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

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
em { font-style: italic; }

/* Conteneur générique */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Sélection texte */
::selection { background: var(--rose); color: var(--white); }

/* ------------------------------------------------------------
   2. TYPOGRAPHIE RÉCURRENTE
   ------------------------------------------------------------ */
.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}

.section__kicker {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.section__title em {
  font-style: italic;
  color: var(--rose);
}

.section__desc {
  margin-top: 24px;
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.link {
  color: var(--rose-deep);
  border-bottom: 1px solid currentColor;
  transition: color .3s var(--ease);
}
.link:hover { color: var(--gold); }

/* ------------------------------------------------------------
   3. BOUTONS
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  transition: all .35s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  background: #B5848C;
  color: var(--cream);
}
.btn--primary:hover:not(:disabled) {
  background: #9D6F77;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(181, 132, 140, 0.5);
}
.btn--primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn--ghost {
  background: transparent;
  color: #6B4C44;
  border: 1px solid rgba(107, 76, 68, 0.45);
}
.btn--ghost:hover { background: rgba(107, 76, 68, 0.08); border-color: #6B4C44; }

.btn--ghost.btn--dark {
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost.btn--dark:hover {
  border-color: var(--ink);
  background: var(--cream-deep);
}

/* ------------------------------------------------------------
   4. NAVIGATION
   ------------------------------------------------------------ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(250, 246, 241, 0);
  backdrop-filter: blur(0);
  transition: all .4s var(--ease);
}

.nav.is-scrolled {
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}

.nav__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  transition: color .3s var(--ease);
}

.nav__logo-mark {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  background: var(--cream);
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--line-soft);
  transition: all .3s var(--ease);
}
.nav__logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nav__logo-text em {
  color: var(--rose);
  font-style: italic;
  font-weight: 400;
  margin: 0 4px;
}

/* Ajustement logo selon scroll - mode hero clair */
.nav:not(.is-scrolled) .nav__logo { color: #4A2F2A; }
.nav:not(.is-scrolled) .nav__logo-text em { color: #8B5E55; }

.nav__menu {
  display: flex;
  gap: 36px;
}

.nav__link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color .3s var(--ease);
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width .3s var(--ease);
}
.nav__link:hover::after { width: 100%; }

.nav:not(.is-scrolled) .nav__link { color: #4A2F2A; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: #B5848C;
  color: var(--cream);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all .3s var(--ease);
}
.nav__cta:hover {
  background: #9D6F77;
  transform: translateY(-1px);
}

.nav:not(.is-scrolled) .nav__cta {
  background: #B5848C;
  color: var(--cream);
}
.nav:not(.is-scrolled) .nav__cta:hover { background: #9D6F77; }

/* Bouton burger (mobile) */
.nav__burger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.nav__burger span {
  width: 24px; height: 1.5px;
  background: var(--ink);
  transition: all .3s var(--ease);
}
.nav:not(.is-scrolled) .nav__burger span { background: #4A2F2A; }

/* ------------------------------------------------------------
   5. HERO
   ------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 100px;
  overflow: hidden;
  color: var(--cream);
}

.hero {
  /* Forcer le mode clair pour le hero (texte rose foncé sur fond blanc cassé) */
  color: var(--ink);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  animation: heroZoom 18s ease-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

/* Voile blanc lumineux (au lieu du voile noir) pour éclaircir la photo */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(250, 246, 241, 0.78) 0%, rgba(250, 246, 241, 0.85) 100%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.25) 0%, rgba(250, 246, 241, 0.15) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

/* Kicker "ONGLERIE" en rose foncé */
.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #6B4C44;
  opacity: 1;
  margin-bottom: 32px;
}

.hero__kicker-line {
  width: 50px;
  height: 1px;
  background: currentColor;
}

/* Titre en rose très foncé pour bonne lisibilité */
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: #4A2F2A;
}

.hero__title-line {
  display: block;
  overflow: hidden;
}

/* "avec élégance" en italique rose moyen */
.hero__title em {
  font-style: italic;
  color: #8B5E55;
}

/* Description en rose foncé avec police glamour */
.hero__desc {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.6vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 48px;
  color: #6B4C44;
  opacity: 1;
  letter-spacing: 0.01em;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 20px 36px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(107, 76, 68, 0.18);
  border-radius: var(--radius-pill);
  color: #6B4C44;
}

.hero__meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.hero__meta-item strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: #4A2F2A;
}
.hero__meta-item span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
}
/* Variante sans chiffre : le texte prend plus de place verticalement */
.hero__meta-item--single {
  justify-content: center;
  min-height: 48px;
}
.hero__meta-item--single span {
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0.02em;
  font-style: italic;
  opacity: 1;
  color: #6B4C44;
}

.hero__meta-divider {
  width: 1px;
  height: 32px;
  background: rgba(107, 76, 68, 0.25);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #6B4C44;
  opacity: 0.8;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: currentColor;
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -48px; left: 0;
  width: 1px; height: 48px;
  background: var(--blush);
  animation: scrollPulse 2s var(--ease) infinite;
}
@keyframes scrollPulse {
  0%   { top: -48px; }
  100% { top: 48px; }
}

/* ------------------------------------------------------------
   6. BANDEROLE DÉFILANTE (MARQUEE)
   ------------------------------------------------------------ */
.marquee {
  background: #B5848C;
  color: var(--cream);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.marquee__track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee__group {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
}

.marquee__item {
  font-size: 14px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.marquee__item strong {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  margin: 0 4px;
}

.marquee__dot {
  color: var(--gold);
  font-size: 12px;
}

/* ------------------------------------------------------------
   7. SECTION À PROPOS
   ------------------------------------------------------------ */
.about {
  padding: 140px 0;
  background: var(--cream);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.about__image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--nude);
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-soft);
}
.about__image:hover img { transform: scale(1.04); }

.about__image-tag {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--cream);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px -10px rgba(43,34,32,0.2);
}
.about__image-tag span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
}
.about__image-tag strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--rose-deep);
  font-style: italic;
}

.about__text {
  padding-right: 24px;
}

.about__lead {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 32px 0 24px;
  font-weight: 400;
}

.about__text > p:last-of-type {
  color: var(--ink-soft);
  line-height: 1.8;
}

.about__signature {
  margin-top: 40px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--rose-deep);
}

/* ------------------------------------------------------------
   8. SECTION PRESTATIONS
   ------------------------------------------------------------ */
.services {
  padding: 140px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}

.services__list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  cursor: default;
  transition: background .3s var(--ease);
}
.service:hover { background: rgba(232, 207, 201, 0.15); padding-left: 16px; padding-right: 16px; }

.service__head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 8px;
}

.service__name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--ink);
  flex-shrink: 0;
}

.service__dots {
  flex: 1;
  border-bottom: 2px dotted var(--line);
  transform: translateY(-6px);
}

.service__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--rose-deep);
  font-weight: 500;
  flex-shrink: 0;
}

.service__desc {
  font-size: 0.95rem;
  color: var(--taupe);
  line-height: 1.7;
  max-width: 640px;
}
.service__desc em {
  color: var(--rose);
  font-style: normal;
  font-weight: 500;
  font-size: 0.85rem;
  margin-left: 4px;
}

.services__cta {
  margin-top: 64px;
  text-align: center;
  padding: 40px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.services__cta p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  margin-bottom: 24px;
  color: var(--ink);
}

/* Suppléments / Options */
.services__extras {
  margin-top: 72px;
  padding: 40px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--line-soft);
}

.services__extras-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--rose-deep);
  text-align: center;
  margin-bottom: 24px;
  font-weight: 500;
}

.services__extras-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
}

.extra {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px dotted var(--line);
  gap: 16px;
}
.extra:last-child,
.extra:nth-last-child(2) {
  border-bottom: none;
}

.extra__name {
  font-size: 0.95rem;
  color: var(--ink);
}

.extra__price {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--rose-deep);
  font-size: 1.05rem;
  font-weight: 500;
  white-space: nowrap;
}

/* ------------------------------------------------------------
   9. SECTION GALERIE
   ------------------------------------------------------------ */
.gallery {
  padding: 140px 0;
  background: var(--cream);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 1;
  cursor: zoom-in;
  background: var(--nude);
}

.gallery__item--tall {
  aspect-ratio: 1 / 1.4;
  grid-row: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease-soft);
}
.gallery__item:hover img { transform: scale(1.08); }

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(43,34,32,0.5));
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.gallery__item:hover::after { opacity: 1; }

.gallery__item-label {
  position: absolute;
  bottom: 20px; left: 20px;
  color: var(--cream);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  opacity: 0;
  transform: translateY(8px);
  transition: all .4s var(--ease);
  z-index: 2;
}
.gallery__item:hover .gallery__item-label {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------------------------------------
   10. LIGHTBOX
   ------------------------------------------------------------ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(43, 34, 32, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.lightbox.is-open {
  display: flex;
  opacity: 1;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  color: var(--cream);
  border-radius: 50%;
  font-size: 24px;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
  transition: background .3s var(--ease);
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(255,255,255,0.25); }

.lightbox__close { top: 32px; right: 32px; }
.lightbox__prev { left: 32px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 32px; top: 50%; transform: translateY(-50%); }

.lightbox__caption {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cream);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  opacity: 0.8;
}

/* ------------------------------------------------------------
   11. SECTION RÉSERVATION (Cal.com intégré)
   ------------------------------------------------------------ */
/* ============================================================
   SECTION AVIS CLIENTES (CTA pour inviter à laisser un avis)
   ============================================================ */
.reviews-cta {
  padding: var(--space-section) 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.reviews-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(200, 163, 154, 0.08), transparent 60%),
    radial-gradient(ellipse at bottom, rgba(184, 145, 92, 0.05), transparent 60%);
  pointer-events: none;
}
.reviews-cta__inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--space-md);
}
.reviews-cta__desc {
  margin: 24px auto 36px;
  max-width: 560px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}
.reviews-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.reviews-cta__actions .btn {
  min-width: 220px;
}
@media (max-width: 600px) {
  .reviews-cta__actions .btn {
    width: 100%;
    min-width: unset;
  }
}

.booking {
  padding: 140px 0;
  background: linear-gradient(180deg, var(--cream-deep) 0%, var(--nude) 100%);
  position: relative;
  overflow: hidden;
}
.booking::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200, 163, 154, 0.2), transparent 70%);
  pointer-events: none;
}

/* Avantages de la réservation en ligne */
.booking__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 48px;
}

.booking__feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
  transition: all .3s var(--ease);
}
.booking__feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -12px rgba(43,34,32,0.15);
}

.booking__feature-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--nude);
  color: var(--rose-deep);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.booking__feature strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 2px;
}

.booking__feature span {
  font-size: 12px;
  color: var(--taupe);
  line-height: 1.4;
}

/* Widget Cal.com intégré */
.booking__cal {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  background: var(--cream);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px -30px rgba(43,34,32,0.2);
  border: 1px solid var(--line-soft);
  min-height: 700px;
}

/* Bouton retour aux prestations */
.booking__back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  margin-bottom: 20px;
  background: transparent;
  color: var(--rose-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all .3s var(--ease);
}
.booking__back:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: translateX(-2px);
}
.booking__back svg {
  transition: transform .3s var(--ease);
}
.booking__back:hover svg {
  transform: translateX(-3px);
}

/* Mention sous le widget Cal.com : précision sur la durée affichée */
.booking__note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
  padding: 16px 20px;
  background: rgba(200, 163, 154, 0.08);
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--rose-deep);
  border-radius: var(--radius-md);
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}
.booking__note svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--rose-deep);
}
.booking__note em {
  font-family: var(--font-display);
  font-size: 1.05em;
  font-style: italic;
  color: var(--ink);
  margin-right: 4px;
}

#my-cal-inline {
  min-height: 650px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* Option contact direct en bas */
.booking__alt {
  text-align: center;
  margin-top: 56px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  border: 1px dashed var(--line);
}

.booking__alt p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 20px;
}

.booking__alt-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Barre de progression */
.booking__progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto 56px;
  flex-wrap: wrap;
}

.booking__step {
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0.4;
  transition: opacity .4s var(--ease);
}
.booking__step--active,
.booking__step--completed {
  opacity: 1;
}

.booking__step-num {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink);
  transition: all .4s var(--ease);
}
.booking__step--active .booking__step-num {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.booking__step--completed .booking__step-num {
  background: var(--rose);
  color: var(--cream);
  border-color: var(--rose);
}

.booking__step-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking__step-line {
  width: 48px;
  height: 1px;
  background: var(--line);
}

/* Panneaux étape par étape */
.booking__form {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  background: var(--cream);
  padding: 56px;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px -30px rgba(43,34,32,0.2);
  border: 1px solid var(--line-soft);
}

.booking__panel {
  display: none;
  animation: panelIn .5s var(--ease) forwards;
}
.booking__panel--active { display: block; }

@keyframes panelIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.booking__panel-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 32px;
  text-align: center;
}

/* Étape 1 — Choix service */
.booking__services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}

.service-choice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all .3s var(--ease);
  background: transparent;
  text-align: left;
  font-family: inherit;
}
.service-choice:hover {
  border-color: var(--rose);
  background: rgba(232, 207, 201, 0.1);
}
.service-choice.is-selected {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream);
}
.service-choice.is-selected .service-choice__price { color: var(--blush); }

.service-choice__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
}
.service-choice__price {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--rose-deep);
  font-size: 1.1rem;
  font-weight: 500;
}

.booking__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}

/* Étape 2 — Calendrier et créneaux */
.booking__calendar-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.calendar {
  background: var(--cream-deep);
  border-radius: var(--radius-md);
  padding: 24px;
}

.calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.calendar__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  text-transform: capitalize;
}

.calendar__nav {
  width: 32px; height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 20px;
  color: var(--ink);
  transition: background .3s var(--ease);
}
.calendar__nav:hover { background: var(--nude); }

.calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
  text-align: center;
}
.calendar__weekdays span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--taupe);
  padding: 8px 0;
}

.calendar__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar__day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 14px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: all .2s var(--ease);
  border: 1px solid transparent;
}
.calendar__day:hover:not(:disabled) {
  background: var(--nude);
}
.calendar__day:disabled,
.calendar__day--empty {
  opacity: 0.25;
  cursor: not-allowed;
  pointer-events: none;
}
.calendar__day--today {
  border-color: var(--rose);
  font-weight: 600;
}
.calendar__day--selected {
  background: var(--ink);
  color: var(--cream);
}

.timeslots {
  background: var(--cream-deep);
  border-radius: var(--radius-md);
  padding: 24px;
  min-height: 280px;
}

.timeslots__title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 16px;
}

.timeslots__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.timeslot {
  padding: 12px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--cream);
  font-size: 14px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink);
  transition: all .25s var(--ease);
  cursor: pointer;
}
.timeslot:hover { border-color: var(--rose); }
.timeslot.is-selected {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.timeslots__placeholder {
  font-style: italic;
  color: var(--taupe);
  text-align: center;
  margin-top: 80px;
}

/* Étape 3 — Coordonnées */
.booking__summary {
  background: var(--cream-deep);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  border: 1px dashed var(--line);
}
.booking__summary-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.booking__summary-item span {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--taupe);
}
.booking__summary-item strong {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
}

.booking__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 16px;
}
.field--full { grid-column: 1 / -1; }

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--taupe);
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--cream-deep);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: all .3s var(--ease);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--rose);
  background: var(--cream);
}

.field--checkbox {
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(232, 207, 201, 0.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.field--checkbox input { width: 18px; height: 18px; accent-color: var(--rose-deep); }
.field--checkbox span { font-size: 14px; color: var(--ink-soft); }

/* Confirmation */
.booking__success {
  text-align: center;
  padding: 40px 20px;
}
.booking__success-icon {
  width: 88px; height: 88px;
  background: var(--rose);
  color: var(--cream);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  animation: pop .6s var(--ease);
}
@keyframes pop {
  0%   { transform: scale(0); }
  60%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.booking__success h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
}
.booking__success p {
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.booking__success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ------------------------------------------------------------
   12. SECTION AVIS
   ------------------------------------------------------------ */
.reviews {
  padding: 140px 0;
  background: var(--cream);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.review {
  padding: 40px 32px;
  background: var(--cream-deep);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  position: relative;
  transition: all .4s var(--ease);
}
.review::before {
  content: '"';
  position: absolute;
  top: 12px; left: 24px;
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--blush);
  line-height: 1;
  opacity: 0.6;
}
.review:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(43,34,32,0.15);
}

.review__stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.review__text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.review__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}
.review__author strong {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink);
}
.review__author span {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--taupe);
}

/* ------------------------------------------------------------
   13. SECTION CONTACT
   ------------------------------------------------------------ */
.contact {
  padding: 140px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.contact__lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 24px 0 40px;
  line-height: 1.7;
}

.contact__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
}
.contact__item:last-child { border-bottom: none; }

.contact__icon {
  width: 52px; height: 52px;
  background: var(--nude);
  color: var(--rose-deep);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all .3s var(--ease);
}
.contact__item:hover .contact__icon {
  background: var(--rose);
  color: var(--cream);
}

.contact__item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact__item > div > span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
}
.contact__item strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  transition: color .3s var(--ease);
}
.contact__item a:hover strong { color: var(--rose-deep); }

.contact__map {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--nude);
  border: 1px solid var(--line-soft);
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.3) sepia(0.1);
}

/* ------------------------------------------------------------
   14. FOOTER
   ------------------------------------------------------------ */
.footer {
  background: #B5848C;
  color: var(--cream);
  padding: 80px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  align-items: center;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}
.footer__logo em {
  color: var(--blush);
  font-style: italic;
  margin: 0 4px;
}
.footer__brand p {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(250, 246, 241, 0.6);
}

.footer__links {
  display: flex;
  gap: 32px;
}
.footer__links a {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(250, 246, 241, 0.7);
  transition: color .3s var(--ease);
}
.footer__links a:hover { color: var(--blush); }

.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  transition: all .3s var(--ease);
}
.footer__social a:hover {
  background: var(--rose);
  transform: translateY(-2px);
}

.footer__bottom {
  max-width: 1280px;
  margin: 32px auto 0;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(250, 246, 241, 0.5);
  letter-spacing: 0.05em;
}
.footer__heart {
  color: var(--rose);
  display: inline-block;
  animation: heartBeat 1.6s var(--ease) infinite;
}
@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.15); }
}

/* ------------------------------------------------------------
   15. ANIMATIONS D'APPARITION AU SCROLL
   ------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity .9s var(--ease-soft),
    transform .9s var(--ease-soft);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Dans le hero, déjà visible par défaut et animé avec delay */
.hero .reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: heroReveal 1s var(--ease-soft) forwards;
  animation-delay: var(--delay, 0ms);
}
@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* ------------------------------------------------------------
   16. RESPONSIVE
   ------------------------------------------------------------ */

/* Tablette */
@media (max-width: 992px) {
  .container { padding: 0 24px; }

  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .reviews__grid,
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking__calendar-wrap {
    grid-template-columns: 1fr;
  }

  .booking__services {
    grid-template-columns: 1fr;
  }

  .booking__form {
    padding: 40px 32px;
  }

  .booking__features {
    grid-template-columns: 1fr;
  }

  .about__text { padding-right: 0; }
}

/* Mobile */
@media (max-width: 640px) {
  html { scroll-padding-top: 64px; }

  .nav__menu { display: none; }
  .nav__burger { display: flex; }

  /* Menu mobile ouvert */
  .nav__menu.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    padding: 32px;
    gap: 20px;
    box-shadow: 0 20px 40px -20px rgba(43,34,32,0.15);
  }
  .nav__menu.is-open .nav__link { color: var(--ink) !important; }

  .nav__cta { display: none; }

  .hero { padding: 100px 24px 80px; }

  .hero__meta {
    flex-direction: column;
    gap: 12px;
    padding: 20px 28px;
  }
  .hero__meta-divider { width: 24px; height: 1px; }

  .section__header { margin-bottom: 48px; }

  .about, .services, .gallery, .booking, .reviews, .contact {
    padding: 80px 0;
  }

  .gallery__grid, .reviews__grid {
    grid-template-columns: 1fr;
  }

  .gallery__item--tall {
    aspect-ratio: 1;
    grid-row: span 1;
  }

  .service__head {
    flex-wrap: wrap;
    gap: 8px;
  }
  .service__dots { display: none; }

  .services__extras {
    padding: 24px 20px;
    margin-top: 48px;
  }
  .services__extras-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .extra {
    padding: 10px 0;
    border-bottom: 1px dotted var(--line);
  }
  .extra:nth-last-child(2) {
    border-bottom: 1px dotted var(--line);
  }
  .extra:last-child {
    border-bottom: none;
  }

  .booking__form { padding: 32px 20px; }
  .booking__fields { grid-template-columns: 1fr; }
  .booking__progress { gap: 8px; }
  .booking__step-line { width: 20px; }
  .booking__step-label { display: none; }
  .booking__panel-title { font-size: 1.4rem; }
  
  /* Responsive pour la nouvelle section Cal.com */
  .booking__features {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 32px;
  }
  .booking__cal {
    padding: 12px;
    min-height: 600px;
  }
  #my-cal-inline {
    min-height: 550px;
  }
  .booking__alt {
    padding: 24px 16px;
  }
  .booking__alt-actions {
    flex-direction: column;
  }
  .booking__alt-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .footer__links { flex-wrap: wrap; justify-content: center; }
  .footer__social { justify-content: center; }
  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* Accessibilité : respect des préférences de mouvement */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero__bg { animation: none; }
  .marquee__track { animation: none; }
  .hero__scroll-line::after { display: none; }
}
