/* ═══════════════════════════════════════════════════
   UN CHEMIN VERS SOI — Design System Premium
   ═══════════════════════════════════════════════════ */

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

:root {
  --white:      #ffffff;
  --off-white:  #fdfaf5;
  --cream:      #f7f0e6;
  --parch:      #ede4d6;
  --parch-md:   #ddd0bc;
  --gold:       #b5762a;
  --gold-lt:    #cfa05a;
  --gold-dk:    #7e5018;
  --amber:      #c9873c;
  --text:       #241408;
  --text-lt:    #5c3e28;
  --text-xlt:   #8c6e52;
  /* === Nouvelles teintes pour casser la monotonie === */
  --sage:       #8d9b80;     /* vert sauge doux et terreux */
  --sage-lt:    #b8c0aa;
  --sage-deep:  #5e6b54;
  --terracotta: #b27355;     /* terracotta chaleureux */
  --terracotta-dk: #7e4d35;
  --deep-clay:  #3a2618;     /* fond sombre chaud pour citations */
  --deep-cream: #e8dcc6;     /* parchemin profond */
  --warm-paper: #f0e7d6;     /* fond légèrement plus saturé */
  /* compat (à garder pour ne rien casser) */
  --rose:       #b5762a;
  --rose-lt:    #cfa05a;
  --taupe:      #8c6e52;
  --blush:      var(--parch);
  --blush-md:   var(--parch-md);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--off-white);
  color: var(--text);
  font-size: 17px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHIE ────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
}
p { margin-bottom: 1.35rem; color: var(--text-lt); }
p:last-child { margin-bottom: 0; }
strong { font-weight: 500; color: var(--text); }
ul { padding-left: 0; list-style: none; }
a { color: inherit; }
em { font-style: italic; }

/* ── NAVIGATION ────────────────────────────────────── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(253,250,245,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--parch-md);
  padding: 0 3.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 66px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 400; font-style: italic;
  letter-spacing: 0.06em; color: var(--gold-dk);
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
}
.nav-links {
  display: flex; list-style: none; align-items: center; gap: 0;
}
.nav-links a {
  display: block; padding: 0 0.85rem;
  text-decoration: none; font-size: 0.685rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-xlt); transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-dk); }
.nav-cta {
  margin-left: 0.75rem;
  padding: 0.5rem 1.5rem !important;
  border: 1px solid var(--gold) !important;
  border-radius: 50px !important;
  color: var(--gold-dk) !important;
  transition: all 0.25s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: white !important; }
.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 4px; flex-direction: column; gap: 5px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1px;
  background: var(--text); transition: all 0.3s;
}

/* ── EN-TÊTE DE PAGE — ORNEMENTÉ ──────────────────── */
.page-header {
  padding: 11rem 2rem 7rem;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, var(--off-white) 100%);
  position: relative;
  overflow: hidden;
}

/* Halo doré central */
.page-header::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(207,160,90,0.10) 0%, transparent 60%);
  pointer-events: none;
}

/* Pattern points or subtils en arrière-plan */
.page-header::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 12% 18%, var(--gold-lt) 0.5px, transparent 1px),
    radial-gradient(circle at 88% 82%, var(--gold-lt) 0.5px, transparent 1px),
    radial-gradient(circle at 8% 78%, var(--gold-lt) 0.4px, transparent 1px),
    radial-gradient(circle at 92% 22%, var(--gold-lt) 0.4px, transparent 1px);
  opacity: 0.4;
  pointer-events: none;
}
.page-header > * { position: relative; z-index: 1; }

/* Cadre décoratif avec ornements aux 4 coins */
.page-header-frame {
  position: absolute;
  inset: 3.5rem 3rem;
  pointer-events: none;
  z-index: 0;
}
.page-header-frame::before,
.page-header-frame::after,
.page-header-frame > span:nth-child(1),
.page-header-frame > span:nth-child(2) {
  content: '';
  position: absolute;
  width: 40px; height: 40px;
  border: 1px solid var(--gold-lt);
  opacity: 0.5;
}
.page-header-frame::before {
  top: 0; left: 0;
  border-right: none; border-bottom: none;
}
.page-header-frame::after {
  top: 0; right: 0;
  border-left: none; border-bottom: none;
}
.page-header-frame > span:nth-child(1) {
  bottom: 0; left: 0;
  border-right: none; border-top: none;
}
.page-header-frame > span:nth-child(2) {
  bottom: 0; right: 0;
  border-left: none; border-top: none;
}

/* Ornements latéraux SVG autour du label */
.page-header .label-wrap {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.page-header .label-ornament {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-lt));
  flex-shrink: 0;
}
.page-header .label-ornament:last-child {
  background: linear-gradient(90deg, var(--gold-lt), transparent);
}

.page-header .label {
  font-size: 0.6rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
  display: inline-block;
  padding: 0.55rem 1.6rem;
  border: 1px solid var(--gold-lt);
  border-radius: 50px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  flex-shrink: 0;
}

.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.page-header h1 em {
  color: var(--gold-dk);
  font-style: italic;
}

/* Petit symbole décoratif entre h1 et subtitle */
.page-header-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem auto 1.5rem;
  color: var(--gold);
}
.page-header-symbol .line-h {
  width: 50px; height: 1px;
  background: var(--gold-lt);
}
.page-header-symbol svg {
  width: 18px; height: 18px;
  opacity: 0.8;
}

.page-header .subtitle {
  max-width: 580px; margin: 0 auto;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: var(--text-lt);
  line-height: 1.7;
  font-weight: 300;
}
.page-header-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 3.5rem auto 0;
}

@media (max-width: 760px) {
  .page-header { padding: 9rem 1.5rem 5rem; }
  .page-header-frame { inset: 1.5rem 1rem; }
  .page-header-frame::before,
  .page-header-frame::after,
  .page-header-frame > span { width: 26px; height: 26px; }
  .page-header .label-ornament { width: 30px; }
  .page-header .label-wrap { gap: 0.75rem; }
}

