/* =============================================================
   CLO'ÉVASION · Maquette v1 · Quai des Balises
   ============================================================= */

/* --- 1. Variables --- */
:root {
  /* Palette */
  --mauve:        #9B8DB4;
  --mauve-deep:   #7A6B96;
  --mauve-soft:   #C9BEE0;
  --grey-warm:    #8C8C8C;
  --sand:         #D4B896;
  --terracotta:   #C9876A;
  --cream:        #F5F0E8;
  --ivory:        #FAF8F5;
  --ink:          #2C2C2C;
  --ink-soft:     #5A5A5A;
  --line:         rgba(44, 44, 44, 0.12);
  --shadow-sm:    0 2px 10px rgba(44, 44, 44, 0.06);
  --shadow-md:    0 10px 40px rgba(44, 44, 44, 0.08);
  --shadow-lg:    0 20px 60px rgba(44, 44, 44, 0.12);

  /* Typo — Playfair Display pour la solidité des diacritiques (ê, é, î, ç) */
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Manrope', 'Inter', system-ui, sans-serif;

  /* Mesures */
  --container: 1240px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 22px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- 2. Reset & base --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease), opacity .25s var(--ease); }
a:hover { color: var(--mauve-deep); }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.4em;
  letter-spacing: -0.01em;
}
h1 em, h2 em, h3 em { font-style: italic; color: var(--mauve-deep); }

p { margin: 0 0 1em; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* --- 3. Layout utilities --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 28px;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mauve-deep);
  margin: 0 0 18px;
}
.eyebrow.light { color: var(--mauve-soft); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-header h2 {
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.12;
  margin-bottom: 18px;
}
.section-header .lede {
  color: var(--ink-soft);
  font-size: 18px;
}

section { padding: clamp(80px, 10vw, 140px) 0; position: relative; }

/* --- 4. Boutons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  white-space: nowrap;
}
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 18px 34px; font-size: 16px; }

.btn-primary {
  background: var(--mauve-deep);
  color: #fff;
  box-shadow: 0 6px 20px rgba(122, 107, 150, 0.35);
}
.btn-primary:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(44, 44, 44, 0.25);
}

.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--ivory); }

.btn-dark {
  background: var(--ink);
  color: var(--ivory);
}
.btn-dark:hover { background: var(--mauve-deep); }

/* --- 5. Header --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.scrolled {
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  color: var(--mauve-deep);
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 1;
  text-decoration: none;
  position: relative;
}
.brand-name { white-space: nowrap; }
.brand-tick {
  display: inline-block;
  color: var(--terracotta);
  margin: 0 -1px 0 -2px;
  font-style: italic;
  transform: translateY(-2px);
  font-size: 0.95em;
}

/* Sur le hero (header non scrolled) : texte blanc avec léger shadow */
.site-header:not(.scrolled) .main-nav a,
.site-header:not(.scrolled) .burger span {
  color: #fff;
}
.site-header:not(.scrolled) .brand {
  color: #fff;
  text-shadow: 0 1px 12px rgba(0,0,0,0.35);
}
.site-header:not(.scrolled) .brand-tick {
  color: var(--sand);
}
.site-header:not(.scrolled) .burger span { background: #fff; }
.site-header:not(.scrolled) .main-nav a::after { background: #fff; }

.main-nav ul {
  display: flex;
  gap: 34px;
  align-items: center;
}
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 6px 0;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 1px;
  background: var(--mauve-deep);
  transition: width .3s var(--ease);
}
.main-nav a:hover::after { width: 100%; }

.burger {
  display: none;
  width: 36px; height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 4px;
}
.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--ivory);
  padding: 16px 28px 28px;
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 16px; }
.mobile-menu a { font-size: 18px; font-family: var(--serif); }

/* --- 6. Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 100px;
  color: #fff;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(44,44,44,0.35) 0%, rgba(44,44,44,0.15) 35%, rgba(44,44,44,0.65) 100%),
    radial-gradient(ellipse at center, rgba(155, 141, 180, 0.15) 0%, rgba(44,44,44,0.0) 70%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.hero .eyebrow {
  color: #fff;
  opacity: 0.85;
}
.hero-title {
  color: #fff;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 1.25;
  padding-top: 0.25em; /* marge très généreuse pour les diacritiques (ê, é, î) */
  margin-bottom: 28px;
  font-weight: 600;
  letter-spacing: -0.015em;
  overflow: visible;
}
.hero-title em {
  color: #fff;
  font-style: italic;
  display: inline-block;
}
.hero-sub {
  font-size: clamp(17px, 1.6vw, 20px);
  max-width: 600px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 60px;
}
.hero-quote {
  max-width: 520px;
  border-left: 2px solid rgba(255,255,255,0.4);
  padding: 8px 0 8px 22px;
  margin: 0;
  color: rgba(255,255,255,0.85);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.45;
}
.hero-quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* Badge Google avis — fixed bas-droit */
.hero-gmb {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 90;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  text-decoration: none;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  border: 1px solid rgba(155,141,180,0.12);
  white-space: nowrap;
}
.hero-gmb:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.16);
  color: inherit;
}
.hero-gmb-g { width: 22px; height: 22px; flex-shrink: 0; }
.hero-gmb-body { display: flex; flex-direction: row; align-items: center; gap: 8px; }
.hero-gmb-stars { display: flex; align-items: center; gap: 2px; }
.hero-gmb-stars svg { width: 12px; height: 12px; }
.hero-gmb-score {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}
.hero-gmb-count {
  font-size: 10px;
  color: var(--ink-soft);
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .hero-gmb { padding: 10px 16px; gap: 10px; }
  .hero-gmb-g { width: 18px; height: 18px; }
  .hero-gmb-stars svg { width: 10px; height: 10px; }
  .hero-gmb-score { font-size: 14px; }
  .hero-gmb-count { font-size: 9px; }
}

