/* ============================================================
   Christianne Beaulieu — Soins Holistiques
   Shared stylesheet for the HTML mockup (5 pages)
   Palette measured on the source PDF:
     plum   #3c3346  (footer, headings)
     violet #786696  (bands, accents)
     cream  #faf7f1 / ivory #f3ede2 (backgrounds)
     gold   #c2a15f  (primary CTA, eyebrows on violet)
   Fonts: Marcellus (headings), Mulish (body) — option B « Sérénité »,
          chosen by Gabriel 2026-09-14. Marcellus has no italic nor bold:
          font-synthesis is off so browsers never fake them.
   ============================================================ */

:root {
  --prune: #3c3346;
  --prune-soft: #4a4156;
  --violet: #786696;
  --violet-deep: #6a5a88;
  --violet-pale: #efeaf4;
  --creme: #faf7f1;
  --ivoire: #f3ede2;
  --or: #c2a15f;
  --or-fonce: #7d6434;   /* >=5:1 on cream — the 95 $ price must be readable */
  --ligne: #e4dccf;
  /* Section grounds measured on the source PDF: cream, warm beige, lavender white,
     plus a dark plum band for the reviews (light/dark rhythm while scrolling) */
  --beige: #f4efe9;
  --lavande-blanc: #fdf7fe;
  --lavande-pale: #f6f1fa;
  --prune-profond: #3c3348;
  --texte: #55495f;
  --texte-doux: #6f6478; /* muted notes, >=5:1 on cream and white */
  --serif: "Marcellus", Georgia, serif;
  --sans: "Mulish", "Segoe UI", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-synthesis: none; }

body {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--texte);
  background: var(--creme);
}

img { max-width: 100%; display: block; }
a { color: var(--violet); text-decoration: none; -webkit-tap-highlight-color: transparent; }

/* ---------- Interactive states (production CSS) ---------- */