/* ── LAYOUT ────────────────────────────────────────── */
section { padding: 6rem 2rem; }
.container { max-width: 900px; margin: 0 auto; }
.container-wide { max-width: 1120px; margin: 0 auto; }
.container-narrow { max-width: 680px; margin: 0 auto; }
.grid-2-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.grid-3-col { display: grid; grid-template-columns: repeat(3,1fr); gap: 2.5rem; }
.grid-2-equal { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

/* ── ORNEMENTS ─────────────────────────────────────── */
.rule {
  display: flex; align-items: center; gap: 1rem;
  margin: 1.75rem 0 3rem;
}
.rule::before, .rule::after {
  content: ''; flex: 0 0 40px; height: 1px; background: var(--parch-md);
}
.rule::after { display: none; }
.rule-dot { color: var(--gold-lt); font-size: 0.45rem; flex-shrink: 0; }

.ornement-ligne {
  display: flex; align-items: center; gap: 1.5rem;
  margin: 3rem 0;
}
.ornement-ligne::before,
.ornement-ligne::after {
  content: ''; flex: 1; height: 1px; background: var(--parch-md);
}
.ornement-ligne span {
  font-size: 0.5rem; color: var(--gold-lt); letter-spacing: 0.5rem;
  white-space: nowrap;
}

/* ── LABELS ────────────────────────────────────────── */
.eyebrow {
  font-size: 0.62rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.9rem; display: block;
}
.title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 300; letter-spacing: -0.02em;
}
.title em { font-style: italic; color: var(--gold-dk); }

/* Lead paragraph — Cormorant Garamond large italic, for service intros */
.lead {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.8;
  color: var(--text-lt);
  margin-bottom: 1.75rem;
}

/* ── CITATIONS ─────────────────────────────────────── */
.quote {
  padding: 2rem 2.5rem;
  border-left: 2px solid var(--gold-lt);
  background: var(--off-white);
  border-radius: 0 12px 12px 0;
  margin: 2.5rem 0;
}
.quote p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.35rem;
  color: var(--text-lt); line-height: 1.75; margin: 0;
}

.parcours-citation {
  text-align: center; padding: 3.5rem 2rem;
  margin: 3rem 0;
  border-top: 1px solid var(--parch-md);
  border-bottom: 1px solid var(--parch-md);
}
.parcours-citation p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  color: var(--gold-dk); line-height: 1.65; margin: 0; font-weight: 300;
}

.citation-belle {
  text-align: center; padding: 2.5rem 1.75rem;
  background: var(--white); border-radius: 12px;
  border: 1px solid var(--parch-md);
  position: relative;
}
.citation-belle::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem; line-height: 1; color: var(--parch-md);
  position: absolute; top: 0.75rem; left: 50%;
  transform: translateX(-50%);
}
.citation-belle p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.1rem;
  color: var(--text-lt); line-height: 1.75;
  margin: 2.5rem 0 0; letter-spacing: 0.01em;
}

/* ── LISTES ────────────────────────────────────────── */
.list-dot li {
  padding: 0.55rem 0 0.55rem 2rem;
  position: relative;
  border-bottom: 1px solid var(--parch);
  color: var(--text-xlt); font-size: 0.82rem;
  letter-spacing: 0.01em;
}
.list-dot li:last-child { border-bottom: none; }
.list-dot li::before {
  content: '◇'; position: absolute; left: 0; top: 0.8rem;
  color: var(--gold-lt); font-size: 0.45rem;
}
.list-dash li {
  padding: 0.45rem 0 0.45rem 1.75rem;
  position: relative; color: var(--text-lt);
}
.list-dash li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--gold-lt); font-size: 0.75rem; top: 0.55rem;
}

/* ── BOUTONS — RAFFINÉS ─────────────────────────────── */
.btn {
  display: inline-block;
  padding: 1rem 2.75rem;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
  font-weight: 400;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}
.btn:hover::before { width: 300px; height: 300px; }

.btn-outline-rose {
  border: 1px solid var(--gold);
  color: var(--gold-dk);
  background: transparent;
}
.btn-outline-rose:hover {
  background: var(--gold);
  color: white;
  letter-spacing: 0.22em;
}
.btn-outline-sage {
  border: 1px solid var(--gold-dk);
  color: var(--gold-dk);
}
.btn-outline-sage:hover {
  background: var(--gold-dk);
  color: white;
  letter-spacing: 0.22em;
}
.btn-rose {
  background: var(--gold);
  color: white;
  border: 1px solid var(--gold);
  box-shadow: 0 8px 24px rgba(126,80,24,0.18);
}
.btn-rose:hover {
  background: var(--gold-dk);
  border-color: var(--gold-dk);
  box-shadow: 0 12px 32px rgba(126,80,24,0.28);
  transform: translateY(-2px);
  letter-spacing: 0.22em;
}
.btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── CARTES SERVICES — MINI-BANNIÈRES VISUELLES ───── */
.card {
  background: var(--white);
  border: 1px solid var(--parch-md);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
  will-change: transform;
}
.card:hover {
  box-shadow: 0 24px 64px rgba(126,80,24,0.14);
}

.card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream);
}
.card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s;
  filter: saturate(0.9);
}
.card:hover .card-image img {
  transform: scale(1.06);
  filter: saturate(1.05);
}
.card-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    transparent 0%,
    transparent 55%,
    rgba(36,20,8,0.05) 80%,
    rgba(36,20,8,0.15) 100%);
  transition: background 0.5s;
}
.card-image-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(245,239,224,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dk);
  font-weight: 500;
}

.card-body {
  padding: 2rem 2rem 2.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}
.card-body::before {
  content: '';
  position: absolute;
  top: 0; left: 2rem; right: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-lt), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}
.card:hover .card-body::before { opacity: 1; }