/* =============================================================
   SECTION AVIS GOOGLE
   ============================================================= */
.reviews {
  background: var(--cream);
  padding: clamp(90px, 11vw, 150px) 0;
  overflow: hidden;
}
.reviews-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: -20px auto 60px;
  padding: 18px 28px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(110, 95, 140, 0.08);
  border: 1px solid rgba(155,141,180,0.12);
  width: fit-content;
}
.gmb-g-lg { width: 32px; height: 32px; flex-shrink: 0; }
.reviews-badge-stars {
  display: flex;
  align-items: center;
  gap: 10px;
}
.reviews-badge-score {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
}
.reviews-badge .gmb-stars { display: flex; gap: 2px; }
.reviews-badge .gmb-stars svg { width: 18px; height: 18px; }
.reviews-badge-count {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 4px 0 0;
  text-align: center;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  box-shadow: 0 2px 12px rgba(110, 95, 140, 0.06);
  border: 1px solid rgba(155,141,180,0.1);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(110, 95, 140, 0.14);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.review-name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  margin: 0;
}
.review-date {
  font-size: 12px;
  color: var(--ink-soft);
  margin: 2px 0 0;
}
.review-stars {
  display: flex;
  gap: 1px;
  margin-left: auto;
}
.review-stars svg { width: 14px; height: 14px; }
.review-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 16px;
}
.review-text strong { color: var(--ink); font-weight: 600; }
.review-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mauve-deep);
  background: rgba(155,141,180,0.1);
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0;
}
@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-badge { flex-direction: column; border-radius: var(--radius-md); gap: 10px; }
  .hero-gmb { margin-bottom: 0; }
}

.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.7;
  animation: floatY 2.4s var(--ease) infinite;
}
.scroll-cue svg { width: 20px; height: 20px; }
@keyframes floatY {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 8px); }
}

/* --- 7. Piliers (version éditoriale photographique) --- */
.piliers {
  background: var(--cream);
  padding-top: clamp(100px, 12vw, 160px);
  padding-bottom: clamp(100px, 12vw, 160px);
  position: relative;
  overflow: hidden;
}
/* Décor de fond : initiale géante très discrète + texture */
.piliers-bg-deco {
  position: absolute;
  top: -40px; right: -60px;
  width: 540px; height: 540px;
  pointer-events: none;
  opacity: 0.06;
  background-image: radial-gradient(ellipse at center, var(--mauve) 0%, transparent 55%);
}
.piliers-bg-deco::before {
  content: "C";
  position: absolute;
  top: 60px; right: 80px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 480px;
  line-height: 0.8;
  color: var(--mauve-deep);
  opacity: 0.5;
}

.piliers .section-header { margin-bottom: 80px; }
.piliers .section-header h2 { font-size: clamp(36px, 4.4vw, 56px); margin-bottom: 22px; }
.piliers .section-header .lede { max-width: 580px; margin: 22px auto 0; color: var(--ink-soft); font-size: 17px; }

.ornament-arc {
  display: block;
  width: 110px;
  height: 22px;
  margin: 0 auto;
}

.piliers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

.pilier-card {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(155, 141, 180, 0.08), 0 12px 40px rgba(110, 95, 140, 0.08);
  border: 1px solid rgba(155, 141, 180, 0.12);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  display: flex;
  flex-direction: column;
}
.pilier-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1px 0 rgba(155, 141, 180, 0.12), 0 24px 60px rgba(110, 95, 140, 0.18);
}

.pilier-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
}
.pilier-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.pilier-card:hover .pilier-media img { transform: scale(1.06); }
.pilier-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(44,44,44,0.0) 40%, rgba(44,44,44,0.45) 100%);
  pointer-events: none;
}

.pilier-numeral {
  position: absolute;
  bottom: 18px; left: 24px;
  z-index: 2;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 56px;
  line-height: 0.9;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,0.35);
  letter-spacing: 0.02em;
}

.pilier-body {
  padding: 36px 34px 38px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pilier-kicker {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--terracotta);
  margin: 0 0 14px;
}
.pilier-body h3 {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 16px;
}
.pilier-body h3 em {
  font-style: italic;
  color: var(--mauve-deep);
}
.pilier-body p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.pilier-body p em {
  color: var(--ink);
  font-style: italic;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.05em;
}
.pilier-line {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--mauve);
  margin-top: 22px;
  opacity: 0.6;
}

/* Signature manuscrite Chloé sous les cartes */
.piliers-signature {
  margin-top: 70px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.signature-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.4;
  color: var(--ink);
  max-width: 640px;
  margin: 0 auto 18px;
}
.signature-mark {
  width: 140px;
  height: 42px;
  display: block;
  margin: 0 auto 8px;
}
.signature-name {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0;
  font-weight: 500;
}
.signature-name span {
  color: var(--mauve-deep);
  font-weight: 400;
  letter-spacing: 0.12em;
}

/* --- 8. Offres --- */
.offres { background: var(--ivory); }

