/* ===================================================================
   Palette & variables
   =================================================================== */
:root {
  --cream:       #f7f3ec;
  --cream-dark:  #efe8dc;
  --sage:        #8a9a7b;
  --sage-dark:   #6f7f61;
  --terracotta:  #c98a6b;
  --ink:         #3a3a34;
  --ink-soft:    #6b6b62;
  --white:       #fffdf9;
  --shadow:      0 12px 40px rgba(58, 58, 52, 0.10);
  --radius:      16px;
  --maxw:        1120px;
}

/* ===================================================================
   Reset & base
   =================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', system-ui, sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: 1.4rem; }

a { color: inherit; text-decoration: none; transition: color .2s ease, opacity .2s ease; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tint { background: var(--cream-dark); }

.eyebrow {
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 12px;
}

.section__head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section__lead { color: var(--ink-soft); margin-top: 14px; }

/* ===================================================================
   Buttons
   =================================================================== */
.btn {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  letter-spacing: .04em;
  padding: 14px 34px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn--primary { background: var(--sage); color: var(--white); }
.btn--primary:hover { background: var(--sage-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--small { padding: 9px 22px; font-size: .9rem; background: var(--sage); color: var(--white); }
.btn--small:hover { background: var(--sage-dark); }
.btn--large { padding: 17px 44px; font-size: 1.05rem; }

/* ===================================================================
   Header / Nav
   =================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(58,58,52,.06);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 88px; }

/* Logo : emblème (PNG transparent, teinté sauge) + nom écrit à droite */
.brand { display: flex; align-items: center; gap: 14px; }
.brand__mark { height: 56px; width: auto; display: block; }
.brand__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .02em;
  color: var(--sage-dark);
}
.brand__name em {
  display: block;
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-size: .5em;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: inherit;
  margin-top: 6px;
}
.nav__menu { list-style: none; display: flex; align-items: center; gap: 30px; }
.nav__menu a { font-size: .92rem; color: var(--ink-soft); }
.nav__menu a:hover, .nav__menu a.is-active { color: var(--ink); }
.nav__cta {
  background: var(--sage);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 999px;
}
.nav__cta:hover { background: var(--sage-dark); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* ===================================================================
   Hero
   =================================================================== */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(111,127,97,.86) 0%, rgba(90,102,74,.62) 45%, rgba(58,58,52,.55) 100%),
    #8a9a7b url('assets/hero.jpg') center/cover no-repeat;
  overflow: hidden;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 72% 28%, rgba(255,255,255,.16), transparent 58%);
}
.hero__content { position: relative; text-align: center; color: var(--white); padding-top: 60px; padding-bottom: 60px; }
.hero__eyebrow { letter-spacing: .28em; text-transform: uppercase; font-size: .82rem; margin-bottom: 20px; opacity: .9; }
.hero__title { color: var(--white); font-weight: 500; }
.hero__subtitle { max-width: 520px; margin: 22px auto 36px; font-size: 1.1rem; opacity: .95; }
.hero .btn--primary { background: var(--white); color: var(--sage-dark); }
.hero .btn--primary:hover { background: var(--cream); }

/* ===================================================================
   À propos
   =================================================================== */
.about { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center; }
.about__text p { color: var(--ink-soft); margin-top: 16px; }
.about__text h2 { margin-top: 4px; }
.about__sign { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--terracotta) !important; margin-top: 22px; }

/* ===================================================================
   Prestations
   =================================================================== */
.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.services { counter-reset: soin; }
.service {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  font: inherit;
  color: inherit;
  cursor: pointer;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(58,58,52,.06);
  border-radius: var(--radius);
  padding: 34px 30px 30px;
  box-shadow: 0 4px 20px rgba(58,58,52,.04);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
/* Barre d'accent qui se déploie au survol */
.service::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--terracotta));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
/* Numéro décoratif en filigrane */
.service::after {
  counter-increment: soin;
  content: counter(soin, decimal-leading-zero);
  position: absolute; top: 18px; right: 22px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--cream-dark);
  transition: color .3s ease;
  pointer-events: none;
}
.service:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(58,58,52,.13);
  border-color: rgba(138,154,123,.35);
}
.service:hover::before { transform: scaleX(1); }
.service:hover::after { color: rgba(201,138,107,.28); }
.service:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; }

.service h3 {
  position: relative;
  padding-right: 52px;
  padding-bottom: 14px;
  margin-bottom: 12px;
  font-size: 1.35rem;
}
/* Petit trait sous le titre, qui s'étire au survol */
.service h3::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 32px; height: 1px;
  background: var(--terracotta);
  opacity: .5;
  transition: width .35s ease, opacity .35s ease;
}
.service:hover h3::after { width: 58px; opacity: 1; }

