/* =========================================================
   Adeline Brindesoleil — Diététicienne nutritionniste & coach sportive
   Feuille de style principale
   ========================================================= */

:root {
  --purple: #5B3A8E;
  --purple-dark: #402969;
  --purple-darker: #2C1C49;
  --lilac: #C4B5FD;
  --lilac-light: #F1EDFB;
  --gold: #F4C430;
  --gold-dark: #C99A00;
  --gold-text: #7A5D00;
  --pale-yellow: #FFF3B0;
  --pale-yellow-light: #FFFAE0;
  --cream: #FFFFFF;
  --ink: #1A1420;
  --muted: #6b6470;
  --line: rgba(26, 20, 32, 0.1);
  --white: #FFFFFF;
  --black: #000000;

  --font-display: "Archivo", "Segoe UI", sans-serif;
  --font-sans: "Inter", "Segoe UI", sans-serif;
  --font-accent: "Cormorant Garamond", "Playfair Display", Georgia, serif;

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --radius-btn: 8px;
  --shadow-soft: 0 30px 60px -30px rgba(44, 28, 73, 0.28);
  --shadow-card: 0 16px 40px -24px rgba(44, 28, 73, 0.22);
  --shadow-nav: 0 12px 34px -18px rgba(26, 20, 32, 0.3);
  --container: 1180px;
  --ease-standard: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.98;
}
h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.25rem; font-weight: 700; }

p { margin: 0 0 1.1em; color: var(--ink); }

a { color: inherit; text-decoration: none; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--purple);
  font-weight: 700;
  margin-bottom: 18px;
}

section { padding: clamp(80px, 12vh, 160px) 0; position: relative; }
@media (max-width: 720px) { section { padding: clamp(56px, 9vh, 90px) 0; } }

.section-tight { padding: clamp(56px, 8vh, 100px) 0; }
@media (max-width: 720px) { .section-tight { padding: 48px 0; } }

.bg-tint-lilac { background: var(--lilac-light); }
.bg-tint-gold { background: var(--pale-yellow-light); }
.bg-white { background: var(--white); }

hr.rule {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* ---------- Reveal au scroll ----------
   Sécurité : le contenu n'est masqué que si la classe "js-ready" a été
   posée sur <html> par main.js. Si le script ne se charge pas (cache,
   bloqueur, coupure réseau...), tout reste visible par défaut au lieu
   de rester invisible indéfiniment. */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-standard), transform 0.7s var(--ease-standard);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.js-ready .reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-standard), transform 0.6s var(--ease-standard);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.03s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.09s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.21s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.27s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.33s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease-standard), color .25s var(--ease-standard), border-color .25s var(--ease-standard), transform .25s var(--ease-standard), box-shadow .25s var(--ease-standard);
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  box-shadow: 0 10px 24px -10px rgba(244, 196, 48, 0.7);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(201, 154, 0, 0.55); }