.offres-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.offre-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  border: 1px solid rgba(44,44,44,0.04);
}
.offre-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.offre-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
}
.offre-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.offre-card:hover .offre-media img { transform: scale(1.06); }
.offre-body { padding: 26px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.offre-kicker {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 10px;
}
.offre-card h3 {
  font-size: 28px;
  margin-bottom: 10px;
}
.offre-desc {
  color: var(--ink-soft);
  font-size: 15px;
  flex: 1;
  margin-bottom: 20px;
}
.offre-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.price { font-family: var(--serif); font-size: 22px; font-weight: 500; font-style: italic; color: var(--mauve-deep); }
.price small { font-size: 13px; color: var(--ink-soft); font-style: normal; }
.arrow {
  font-size: 20px;
  color: var(--mauve-deep);
  transition: transform .3s var(--ease);
}
.offre-card:hover .arrow { transform: translateX(6px); }

/* --- 9. Processus (steps) --- */
.processus {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 50px;
  counter-reset: step;
  max-width: 1100px;
  margin: 0 auto;
}
.step {
  position: relative;
  padding-top: 10px;
}
.step-num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 46px;
  font-weight: 500;
  color: var(--mauve);
  opacity: 0.55;
  line-height: 1;
  margin-bottom: 14px;
}
.step h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.step p {
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0;
}

/* --- 10. À propos --- */
.apropos {
  background: var(--ivory);
}
.apropos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.apropos-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.apropos-media img { width: 100%; height: 100%; object-fit: cover; }
.apropos-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--ivory);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.badge-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 38px;
  font-weight: 500;
  color: var(--mauve-deep);
}
.badge-txt {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* === Carte signature (remplace le portrait Chloé) === */
.apropos-signature {
  background:
    radial-gradient(ellipse at top left, rgba(155,141,180,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(201,135,106,0.10) 0%, transparent 55%),
    linear-gradient(135deg, #F5F0E8 0%, #EDE2D1 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 46px;
  text-align: center;
  border: 1px solid rgba(155,141,180,0.15);
  position: relative;
  overflow: hidden;
}
/* Initiale fantôme en fond (décoratif) */
.apropos-signature::before {
  content: "C";
  position: absolute;
  top: -40px; right: -30px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 360px;
  line-height: 0.8;
  color: var(--mauve-deep);
  opacity: 0.05;
  pointer-events: none;
}
.sig-corner {
  position: absolute;
  font-size: 14px;
  color: var(--mauve);
  opacity: 0.45;
  pointer-events: none;
}
.sig-corner-tl { top: 18px; left: 22px; }
.sig-corner-tr { top: 18px; right: 22px; }
.sig-corner-bl { bottom: 18px; left: 22px; }
.sig-corner-br { bottom: 18px; right: 22px; }

.sig-eyebrow {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--mauve-deep);
  font-weight: 600;
  margin: 0 0 28px;
  position: relative;
  z-index: 2;
}

.sig-quote {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 1.9vw, 24px);
  line-height: 1.45;
  color: var(--ink);
  max-width: 380px;
  position: relative;
  z-index: 2;
}
.sig-quote em { font-style: italic; }

.sig-arc {
  width: 140px;
  height: 26px;
  margin: 0 auto 22px;
  display: block;
  position: relative;
  z-index: 2;
}

.sig-name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(58px, 6vw, 84px);
  line-height: 1;
  color: var(--mauve-deep);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 2;
}
.sig-role {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 36px;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.sig-stats {
  list-style: none;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(155,141,180,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 380px;
  position: relative;
  z-index: 2;
}
.sig-stats li:not(.sig-stats-sep) {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  line-height: 1;
}
.sig-stats-sep {
  width: 1px;
  height: 34px;
  background: rgba(155,141,180,0.3);
  flex-shrink: 0;
}
.stat-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 30px);
  color: var(--mauve-deep);
  margin-bottom: 6px;
}
.stat-lbl {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}

.apropos-text h2 {
  font-size: clamp(32px, 3.8vw, 48px);
  margin-bottom: 22px;
}
.apropos-text p { color: var(--ink-soft); font-size: 17px; margin-bottom: 18px; }
.apropos-text .btn { margin-top: 14px; }

/* --- 11. Journal --- */
.journal { background: var(--cream); }

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}
.article-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.article-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.article-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.article-card:hover .article-media img { transform: scale(1.05); }
.article-body { padding: 24px 26px 28px; }
.article-meta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 10px;
}
.article-card h3 {
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 16px;
}
.article-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--mauve-deep);
  letter-spacing: 0.03em;
}

/* === Voyager sereinement (intégration MAE éditoriale) === */
.serenity {
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}
.serenity::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

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

/* --- Image avec tampon officiel --- */
.serenity-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.serenity-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.serenity-stamp {
  position: absolute;
  top: -22px; right: -22px;
  width: 130px;
  height: 130px;
  background: var(--ivory);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(110, 95, 140, 0.18);
  transform: rotate(-12deg);
  border: 1px solid rgba(155, 141, 180, 0.25);
}
.stamp-circle {
  width: 100%;
  height: 100%;
  animation: stampSlowSpin 60s linear infinite;
}
@keyframes stampSlowSpin {
  to { transform: rotate(360deg); }
}

/* --- Contenu éditorial --- */
.serenity-text h2 {
  font-size: clamp(34px, 4vw, 50px);
  margin-bottom: 24px;
}
.serenity-text .lede {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}
.serenity-text .lede strong {
  color: var(--ink);
  font-weight: 500;
}