.service > p { color: var(--ink-soft); font-size: .95rem; flex-grow: 1; }
.service__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  transition: color .25s ease, gap .25s ease;
}
.service:hover .service__cta { color: var(--terracotta); gap: 13px; }
.services__note {
  position: relative;
  text-align: center;
  margin-top: 48px;
  padding-top: 30px;
  color: var(--ink-soft);
  font-style: italic;
}
/* Petit ornement décoratif au-dessus de la note */
.services__note::before {
  content: '✦';
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  font-style: normal;
  font-size: .8rem;
  color: var(--terracotta);
  opacity: .6;
}

/* ===================================================================
   Galerie
   =================================================================== */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.gallery .placeholder { aspect-ratio: 3/4; }

/* ===================================================================
   Avis
   =================================================================== */
/* Carrousel d'avis : un seul témoignage à la fois, navigation par flèches */
.reviews-carousel { max-width: 780px; margin: 0 auto; }
.reviews-track { position: relative; }
.review {
  display: none;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: 0 6px 24px rgba(58,58,52,.05);
  text-align: center;
}
.review.is-active { display: block; animation: reviewFade .45s ease; }
.review p { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; line-height: 1.55; color: var(--ink); }
.review cite { display: block; margin-top: 20px; font-style: normal; font-size: .9rem; color: var(--terracotta); letter-spacing: .05em; }
@keyframes reviewFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.reviews-nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 26px; }
.reviews-arrow,
.pager__arrow {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(58,58,52,.12);
  background: var(--white);
  color: var(--ink);
  font-size: 1.6rem; line-height: 1;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.reviews-arrow:hover,
.pager__arrow:hover { background: var(--sage); color: #fff; transform: translateY(-2px); }
.reviews-dots,
.pager__dots { display: flex; gap: 9px; }
.reviews-dot,
.pager__dot {
  width: 9px; height: 9px; padding: 0;
  border: none; border-radius: 50%;
  background: rgba(58,58,52,.2);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.reviews-dot.is-active,
.pager__dot.is-active { background: var(--sage); transform: scale(1.25); }
@media (prefers-reduced-motion: reduce) { .review.is-active { animation: none; } }

/* ===================================================================
   Questions fréquentes
   =================================================================== */
.faq { max-width: 760px; margin: 0 auto; }
.faq__item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 6px 24px rgba(58,58,52,.05);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--ink);
  transition: color .2s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-family: 'Jost', sans-serif;
  font-size: 1.5rem;
  color: var(--sage-dark);
  flex-shrink: 0;
  transition: transform .25s ease;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item summary:hover { color: var(--sage-dark); }
.faq__item p {
  padding: 0 26px 24px;
  color: var(--ink-soft);
  font-size: .97rem;
}

.reviews-cta { text-align: center; margin-top: 36px; }
.reviews-cta p { color: var(--ink-soft); margin-bottom: 16px; }

/* ===================================================================
   Carrousels « massages » et « cabinet » — TÉLÉPHONE UNIQUEMENT
   -------------------------------------------------------------------
   Masqués par défaut : l'affichage ordinateur et tablette reste
   strictement inchangé. Ils n'apparaissent que sous 600px.
   =================================================================== */
.pager, .pager-all { display: none; }

/* Liste complète des massages (pop-up « Voir tous les massages ») */
.massage-list { list-style: none; margin-top: 22px; text-align: left; }
.massage-list li + li { border-top: 1px solid rgba(58,58,52,.08); }
.massage-list button {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  width: 100%; padding: 14px 4px;
  font: inherit; color: inherit; text-align: left;
  background: none; border: none; cursor: pointer;
  transition: color .2s ease;
}
.massage-list button:hover { color: var(--sage-dark); }
.massage-list button span:first-child { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; }
.massage-list button span:last-child { color: var(--terracotta); flex-shrink: 0; }
.modal__box--list { max-height: 82vh; overflow-y: auto; }

/* ===================================================================
   Teaser boutique
   =================================================================== */
.shopteaser__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.shopteaser__text p { color: var(--ink-soft); margin: 16px 0 30px; }
.shopteaser__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.shopteaser__grid .placeholder { aspect-ratio: 3/4; }

/* ===================================================================
   Contact
   =================================================================== */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }

/* Cartes de contact (WhatsApp mis en avant) */
.contact__actions { display: flex; flex-direction: column; gap: 18px; }
.ccard {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid rgba(58,58,52,.08);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: 0 6px 24px rgba(58,58,52,.05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.ccard:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.ccard__icon {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--cream-dark);
  color: var(--sage-dark);
}
.ccard__text { display: flex; flex-direction: column; min-width: 0; }
.ccard__label { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; color: var(--ink); line-height: 1.1; }
.ccard__value { font-size: .92rem; color: var(--ink-soft); word-break: break-word; }
.ccard__badge {
  grid-column: 1 / -1;
  justify-self: start;
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--sage-dark);
  background: rgba(138,154,123,.16);
  padding: 5px 12px; border-radius: 999px;
}
/* Variante WhatsApp : accent vert de la marque WhatsApp */
.ccard--wa { border-color: rgba(37,211,102,.35); }
.ccard--wa .ccard__icon { background: #25d366; color: #fff; }
.ccard--wa:hover { border-color: rgba(37,211,102,.6); }

.contact__info { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 20px; align-content: start; }
.contact__block h3 { font-family: 'Jost', sans-serif; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--terracotta); font-weight: 500; margin-bottom: 8px; }
.contact__block p { color: var(--ink-soft); }
.contact__block a:hover { color: var(--sage-dark); }
.contact__social { display: flex; gap: 12px; margin-top: 4px; }
.social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--sage-dark);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.social:hover { transform: translateY(-2px); background: var(--sage); color: #fff; }

/* ===================================================================
   Images (avec repli en dégradé si le chargement échoue)
   =================================================================== */
.media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--cream-dark), #e2dccf);
}
.media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.media--portrait { aspect-ratio: 4/5; }
/* Photo de Nadine (paysage) : cadrage centré sur elle */
.media--nadine img { object-position: 40% center; }
.media--gallery  { aspect-ratio: 3/4; }
.media--product  { aspect-ratio: 3/4; }
.media--shop     { aspect-ratio: 1; border-radius: 0; }