.card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.85rem;
  color: var(--text);
}
.card h3 em {
  color: var(--gold-dk);
  font-style: italic;
}
.card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-lt);
  margin-bottom: 1.5rem;
  flex: 1;
}
.card .more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s, color 0.3s;
}
.card:hover .more {
  gap: 0.85rem;
  color: var(--gold-dk);
}

/* ── BANNIÈRES DE PRESTATION ──────────────────────── */
.service-banner {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 5rem;
  overflow: hidden;
  height: clamp(360px, 48vw, 560px);
  isolation: isolate;
}
.service-banner-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.92) saturate(0.92);
  transition: transform 8s ease;
}
.service-banner:hover .service-banner-img { transform: scale(1.04); }

/* Object-position helpers — pour cadrer chaque image */
.service-banner-img.focus-center  { object-position: center center; }
.service-banner-img.focus-left    { object-position: 25% center; }
.service-banner-img.focus-right   { object-position: 75% center; }
.service-banner-img.focus-top     { object-position: center 30%; }
.service-banner-img.focus-bottom  { object-position: center 70%; }

/* Dégradé directionnel — texte à gauche par défaut */
.service-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    100deg,
    rgba(20,10,4,0.78) 0%,
    rgba(20,10,4,0.55) 30%,
    rgba(20,10,4,0.20) 60%,
    rgba(20,10,4,0.05) 100%
  );
  z-index: 1;
}
.service-banner.reverse::before {
  background: linear-gradient(
    -100deg,
    rgba(20,10,4,0.78) 0%,
    rgba(20,10,4,0.55) 30%,
    rgba(20,10,4,0.20) 60%,
    rgba(20,10,4,0.05) 100%
  );
}

/* Contenu de la bannière */
.service-banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 6vw;
}
.service-banner.reverse .service-banner-content {
  align-items: flex-end;
  text-align: right;
}
.service-banner-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1.25rem;
}
.service-banner-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
  max-width: 680px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.service-banner-title em {
  font-style: italic;
  color: var(--gold-lt);
}
.service-banner-rule {
  width: 56px; height: 1px;
  background: var(--gold-lt);
  margin-bottom: 1.5rem;
  opacity: 0.85;
}
.service-banner.reverse .service-banner-rule { margin-left: auto; }
.service-banner-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.65;
  color: rgba(255,255,255,0.94);
  max-width: 520px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.3);
  margin: 0;
}

/* Mobile : dégradé du bas, texte centré-bas */
@media (max-width: 760px) {
  .service-banner {
    height: 380px;
    margin-bottom: 3rem;
  }
  .service-banner::before,
  .service-banner.reverse::before {
    background: linear-gradient(
      180deg,
      rgba(20,10,4,0.15) 0%,
      rgba(20,10,4,0.65) 70%,
      rgba(20,10,4,0.85) 100%
    );
  }
  .service-banner-content,
  .service-banner.reverse .service-banner-content {
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
    padding: 0 1.5rem 2.5rem;
  }
  .service-banner.reverse .service-banner-rule { margin-left: 0; }
  .service-banner-eyebrow { letter-spacing: 0.3em; }
}

/* ══════════════════════════════════════════════════
   BLOG — Liste accordéon élégante
   ══════════════════════════════════════════════════ */
.blog-featured-label {
  text-align: center;
  margin-bottom: 2.5rem;
}
.blog-featured-label .eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
}

.blog-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 4rem auto 1rem;
  max-width: 900px;
}
.blog-filter {
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--parch-md);
  border-radius: 50px;
  background: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-xlt);
  cursor: pointer;
  transition: all 0.3s;
}
.blog-filter:hover {
  border-color: var(--gold-lt);
  color: var(--gold-dk);
}
.blog-filter.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.blog-section-title {
  text-align: center;
  margin: 5rem auto 1rem;
  max-width: 800px;
}
.blog-section-title .eyebrow {
  display: block;
  margin-bottom: 0.5rem;
}
.blog-section-title h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.02em;
}
.blog-section-title h2 em { color: var(--gold-dk); font-style: italic; }

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 880px;
  margin: 3rem auto 0;
}
.blog-item {
  background: var(--white);
  border: 1px solid var(--parch-md);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.blog-item:hover {
  border-color: var(--gold-lt);
  box-shadow: 0 10px 32px rgba(126,80,24,0.06);
}
.blog-item[open] {
  border-color: var(--gold-lt);
  box-shadow: 0 16px 48px rgba(126,80,24,0.10);
}
.blog-item.hidden { display: none; }

.blog-item summary {
  list-style: none;
  cursor: pointer;
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  transition: background 0.3s;
}
.blog-item summary::-webkit-details-marker { display: none; }
.blog-item summary:hover { background: var(--off-white); }

.blog-item-cat {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.blog-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--text);
  margin: 0;
  padding-right: 3rem;
  transition: color 0.2s;
}
.blog-item summary:hover .blog-item-title { color: var(--gold-dk); }
.blog-item[open] .blog-item-title { color: var(--gold-dk); }

.blog-item-excerpt {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--text-lt);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0;
}

.blog-item-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s, color 0.3s;
}
.blog-item summary:hover .blog-item-link {
  gap: 0.85rem;
  color: var(--gold-dk);
}
.blog-item[open] .blog-item-link { display: none; }