/* --- Liste alertes pays (style éditorial, pas dashboard) --- */
.alerts-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  border-top: 1px solid var(--line);
}
.alert-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease);
}
.alert-item:hover {
  background: rgba(155, 141, 180, 0.04);
}
.alert-flag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--cream);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: var(--mauve-deep);
  letter-spacing: 0.02em;
}
.alert-body { line-height: 1.3; }
.alert-country {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  margin: 0;
  font-weight: 500;
}
.alert-status {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 6px 0 0;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.alert-status::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.alert-low  { color: #6E9474; }
.alert-mid  { color: var(--terracotta); }
.alert-high { color: #B85C5C; }

.alert-date {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
}

/* --- Lien vers le flux complet --- */
.serenity-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mauve-deep);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--mauve);
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.serenity-link:hover {
  gap: 16px;
  color: var(--ink);
}

/* --- 12. CTA Band + Newsletter --- */
.cta-band {
  background: var(--ink);
  color: #fff;
  padding: clamp(80px, 9vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155,141,180,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,135,106,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.cta-band h2, .cta-band h3 { color: #fff; }
.cta-band h2 em { color: var(--mauve-soft); }
.cta-main h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 18px; }
.cta-main p { color: rgba(255,255,255,0.75); font-size: 17px; margin-bottom: 28px; max-width: 500px; }

.cta-news {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  padding: 38px 36px;
  border-radius: var(--radius-lg);
}
.cta-news h3 { font-size: 26px; margin-bottom: 10px; }
.cta-news p { color: rgba(255,255,255,0.7); font-size: 15px; margin-bottom: 22px; }

.news-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.news-form input {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  font-family: var(--sans);
  font-size: 15px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  border-radius: 999px;
  outline: none;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.news-form input::placeholder { color: rgba(255,255,255,0.4); }
.news-form input:focus { border-color: var(--mauve-soft); background: rgba(255,255,255,0.12); }
.news-form .btn-dark {
  background: var(--ivory);
  color: var(--ink);
}
.news-form .btn-dark:hover { background: var(--mauve-soft); }
.news-ok {
  flex-basis: 100%;
  color: var(--mauve-soft);
  font-size: 14px;
  margin: 6px 0 0;
}
.fine-print {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 16px;
  margin-bottom: 0;
}

/* --- 13. Footer --- */
.site-footer {
  background: var(--ivory);
  padding: 80px 0 30px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: var(--ink-soft); font-size: 15px; }
.footer-col a:hover { color: var(--mauve-deep); }
.brand-footer { color: var(--mauve-deep); font-size: 36px; }
.footer-tag { color: var(--ink-soft); font-size: 15px; margin: 18px 0 24px; max-width: 320px; }

.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-soft);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.socials a:hover { background: var(--mauve-deep); border-color: var(--mauve-deep); color: #fff; }
.socials svg { width: 18px; height: 18px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--mauve-deep); font-weight: 500; }

/* --- 14. Animations au scroll --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s var(--ease) forwards;
}
.fade-in.delay-1 { animation-delay: 0.15s; }
.fade-in.delay-2 { animation-delay: 0.35s; }
.fade-in.delay-3 { animation-delay: 0.55s; }
.fade-in.delay-4 { animation-delay: 0.85s; }
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* --- 15. Responsive --- */
@media (max-width: 1024px) {
  .piliers-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }
  .offres-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .journal-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .apropos-grid { gap: 50px; }
  .serenity-grid { gap: 60px; }
  .cta-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  section { padding: 70px 0; }
  .section-header { margin-bottom: 44px; }

  .main-nav, .header-inner > .btn { display: none; }
  .burger { display: flex; }
  .brand-name { font-size: 24px; }

  .hero { padding: 100px 0 80px; min-height: 88vh; }
  .hero-inner { text-align: left; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-quote { font-size: 16px; }

  .piliers-grid { grid-template-columns: 1fr; gap: 40px; }
  .offres-grid { grid-template-columns: 1fr; }
  .journal-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .apropos-grid { grid-template-columns: 1fr; gap: 40px; }
  .serenity-grid { grid-template-columns: 1fr; gap: 50px; }
  .serenity-media { aspect-ratio: 4 / 4; max-width: 480px; margin: 0 auto; }
  .serenity-stamp { width: 100px; height: 100px; top: -16px; right: -10px; }
  .alert-item { gap: 16px; padding: 18px 4px; }
  .alert-country { font-size: 19px; }

  .cta-news { padding: 28px 22px; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* =============================================================
   17. MODALE CALENDLY (simulation premium)
   ============================================================= */
.cal-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: calFadeIn .35s var(--ease);
}
.cal-modal[hidden] { display: none !important; }
@keyframes calFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.cal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 26, 40, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cal-dialog {
  position: relative;
  width: 100%;
  max-width: 980px;
  max-height: 90vh;
  background: var(--ivory);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  overflow: hidden;
  animation: calRise .5s var(--ease);
}
@keyframes calRise {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.cal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
  color: var(--ink);
  z-index: 10;
  cursor: pointer;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.cal-close svg { width: 18px; height: 18px; }
.cal-close:hover { background: var(--ink); color: var(--ivory); transform: rotate(90deg); }

.cal-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  height: 100%;
  max-height: 90vh;
}

/* ===== Colonne gauche : info ===== */
.cal-info {
  background: linear-gradient(180deg, #F5F0E8 0%, #ECE3D5 100%);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(155,141,180,0.15);
  position: relative;
  overflow-y: auto;
}
.cal-back {
  position: absolute;
  top: 18px; left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(255,255,255,0.7);
  border-radius: 999px;
  cursor: pointer;
  transition: color .25s var(--ease), background .25s var(--ease);
}
.cal-back svg { width: 14px; height: 14px; }
.cal-back:hover { color: var(--mauve-deep); background: #fff; }

.cal-host {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  margin-bottom: 24px;
}
.cal-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--mauve-deep);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.02em;
}
.cal-host-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 3px;
  font-weight: 600;
}
.cal-host-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--ink);
  margin: 0;
  font-weight: 500;
}

.cal-title {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.15;
  margin: 0 0 22px;
  font-weight: 500;
  color: var(--ink);
}

.cal-meta {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cal-meta li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-soft);
}
.cal-meta svg {
  width: 18px; height: 18px;
  color: var(--mauve-deep);
  flex-shrink: 0;
}