.btn-purple {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
  box-shadow: 0 10px 24px -10px rgba(91, 58, 142, 0.55);
}
.btn-purple:hover { background: var(--purple-dark); border-color: var(--purple-dark); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn-outline-purple {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-outline-purple:hover { border-color: var(--purple); color: var(--purple); background: var(--lilac-light); }

.btn-sm { padding: 10px 20px; font-size: 0.84rem; }

/* ---------- Badges icône (motif soleil, utilisé avec intention) ---------- */
.sunburst { flex-shrink: 0; }

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  box-sizing: border-box;
}
/* Le décalage venait du dimensionnement de l'icône en pourcentage (%),
   peu fiable pour un <svg> selon les navigateurs. On fixe désormais une
   marge intérieure en pixels (padding) sur le rond, et l'icône remplit
   le reste à 100% : centrage garanti, quel que soit le contexte. */
.icon-badge svg { width: 100%; height: 100%; display: block; }
.icon-badge-sm { width: 30px; height: 30px; padding: 6px; }
.icon-badge-md { width: 48px; height: 48px; padding: 11px; }
.icon-badge-lg { width: 68px; height: 68px; padding: 15px; }
.icon-badge-purple { background: var(--purple); color: var(--white); }
.icon-badge-gold { background: var(--gold); color: var(--ink); }
.icon-badge-lilac { background: var(--lilac-light); color: var(--purple); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 22px 0;
  background: transparent;
  transition: padding 0.3s var(--ease-standard), background 0.3s var(--ease-standard), box-shadow 0.3s var(--ease-standard);
}
.site-header.is-scrolled {
  padding: 12px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  background: var(--white);
  border: 1px solid var(--purple);
  border-radius: 100px;
  padding: 8px 18px;
  box-shadow: var(--shadow-nav);
  transition: background 0.3s var(--ease-standard), border-color 0.3s var(--ease-standard), box-shadow 0.3s var(--ease-standard);
}
.brand img { height: 34px; width: auto; }
.brand-logo-color { transition: opacity 0.3s var(--ease-standard); }
.brand-logo-white {
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-standard);
}

.nav-pill {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--purple);
  border-radius: 100px;
  padding: 6px;
  box-shadow: var(--shadow-nav);
}
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  font-weight: 500;
  font-size: 0.86rem;
  color: var(--muted);
  padding: 10px 18px;
  border-radius: 100px;
  transition: color 0.25s var(--ease-standard), background 0.25s var(--ease-standard);
}
.main-nav a:hover { color: var(--ink); background: var(--lilac-light); }
.main-nav a.active { color: var(--white); background: var(--purple); }

.header-cta { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 22px; height: 1px; background: var(--ink); }

.site-header--overlay:not(.is-scrolled) .brand {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  padding: 8px 0;
}
.site-header--overlay:not(.is-scrolled) .brand img {
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));
}
.site-header--overlay:not(.is-scrolled) .brand-logo-color { opacity: 0; }
.site-header--overlay:not(.is-scrolled) .brand-logo-white { opacity: 1; }
.site-header--overlay:not(.is-scrolled) .nav-pill {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(196, 181, 253, 0.6);
  box-shadow: none;
}
.site-header--overlay:not(.is-scrolled) .main-nav a { color: rgba(255, 255, 255, 0.88); }
.site-header--overlay:not(.is-scrolled) .main-nav a:hover { color: var(--white); background: rgba(255, 255, 255, 0.14); }
.site-header--overlay:not(.is-scrolled) .main-nav a.active { color: var(--ink); background: var(--white); }
.site-header--overlay:not(.is-scrolled) .nav-toggle span { background: var(--white); }

@media (max-width: 940px) {
  .nav-pill {
    background: transparent;
    padding: 0;
    box-shadow: none;
  }
  .main-nav {
    position: fixed;
    top: 78px; left: 16px; right: 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 8px;
    box-shadow: var(--shadow-soft);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease-standard), opacity 0.3s var(--ease-standard);
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 14px 16px; border-radius: var(--radius-sm); }
  .nav-toggle { display: flex; }

  /* Le menu déroulant mobile reste toujours sur fond blanc, même en
     surimpression sur la photo du hero : les couleurs "vitre" ne
     doivent s'appliquer qu'au pilule desktop, jamais à ce menu. */
  .site-header--overlay:not(.is-scrolled) .nav-pill { background: transparent; border: none; backdrop-filter: none; }
  .site-header--overlay:not(.is-scrolled) .main-nav a { color: var(--muted); }
  .site-header--overlay:not(.is-scrolled) .main-nav a:hover { color: var(--ink); background: var(--lilac-light); }
  .site-header--overlay:not(.is-scrolled) .main-nav a.active { color: var(--white); background: var(--purple); }
}