html { -webkit-tap-highlight-color: transparent; }
:root { accent-color: var(--violet); }
::selection { background: var(--violet); color: #fff; }
:focus-visible { outline: 2px solid var(--violet); outline-offset: 2px; }
:focus:not(:focus-visible) { outline: none; }
a:active { opacity: 0.75; }
.btn:active, button:active { transform: translateY(1px); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.conteneur { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ---------- Typography helpers ---------- */

h1, h2, h3 { font-family: var(--serif); font-weight: 400; letter-spacing: 0.01em; color: var(--prune); }

.titre-section {
  font-size: clamp(2rem, 4.2vw, 2.9rem);
  line-height: 1.15;
  text-align: center;
}

/* Accent words inside headings: same face, violet, upright
   (Marcellus has no italic; the Great Vibes script was dropped 2026-09-14). */
.script {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 400;
  color: var(--violet);
}

.surtitre {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--violet-deep); /* holds 4.5:1 on cream AND ivory backgrounds */
  margin-bottom: 18px;
}
.surtitre::before { content: ""; width: 34px; height: 1px; background: var(--violet); }
.surtitre.gauche { justify-content: flex-start; }
/* Plain back link above an article title */
.lien-retour { font-size: 0.9rem; margin-bottom: 18px; }
.lien-retour a { color: var(--violet-deep); }
.lien-retour a:hover { color: var(--prune); }

.sous-titre {
  max-width: 620px;
  margin: 18px auto 0;
  text-align: center;
  font-size: 1rem;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-violet { background: var(--violet); color: #fff; }
.btn-violet:hover { background: var(--violet-deep); }
/* Plum text on gold: white on #c2a15f only reaches 2.45:1 */
.btn-or { background: var(--or); color: var(--prune); }
.btn-or:hover { background: #cfae6a; }
.btn-blanc { background: #fff; color: var(--prune); }
.btn-blanc:hover { background: var(--ivoire); }
.btn-contour {
  background: transparent;
  color: var(--prune);
  border-color: #cabfd8;
}
.btn-contour:hover { border-color: var(--violet); color: var(--violet); }

/* ---------- Header ---------- */

.entete {
  background: var(--creme);
  border-bottom: 1px solid var(--ligne);
  position: sticky;
  top: 0;
  z-index: 50;
}
.entete-int {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
/* Header logo alone, no tagline (Gabriel, 2026-09-14) */
.marque { display: flex; align-items: center; margin-right: auto; }
.marque img { height: 52px; width: auto; }
/* Guard: the booking button keeps its own text color */
.entete a.btn-violet { color: #fff; }

/* Hamburger at every width: only the booking button stays in the bar
   (Gabriel, 2026-09-14). Checkbox toggle, no JS; the checkbox stays
   focusable (visually hidden, not display:none) for keyboard users. */
.menu-check {
  position: absolute;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}
.entete-cta { order: 2; }
.menu-bouton {
  order: 3;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; width: 46px; height: 46px; flex: none;
  background: #fff; border: 1px solid var(--ligne); border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.menu-bouton:hover { border-color: #cabfd8; }
.menu-bouton span {
  display: block; width: 20px; height: 2px;
  background: var(--prune); border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-principale {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 24px;
  width: min(320px, calc(100vw - 32px));
  flex-direction: column;
  padding: 8px 20px 12px;
  background: var(--creme);
  border: 1px solid var(--ligne);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(60, 51, 70, 0.14);
}
.nav-principale a {
  padding: 12px 2px;
  font-size: 0.98rem;
  font-weight: 400;
  color: var(--prune-soft);
  border-top: 1px solid var(--ligne);
}
.nav-principale a:first-child { border-top: 0; }
.nav-principale a:hover, .nav-principale a.actif { color: var(--violet); }
.entete-tel { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.menu-check:checked ~ .nav-principale { display: flex; }
.menu-check:checked ~ .menu-bouton span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-check:checked ~ .menu-bouton span:nth-child(2) { opacity: 0; }
.menu-check:checked ~ .menu-bouton span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.menu-check:focus-visible ~ .menu-bouton { outline: 2px solid var(--violet); outline-offset: 2px; }

/* ---------- Hero (home) ---------- */

/* The hero fills the first screen: viewport minus the sticky header.
   --entete-h is the measured header height, redefined per breakpoint. */
:root { --entete-h: 88px; }
.hero {
  position: relative;
  min-height: calc(100vh - var(--entete-h));
  min-height: calc(100svh - var(--entete-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url("/wp-content/uploads/massagepolarite/hero-bouddha.jpg") center 30% / cover no-repeat, var(--prune);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(60, 51, 70, 0.55), rgba(93, 78, 115, 0.45) 55%, rgba(60, 51, 70, 0.6));
}
.hero-int { position: relative; padding: 60px 24px; max-width: 760px; }
.hero-logo { height: 74px; width: auto; margin: 0 auto 10px; }
.hero-surtitre {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #e8e4ec; /* soft grey-white, no gold (Gabriel, 2026-09-14) */
  text-shadow: 0 1px 10px rgba(40, 30, 55, 0.55);
  margin-bottom: 18px;
}
/* Big visual line under the h1 (the h1 is the short eyebrow-styled line) */
.hero-titre {
  font-family: var(--serif);
  color: #fff;
  font-size: clamp(2rem, 4.8vw, 3.3rem);
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-wrap: balance;
  text-shadow: 0 2px 18px rgba(40, 30, 55, 0.5);
}
/* Gold rule from the source PDF hero */
.hero-trait { display: block; width: 64px; height: 1px; margin: 26px auto 18px; background: var(--or); }
/* Larger, brighter, shadowed: this line sits on the busy photo */
.hero-soins {
  color: #fff;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-wrap: balance;
  text-shadow: 0 1px 12px rgba(40, 30, 55, 0.7), 0 0 2px rgba(40, 30, 55, 0.5);
  margin-bottom: 36px;
}
.hero-boutons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
/* Ghost button with a glass effect so it stands out on the photo */
.btn-ghost {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  backdrop-filter: blur(12px) saturate(140%);
  box-shadow: 0 6px 24px rgba(40, 30, 55, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  text-shadow: 0 1px 6px rgba(40, 30, 55, 0.45);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.26); border-color: #fff; }

/* Small hero for inner pages */
.hero-page {
  position: relative;
  /* Same plum as the other dark bands (reviews, contact panel, dimensions veil), Gabriel 2026-09-14 */
  background-color: var(--prune-profond);
  background-image: linear-gradient(165deg, #4b3f5f, var(--prune-profond));
  color: #fff;
  text-align: center;
  padding: 74px 24px 66px;
}
.hero-page .hero-logo { height: 56px; margin-bottom: 4px; }
.hero-page h1 { color: #fff; font-size: clamp(2rem, 4.5vw, 2.8rem); }
.hero-page .script { color: #cdbfe3; }
.hero-page p { max-width: 560px; margin: 14px auto 0; color: #e3dcea; }

/* ---------- Quote ---------- */

.citation { padding: 110px 24px; text-align: center; background: var(--creme); }
.citation blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  line-height: 1.55;
  color: var(--prune);
  max-width: 680px;
  margin: 0 auto;
}
.citation blockquote em { color: var(--violet); font-style: italic; }
.citation cite {
  display: block;
  margin-top: 26px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--texte);
}

/* ---------- Care cards ---------- */

.soins { background: var(--beige); padding: 96px 0 40px; }
/* Model B (Gabriel, 2026-09-14): photo, title, description, benefits, button.
   Subgrid keeps titles, lists and buttons aligned across the three cards.
   Prices live in the booking section only. */
.grille-soins {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 32px;
  margin-top: 56px;
}
.carte-soin {
  display: grid;
  grid-row: span 5;
  grid-template-rows: subgrid;
  row-gap: 0;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(60, 51, 70, 0.08);
}
.carte-soin figure { aspect-ratio: 3 / 2; overflow: hidden; }
.carte-soin figure img { width: 100%; height: 100%; object-fit: cover; }
.carte-soin h3 { font-size: 1.5rem; line-height: 1.2; padding: 24px 26px 10px; align-self: start; text-wrap: balance; }
/* Accent word on its own line: the three titles share the same two-line shape (Gabriel, 2026-09-14) */
.carte-soin h3 .script { display: block; }
.carte-soin .desc { padding: 0 26px 18px; font-size: 0.95rem; }
.carte-soin .liste-bienfaits { margin: 0 26px; padding: 18px 0 22px; border-top: 1px solid var(--ligne); }
.carte-soin-action { padding: 0 26px 26px; align-self: end; }
.carte-soin-action .btn { display: block; width: 100%; text-align: center; }
@media (max-width: 980px) {
  .grille-soins { grid-template-columns: minmax(0, 1fr); max-width: 480px; margin-inline: auto; }
}

/* Benefits checklist, shared by home cards and service pages */
.liste-bienfaits { list-style: none; display: grid; gap: 9px; }
.liste-bienfaits li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 0.93rem;
  line-height: 1.45;
}
.liste-bienfaits li::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--violet-pale) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23786696' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.note-recus {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--texte-doux);
  padding: 34px 24px 60px;
}

/* ---------- Journey / parcours ---------- */

.parcours { background: var(--creme); padding: 100px 0; }
.parcours-int {
  display: grid;
  grid-template-columns: minmax(280px, 440px) 1fr;
  gap: 64px;
  align-items: center;
}
.parcours-photo img {
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(70, 58, 90, 0.16);
}
.parcours h2 { font-size: clamp(1.9rem, 3.6vw, 2.5rem); line-height: 1.2; }
.parcours .texte-parcours p { margin-top: 20px; font-size: 0.97rem; }
.diplomes {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--ligne);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--texte-doux);
}

/* ---------- Violet band : three dimensions ---------- */

/* Variant A « Photo et verre » (Gabriel, 2026-09-14): a real session photo under a plum
   veil, the three dimensions in glass panels. The veil stays dark on the right too:
   the white sheet of the photo sits behind the third panel. */
.dimensions {
  position: relative;
  padding: clamp(72px, 9vw, 120px) 0 clamp(56px, 7vw, 88px);
  background: url("/wp-content/uploads/massagepolarite/soin-polarite.jpg") center 40% / cover no-repeat, var(--prune-profond);
  color: #fff;
}
.dimensions::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(40, 32, 52, 0.9) 0%, rgba(52, 42, 66, 0.76) 48%, rgba(56, 46, 70, 0.62) 100%);
}
.dimensions-int { position: relative; display: grid; gap: clamp(40px, 6vw, 88px); }
.dimensions-titre { font-size: clamp(2.2rem, 4.6vw, 3.4rem); line-height: 1.1; max-width: 13ch; color: #fff; text-wrap: balance; }
.dimensions-titre .script { color: #cdbfe3; }
.dimensions-panneaux { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.dimension {
  padding: 26px 26px 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  backdrop-filter: blur(14px) saturate(130%);
}
.dimension h3 { font-size: 1.45rem; color: #fff; margin-bottom: 8px; }
.dimension p { font-size: 0.95rem; color: #ece6f3; }
@media (max-width: 820px) { .dimensions-panneaux { grid-template-columns: minmax(0, 1fr); } }

/* ---------- Booking ---------- */

/* Option 1 laid out around the Google booking page (Gabriel, 2026-09-14): the embedded page is wide
   and short, so the summary is a plum band on top and the calendar spans the full card width */
.reservation { background: var(--lavande-blanc); padding: 96px 0; }
.resa-carte {
  max-width: 1140px;
  margin: 56px auto 0;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(60, 51, 70, 0.12);
}
.resa-bandeau {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 8fr);
  gap: 22px 40px;
  align-items: center;
  padding: clamp(24px, 3.5vw, 36px) clamp(22px, 3.5vw, 40px);
  background: linear-gradient(165deg, #4b3f5f, var(--prune-profond));
  color: #fff;
}
.resa-bandeau h3 { font-size: 1.6rem; color: #fff; }
.resa-question { margin-top: 6px; color: #e3dcea; font-size: 0.95rem; }
.resa-question a { font-family: var(--serif); font-size: 1.1rem; color: #fff; white-space: nowrap; }
.resa-infos { display: grid; grid-template-columns: minmax(0, 2.3fr) minmax(0, 0.8fr) minmax(0, 1.5fr) minmax(0, 0.8fr); gap: 16px 24px; }
.resa-infos div { display: grid; gap: 2px; align-content: start; padding-left: 18px; border-left: 1px solid rgba(255, 255, 255, 0.18); }
.resa-infos dt { font-size: 0.86rem; color: #cdbfe3; }
.resa-infos dd { font-family: var(--serif); font-size: 1.06rem; line-height: 1.35; }
.resa-infos .resa-total dd { font-size: 1.9rem; line-height: 1.1; }
.resa-agenda { padding: 16px 16px 6px; }
.resa-agenda iframe { display: block; width: 100%; min-height: 640px; border: 0; }
.resa-secours { padding: 6px 28px 22px; font-size: 0.88rem; color: var(--texte-doux); }
.resa-secours a { color: var(--violet-deep); font-weight: 600; }
/* Artifact preview only: the viewer blocks external frames, so the published copy shows a
   clickable screenshot of the Google booking page instead of the iframe */
.resa-apercu-google { display: grid; gap: 10px; padding-bottom: 14px; color: var(--texte-doux); font-size: 0.86rem; text-align: center; }
.resa-apercu-google img { display: block; width: 100%; height: auto; border-radius: 14px; }
@media (max-width: 980px) {
  .resa-bandeau { grid-template-columns: minmax(0, 1fr); }
  .resa-infos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .resa-infos { grid-template-columns: minmax(0, 1fr); }
  .resa-agenda iframe { min-height: 780px; }
}

/* ---------- Testimonials ---------- */

.temoignages { background: var(--prune-profond); padding: 96px 0; }
/* Dark band: headings and toggle button switch to light ink, cards stay white */
.temoignages .titre-section { color: #fff; }
.temoignages .titre-section .script { color: #cdbfe3; }
.temoignages .sous-titre { color: #ddd5e6; }
.temoignages .btn-contour { color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.temoignages .btn-contour:hover { color: #fff; border-color: #fff; background: rgba(255, 255, 255, 0.08); }
/* Review cards styled like a reviews widget (Gabriel, 2026-09-14): the 12 real comments
   recovered from the Wix back-office, newest first. No stars: the source has no rating.
   Six cards show at rest, a checkbox toggle reveals the others; long texts fold (no JS). */
.avis-toggle { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.grille-avis { columns: 3 300px; column-gap: 24px; margin-top: 52px; }
.avis {
  position: relative;
  break-inside: avoid;
  margin-bottom: 24px;
  padding: 22px 24px 20px;
  background: #fff;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(20, 14, 28, 0.25);
}
.grille-avis .avis:nth-child(n+7) { display: none; }
#avis-tous:checked ~ .grille-avis .avis { display: block; }
.avis-tete { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.avis-avatar {
  display: grid; place-items: center; flex: none;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--teinte, var(--violet)); color: #fff;
  font-weight: 600; font-size: 1.05rem;
}
.avis-avatar svg { width: 22px; height: 22px; }
.avis-nom { display: block; font-weight: 600; font-size: 0.98rem; line-height: 1.3; color: var(--prune); }
.avis-date { display: block; font-size: 0.82rem; color: var(--texte-doux); }
.avis-texte {
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 6; overflow: hidden;
  font-size: 0.95rem; line-height: 1.65; color: var(--texte);
}
.avis-check:checked ~ .avis-texte { display: block; -webkit-line-clamp: unset; }
.avis-suite { display: inline-block; margin-top: 8px; font-size: 0.88rem; font-weight: 600; color: var(--violet-deep); cursor: pointer; }
.avis-suite::after { content: "Lire la suite"; }
.avis-check:checked ~ .avis-suite::after { content: "Réduire"; }
.avis-check:focus-visible ~ .avis-suite,
#avis-tous:focus-visible ~ .temoignages-action .avis-plus { outline: 2px solid var(--violet); outline-offset: 3px; }
.temoignages-action { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 24px; }
.avis-plus::after { content: "Voir tous les avis"; }
#avis-tous:checked ~ .temoignages-action .avis-plus::after { content: "Voir moins d'avis"; }

/* ---------- Contact ---------- */

.contact { background: var(--lavande-pale); padding: 96px 0; }
/* Variant A « Panneau prune et formulaire » (Gabriel, 2026-09-14):
   one card, contact details on a plum panel, the form on white */
.contact-carte {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  max-width: 1080px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(60, 51, 70, 0.12);
}
.contact-panneau {
  display: grid;
  align-content: space-between;
  gap: 40px;
  padding: clamp(32px, 5vw, 56px);
  background: linear-gradient(165deg, #4b3f5f, var(--prune-profond));
  color: #fff;
}
.contact-titre { font-size: clamp(2rem, 3.6vw, 2.7rem); line-height: 1.12; color: #fff; }
.contact-titre .script { display: block; color: #cdbfe3; }
.contact-accroche { margin-top: 14px; color: #e3dcea; max-width: 34ch; }
.contact-canaux { display: grid; gap: 18px; }
.contact-canal { display: grid; gap: 2px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, 0.18); }
.contact-canal span { font-size: 0.88rem; color: #cdbfe3; }
.contact-canal a, .contact-canal p { font-family: var(--serif); font-size: 1.2rem; line-height: 1.4; color: #fff; overflow-wrap: anywhere; }
.contact-canal a:hover { color: #cdbfe3; }

.formulaire { padding: clamp(32px, 5vw, 56px); }
.formulaire h3 { font-size: 1.55rem; margin-bottom: 24px; }
/* Form fields, shared with the article comment form: sentence-case labels, no spaced capitals */
.champ { margin-bottom: 18px; }
.champ label {
  display: block;
  font-size: 0.9rem; font-weight: 500;
  color: var(--prune);
  margin-bottom: 6px;
}
.champ input, .champ select, .champ textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.97rem;
  color: var(--prune);
  background: #fff;
  border: 1px solid #ddd3e3;
  border-radius: 12px;
  padding: 13px 15px;
}
.champ input:focus, .champ select:focus, .champ textarea:focus {
  outline: none;
  border-color: var(--violet);
}
.champ textarea { min-height: 130px; resize: vertical; }
.deux-colonnes { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.formulaire small { display: block; margin-top: 14px; font-size: 0.88rem; color: var(--texte-doux); }
@media (max-width: 860px) { .contact-carte { grid-template-columns: minmax(0, 1fr); } }

/* ---------- Blog ---------- */

.blogue { background: var(--beige); padding: 96px 0; }
.grille-blogue {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 56px;
}
.carte-article {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(70, 58, 90, 0.09);
  display: flex;
  flex-direction: column;
}
.carte-article figure { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.carte-article figure img { width: 100%; height: 100%; object-fit: cover; }
.chip {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(253, 251, 246, 0.94);
  color: var(--prune-soft);
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
}
.carte-article-corps { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.carte-article time {
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--texte-doux);
  margin-bottom: 10px;
}
.carte-article h3 { font-size: 1.28rem; line-height: 1.3; margin-bottom: 10px; }
.carte-article h3 a { color: var(--prune); }
.carte-article h3 a:hover { color: var(--violet); }
.carte-article p { font-size: 0.9rem; flex: 1; }
.lire {
  margin-top: 18px;
  font-size: 0.82rem; font-weight: 500;
  color: var(--prune-soft);
}
.lire:hover { color: var(--violet); }
.blogue-action { text-align: center; margin-top: 48px; }

/* ---------- Services page ---------- */



/* ---------- Article page ---------- */

.article { background: var(--creme); padding: 70px 0 90px; }
.article-int { max-width: 780px; margin: 0 auto; padding: 0 24px; }
.article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: var(--texte-doux);
  margin-bottom: 22px;
}
.article-meta .avatar {
  width: 40px; height: 40px; flex: none;
  border-radius: 50%;
  background: var(--violet-pale);
  color: var(--violet);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1rem;
}
.article-meta strong { color: var(--prune-soft); font-weight: 500; }
.article-meta .sep { color: var(--texte-doux); }
.article-titre { font-size: clamp(1.9rem, 4vw, 2.6rem); line-height: 1.2; margin-bottom: 26px; }
.article-visuel { border-radius: 16px; overflow: hidden; margin: 8px 0 38px; box-shadow: 0 16px 40px rgba(70, 58, 90, 0.12); }
.article-visuel img { width: 100%; }
.article-corps h2 { font-size: 1.65rem; margin: 42px 0 14px; }
.article-corps h3 { font-size: 1.25rem; margin: 30px 0 10px; color: var(--prune-soft); }
.article-corps p { margin: 14px 0; font-size: 0.98rem; }
.article-tags {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 44px 0 0;
  padding-top: 30px;
  border-top: 1px solid var(--ligne);
}
.article-tags a {
  font-size: 0.78rem;
  color: var(--violet-deep);
  background: var(--violet-pale);
  padding: 6px 14px;
  border-radius: 999px;
}
.article-tags a:hover { background: #e3d9ec; }

/* Recent posts strip */
.posts-recents { background: var(--ivoire); padding: 80px 0; }
.posts-recents-tete {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.posts-recents-tete h2 { font-size: 1.8rem; }
.posts-recents-tete a { font-size: 0.84rem; font-weight: 500; color: var(--violet-deep); }

/* Comments module */
.commentaires { background: var(--creme); padding: 90px 0; }
.commentaires-int { max-width: 780px; margin: 0 auto; padding: 0 24px; }
.commentaires h2 { font-size: 1.8rem; margin-bottom: 8px; }
.commentaires-note { font-size: 0.9rem; color: var(--texte-doux); margin-bottom: 34px; }
.commentaire {
  display: flex;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid var(--ligne);
}
.commentaire .avatar {
  width: 42px; height: 42px; flex: none;
  border-radius: 50%;
  background: var(--violet-pale);
  color: var(--violet);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
}
.commentaire header {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 4px;
  font-size: 0.86rem;
}
.commentaire header strong { color: var(--prune); font-weight: 500; }
.commentaire header time { color: var(--texte-doux); font-size: 0.78rem; }
.commentaire p { font-size: 0.92rem; }
.commentaire .repondre {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.76rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--violet);
}
.form-commentaire {
  margin-top: 40px;
  background: #fdfaf4;
  border: 1px solid #efe7d8;
  border-radius: 16px;
  padding: 30px;
}
.form-commentaire h3 { font-size: 1.3rem; margin-bottom: 18px; }

/* ---------- Privacy page ---------- */

.juridique { background: var(--creme); padding: 80px 0; }
.juridique-int { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.juridique h2 {
  font-size: 1.7rem;
  margin: 52px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ligne);
}
.juridique h3 { font-size: 1.2rem; margin: 30px 0 10px; color: var(--prune-soft); }
.juridique p { margin: 12px 0; font-size: 0.95rem; }
.juridique ul { margin: 12px 0 12px 22px; font-size: 0.95rem; }
.juridique li { margin: 6px 0; }
.juridique .meta {
  font-family: var(--serif); font-style: italic;
  color: var(--texte-doux); margin-top: 46px;
  padding-top: 22px; border-top: 1px solid var(--ligne);
}

/* ---------- Footer ---------- */

.pied {
  background: var(--prune);
  color: #cec7d6;
  padding: 74px 0 0;
  font-size: 0.9rem;
}
.pied-int {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 44px;
}
.pied-marque img { height: 40px; width: auto; }
/* Accreditation logos moved from the contact section to the footer (Gabriel, 2026-09-14).
   The ANQ/RMQ PNGs are light-on-transparent: they sit directly on the plum footer. */
.pied-membre { margin-top: 28px; }
.pied-membre h4 { margin-bottom: 14px; }
.badges { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.pied-marque .badges img { height: 48px; width: auto; }
.pied-marque small {
  display: block;
  margin: 10px 0 20px;
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: #b6a9c6;
}
.pied h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 18px;
}
.pied ul { list-style: none; }
.pied li { margin-bottom: 10px; }
.pied a { color: #cec7d6; }
.pied a:hover { color: #fff; }
/* « *Sur rendez-vous » in the same style as the other footer lines (Gabriel, 2026-09-14) */
.pied .rdv { color: inherit; }
.pied-bas {
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px 0;
}
.pied-bas-int {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: #a99fb8;
}
/* Credit link in the same ink as its label, white on hover (Gabriel, 2026-09-14) */
.pied-bas a { color: inherit; }
.pied-bas a:hover { color: #fff; }

/* ---------- Responsive ---------- */

@media (max-width: 920px) {
  .parcours-int { grid-template-columns: 1fr; gap: 40px; }
  .pied-int { grid-template-columns: 1fr 1fr; }
}

/* Compact sticky header up to 680px: the full-size bar wrapped at 561px (measured 108px) */
@media (max-width: 680px) {
  :root { --entete-h: 65px; } /* compact header, measured */
  .entete-int { gap: 10px; padding: 10px 16px; }
  .marque img { height: 38px; }
  .entete-cta { padding: 12px 14px; font-size: 0.64rem; letter-spacing: 0.08em; }
  .menu-bouton { width: 44px; height: 44px; border-radius: 10px; }
  .nav-principale { right: 16px; }
}

@media (max-width: 560px) {

  .pied-int { grid-template-columns: 1fr; }
  .deux-colonnes { grid-template-columns: 1fr; }
  .formulaire { padding: 26px 20px; }
}