.cal-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(155,141,180,0.2);
}

.cal-note {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.6;
  margin: 0 0 24px;
  padding: 14px 16px;
  background: rgba(155,141,180,0.12);
  border-left: 3px solid var(--mauve);
  border-radius: var(--radius-sm);
  font-weight: 500;
}
.cal-note:empty { display: none; }

.cal-selected {
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(155,141,180,0.25);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin-bottom: 20px;
}
.cal-selected-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mauve-deep);
  font-weight: 600;
  margin: 0 0 8px;
}
.cal-selected-date {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  margin: 0 0 4px;
  font-weight: 500;
}
.cal-selected-time {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--mauve-deep);
  margin: 0;
}

.cal-tz-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-soft);
  margin: auto 0 0;
  padding-top: 14px;
}

/* ===== Colonne droite : vues ===== */
.cal-main {
  padding: 40px 44px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.cal-embed-target {
  flex: 1 1 auto;
  min-width: 320px;
  min-height: 680px;
  width: 100%;
}
.cal-embed-target[hidden] { display: none !important; }
.cal-placeholder {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}
.cal-placeholder[hidden] { display: none !important; }
.cal-placeholder-inner {
  text-align: center;
  max-width: 380px;
  padding: 24px;
  color: var(--ink-soft);
}
.cal-placeholder-inner svg { color: #7A6B96; opacity: 0.5; margin-bottom: 18px; }
.cal-placeholder-inner h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 12px;
}
.cal-placeholder-inner p { font-size: 14px; line-height: 1.55; margin: 0 0 22px; }
.cal-view {
  animation: calViewIn .4s var(--ease);
}
@keyframes calViewIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* === Vue calendrier === */
.cal-month-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.cal-month-label {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
  text-transform: capitalize;
}
.cal-nav-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.cal-nav-btn svg { width: 18px; height: 18px; }
.cal-nav-btn:hover { background: var(--cream); color: var(--mauve-deep); }
.cal-nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.cal-nav-btn:disabled:hover { background: transparent; color: inherit; }

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}
.cal-weekdays span {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  padding: 8px 0;
}

.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .15s var(--ease);
  position: relative;
}
.cal-day.empty { cursor: default; }
.cal-day.disabled,
.cal-day.past {
  color: rgba(44,44,44,0.25);
  cursor: not-allowed;
  font-weight: 400;
}
.cal-day.full {
  color: rgba(44,44,44,0.35);
  cursor: not-allowed;
  text-decoration: line-through;
}
.cal-day.available {
  background: #fff;
  border-color: rgba(155,141,180,0.3);
  color: var(--mauve-deep);
  font-weight: 600;
}
.cal-day.available:hover {
  background: var(--mauve-deep);
  color: #fff;
  border-color: var(--mauve-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(122, 107, 150, 0.35);
}
.cal-day.today {
  outline: 1px dashed var(--terracotta);
  outline-offset: -3px;
}
.cal-day.selected {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.cal-legend {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 22px 0 0;
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
}
.legend-dot {
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 4px;
  margin-right: 6px;
  vertical-align: middle;
}
.legend-available { background: #fff; border: 1px solid rgba(155,141,180,0.5); }
.legend-full { background: rgba(44,44,44,0.1); position: relative; }
.legend-full::after {
  content: '';
  position: absolute; top: 50%; left: 0; right: 0;
  height: 1px; background: rgba(44,44,44,0.4);
}

/* === Vue créneaux horaires === */
.cal-times-label {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 8px;
  text-transform: capitalize;
}
.cal-times-sub {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 24px;
}
.cal-times {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-height: 360px;
  overflow-y: auto;
  padding-right: 6px;
}
.cal-time {
  padding: 14px 18px;
  background: #fff;
  border: 1px solid rgba(155,141,180,0.3);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--mauve-deep);
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .15s var(--ease);
  text-align: center;
}
.cal-time:hover {
  background: var(--mauve-deep);
  color: #fff;
  border-color: var(--mauve-deep);
  transform: translateY(-2px);
}

/* === Vue formulaire === */
.cal-view-form h3,
.cal-view-success h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--ink);
}
.cal-form-sub {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 24px;
}
.cal-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cal-field { display: flex; flex-direction: column; gap: 6px; }
.cal-field label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
}
.cal-field .opt {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-soft);
  font-size: 12px;
}
.cal-field input,
.cal-field textarea {
  padding: 12px 16px;
  font-family: var(--sans);
  font-size: 15px;
  background: #fff;
  border: 1px solid rgba(44,44,44,0.15);
  border-radius: 10px;
  color: var(--ink);
  outline: none;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
  resize: vertical;
}
.cal-field input::placeholder,
.cal-field textarea::placeholder { color: rgba(44,44,44,0.35); }
.cal-field input:focus,
.cal-field textarea:focus {
  border-color: var(--mauve-deep);
  box-shadow: 0 0 0 4px rgba(155,141,180,0.15);
}
.cal-field input:invalid:not(:placeholder-shown) {
  border-color: #C97070;
}
.cal-submit { margin-top: 8px; align-self: flex-start; }
.cal-disclaimer {
  font-size: 12px;
  color: var(--ink-soft);
  margin: 4px 0 0;
}