@media (max-width: 400px) {
  .header-cta { gap: 10px; }
  .header-cta .btn { padding: 9px 14px; font-size: 0.78rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  margin-top: -170px;
  min-height: max(640px, 100dvh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(26, 20, 32, 0.32) 0%, rgba(35, 22, 54, 0.4) 45%, rgba(26, 15, 43, 0.86) 100%);
}
.hero .container { position: relative; padding: 230px 0 72px; }
.hero-text { max-width: 620px; }
.hero-text .eyebrow { color: var(--gold); }
.hero-text h1 { color: var(--white); }
.hero-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.92);
  margin: 24px 0 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; align-items: center; }
.hero .btn-outline-purple { border-color: rgba(255, 255, 255, 0.45); color: var(--white); }
.hero .btn-outline-purple:hover { background: rgba(255, 255, 255, 0.14); border-color: var(--white); color: var(--white); }

@media (max-width: 940px) {
  .hero { margin-top: -140px; align-items: flex-end; }
  .hero .container { padding: 186px 0 56px; }
  .hero-text { max-width: none; }
}

@media (max-width: 400px) {
  .hero .container { padding: 174px 0 48px; }
  .hero-text h1 { font-size: 2.35rem; }
}

.scroll-cue {
  position: absolute;
  right: clamp(24px, 4vw, 56px);
  bottom: clamp(24px, 4vh, 48px);
  width: 104px;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.82);
  z-index: 2;
}
.scroll-cue-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: scroll-cue-spin 18s linear infinite;
}
.scroll-cue-arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(4px);
  animation: scroll-cue-bob 2.4s ease-in-out infinite;
}
@keyframes scroll-cue-spin { to { transform: rotate(360deg); } }
@keyframes scroll-cue-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-cue-ring, .scroll-cue-arrow { animation: none; }
}
@media (max-width: 640px) {
  .scroll-cue { display: none; }
}

.credentials-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.credential-item { display: flex; gap: 14px; align-items: flex-start; max-width: 320px; }
.credential-item .icon-badge { flex-shrink: 0; }
.credential-item p { font-size: 0.95rem; color: var(--muted); }
.credential-item strong { color: var(--purple); font-weight: 700; }

/* ---------- Bandeau sombre (citation / mise en avant) ---------- */
.dark-band {
  background: var(--purple-darker);
  color: var(--white);
  position: relative;
}
.dark-band h1, .dark-band h2, .dark-band h3 { color: var(--white); }
.dark-band p { color: rgba(255, 255, 255, 0.82); }
.dark-band .eyebrow { color: var(--gold); }
.dark-band .rule-gold {
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 28px;
}
.quote-banner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.quote-banner .avatar {
  width: 68px; height: 68px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 22px;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.15);
}
.quote-banner .avatar img { width: 100%; height: 100%; object-fit: cover; }
.quote-banner p {
  font-family: var(--font-accent);
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  font-style: italic;
  color: var(--white);
  margin: 0;
}
.quote-banner .signature { display: block; margin-top: 22px; font-family: var(--font-sans); font-style: normal; font-size: 0.9rem; color: var(--gold); font-weight: 600; }