/* Bouton + qui pivote en × */
.blog-item summary::after {
  content: '+';
  position: absolute;
  top: 2rem; right: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 0.8;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-item[open] summary::after { transform: rotate(45deg); color: var(--gold-dk); }

/* Contenu déplié */
.blog-item-content {
  padding: 1.5rem 2.25rem 2.5rem;
  border-top: 1px solid var(--parch);
  margin-top: 0.5rem;
}

@media (max-width: 600px) {
  .blog-item summary { padding: 1.5rem 1.25rem; }
  .blog-item summary::after { top: 1.5rem; right: 1.25rem; }
  .blog-item-content { padding: 1.5rem 1.25rem 2rem; }
  .blog-item-title { padding-right: 2.5rem; }
}

/* ══════════════════════════════════════════════════
   ARTICLES LONGS — Lecture éditoriale soignée
   ══════════════════════════════════════════════════ */
.article-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold-dk);
  margin: 3rem 0 1.25rem;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.article-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  margin: 2rem 0 0.75rem;
}
.article-body .lead-article {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  line-height: 1.7;
  color: var(--gold-dk);
  margin: 0 0 2rem;
  padding: 0;
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.005em;
}
.article-body .article-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 3rem 0;
  color: var(--gold-lt);
}
.article-body .article-divider span {
  width: 40px; height: 1px;
  background: var(--gold-lt);
}
.article-body .article-divider svg {
  width: 14px; height: 14px;
  opacity: 0.8;
}
.article-body .pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  line-height: 1.55;
  color: var(--gold-dk);
  margin: 2.5rem 0;
  padding: 2rem 2.5rem;
  border-left: 2px solid var(--gold-lt);
  background: var(--off-white);
  border-radius: 0 10px 10px 0;
  font-weight: 300;
}
.article-body .pull-quote p { margin: 0; color: inherit; font: inherit; }
.article-body ul {
  margin: 1.25rem 0 1.75rem;
  padding: 0;
  list-style: none;
}
.article-body ul li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.75rem;
  color: var(--text-lt);
  line-height: 1.65;
}
.article-body ul li::before {
  content: '◇';
  position: absolute;
  left: 0; top: 0.55rem;
  color: var(--gold-lt);
  font-size: 0.55rem;
}

/* ══════════════════════════════════════════════════
   CHIFFRES CLÉS — Bande de crédibilité
   ══════════════════════════════════════════════════ */
.stats-strip {
  background: var(--deep-clay);
  color: #f5e9d3;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(207,160,90,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(178,115,85,0.08) 0%, transparent 55%);
}
.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.stat-item {
  text-align: center;
  padding: 0.5rem 1.5rem;
  border-right: 1px solid rgba(207,160,90,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--gold-lt);
  line-height: 1;
  display: block;
  margin-bottom: 0.6rem;
}
.stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,233,211,0.75);
  line-height: 1.6;
}
@media (max-width: 760px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 0; }
  .stat-item { border-right: none; padding: 0.5rem 1rem; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(207,160,90,0.2); }
  /* Sur mobile : on cache "8 années de pratique" */
  .stat-item:first-child { display: none; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem 0; }
  .stat-item:nth-child(odd) { border-right: none; }
  .stat-item:not(:last-child) { border-right: 1px solid rgba(207,160,90,0.2); }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; gap: 1.5rem 0; }
  .stat-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(207,160,90,0.2);
    padding-bottom: 1.5rem;
  }
}

/* ══════════════════════════════════════════════════
   FAQ ACCORDÉON
   ══════════════════════════════════════════════════ */
.faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--parch-md);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item[open] {
  border-color: var(--gold-lt);
  box-shadow: 0 8px 32px rgba(126,80,24,0.08);
}
.faq-item summary {
  padding: 1.5rem 1.75rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--text);
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-dk); }
.faq-item summary::after {
  content: '+';
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 1.75rem 1.5rem;
  color: var(--text-lt);
  line-height: 1.75;
  font-size: 0.95rem;
}
.faq-answer p { margin-bottom: 0.8rem; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul { margin: 0.5rem 0; padding-left: 1.25rem; list-style: disc; }
.faq-answer ul li { padding: 0.25rem 0; }

/* ══════════════════════════════════════════════════
   LEAD MAGNET — Newsletter / Guide PDF
   ══════════════════════════════════════════════════ */
.lead-magnet {
  padding: 7rem 2rem;
  background: var(--warm-paper);
  background-image:
    radial-gradient(ellipse at 30% 30%, rgba(207,160,90,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 70%, rgba(178,115,85,0.08) 0%, transparent 55%);
  position: relative;
  overflow: hidden;
}
.lead-magnet-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.lead-magnet-symbol {
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.lead-magnet-symbol svg { width: 40px; height: 40px; }
.lead-magnet-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.lead-magnet-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.lead-magnet-title em {
  color: var(--gold-dk);
  font-style: italic;
}
.lead-magnet-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-lt);
  margin-bottom: 2.5rem;
  line-height: 1.65;
}
.lead-magnet-form {
  display: flex;
  gap: 0.75rem;
  max-width: 520px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.lead-magnet-form input[type="email"] {
  flex: 1;
  min-width: 240px;
  padding: 1rem 1.5rem;
  border: 1px solid var(--parch-md);
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--text);
  transition: border-color 0.3s, background 0.3s;
}
.lead-magnet-form input[type="email"]:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.lead-magnet-form input[type="email"]::placeholder {
  color: var(--text-xlt);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}
.lead-magnet-form button {
  padding: 1rem 2rem;
  background: var(--gold);
  color: white;
  border: 1px solid var(--gold);
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 400;
}
.lead-magnet-form button:hover {
  background: var(--gold-dk);
  border-color: var(--gold-dk);
  letter-spacing: 0.22em;
  transform: translateY(-2px);
}
.lead-magnet-trust {
  margin-top: 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--text-xlt);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}