/* === Vue succès === */
.cal-view-success {
  text-align: center;
  padding: 30px 20px;
}
.cal-success-icon {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
}
.cal-success-icon svg { width: 100%; height: 100%; }
.cal-view-success h3 {
  text-align: center;
  font-size: 32px;
}
.cal-success-lead {
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 420px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.cal-success-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 22px 28px;
  display: inline-block;
  margin-bottom: 22px;
  border: 1px solid rgba(155,141,180,0.2);
}
.cal-success-date {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 4px;
  color: var(--ink);
  text-transform: capitalize;
}
.cal-success-time {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--mauve-deep);
  margin: 0;
}
.cal-success-tip {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0 0 24px;
}

/* === Body lock === */
body.cal-open { overflow: hidden; }

/* === Responsive modale === */
@media (max-width: 880px) {
  .cal-modal { padding: 0; align-items: stretch; }
  .cal-dialog { max-height: 100vh; max-width: 100%; border-radius: 0; }
  .cal-grid { grid-template-columns: 1fr; max-height: 100vh; overflow-y: auto; }
  .cal-info { border-right: 0; border-bottom: 1px solid rgba(155,141,180,0.15); padding: 28px 24px; }
  .cal-host { margin-top: 12px; }
  .cal-back { top: 14px; left: 14px; }
  .cal-main { padding: 28px 24px; }
  .cal-times { grid-template-columns: repeat(2, 1fr); max-height: none; }
  .cal-title { font-size: 26px; }
}

/* =============================================================
   18. PAGES INTERNES — composants partagés
   ============================================================= */

/* --- Page hero (compact, branded, image background) --- */
.page-hero {
  position: relative;
  min-height: 56vh;
  padding: 180px 0 80px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(44,44,44,0.30) 0%, rgba(44,44,44,0.20) 40%, rgba(44,44,44,0.75) 100%);
  z-index: 1;
}
.page-hero-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.page-hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.page-hero .eyebrow { color: rgba(255,255,255,0.85); margin-bottom: 16px; }
.page-hero h1 {
  color: #fff;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.15;
  padding-top: 0.12em;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
  max-width: 900px;
}
.page-hero h1 em { color: #fff; font-style: italic; }
.page-hero .lede {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  max-width: 640px;
  margin: 0;
}

/* --- Breadcrumb --- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  font-weight: 500;
}
.breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { opacity: 0.4; }

/* --- Container slim pour pages texte (FAQ, légal) --- */
.container-slim {
  width: 100%;
  max-width: 880px;
  margin-inline: auto;
  padding-inline: 28px;
}

/* --- Section grise alternée --- */
.section-cream { background: var(--cream); }
.section-ivory { background: var(--ivory); }

/* =============================================================
   À PROPOS — story timeline + valeurs
   ============================================================= */
.about-intro {
  padding: clamp(80px, 9vw, 130px) 0;
  background: var(--ivory);
}
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }
.about-quote-overlay {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.4;
}
.about-text h1, .about-text h2 {
  font-size: clamp(36px, 4.2vw, 54px);
  margin-bottom: 24px;
  line-height: 1.12;
}
.about-text p {
  color: var(--ink-soft);
  font-size: 17px;
  margin-bottom: 18px;
  line-height: 1.7;
}
.about-text p strong { color: var(--ink); font-weight: 500; }

/* --- Timeline parcours --- */
.timeline-section {
  background: var(--cream);
  padding: clamp(90px, 10vw, 140px) 0;
}
.timeline {
  max-width: 820px;
  margin: 60px auto 0;
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 8px; bottom: 8px; left: 8px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--mauve) 10%, var(--mauve) 90%, transparent);
}
.timeline-item {
  position: relative;
  padding-bottom: 50px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 8px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--ivory);
  border: 2px solid var(--mauve-deep);
  box-shadow: 0 0 0 4px rgba(155,141,180,0.15);
}
.timeline-year {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--mauve-deep);
  margin: 0 0 6px;
  font-weight: 500;
}
.timeline-item h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
.timeline-item p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 16px;
}

/* --- Galerie pays --- */
.countries-section { padding: clamp(80px, 9vw, 130px) 0; background: var(--ivory); }
.countries-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 880px;
  margin: 50px auto 0;
}
.country-tag {
  padding: 10px 22px;
  background: #fff;
  border: 1px solid rgba(155,141,180,0.25);
  border-radius: 999px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--ink);
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
  cursor: default;
}
.country-tag:hover {
  background: var(--mauve-deep);
  color: #fff;
  transform: translateY(-3px);
}
.country-tag.featured {
  background: var(--cream);
  border-color: var(--mauve);
  color: var(--mauve-deep);
  font-weight: 500;
}

/* =============================================================
   FICHE OFFRE
   ============================================================= */
.offer-detail { padding: clamp(80px, 9vw, 120px) 0; background: var(--ivory); }
.offer-detail-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
.offer-content h2 {
  font-size: clamp(32px, 3.6vw, 44px);
  margin: 0 0 24px;
  line-height: 1.18;
}
.offer-content > p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 20px;
}
.offer-includes {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}
.offer-includes li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  color: var(--ink);
  line-height: 1.5;
}
.offer-includes li:last-child { border-bottom: none; }
.offer-includes svg {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--mauve-deep);
  margin-top: 3px;
}

/* Sidebar tarif (sticky) */
.offer-sidebar {
  position: sticky;
  top: 110px;
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  box-shadow: 0 12px 40px rgba(110, 95, 140, 0.10);
  border: 1px solid rgba(155,141,180,0.15);
}
.offer-sidebar .price-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 56px;
  font-weight: 500;
  color: var(--mauve-deep);
  line-height: 1;
  margin: 0 0 6px;
}
.offer-sidebar .price-tag small {
  font-size: 18px;
  color: var(--ink-soft);
  font-style: normal;
  font-family: var(--sans);
}
.offer-sidebar .price-note {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0 0 26px;
  letter-spacing: 0.04em;
}
.offer-sidebar .specs {
  list-style: none;
  margin: 0 0 28px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.offer-sidebar .specs li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}