/* ---------- Grilles génériques ---------- */
.section-head { max-width: 680px; margin: 0 0 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.grid {
  display: grid;
  gap: 32px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---------- Offre : mise en avant asymétrique (au lieu de 3 cartes égales) ---------- */
.offer-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: stretch;
}
@media (max-width: 860px) { .offer-layout { grid-template-columns: 1fr; } }

.offer-featured {
  background: linear-gradient(150deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s var(--ease-standard), box-shadow 0.3s var(--ease-standard);
}
.offer-featured:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.offer-featured .icon-badge { margin-bottom: 22px; }
.offer-featured .icon-badge-gold { box-shadow: 0 0 0 6px rgba(244, 196, 48, 0.18); }
.offer-featured h3 { color: var(--white); }
.offer-featured p { color: rgba(255,255,255,0.82); }
.offer-featured .offer-price { color: var(--gold); font-weight: 700; margin-top: 8px; }
.offer-featured .btn-outline-purple { border-color: rgba(255,255,255,0.4); color: var(--white); }
.offer-featured .btn-outline-purple:hover { background: rgba(255,255,255,0.12); border-color: var(--white); color: var(--white); }

.offer-side { display: flex; flex-direction: column; gap: 24px; }
.offer-side .card { flex: 1; display: flex; flex-direction: column; }
.offer-side .card p:last-of-type { flex-grow: 1; }

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease-standard), box-shadow 0.3s var(--ease-standard);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.card .icon-badge { margin-bottom: 18px; }
.card h3 { margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; }

/* ---------- Accompagnements — liste de mots-clés ---------- */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 12px; }
.tag-pill {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 6px 18px 6px 6px;
  border-radius: 100px;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s var(--ease-standard), box-shadow 0.25s var(--ease-standard);
}
.tag-pill:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.tag-pill .icon-badge { width: 26px; height: 26px; padding: 5px; align-self: center; }
.tag-pill-label { display: inline-block; align-self: center; line-height: 1.2; }

/* ---------- Pour quels motifs : intro + liste asymétrique (pas un grid centré de plus) ---------- */
.motif-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) { .motif-split { grid-template-columns: 1fr; gap: 28px; } }

.motif-list { display: flex; flex-direction: column; }
.motif-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
}
.motif-item:first-child { border-top: 1px solid var(--line); }
.dark-band .motif-item { color: rgba(255, 255, 255, 0.88); border-bottom-color: rgba(255,255,255,0.16); }
.dark-band .motif-item:first-child { border-top-color: rgba(255,255,255,0.16); }

/* ---------- Timeline (à propos) ---------- */
.timeline { position: relative; margin: 44px 0 0; padding-left: 30px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 3px; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--lilac);
}
.timeline-item { position: relative; padding-bottom: 30px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -30px; top: 3px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px var(--white), 0 0 0 4px var(--lilac);
}
.timeline-year {
  font-family: var(--font-display);
  color: var(--purple);
  font-weight: 800;
  font-size: 1rem;
  display: block;
  margin-bottom: 2px;
}

/* ---------- Pricing ---------- */
.pricing-group { margin-bottom: 88px; }
.pricing-group:last-child { margin-bottom: 0; }
.pricing-group-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.pricing-group-head h3 { margin: 0; font-size: 1.5rem; text-transform: none; }
.pricing-note {
  color: var(--gold-text);
  background: var(--pale-yellow-light);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--lilac);
  transition: transform 0.3s var(--ease-standard), box-shadow 0.3s var(--ease-standard);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.price-card.featured { border-top-color: var(--gold); }
.price-card .ribbon {
  display: inline-block;
  color: var(--gold-text);
  background: var(--pale-yellow-light);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  align-self: flex-start;
}
.price-card .price-label { font-weight: 600; color: var(--purple); margin-bottom: 10px; }
.price-card .price-value {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--ink);
  font-weight: 800;
  margin-bottom: 2px;
}
.price-card .price-per { color: var(--muted); font-size: 0.86rem; margin-bottom: 20px; display: block; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 26px; flex-grow: 1; }
.price-card ul li {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
  color: var(--muted);
}
.price-card ul li:last-child { border-bottom: none; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  padding: 24px 40px 24px 0;
  position: relative;
  transition: color 0.2s ease;
}
.faq-question:hover { color: var(--purple); }
.faq-question::after {
  content: "+";
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold-dark);
  transition: transform 0.25s var(--ease-standard);
}
.faq-item.open .faq-question::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease-standard);
}
.faq-answer p { padding-bottom: 24px; margin: 0; color: var(--muted); max-width: 620px; }