.lead-magnet-msg {
  display: none;
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: var(--gold-dk);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

/* ══════════════════════════════════════════════════
   STICKY MOBILE CTA
   ══════════════════════════════════════════════════ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 1rem; left: 1rem; right: 1rem;
  z-index: 95;
  padding: 1rem 1.5rem;
  background: var(--gold-dk);
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  box-shadow: 0 12px 32px rgba(126,80,24,0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity 0.4s, transform 0.4s;
}
.mobile-cta.hidden {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.mobile-cta::before {
  content: '→';
  display: inline-block;
  margin-right: 0.5rem;
  font-size: 0.9rem;
  vertical-align: middle;
  color: var(--gold-lt);
}
@media (max-width: 760px) {
  .mobile-cta { display: block; }
  body { padding-bottom: 5rem; }
}
@media (min-width: 761px) {
  .mobile-cta { display: none !important; }
}

/* ── FONDS DE SECTION ──────────────────────────────── */
.bg-white  { background: var(--white); }
.bg-cream  { background: var(--off-white); }
.bg-blush  { background: var(--cream); }
.bg-warm   { background: var(--warm-paper); }
.bg-deep   { background: var(--deep-cream); }

/* Section sauge — pour les "respirations" naturelles */
.bg-sage {
  background: linear-gradient(180deg, #a8b29a 0%, var(--sage) 100%);
  color: #fff;
}
.bg-sage .eyebrow { color: #e8e0c8; }
.bg-sage .title, .bg-sage h2, .bg-sage h3 { color: #fff; }
.bg-sage .title em { color: #f0e2c5; font-style: italic; }
.bg-sage > .container > p,
.bg-sage > .container-wide > p,
.bg-sage > .container > div > p:not(.temoignage-texte) { color: rgba(255,255,255,0.92); }
.bg-sage .pour-qui-card h3 { color: var(--text); }
.bg-sage .pour-qui-card p { color: var(--text-lt); }
.bg-sage .citation-belle { background: var(--white); border-color: rgba(255,255,255,0.4); }
.bg-sage .citation-belle p { color: var(--text-lt) !important; }
.bg-sage .citation-belle::before { color: var(--gold-lt); }
.bg-sage .quote { background: rgba(255,255,255,0.08); border-left-color: rgba(255,255,255,0.5); }
.bg-sage .quote p { color: rgba(255,255,255,0.95); }
.bg-sage .btn-outline-rose { border-color: #fff; color: #fff; }
.bg-sage .btn-outline-rose:hover { background: #fff; color: var(--sage-deep); }

/* Section sombre/chaude — pour les manifestos */
.bg-clay {
  background: var(--deep-clay);
  color: #f5e9d3;
  position: relative;
  overflow: hidden;
}
.bg-clay::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(207,160,90,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.bg-clay > * { position: relative; z-index: 1; }
.bg-clay .eyebrow { color: var(--gold-lt); }
.bg-clay .title, .bg-clay h2 { color: #f5e9d3; }
.bg-clay .title em { color: var(--gold-lt); }
.bg-clay p { color: rgba(245,233,211,0.9); }

/* Texture parchemin subtile (pattern via SVG en CSS) */
.bg-parchment {
  background-color: var(--warm-paper);
  background-image:
    radial-gradient(at 20% 30%, rgba(181,118,42,0.04) 0px, transparent 50%),
    radial-gradient(at 80% 70%, rgba(126,80,24,0.05) 0px, transparent 50%),
    radial-gradient(at 50% 50%, rgba(207,160,90,0.03) 0px, transparent 60%);
}

/* ── ORNEMENTS DÉCORATIFS ─────────────────────────── */
.ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 0;
  padding: 5rem 2rem;
  color: var(--gold-lt);
  background: var(--white);
}
.ornament-divider .line {
  flex: 0 0 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-lt), transparent);
}
.ornament-divider svg {
  width: 36px; height: 36px;
  opacity: 0.85;
  flex-shrink: 0;
}
.ornament-divider.dark { background: var(--deep-clay); }
.ornament-divider.dark .line {
  background: linear-gradient(90deg, transparent, rgba(207,160,90,0.6), transparent);
}
.ornament-divider.cream { background: var(--cream); }
.ornament-divider.warm { background: var(--warm-paper); }

/* Section citation immersive plein écran */
.manifesto {
  padding: 8rem 2rem;
  text-align: center;
  background: var(--deep-clay);
  color: #f5e9d3;
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(207,160,90,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 60%, rgba(178,115,85,0.10) 0%, transparent 55%);
  pointer-events: none;
}
.manifesto-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}
.manifesto-symbol {
  display: inline-block;
  margin-bottom: 2.5rem;
  color: var(--gold-lt);
  opacity: 0.9;
}
.manifesto-symbol svg { width: 48px; height: 48px; }
.manifesto-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  line-height: 1.5;
  color: #f5e9d3;
  margin-bottom: 2rem;
  letter-spacing: -0.005em;
}
.manifesto-text em {
  color: var(--gold-lt);
  font-style: italic;
}
.manifesto-attribution {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-lt);
}

/* ── SECTION POUR QUI ─────────────────────────────── */
.pour-qui-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.pour-qui-card {
  background: var(--white);
  border: 1px solid var(--parch-md);
  border-radius: 14px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  transition: transform 0.35s, box-shadow 0.35s;
}
.pour-qui-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(126,80,24,0.10);
}
.pour-qui-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border: 1px solid var(--gold-lt);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  color: var(--gold);
}
.pour-qui-icon svg { width: 24px; height: 24px; }
.pour-qui-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1rem;
}
.pour-qui-card p {
  font-size: 0.92rem;
  color: var(--text-lt);
  line-height: 1.7;
}
@media (max-width: 760px) {
  .pour-qui-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* ══════════════════════════════════════════════════
   HERO V2 — LAYOUT ÉDITORIAL ASYMÉTRIQUE
   ══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding: 90px 0 0;
  background: #f5efe0;
  background-image:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(207,160,90,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgba(178,115,85,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(245,233,211,0.4) 0%, transparent 70%);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}

/* IMAGE DE FOND ACTIVÉE — class="hero has-bg" + style="--hero-bg: url(...)" */
.hero.has-bg {
  background: #2a1810;
  background-image: none;
}
.hero.has-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--hero-bg) center/cover no-repeat;
  z-index: 0;
  filter: saturate(0.95);
}
/* Voile crème dégradé — texte lisible à gauche, photo visible à droite */
.hero.has-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg,
      rgba(245,239,224,0.96) 0%,
      rgba(245,239,224,0.88) 25%,
      rgba(245,239,224,0.55) 55%,
      rgba(245,239,224,0.20) 85%,
      rgba(245,239,224,0.10) 100%),
    radial-gradient(ellipse 60% 80% at 25% 50%, rgba(245,239,224,0.4) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}