.offer-sidebar .specs .label {
  color: var(--ink-soft);
  letter-spacing: 0.06em;
}
.offer-sidebar .specs .val {
  color: var(--ink);
  font-weight: 500;
}
.offer-sidebar .btn { width: 100%; margin-bottom: 10px; }
.offer-sidebar .secure {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-soft);
  margin: 14px 0 0;
  justify-content: center;
}

/* Process condensé sur fiche offre */
.offer-process { background: var(--cream); padding: clamp(80px, 9vw, 130px) 0; }
.offer-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 50px;
  margin-top: 50px;
}

/* Cross-sell autres offres */
.offer-cross { padding: clamp(80px, 9vw, 130px) 0; background: var(--ivory); }

/* =============================================================
   CONTACT
   ============================================================= */
.contact-section {
  padding: clamp(80px, 9vw, 130px) 0;
  background: var(--ivory);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(32px, 3.8vw, 46px);
  margin-bottom: 24px;
  line-height: 1.15;
}
.contact-info > p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact-list {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mauve-deep);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-list .label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 4px;
  font-weight: 600;
}
.contact-list .val {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink);
  margin: 0;
  font-weight: 500;
}
.contact-list .val a { color: var(--ink); }
.contact-list .val a:hover { color: var(--mauve-deep); }

.contact-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 42px;
  box-shadow: 0 12px 40px rgba(110, 95, 140, 0.08);
  border: 1px solid rgba(155,141,180,0.12);
}
.contact-form-card h3 {
  font-family: var(--serif);
  font-size: 28px;
  margin: 0 0 8px;
  font-weight: 500;
}
.contact-form-card .form-sub {
  color: var(--ink-soft);
  margin: 0 0 28px;
  font-size: 15px;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  display: block;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--sans);
  font-size: 15px;
  background: var(--ivory);
  border: 1px solid rgba(44,44,44,0.12);
  border-radius: 10px;
  color: var(--ink);
  outline: none;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--mauve-deep);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(155,141,180,0.12);
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form .form-disclaimer {
  font-size: 12px;
  color: var(--ink-soft);
  margin: 4px 0 0;
}
.form-success {
  background: var(--cream);
  border: 1px solid rgba(155,141,180,0.3);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--ink);
}

/* =============================================================
   FAQ — accordéon
   ============================================================= */
.faq-section { padding: clamp(80px, 9vw, 130px) 0; background: var(--ivory); }
.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 auto 50px;
  max-width: 800px;
}
.faq-tab {
  padding: 10px 22px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid rgba(44,44,44,0.15);
  cursor: pointer;
  transition: all .25s var(--ease);
}
.faq-tab:hover { color: var(--mauve-deep); border-color: var(--mauve-deep); }
.faq-tab.active {
  background: var(--mauve-deep);
  border-color: var(--mauve-deep);
  color: #fff;
}
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 8px;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  transition: color .25s var(--ease);
}
.faq-question:hover { color: var(--mauve-deep); }
.faq-toggle {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mauve-deep);
  transition: transform .35s var(--ease), background .25s var(--ease);
}
.faq-toggle svg { width: 14px; height: 14px; }
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--mauve-deep); color: #fff; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease), padding .25s var(--ease);
  padding: 0 8px;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 8px 28px;
}
.faq-answer p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 12px;
}
.faq-answer p:last-child { margin-bottom: 0; }

/* =============================================================
   JOURNAL — listing articles
   ============================================================= */
.journal-listing { padding: clamp(80px, 9vw, 120px) 0; background: var(--ivory); }
.journal-feature {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
  align-items: stretch;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(110, 95, 140, 0.08);
  border: 1px solid rgba(155,141,180,0.12);
}
.journal-feature-media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}
.journal-feature-media img { width: 100%; height: 100%; object-fit: cover; }
.journal-feature-body {
  padding: 50px 50px 50px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.journal-feature .article-meta { color: var(--terracotta); margin-bottom: 14px; }
.journal-feature h2 {
  font-size: clamp(28px, 3.2vw, 38px);
  margin-bottom: 16px;
  line-height: 1.2;
}
.journal-feature p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.journal-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 auto 60px;
  max-width: 800px;
}

/* =============================================================
   ARTICLE — typographie lecture
   ============================================================= */
.article-hero {
  padding: 200px 0 80px;
  background: var(--ivory);
}
.article-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 0 28px;
}
.article-hero h1 {
  font-size: clamp(38px, 4.6vw, 60px);
  line-height: 1.15;
  padding-top: 0.1em;
  margin: 18px 0 24px;
}
.article-hero .article-meta {
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--terracotta);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.article-hero-img {
  max-width: 1100px;
  margin: 50px auto 0;
  padding: 0 28px;
}
.article-hero-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.article-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 28px;
}
.article-content p {
  font-size: 18px;
  line-height: 1.78;
  color: var(--ink);
  margin: 0 0 28px;
}
.article-content p.lede-para {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 36px;
}
.article-content h2 {
  font-size: 32px;
  margin: 50px 0 20px;
  line-height: 1.2;
}
.article-content h3 {
  font-size: 22px;
  margin: 36px 0 14px;
  font-weight: 500;
}
.article-content blockquote {
  border-left: 3px solid var(--mauve-deep);
  padding: 6px 0 6px 26px;
  margin: 36px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--ink);
  line-height: 1.5;
}
.article-content ul, .article-content ol {
  margin: 0 0 28px;
  padding-left: 24px;
}
.article-content li {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 8px;
  color: var(--ink);
}
/* Quill 2 lists: bullet and ordered are both <ol>, distinguished by data-list.
   Render the marker inline (::before) so it follows the text alignment. */