.gallery .media:hover img,
.product:hover .media img { transform: scale(1.05); }

/* Placeholders restants (repli) */
.placeholder {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--cream-dark), #e2dccf);
  color: var(--ink-soft);
  font-size: .85rem; letter-spacing: .05em;
  border-radius: var(--radius);
  text-align: center;
}
.placeholder--portrait { aspect-ratio: 4/5; }

/* ===================================================================
   Page boutique
   =================================================================== */
.shophero { background: var(--cream-dark); padding: clamp(60px, 8vw, 100px) 0 clamp(50px, 7vw, 80px); text-align: center; }
.shophero__lead { max-width: 620px; margin: 18px auto 28px; color: var(--ink-soft); }
.shophero__note { margin-top: 16px; font-size: .88rem; color: var(--ink-soft); }

/* Catégories de produits */
.cats { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 26px; }
.cat {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(58,58,52,.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.cat:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.cat:hover .media img { transform: scale(1.05); }
.media--cat { aspect-ratio: 4/3; border-radius: 0; }
.cat__body { padding: 22px 24px 26px; }
.cat__body p { color: var(--ink-soft); font-size: .95rem; margin-top: 6px; }
.cat__link { display: inline-block; margin-top: 14px; font-size: .9rem; letter-spacing: .04em; color: var(--sage-dark); }
.cat:hover .cat__link { color: var(--terracotta); }

/* Étapes « comment commander » */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 26px; }
.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(58,58,52,.05);
}
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--sage); color: var(--white);
  font-family: 'Cormorant Garamond', serif; font-size: 1.45rem;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.2rem; }
.step p { color: var(--ink-soft); font-size: .95rem; margin-top: 8px; }

/* Bandeau d'appel à l'action */
.shopcta-band { text-align: center; }
.shopcta-band p { color: var(--ink-soft); margin: 14px 0 30px; }
.shopcta-band__alt { margin: 24px 0 0 !important; font-size: .95rem; }
.shopcta-band__alt a { color: var(--sage-dark); text-decoration: underline; }

.products { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 26px; }
.product {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(58,58,52,.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.product:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product__link { display: block; }
.placeholder--shop { aspect-ratio: 1; border-radius: 0; }
.placeholder--product { aspect-ratio: 3/4; }
.product__body { padding: 22px 24px 26px; }
.product__desc { color: var(--ink-soft); font-size: .92rem; margin-top: 4px; }
.product__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; }
.product__price { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--sage-dark); }

.shopcta { text-align: center; margin-top: 60px; }
.shopcta p { margin-bottom: 18px; color: var(--ink-soft); font-size: 1.1rem; }

/* ===================================================================
   Footer
   =================================================================== */
.footer { background: var(--ink); color: var(--cream); padding: 34px 0; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: .9rem; }
.footer__links { display: flex; gap: 22px; }
.footer__links a { opacity: .8; }
.footer__links a:hover { opacity: 1; }

/* ===================================================================
   Pop-up de contact
   =================================================================== */