.hero.has-bg .hero-grain { opacity: 0.5; }
.hero.has-bg .hero-circle {
  background: rgba(245,239,224,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero.has-bg .hero-tag {
  background: rgba(245,239,224,0.95);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Mobile : photo en haut, texte propre en bas avec voile crème dégradé */
@media (max-width: 980px) {
  .hero.has-bg::before {
    background-position: 60% center; /* zoom sur la zone lumineuse */
  }
  .hero.has-bg::after {
    background: linear-gradient(180deg,
      rgba(245,239,224,0.18) 0%,
      rgba(245,239,224,0.55) 28%,
      rgba(245,239,224,0.92) 50%,
      rgba(245,239,224,0.98) 100%);
  }
}
@media (max-width: 600px) {
  .hero.has-bg::after {
    background: linear-gradient(180deg,
      rgba(245,239,224,0.10) 0%,
      rgba(245,239,224,0.45) 25%,
      rgba(245,239,224,0.92) 45%,
      rgba(245,239,224,0.99) 100%);
  }
}

/* Texture grain subtile */
.hero-grain {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(126,80,24,0.04) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, rgba(126,80,24,0.03) 1px, transparent 1px);
  background-size: 40px 40px, 30px 30px;
  pointer-events: none;
  z-index: 1;
}

/* Bloc texte positionné à gauche, photo respire à droite */
.hero-text-block {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 5vw;
  margin: 0 auto 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 90px);
}

.hero-meta-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
}
.hero-meta-top .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: 0;
  color: var(--gold-dk);
  text-transform: none;
}
.hero-meta-top .line-h {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--gold-lt), transparent);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(3.2rem, 9vw, 9rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--text);
  margin: 0;
}
.hero-title .gold {
  color: var(--gold-dk);
  font-style: italic;
  display: block;
}
.hero-title .block { display: block; }

.hero-divider-vert {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 2.5rem 0;
  opacity: 0.7;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  color: var(--text-lt);
  line-height: 1.65;
  max-width: 480px;
  margin: 1.75rem 0 2.5rem;
  font-weight: 300;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-services-inline {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-xlt);
}
.hero-services-inline a {
  color: var(--text-xlt);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  padding-bottom: 1px;
}
.hero-services-inline a:hover {
  color: var(--gold-dk);
  border-bottom-color: var(--gold-lt);
}

.hero-credentials {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-lt);
  font-weight: 400;
}
.hero-credentials .ornament-mini {
  width: 48px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* Tags flottants élégants sur la photo */
.hero-tag-float {
  position: absolute;
  z-index: 2;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-dk);
  background: rgba(245,239,224,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.55rem 1.4rem;
  border: 1px solid rgba(207,160,90,0.5);
  border-radius: 50px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(126,80,24,0.12);
}
.hero-tag-tr {
  top: 18%;
  right: 8%;
  transform: rotate(-2deg);
}
.hero-tag-br {
  bottom: 20%;
  right: 6%;
  transform: rotate(2deg);
}

/* === COLONNE DROITE — VISUEL === */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-circle {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 460px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--warm-paper) 100%);
  box-shadow:
    0 30px 80px rgba(126,80,24,0.18),
    inset 0 0 0 1px rgba(207,160,90,0.4);
  transform: translateY(-2rem);
}
.hero-circle::before {
  content: '';
  position: absolute; inset: -3px;
  background: conic-gradient(from 180deg,
    var(--gold-lt) 0deg,
    var(--gold) 90deg,
    var(--gold-dk) 180deg,
    var(--gold) 270deg,
    var(--gold-lt) 360deg);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.5;
  filter: blur(2px);
}
.hero-circle img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.94);
}
/* Si pas d'image, utilise le logo */
.hero-circle.use-logo img {
  object-fit: contain;
  padding: 12%;
  background: var(--cream);
}

/* Décorations botaniques autour du cercle */
.hero-decor {
  position: absolute;
  pointer-events: none;
  color: var(--gold-lt);
  opacity: 0.6;
}
.hero-decor svg { width: 100%; height: 100%; }

.hero-decor-1 { top: -5%; right: -8%; width: 100px; height: 100px; }
.hero-decor-2 { bottom: -3%; left: -5%; width: 80px; height: 80px; transform: rotate(180deg); }
.hero-decor-3 { top: 40%; right: -12%; width: 60px; height: 60px; }

.hero-tag {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-dk);
  background: rgba(245,239,224,0.92);
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--gold-lt);
  border-radius: 50px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.hero-tag-top { top: 5%; left: -8%; transform: rotate(-3deg); }
.hero-tag-bottom { bottom: 8%; right: -6%; transform: rotate(2deg); }

/* === SCROLL INDICATOR === */
.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  font-family: 'Jost', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-dk);
  opacity: 0.7;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.75rem;
  animation: scrollHint 2.5s ease-in-out infinite;
  z-index: 3;
}
.hero-scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--gold-dk), transparent);
}
@keyframes scrollHint {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* === RESPONSIVE === */
@media (max-width: 980px) {
  .hero { padding: 90px 0 4rem; }
  .hero-text-block {
    padding: 2rem 1.5rem 4rem;
    min-height: calc(100vh - 90px);
    max-width: 100%;
  }
  .hero-tag-float { font-size: 0.82rem; padding: 0.4rem 1rem; }
  .hero-tag-tr { top: 8%; right: 4%; }
  .hero-tag-br { bottom: 12%; right: 4%; display: none; }
  .hero-scroll { display: none; }
}

/* Section TYPO MASSIVE — moment d'impact */
.massive-type {
  padding: 10rem 2rem;
  text-align: center;
  background: var(--off-white);
  background-image:
    radial-gradient(ellipse at center, rgba(207,160,90,0.06) 0%, transparent 60%);
  position: relative;
}
.massive-type-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: block;
}
.massive-type-word {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(4rem, 16vw, 14rem);
  line-height: 0.9;
  color: var(--gold-dk);
  letter-spacing: -0.04em;
  margin: 0;
}
.massive-type-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--text-xlt);
  margin-top: 2rem;
  line-height: 1.6;
}