.article-content li[data-list] {
  list-style: none;
}
.article-content ol {
  counter-reset: ql-list-counter;
}
.article-content li[data-list="ordered"] {
  counter-increment: ql-list-counter;
}
.article-content li[data-list="ordered"]::before {
  content: counter(ql-list-counter) ". ";
  margin-right: 0.4em;
}
.article-content li[data-list="bullet"]::before {
  content: "\2022";
  margin-right: 0.6em;
}
.article-content li > .ql-ui {
  display: none;
}
.article-content img {
  width: 100%;
  border-radius: var(--radius-md);
  margin: 36px 0;
}
.article-content .ql-align-center {
  text-align: center;
}
.article-content .ql-align-right {
  text-align: right;
}
.article-content .ql-align-justify {
  text-align: justify;
}
.article-content a,
.article-content a:link,
.article-content a:visited,
.article-content p a,
.article-content li a {
  color: var(--mauve-deep) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-content a:hover,
.article-content p a:hover,
.article-content li a:hover {
  color: var(--ink) !important;
}
.article-end-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
  padding: 56px 40px;
  margin: 64px 0 0;
  background: rgba(155, 141, 180, 0.10);
  border: 1px solid var(--line);
  border-radius: 20px;
}
.article-end-cta h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
}
.article-end-cta .btn-primary,
.article-end-cta .btn-primary:link,
.article-end-cta .btn-primary:visited {
  color: #fff !important;
  text-decoration: none;
}
.article-end-cta .btn-primary:hover {
  color: #fff !important;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 50px 0 0;
}
.article-author .cal-avatar { width: 56px; height: 56px; font-size: 22px; }
.article-author .by-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 3px;
  font-weight: 600;
}
.article-author .by-name {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink);
  margin: 0;
  font-weight: 500;
}

/* =============================================================
   PAGES LÉGALES
   ============================================================= */
.legal-section {
  padding: clamp(60px, 7vw, 100px) 0 clamp(80px, 9vw, 130px);
  background: var(--ivory);
}
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 28px;
  margin: 48px 0 18px;
  line-height: 1.25;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 {
  font-size: 19px;
  font-weight: 500;
  margin: 28px 0 10px;
  font-family: var(--sans);
  letter-spacing: 0.02em;
}
.legal-content p, .legal-content li {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}
.legal-content p { margin: 0 0 16px; }
.legal-content ul { margin: 0 0 24px; padding-left: 22px; }
.legal-content li { margin-bottom: 8px; }
.legal-content strong { color: var(--ink); font-weight: 500; }
.legal-update {
  font-size: 13px;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 32px;
}

/* Plan du site */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 30px;
}
.sitemap-block h3 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--mauve-deep);
}
.sitemap-block ul { list-style: none; padding: 0; margin: 0; }
.sitemap-block li {
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.sitemap-block a {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
}
.sitemap-block a:hover { color: var(--mauve-deep); }

/* =============================================================
   Responsive pages internes
   ============================================================= */
@media (max-width: 1024px) {
  .about-intro-grid,
  .offer-detail-grid,
  .contact-grid,
  .journal-feature { grid-template-columns: 1fr; gap: 50px; }
  .journal-feature-body { padding: 40px; }
  .offer-process-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-sidebar { position: static; }
  .sitemap-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .page-hero { padding: 140px 0 60px; min-height: 50vh; }
  .contact-form .row { grid-template-columns: 1fr; }
  .timeline { padding-left: 24px; }
  .offer-process-grid { grid-template-columns: 1fr; }
  .article-content { padding: 50px 22px; }
  .article-content p { font-size: 17px; }
}

/* --- 16. Respect prefers-reduced-motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-media img { transform: none; }
  .scroll-cue { animation: none; }
  .stamp-circle { animation: none; }
}

/* Hero carousel — crossfade vanilla */
.hero-media[data-hero-carousel] .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1);
  /* Slide inactive : opacity fade en 1.2s, puis reset instantané du transform après le fade
     (l'œil ne voit jamais le retour à scale(1) car l'image est déjà invisible) */
  transition: opacity 1.2s ease-in-out, transform 0s linear 1.2s;
  animation: none;
}
.hero-media[data-hero-carousel] .hero-slide.is-active {
  opacity: 1;
  transform: scale(1.06);
  /* Slide active : zoom progressif sur 9s, sans délai */
  transition: opacity 1.2s ease-in-out, transform 9s ease-out 0s;
}
@media (prefers-reduced-motion: reduce) {
  .hero-media[data-hero-carousel] .hero-slide {
    transition: none;
    transform: none;
  }
  .hero-media[data-hero-carousel] .hero-slide.is-active { transform: none; }
}

/* ============================================================
   Sélecteur de langue (header)
   ============================================================ */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lang-switch-item {
  color: inherit;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 4px;
  opacity: 0.55;
  transition: opacity .2s ease, background-color .2s ease;
}
.lang-switch-item:hover { opacity: 1; }
.lang-switch-item.is-active {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.05);
}
.site-header:not(.scrolled) .lang-switch-item {
  color: #fff;
}
.site-header:not(.scrolled) .lang-switch-item.is-active {
  background-color: rgba(255, 255, 255, 0.18);
}
.lang-switch-mobile {
  justify-content: center;
  margin: 8px 0;
}
@media (max-width: 980px) {
  .header-inner > .lang-switch { display: none; }
}