/* ---------- Infos pratiques ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 820px) { .info-grid { grid-template-columns: 1fr; } }
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 32px 28px;
  border-left: 1px solid var(--line);
}
.info-card:first-child { border-left: none; }
@media (max-width: 820px) {
  .info-card { border-left: none; border-top: 1px solid var(--line); }
  .info-card:first-child { border-top: none; }
}
.info-card .icon-badge { flex-shrink: 0; }
.info-card-body h3 { margin-bottom: 4px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--lilac-light) 0%, var(--pale-yellow-light) 100%);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(48px, 8vh, 88px) 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: var(--ink); }
.cta-band p { color: var(--muted); max-width: 520px; margin-left: auto; margin-right: auto; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--purple);
  color: rgba(255,255,255,0.65);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { width: 180px; height: auto; margin-bottom: 18px; }
.footer-brand p { color: rgba(255,255,255,0.6); max-width: 320px; }
.site-footer h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 12px; }
.site-footer a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* ---------- Bandeau photo pleine largeur ----------
   Traitement "duotone" (désaturation + surimpression violette en mode
   de fusion "color") pour que les photos, d'origines très différentes,
   soient unifiées par l'identité de la marque plutôt que d'apparaître
   comme de simples images d'illustration collées les unes aux autres. */
.photo-band {
  position: relative;
  width: 100%;
  height: clamp(320px, 38vw, 460px);
  overflow: hidden;
  background: var(--purple-darker);
}
.photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(55%) contrast(1.08) brightness(0.92);
  transition: transform 6s var(--ease-standard);
}
.photo-band:hover img { transform: scale(1.05); }
.photo-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-darker) 100%);
  mix-blend-mode: color;
  opacity: 0.9;
  pointer-events: none;
}
.photo-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(26,20,32,0) 40%, rgba(26,20,32,0.72) 100%);
  pointer-events: none;
}
.photo-band-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  padding: 36px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.photo-band-caption .eyebrow { color: var(--gold); margin-bottom: 8px; }
.photo-band-caption h3 { color: var(--white); margin: 0; font-size: clamp(1.3rem, 2.6vw, 1.9rem); text-transform: none; }

@media (max-width: 720px) {
  .photo-band { height: 260px; }
}

/* ---------- Page header (bandeau titre secondaire) ---------- */
.page-hero {
  padding: 70px 0 60px;
  background: linear-gradient(180deg, var(--lilac-light) 0%, var(--white) 100%);
  text-align: center;
}
.page-hero .eyebrow { justify-content: center; }
.page-hero p.lead {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--muted);
  font-family: var(--font-sans);
}

/* ---------- À propos ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 72px;
  align-items: start;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
.about-photo { position: sticky; top: 116px; }
@media (max-width: 900px) { .about-photo { position: static; } }
.about-text p { color: var(--ink); }
.pull-quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--purple);
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin: 36px 0;
}

/* ---------- Blog empty state ---------- */
.blog-empty {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 20px 0;
}
.blog-empty > .icon-badge { margin: 0 auto 24px; }
.blog-categories { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin: 32px 0; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-list { list-style: none; padding: 0; margin: 30px 0; }
.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  margin-bottom: 12px;
}
.contact-info-list a:hover { color: var(--purple); text-decoration: underline; }
.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-top: 30px;
}
.map-embed iframe { width: 100%; height: 260px; border: 0; display: block; }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  box-shadow: var(--shadow-soft);
}
@media (max-width: 480px) {
  .form-card { padding: 28px 22px; }
}
.form-row { margin-bottom: 24px; }
.form-row label {
  display: block;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 10px 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.2s ease;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--purple);
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 560px) { .form-two { grid-template-columns: 1fr; } }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; }

.form-msg {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 22px;
  font-weight: 500;
  font-size: 0.92rem;
  display: none;
}
.form-msg.success { display: block; background: #e4f7e9; color: #1f6b3b; }
.form-msg.error { display: block; background: #fbe6e6; color: #9c2d2d; }

/* ---------- Offres CTA rappel ---------- */
.small-print { font-size: 0.85rem; color: var(--muted); }

/* ---------- Utilitaires ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