/* === ANIMATIONS AU SCROLL === */
/* Le reveal ne s'active QUE si JS a démarré (classe .js sur <html>) */
.reveal { opacity: 1; transform: none; }
html.js .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
html.js .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.25s; }
.reveal-delay-3 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .hero-scroll { animation: none; }
}

/* ══════════════════════════════════════════════════
   CURSEUR CUSTOM (desktop uniquement)
   ══════════════════════════════════════════════════ */
@media (hover: hover) and (pointer: fine) {
  .cursor-dot,
  .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s, width 0.3s, height 0.3s, background 0.3s, border-color 0.3s;
  }
  .cursor-loaded .cursor-dot,
  .cursor-loaded .cursor-ring { opacity: 1; }

  .cursor-dot {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%) translate(var(--x, 0), var(--y, 0));
    box-shadow: 0 0 12px rgba(207,160,90,0.4);
  }

  .cursor-ring {
    width: 36px; height: 36px;
    border: 1px solid rgba(207,160,90,0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%) translate(var(--rx, 0), var(--ry, 0));
    will-change: transform;
  }

  /* États au survol */
  .cursor-ring.hover-link {
    width: 56px; height: 56px;
    background: rgba(207,160,90,0.08);
    border-color: var(--gold);
  }
  .cursor-ring.hover-text {
    width: 4px; height: 32px;
    border-radius: 2px;
    background: var(--gold);
    border: none;
  }
  .cursor-ring.hover-card {
    width: 70px; height: 70px;
    background: rgba(245,239,224,0.15);
    border-color: var(--gold);
    border-width: 1px;
    mix-blend-mode: difference;
  }

  /* Cache curseur natif sur éléments interactifs */
  body.cursor-loaded,
  body.cursor-loaded * { cursor: none !important; }
  body.cursor-loaded input,
  body.cursor-loaded textarea,
  body.cursor-loaded select { cursor: text !important; }
}

/* Désactive sur écran tactile et reduced-motion */
@media (hover: none), (prefers-reduced-motion: reduce) {
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* Effet tilt 3D — déjà supporté via transform-style:preserve-3d */
.hero-location {
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--text-lt); line-height: 1.65;
  max-width: 520px; margin: 0 auto;
}
.hero-rule {
  display: flex; align-items: center; gap: 1.25rem;
  width: 100%; max-width: 380px; margin: 2.5rem auto;
}
.hero-rule span:first-child,
.hero-rule span:last-child { flex: 1; height: 1px; background: var(--parch-md); }
.hero-diamond { color: var(--gold-lt); font-size: 0.5rem; flex-shrink: 0; }
.hero-services {
  display: flex; flex-wrap: wrap; gap: 0.35rem 0;
  align-items: center; justify-content: center;
}
.hero-services a {
  font-size: 0.67rem; letter-spacing: 0.11em; text-transform: uppercase;
  color: var(--text-xlt); text-decoration: none; transition: color 0.2s;
}
.hero-services a:hover { color: var(--gold-dk); }
.hero-sep { color: var(--parch-md); margin: 0 0.75rem; }

/* ── BANDE CTA ─────────────────────────────────────── */
.cta-band {
  padding: 7rem 2rem; text-align: center;
  background: var(--cream);
  border-top: 1px solid var(--parch-md);
  border-bottom: 1px solid var(--parch-md);
}
.cta-band h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 300; margin-bottom: 1.25rem; }
.cta-band p { max-width: 440px; margin: 0 auto 3rem; }

/* ── TARIFS ────────────────────────────────────────── */
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.tarif-card {
  background: var(--white);
  border: 1px solid var(--parch-md);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
}
.tarif-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(126,80,24,0.09);
}
.tarif-card-nom {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 400;
  color: var(--text); margin-bottom: 0.35rem;
  line-height: 1.3;
}
.tarif-card-duree {
  font-size: 0.65rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-xlt);
  margin-bottom: 2rem;
}
.tarif-card-prix {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 300;
  color: var(--gold-dk); line-height: 1;
  margin-top: auto;
}
.tarif-card-prix sup {
  font-size: 1.2rem; vertical-align: super; margin-right: 2px;
}
.tarif-card-reserver {
  display: block; margin-top: 1.75rem;
  font-size: 0.65rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
  text-decoration: none; transition: color 0.2s;
}
.tarif-card-reserver:hover { color: var(--gold-dk); }
.tarif-card-trait {
  width: 32px; height: 1px;
  background: var(--parch-md);
  margin: 1.5rem 0;
}

/* Pack cards */
.pack-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.pack-card {
  background: var(--white);
  border: 1px solid var(--parch-md);
  border-radius: 14px;
  padding: 2.75rem 2.5rem;
  display: flex; justify-content: space-between; align-items: flex-end;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
}
.pack-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(126,80,24,0.09);
}
.pack-card-left { flex: 1; }
.pack-card-nom {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 400; color: var(--text);
  margin-bottom: 0.3rem; line-height: 1.3;
}
.pack-card-detail {
  font-size: 0.65rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-xlt);
}
.pack-card-right { text-align: right; flex-shrink: 0; margin-left: 2rem; }
.pack-card-prix {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 300;
  color: var(--gold-dk); line-height: 1; display: block;
}
.pack-card-economie {
  font-size: 0.63rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-xlt);
  display: block; margin-top: 0.3rem;
}