.modal[hidden] { display: none; }
.modal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.modal__overlay {
  position: absolute; inset: 0;
  background: rgba(58, 58, 52, .55);
  backdrop-filter: blur(3px);
}
.modal__box {
  position: relative;
  width: 100%; max-width: 420px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 34px 34px;
  box-shadow: var(--shadow);
  text-align: center;
  animation: modalIn .25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(14px) scale(.98); }
  to   { opacity: 1; transform: none; }
}
.modal__box h3 { font-size: 1.7rem; margin-top: 2px; }
.modal__close {
  position: absolute; top: 10px; right: 14px;
  background: none; border: none;
  font-size: 1.9rem; line-height: 1;
  color: var(--ink-soft); cursor: pointer;
  transition: color .2s ease;
}
.modal__close:hover { color: var(--ink); }
.modal__lead { color: var(--ink-soft); margin-top: 10px; }
.modal__actions { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; }
.modal__actions .btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; }
.modal__wa { background: #25d366; color: #fff; }
.modal__wa:hover { background: #1fb457; }
.modal__mail { background: var(--cream-dark); color: var(--ink); }
.modal__mail:hover { background: #e3dccd; }
.modal__fb { background: #1877f2; color: #fff; }
.modal__fb:hover { background: #0f66d0; }

/* Repli « copier l'adresse » pour les autres messageries */
.modal__alt, .contact__alt { margin-top: 16px; font-size: .9rem; color: var(--ink-soft); }
.contact__alt { text-align: center; }
.linklike {
  font: inherit;
  color: var(--sage-dark);
  background: none;
  border: none;
  padding: 0;
  text-decoration: underline;
  cursor: pointer;
  transition: color .2s ease;
}
.linklike:hover { color: var(--terracotta); }
.linklike.is-copied { color: var(--sage-dark); text-decoration: none; }

/* Choix de messagerie, dépliés à la demande */
.providers[hidden] { display: none; }
.providers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  animation: modalIn .2s ease;
}
.provider {
  font: inherit;
  font-size: .85rem;
  color: var(--ink);
  background: var(--cream-dark);
  border: 1px solid rgba(58,58,52,.08);
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.provider:hover { background: var(--sage); color: #fff; }
.provider.is-copied { background: var(--sage); color: #fff; }
@media (prefers-reduced-motion: reduce) {
  .modal__box { animation: none; }
}

/* ===================================================================
   Animations d'apparition au défilement
   =================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===================================================================
   Responsive
   =================================================================== */
@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: absolute; top: 88px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(58,58,52,.08);
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease;
  }
  .nav__menu.is-open { max-height: 380px; }
  .nav__menu li { width: 100%; text-align: center; }
  .nav__menu li a { display: block; padding: 15px; width: 100%; }
  .nav__cta { border-radius: 0; }

  .about, .contact, .shopteaser__inner { grid-template-columns: 1fr; gap: 34px; }
  .about__image { max-width: 340px; margin: 0 auto; }
  .contact__info { grid-template-columns: 1fr 1fr; }
}

/* ---- Téléphones uniquement (≤ 600px) — n'affecte ni tablette ni ordi ---- */
@media (max-width: 600px) {
  /* Un peu plus de largeur utile pour le contenu */
  .container { padding: 0 18px; }

  /* Espacements verticaux resserrés : moins de défilement inutile */
  .section { padding: 56px 0; }
  .section__head { margin-bottom: 34px; }

  /* Hero plus compact, même style */
  .hero { min-height: 76vh; }
  .hero__content { padding-top: 40px; padding-bottom: 48px; }
  .hero__title { line-height: 1.1; }
  .hero__subtitle { font-size: 1.02rem; margin-top: 18px; margin-bottom: 30px; }

  /* Informations pratiques sur une seule colonne */
  .contact__info { grid-template-columns: 1fr; gap: 22px; }
  .contact__social { justify-content: flex-start; }

  /* Boutons d'action principaux : pleine largeur, faciles à toucher */
  .shophero .btn--large,
  .shopcta-band .btn--large { display: block; width: 100%; }

  /* Cartes un peu plus compactes */
  .service, .review { padding: 26px 24px; }

  /* --- Carrousels massages / cabinet (téléphone uniquement) --- */
  .pager { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 24px; }
  .pager-all { display: block; text-align: center; margin-top: 20px; }
  .pager-all .btn { width: 100%; }

  /* Les éléments hors page courante sont masqués.
     Cette règle vit dans le média « téléphone » : sur ordinateur,
     même si la classe reste posée, tout reste visible. */
  .service.is-paged-out,
  .gallery .media.is-paged-out { display: none; }
}

@media (max-width: 480px) {
  .brand { gap: 10px; }
  .brand__mark { height: 44px; }
  .brand__name { font-size: 1.15rem; }
  .brand__name em { letter-spacing: .16em; margin-top: 4px; }

  .footer__inner { flex-direction: column; text-align: center; }
  .shopteaser__grid { grid-template-columns: repeat(3, 1fr); }
}