/* ── TÉMOIGNAGES ───────────────────────────────────── */
.temoignage {
  background: var(--white);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  border: 1px solid var(--parch-md);
  display: flex; flex-direction: column; gap: 1.5rem;
  transition: box-shadow 0.3s;
}
.temoignage:hover { box-shadow: 0 10px 36px rgba(126,80,24,0.07); }
.temoignage-texte {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.1rem;
  color: var(--text-lt); line-height: 1.75; margin: 0;
}
.temoignage-auteur {
  font-size: 0.67rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
}

/* ── BLOG ──────────────────────────────────────────── */
.article {
  border-bottom: 1px solid var(--parch-md);
  padding: 4rem 0;
}
.article:first-child { padding-top: 0; }
.article:last-child { border-bottom: none; }
.article h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300; margin-bottom: 2rem; line-height: 1.25;
}
.article-body { max-width: 740px; }
.article-body h3 {
  font-size: 1.2rem; color: var(--gold-dk);
  margin: 2.5rem 0 1rem;
}
.article-body p { color: var(--text-lt); }

/* ── FORMULAIRE ────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 1rem; }
.form input, .form textarea, .form select {
  padding: 1rem 1.25rem;
  border: 1px solid var(--parch-md); background: var(--white);
  font-family: 'Jost', sans-serif; font-size: 0.9rem; font-weight: 300;
  color: var(--text); border-radius: 10px; outline: none;
  transition: border-color 0.25s; width: 100%;
}
.form input::placeholder, .form textarea::placeholder { color: #c0a480; }
.form input:focus, .form textarea:focus, .form select:focus {
  border-color: var(--gold-lt);
}
.form textarea { height: 140px; resize: vertical; }
.form button {
  padding: 1rem 2.75rem; background: var(--gold);
  color: white; font-family: 'Jost', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; cursor: pointer;
  border-radius: 50px; transition: background 0.25s;
  align-self: flex-start; border: none; font-weight: 400;
}
.form button:hover { background: var(--gold-dk); }

/* ── INFOS CONTACT ─────────────────────────────────── */
.cinfo { display: flex; gap: 1.25rem; align-items: flex-start; margin-bottom: 2rem; }
.cinfo svg { flex-shrink: 0; margin-top: 4px; }
.cinfo-label {
  font-size: 0.64rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 0.25rem;
}
.cinfo a { color: var(--gold-dk); text-decoration: none; }
.cinfo a:hover { text-decoration: underline; }

/* ── PIED DE PAGE ──────────────────────────────────── */
footer {
  background: var(--deep-clay);
  text-align: center;
  padding: 0 2rem 3rem;
  font-size: 0.78rem;
  color: rgba(245,233,211,0.65);
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(207,160,90,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(178,115,85,0.08) 0%, transparent 55%);
  pointer-events: none;
}
footer > * { position: relative; z-index: 1; }

/* Bandeau ornemental haut du footer */
footer::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(207,160,90,0.5) 30%,
    var(--gold-lt) 50%,
    rgba(207,160,90,0.5) 70%,
    transparent 100%);
}

.footer-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 4rem 0 2.5rem;
  color: var(--gold-lt);
}
.footer-ornament .line {
  flex: 0 0 70px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(207,160,90,0.6), transparent);
}
.footer-ornament svg {
  width: 32px; height: 32px;
  opacity: 0.85;
  flex-shrink: 0;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 2.1rem;
  font-weight: 300;
  color: #f5e9d3;
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.footer-sub {
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 0;
  display: block;
}

/* Trait or fin sous le logo */
.footer-divider {
  width: 40px; height: 1px;
  background: var(--gold-lt);
  margin: 2.5rem auto;
  opacity: 0.7;
}

footer nav {
  position: static;
  background: none;
  border: none;
  height: auto;
  padding: 0;
  display: block;
  margin-bottom: 3rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
footer nav a {
  display: inline-block;
  margin: 0 1rem 0.75rem;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,233,211,0.7);
  text-decoration: none;
  transition: color 0.25s;
  position: relative;
}
footer nav a:hover { color: var(--gold-lt); }

.footer-contact {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(245,233,211,0.85);
  margin-bottom: 2rem;
}
footer .footer-contact a {
  color: var(--gold-lt);
  text-decoration: none;
  border-bottom: 1px solid rgba(207,160,90,0.3);
  transition: color 0.2s, border-color 0.2s;
  padding-bottom: 1px;
}
footer .footer-contact a:hover {
  color: #f5e9d3;
  border-bottom-color: var(--gold-lt);
}

/* Petit copyright en bas */
.footer-copyright {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(207,160,90,0.15);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,233,211,0.4);
}

/* ── PLACEHOLDER TARIFS ─────────────────────────────── */
.placeholder-box {
  text-align: center; padding: 5rem 2rem;
  background: var(--white); border: 1px dashed var(--parch-md);
  border-radius: 14px;
}
.placeholder-box .ph-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.4rem;
  color: var(--gold-lt); margin-bottom: 0.75rem;
}
.placeholder-box p { color: var(--text-xlt); font-size: 0.9rem; }

/* ── MOBILE ─────────────────────────────────────────── */
@media (max-width: 960px) {
  nav { padding: 0 1.5rem; }
  .nav-links {
    display: none; position: fixed; top: 66px; left: 0; right: 0;
    background: var(--off-white); flex-direction: column; align-items: flex-start;
    padding: 1.75rem 2rem 2.5rem; gap: 0;
    border-bottom: 1px solid var(--parch-md);
    box-shadow: 0 12px 40px rgba(36,20,8,0.06);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.9rem 0; border-bottom: 1px solid var(--parch); width: 100%; }
  .nav-cta { margin: 1.5rem 0 0 !important; width: fit-content; }
  .nav-toggle { display: flex; }
  .grid-2-col, .grid-3-col, .grid-2-equal { grid-template-columns: 1fr; gap: 2rem; }
  .tarifs-grid { grid-template-columns: 1fr 1fr; }
  .pack-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .tarifs-grid { grid-template-columns: 1fr; }
  .hero-logo-img { max-width: 320px; }
}
