/* ==========================================================================
   Georges Favre — Guide spirituel
   Système de design « Crème & Or » — partagé par toutes les pages
   ========================================================================== */

:root {
  /* Couleurs — élégance « bleu nuit & or » : profondeur, confiance, lumière */
  --fond: #FAF8F2;            /* fond de page, ivoire doux */
  --blanc: #FFFFFF;
  --fond-alt: #F3EFE5;        /* sections alternées, sable très clair */
  --nuit: #0E1B33;            /* bleu nuit : hero, CTA, pied de page */
  --nuit-2: #182A4E;          /* panneaux sur fond sombre */
  --encre: #13223F;           /* titres, bleu nuit profond */
  --texte: #3D4A66;           /* texte courant */
  --slate: #6E7C99;           /* texte atténué (aussi utilisé en ligne dans les pages) */
  --or: #B58A3C;              /* or principal, lisible sur clair */
  --or-clair: #E0BE7C;        /* or clair (sur fond sombre) */
  --or-fonce: #92702B;        /* or appuyé */
  --or-pale: rgba(181, 138, 60, 0.08);
  --ligne: rgba(181, 138, 60, 0.38);
  --ligne-faible: rgba(181, 138, 60, 0.18);
  --ivoire: #F3F1EA;          /* texte sur fond sombre */
  --wa: #128C7E;
  --wa-dark: #0E7265;
  --danger: #B4433A;

  /* Anciens noms conservés pour compatibilité */
  --night-deep: var(--nuit);
  --night: var(--encre);
  --night-soft: var(--nuit-2);
  --cream: var(--fond);
  --white: var(--blanc);
  --gold: var(--or);
  --gold-soft: var(--or-clair);
  --gold-faint: var(--or-pale);
  --star: var(--or-clair);
  --ink: var(--texte);
  --border: var(--ligne-faible);

  /* Effets */
  --shadow-sm: 0 1px 3px rgba(14, 27, 51, 0.07);
  --shadow-md: 0 10px 34px rgba(14, 27, 51, 0.12);
  --shadow-lg: 0 24px 64px rgba(14, 27, 51, 0.18);
  --radius: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Espacements (rythme de 8px) */
  --s2: 8px; --s3: 16px; --s4: 24px; --s5: 32px; --s6: 48px; --s7: 64px; --s8: 96px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--texte);
  background: var(--fond);
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--or); color: var(--blanc); }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.14;
  color: var(--encre);
  font-weight: 600;
  letter-spacing: 0.2px;
}

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

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ---------- Accessibilité ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--or); color: var(--blanc);
  padding: 12px 20px; z-index: 300; border-radius: 0 0 6px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--or); outline-offset: 3px; border-radius: 2px; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; min-height: 50px;
  border-radius: 4px; border: none;
  font-family: 'Inter', sans-serif; font-size: 13.5px; font-weight: 600;
  letter-spacing: 1.6px; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
              background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.btn:active { transform: scale(0.98); }
.btn svg { flex-shrink: 0; }

.btn-gold {
  background: linear-gradient(160deg, #D3AC6B 0%, #B0813C 45%, #8F6527 100%);
  color: var(--blanc);
  box-shadow: 0 10px 26px rgba(169, 127, 53, 0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(169, 127, 53, 0.45); }

.btn-ghost-light {
  background: transparent; color: var(--ivoire);
  border: 1px solid rgba(246, 240, 226, 0.4);
}
.btn-ghost-light:hover { border-color: var(--or-clair); color: var(--or-clair); }

.btn-ghost-dark {
  background: transparent; color: var(--or-fonce);
  border: 1px solid var(--ligne);
}
.btn-ghost-dark:hover { border-color: var(--or); background: var(--or-pale); }

.btn-wa { background: var(--wa); color: var(--blanc); box-shadow: 0 10px 24px rgba(18, 140, 126, 0.3); }
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-2px); }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(14, 27, 51, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(224, 190, 124, 0.18);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 16px; }

.logo {
  display: flex; align-items: center; gap: 13px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; font-weight: 600; letter-spacing: 1px;
  color: var(--ivoire); text-decoration: none; white-space: nowrap;
}
.logo-mark {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: transparent;
  border: 1px solid var(--or-clair);
  display: grid; place-items: center;
  color: var(--or-clair); font-size: 14px; font-weight: 600;
  font-family: 'Cormorant Garamond', serif; letter-spacing: 1px;
  box-shadow: 0 0 0 4px rgba(224, 190, 124, 0.10);
}
.logo small {
  display: block; font-family: 'Inter', sans-serif; font-size: 9.5px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase; color: var(--or-clair); line-height: 1.5;
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  color: rgba(243, 241, 234, 0.82); text-decoration: none;
  font-size: 13px; font-weight: 500; letter-spacing: 1.2px; text-transform: uppercase;
  transition: color 0.2s var(--ease);
}
.nav a:hover { color: var(--or-clair); }
.nav a[aria-current="page"] { color: var(--or-clair); font-weight: 600; }
.nav .btn { padding: 11px 20px; min-height: 44px; font-size: 12px; letter-spacing: 1.2px; }
.nav .btn-gold, .nav .btn-gold:hover { color: var(--blanc); }

.burger {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; align-items: center; justify-content: center;
}
.burger svg { stroke: var(--ivoire); }

/* ---------- Hero (accueil) : bannière vidéo plein écran ---------- */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center;
  background: var(--nuit);
  color: var(--ivoire);
  padding: 140px 0 80px;
}
.hero-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.85; pointer-events: none;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(14, 27, 51, 0.80) 0%, rgba(14, 27, 51, 0.48) 45%, rgba(14, 27, 51, 0.90) 100%),
    radial-gradient(ellipse 90% 90% at 50% 50%, rgba(14, 27, 51, 0.15), rgba(14, 27, 51, 0.45));
}
.hero .container { position: relative; z-index: 2; }
.hero-inner { max-width: 780px; text-align: left; }

/* Fine ligne d'identité en haut du hero */
.hero-topline {
  position: absolute; top: 96px; left: 0; right: 0; z-index: 2;
  text-align: center;
  font-size: 11.5px; font-weight: 500; letter-spacing: 3.2px; text-transform: uppercase;
  color: rgba(243, 241, 234, 0.72);
  padding: 0 24px;
}

/* Bouton pilule doré avec flèche (style référence) */
.btn-hero {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 9px 9px 9px 30px; min-height: 60px;
  border-radius: 999px;
  background: linear-gradient(160deg, #E0BE7C 0%, #C9A45C 55%, #A9843C 100%);
  color: #14100A; text-decoration: none;
  font-size: 15px; font-weight: 600; letter-spacing: 0.3px; text-transform: none;
  box-shadow: 0 14px 38px rgba(201, 164, 92, 0.35);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 18px 46px rgba(201, 164, 92, 0.45); }
.btn-hero .arrow {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: rgba(20, 16, 10, 0.22);
  display: grid; place-items: center;
}
.btn-hero .arrow svg { stroke: #14100A; }

.link-underline {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255, 255, 255, 0.92); text-decoration: none;
  font-size: 15px; font-weight: 500; letter-spacing: 0.3px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.link-underline:hover { color: var(--or-clair); border-color: var(--or-clair); }

/* Carte « En un coup d'œil » */
.glance {
  margin-top: 46px; max-width: 560px;
  background: rgba(14, 27, 51, 0.55);
  border: 1px solid rgba(224, 190, 124, 0.28);
  border-radius: 12px; padding: 26px 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.glance-title {
  font-size: 11.5px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--or-clair); margin-bottom: 14px;
}
.glance dl { margin: 0; }
.glance-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(224, 190, 124, 0.16);
}
.glance-row:last-child { border-bottom: none; }
.glance dt {
  font-size: 11.5px; font-weight: 500; letter-spacing: 2.2px; text-transform: uppercase;
  color: rgba(243, 241, 234, 0.62);
}
.glance dd {
  margin: 0; font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600; color: #FFFFFF; text-align: right;
}

/* Hero deux colonnes avec illustration */
.hero-grid {
  position: relative;
  display: grid; grid-template-columns: 1.08fr 0.92fr;
  gap: 48px; align-items: center;
  max-width: none;
}
.hero-visual { position: relative; display: grid; place-items: center; }
.hero-visual .portrait-frame { width: min(400px, 92%); }
.portrait-frame.arch img,
.portrait-frame.arch::after { border-radius: 999px 999px 14px 14px; }
.portrait-frame.arch img { aspect-ratio: 4/5; object-fit: cover; object-position: top; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.badge-chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 16px; border-radius: 4px;
  font-size: 12px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(243, 241, 234, 0.9);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(224, 190, 124, 0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.badge-chip svg { stroke: var(--or-clair); flex-shrink: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; font-weight: 600; letter-spacing: 4.5px; text-transform: uppercase;
  color: var(--or-fonce); margin-bottom: 26px;
}
.eyebrow::before { content: ""; width: 44px; height: 1px; background: var(--or); }

.hero h1 {
  font-size: clamp(42px, 7vw, 74px);
  color: #FFFFFF;
  margin-bottom: 26px;
  font-weight: 600;
  line-height: 1.08;
  text-shadow: 0 2px 30px rgba(14, 27, 51, 0.6);
}
.hero h1 em {
  display: block;
  font-style: italic; font-weight: 500;
  color: rgba(243, 241, 234, 0.94);
}
.page-hero h1 em,
.cta-band h2 em { font-style: italic; color: var(--or-clair); }

.hero .lead {
  font-size: 18px; font-weight: 300; line-height: 1.8;
  color: rgba(243, 241, 234, 0.88);
  max-width: 640px; margin-bottom: 36px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-note {
  margin-top: 24px; font-size: 13.5px; color: var(--slate);
  display: flex; align-items: center; gap: 8px;
}
.hero-note svg { flex-shrink: 0; stroke: var(--or); }

/* ---------- Hero de page intérieure ---------- */
.page-hero {
  background:
    radial-gradient(ellipse 80% 100% at 50% -30%, rgba(224, 190, 124, 0.14), transparent 60%),
    var(--nuit);
  color: var(--ivoire);
  padding: 150px 0 66px;
  text-align: center;
  border-bottom: 1px solid rgba(224, 190, 124, 0.18);
}
.page-hero h1 { font-size: clamp(33px, 5.6vw, 52px); color: #FFFFFF; margin-bottom: 18px; font-weight: 500; }
.page-hero p { font-size: 16.5px; color: rgba(243, 241, 234, 0.78); max-width: 640px; margin: 0 auto; font-weight: 300; }
.page-hero .eyebrow { justify-content: center; color: var(--or-clair); }
.page-hero .eyebrow::before { display: none; }

/* ---------- Barre de confiance ---------- */
.trust {
  background: var(--fond-alt); color: var(--texte); padding: 26px 0;
  border-top: 1px solid var(--ligne-faible);
  border-bottom: 1px solid var(--ligne-faible);
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-item {
  display: flex; align-items: center; gap: 12px; justify-content: center;
  font-size: 12.5px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--texte);
}
.trust-item svg { stroke: var(--or); flex-shrink: 0; }

/* ---------- Sections ---------- */
.section { padding: 92px 0; }
.section-alt { background: var(--blanc); border-top: 1px solid var(--ligne-faible); border-bottom: 1px solid var(--ligne-faible); }
.section-dark {
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(211, 172, 107, 0.10), transparent 60%),
    var(--nuit);
  color: var(--ivoire);
}
.section-dark h2 { color: var(--ivoire); }
.section-dark .eyebrow { color: var(--or-clair); }

.section-head { max-width: 640px; margin-bottom: 54px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 42px); margin-bottom: 16px; font-weight: 500; }
.section-head p { font-size: 16px; color: var(--slate); font-weight: 300; }
.section-dark .section-head p { color: rgba(246, 240, 226, 0.7); }

/* ---------- Cartes ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 24px; }

.card {
  background: var(--blanc);
  border: 1px solid var(--ligne-faible);
  border-radius: var(--radius); padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  display: flex; flex-direction: column;
  position: relative;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 30px; right: 30px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--or-clair), transparent);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--ligne); }
.section-alt .card { background: var(--fond); }

.card-icon {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--or-pale); border: 1px solid var(--ligne-faible);
  display: grid; place-items: center; margin-bottom: 22px;
}
.card-icon svg { stroke: var(--or); }

/* Carte avec photo en tête */
.card-illus {
  margin: -36px -30px 24px;
  height: 200px;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  background: var(--nuit);
}
.card-illus img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.card:hover .card-illus img { transform: scale(1.05); }

.card h3 { font-size: 25px; margin-bottom: 10px; font-weight: 500; }
.card p { font-size: 14.5px; color: var(--slate); flex: 1; font-weight: 300; line-height: 1.75; }
.card .card-link {
  margin-top: 22px; display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--or-fonce); text-decoration: none;
}
.card .card-link:hover { color: var(--or); }
.card .card-link svg { stroke: var(--or-fonce); transition: transform 0.2s var(--ease); }
.card:hover .card-link svg { transform: translateX(5px); }

/* ---------- Domaines d'intervention ---------- */
.domains { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.domain {
  background: var(--blanc); border: 1px solid var(--ligne-faible);
  border-radius: var(--radius); padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  display: flex; gap: 16px; align-items: flex-start;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.domain:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--ligne); }
.domain-icon {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: var(--or-pale); border: 1px solid var(--ligne-faible);
  display: grid; place-items: center;
}
.domain-icon svg { stroke: var(--or); }
.domain h3 { font-size: 20px; margin-bottom: 4px; font-weight: 600; }
.domain p { font-size: 13.5px; color: var(--slate); font-weight: 300; line-height: 1.65; }

/* ---------- Piliers / engagements ---------- */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.pillar { border-top: 2px solid var(--or); padding-top: 20px; }
.pillar-num {
  font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600;
  color: var(--or-fonce); letter-spacing: 2px; margin-bottom: 8px; display: block;
}
.pillar h3 { font-size: 21px; margin-bottom: 8px; font-weight: 600; }
.pillar p { font-size: 14px; color: var(--slate); font-weight: 300; line-height: 1.7; }

/* ---------- Bandeau France / à distance ---------- */
.france-band { text-align: center; }
.france-band .cities {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-top: 28px;
}
.city-chip {
  padding: 8px 18px; border-radius: 999px;
  background: var(--blanc); border: 1px solid var(--ligne-faible);
  font-size: 13px; color: var(--texte); letter-spacing: 0.6px;
  box-shadow: var(--shadow-sm);
}

/* ---------- « Vous vous reconnaissez ? » ---------- */
.pains { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.pain {
  background: var(--blanc); border: 1px solid var(--ligne-faible);
  border-radius: var(--radius); padding: 22px 26px;
  display: flex; gap: 16px; align-items: flex-start;
  box-shadow: var(--shadow-sm);
  font-size: 16px; color: var(--texte); line-height: 1.65;
}
.pain .spark { color: var(--or); flex-shrink: 0; font-size: 17px; line-height: 1.5; }
.pains-closing {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(23px, 3.4vw, 32px); font-weight: 500; color: var(--encre);
  text-align: center; max-width: 620px; margin: 40px auto 28px; line-height: 1.4;
}
.pains-ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.pains-ctas .btn { min-width: min(420px, 100%); }

/* ---------- Citation ---------- */
.quote-band {
  text-align: center; padding: 92px 0;
  background:
    radial-gradient(ellipse 60% 90% at 50% 0%, rgba(211, 172, 107, 0.10), transparent 60%),
    var(--fond);
}
.quote-band .spark { color: var(--or); font-size: 26px; display: block; margin-bottom: 22px; }
.quote-band blockquote {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(26px, 4vw, 40px); color: var(--encre); font-weight: 500;
  max-width: 840px; margin: 0 auto 24px; line-height: 1.42;
}
.quote-band cite {
  font-style: normal; font-size: 13px; font-weight: 600;
  letter-spacing: 3.5px; text-transform: uppercase; color: var(--or-fonce);
}

/* ---------- Boutons flottants (ordinateur) ---------- */
.float-ctas {
  position: fixed; right: 24px; bottom: 24px; z-index: 95;
  display: flex; flex-direction: column; gap: 10px; align-items: flex-end;
}
.float-ctas .btn {
  border-radius: 999px; padding: 13px 24px; min-height: 48px;
  box-shadow: 0 14px 34px rgba(38, 32, 19, 0.30);
}

/* ---------- Étapes ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  padding: 36px 30px;
  background: var(--blanc); border: 1px solid var(--ligne-faible);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.section-alt .step { background: var(--fond); }
.step-num {
  font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 500;
  color: var(--or); line-height: 1; margin-bottom: 18px;
}
.step h3 { font-size: 23px; margin-bottom: 10px; font-weight: 500; }
.step p { font-size: 14.5px; color: var(--slate); font-weight: 300; line-height: 1.75; }

/* ---------- Témoignages ---------- */
.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.quote {
  background: var(--blanc); border: 1px solid var(--ligne-faible);
  border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 18px;
}
.section-alt .quote { background: var(--fond); }
.quote-stars { display: flex; gap: 4px; }
.quote-stars svg { fill: var(--or); stroke: none; }
.quote p {
  font-style: italic; flex: 1; color: var(--encre);
  font-family: 'Cormorant Garamond', serif; font-size: 18.5px; line-height: 1.55;
}
.quote-author { display: flex; align-items: center; gap: 12px; }
.quote-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--or-pale); border: 1px solid var(--or); color: var(--or-fonce);
  display: grid; place-items: center;
  font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 600;
}
.quote-name { font-size: 14px; font-weight: 600; color: var(--encre); letter-spacing: 0.4px; }
.quote-role { font-size: 12.5px; color: var(--slate); letter-spacing: 1px; text-transform: uppercase; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--blanc); border: 1px solid var(--ligne-faible);
  border-radius: var(--radius); margin-bottom: 12px; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 21px 26px;
  font-weight: 500; color: var(--encre);
  font-family: 'Cormorant Garamond', serif; font-size: 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  transition: background 0.2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--or-pale); }
.faq-item summary svg { flex-shrink: 0; stroke: var(--or); transition: transform 0.25s var(--ease); }
.faq-item[open] summary svg { transform: rotate(45deg); }
.faq-body { padding: 0 26px 24px; font-size: 15px; color: var(--texte); font-weight: 300; line-height: 1.8; }
.faq-body a { color: var(--or-fonce); }

/* ---------- Contenu éditorial (à propos, services, articles) ---------- */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { font-size: clamp(27px, 4vw, 36px); margin: 48px 0 16px; font-weight: 500; }
.prose h3 { font-size: 23px; margin: 32px 0 10px; font-weight: 500; }
.prose p { margin-bottom: 18px; font-size: 15.5px; color: var(--texte); font-weight: 300; line-height: 1.85; }
.prose ul, .prose ol { margin: 0 0 18px 22px; }
.prose li { margin-bottom: 9px; font-size: 15px; color: var(--texte); font-weight: 300; }
.prose a { color: var(--or-fonce); }
.prose strong { color: var(--encre); font-weight: 600; }
.prose .muted { color: var(--slate); font-size: 14.5px; }
.prose blockquote {
  border-left: 2px solid var(--or); padding: 6px 0 6px 24px;
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 22px;
  color: var(--or-fonce); margin: 28px 0;
}

/* Encadré déontologie / avertissement */
.notice {
  background: var(--or-pale); border: 1px solid var(--ligne);
  border-radius: var(--radius); padding: 24px 26px;
  font-size: 14.5px; color: var(--texte); margin: 30px 0;
  display: flex; gap: 14px; align-items: flex-start;
}
.notice svg { stroke: var(--or); flex-shrink: 0; margin-top: 2px; }
.notice strong { color: var(--encre); }
.notice p { margin: 0; font-size: 14.5px; }

/* Tarifs */
.pricing-table {
  width: 100%; border-collapse: collapse; margin: 22px 0 8px;
  background: var(--blanc); border: 1px solid var(--ligne-faible);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
}
.pricing-table th, .pricing-table td { text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--ligne-faible); font-size: 15px; }
.pricing-table th {
  background: var(--nuit); color: var(--or-clair);
  font-weight: 600; font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
}
.pricing-table td { color: var(--texte); font-weight: 300; }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table td:last-child { font-weight: 600; color: var(--or-fonce); white-space: nowrap; }
.pricing-caption { font-size: 13.5px; color: var(--slate); margin-bottom: 24px; }

/* ---------- Section « split » : texte + illustration ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-visual { display: grid; place-items: center; }
.split-visual .visual-frame {
  width: min(420px, 100%);
  border-radius: 12px; padding: 34px 26px;
  background:
    radial-gradient(ellipse 90% 110% at 50% -20%, rgba(211, 172, 107, 0.15), transparent 65%),
    linear-gradient(180deg, #322A1A, #1C160C);
  box-shadow: var(--shadow-lg);
}
.split-visual img { width: 100%; height: auto; }
.split-visual figcaption { font-size: 13px; color: var(--slate); text-align: center; margin-top: 12px; }

/* Photos éditoriales */
.photo-figure { margin: 34px 0; }
.photo-figure img {
  width: 100%; height: auto;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}
.photo-figure figcaption {
  font-size: 13px; color: var(--slate); text-align: center; margin-top: 12px;
  font-style: italic;
}

/* Bannière pleine largeur (à propos) */
.banner-photo { margin: 0 0 40px; }
.banner-photo img {
  width: 100%; height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

/* Portrait (à propos) */
.portrait-frame { width: min(320px, 82%); margin: 0 auto; position: relative; }
.portrait-frame img { width: 100%; height: auto; border-radius: 10px; box-shadow: var(--shadow-lg); }
.portrait-frame::after {
  content: ""; position: absolute; inset: 16px -16px -16px 16px;
  border: 1px solid var(--or); border-radius: 10px;
  opacity: 0.55; z-index: -1;
}

/* ---------- Bandeau CTA ---------- */
.cta-band {
  background:
    radial-gradient(ellipse 70% 100% at 50% 0%, rgba(211, 172, 107, 0.14), transparent 62%),
    var(--nuit);
  color: var(--ivoire); text-align: center;
  padding: 84px 0;
  position: relative; overflow: hidden;
}
.cta-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.55; pointer-events: none;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse 90% 120% at 50% 50%, rgba(38, 32, 19, 0.30), rgba(38, 32, 19, 0.78));
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: var(--ivoire); font-size: clamp(30px, 4.6vw, 44px); margin-bottom: 16px; font-weight: 500; }
.cta-band p { color: rgba(246, 240, 226, 0.72); font-size: 16px; max-width: 560px; margin: 0 auto 34px; font-weight: 300; }
.cta-band .hero-ctas { justify-content: center; }
.cta-band .hero-note { justify-content: center; color: rgba(246, 240, 226, 0.55); }

/* ---------- Blog ---------- */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post {
  background: var(--blanc); border: 1px solid var(--ligne-faible);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm); text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--ligne); }
.post-visual {
  height: 150px; display: grid; place-items: center;
  background:
    radial-gradient(ellipse 80% 120% at 50% -30%, rgba(211, 172, 107, 0.18), transparent 70%),
    linear-gradient(180deg, #322A1A, #1C160C);
}
.post-visual svg { stroke: var(--or-clair); opacity: 0.95; }
.post-body { padding: 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-tag { font-size: 11px; font-weight: 600; letter-spacing: 2.4px; text-transform: uppercase; color: var(--or-fonce); }
.post h3 { font-size: 22px; font-weight: 500; }
.post p { font-size: 14px; color: var(--slate); flex: 1; font-weight: 300; }
.post time { font-size: 12.5px; color: var(--slate); letter-spacing: 0.5px; }

.article-meta { text-align: center; font-size: 13.5px; color: var(--slate); margin-top: 14px; letter-spacing: 1px; }

/* ---------- Formulaire ---------- */
.form-card {
  background: var(--blanc); color: var(--texte);
  border: 1px solid var(--ligne-faible);
  border-radius: 10px; padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.form-card::before {
  content: ""; position: absolute; top: 0; left: 36px; right: 36px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--or), transparent);
  opacity: 0.7;
}
.form-card h3 { font-size: 27px; margin-bottom: 6px; font-weight: 500; }
.form-card > p { font-size: 14px; color: var(--slate); margin-bottom: 26px; font-weight: 300; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 18px; }
.field label {
  display: block; font-size: 12px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--or-fonce); margin-bottom: 8px;
}
.field .req { color: var(--or); }
.field .opt { font-weight: 400; color: var(--slate); text-transform: none; letter-spacing: 0.4px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; min-height: 50px;
  font-family: 'Inter', sans-serif; font-size: 15px; color: var(--encre);
  background: var(--fond); border: 1px solid var(--ligne-faible); border-radius: 4px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--or);
  box-shadow: 0 0 0 3px rgba(169, 127, 53, 0.15);
}
.field .error { display: none; font-size: 13px; color: var(--danger); margin-top: 6px; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: var(--danger); }
.field.invalid .error { display: block; }
.form-submit { width: 100%; margin-top: 8px; }
.form-hint { font-size: 12.5px; color: var(--slate); margin: 14px 0 0; }
.form-hint a { color: var(--or-fonce); }

/* ---------- Coordonnées contact (sur section sombre) ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: start; }
.contact-points { display: flex; flex-direction: column; gap: 20px; margin-top: 30px; }
.contact-point { display: flex; gap: 15px; align-items: flex-start; }
.contact-point svg { stroke: var(--or-clair); flex-shrink: 0; margin-top: 2px; }
.contact-point strong { display: block; font-size: 15px; margin-bottom: 2px; color: var(--ivoire); letter-spacing: 0.4px; }
.contact-point span { font-size: 14px; color: rgba(246, 240, 226, 0.65); font-weight: 300; }
.contact-point a { color: var(--or-clair); text-decoration: none; font-weight: 600; }
.contact-point a:hover { text-decoration: underline; }

/* ---------- Barre d'action mobile (Appel / WhatsApp) ---------- */
.action-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  display: none; gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(251, 247, 239, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--ligne-faible);
}
.action-bar .btn { flex: 1; padding: 13px 10px; font-size: 12px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--nuit); color: rgba(246, 240, 226, 0.62); padding: 70px 0 36px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; margin-bottom: 44px; }
.footer .logo { margin-bottom: 16px; color: var(--ivoire); }
.footer .logo-mark { color: var(--or-clair); border-color: var(--or-clair); }
.footer .logo small { color: var(--or-clair); }
.footer-about { font-size: 14px; line-height: 1.8; font-weight: 300; }
.footer h4 {
  color: var(--or-clair); font-family: 'Inter', sans-serif; font-size: 11.5px; font-weight: 600;
  letter-spacing: 2.6px; text-transform: uppercase; margin-bottom: 18px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer ul a { font-size: 14px; text-decoration: none; transition: color 0.2s; font-weight: 300; }
.footer ul a:hover { color: var(--or-clair); }
.footer ul svg { stroke: var(--or-clair); vertical-align: -3px; margin-right: 7px; }

.footer-disclaimer {
  border-top: 1px solid rgba(211, 172, 107, 0.18);
  padding-top: 26px; font-size: 12.5px; line-height: 1.8;
  color: rgba(246, 240, 226, 0.45); font-weight: 300;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 26px; margin-top: 16px; font-size: 13px; }
.footer-legal a { text-decoration: none; color: rgba(246, 240, 226, 0.6); }
.footer-legal a:hover { color: var(--or-clair); }

/* ---------- Animations d'apparition (uniquement si JS actif) ---------- */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.js .reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .js .hero-visual img, .js .page-hero .hero-illus { animation: none; }
  .btn, .card, .post, .quote, .domain { transition: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 940px) {
  .section { padding: 66px 0; }
  .hero { padding: 136px 0 78px; }
  .page-hero { padding: 122px 0 50px; }

  /* Vidéo du hero sur mobile : version verticale, voile allégé */
  .hero-video { opacity: 0.95; }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(14, 27, 51, 0.78) 0%, rgba(14, 27, 51, 0.40) 45%, rgba(14, 27, 51, 0.88) 100%);
  }

  .hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .hero-visual { order: -1; }
  .hero-visual .portrait-frame { width: min(260px, 68%); }
  .split { grid-template-columns: 1fr; gap: 38px; }
  .split-visual { order: -1; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .trust-item { justify-content: flex-start; }

  .steps, .quotes, .posts { grid-template-columns: 1fr; }
  .domains { grid-template-columns: 1fr 1fr; }
  .pillars { grid-template-columns: 1fr 1fr; gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }

  .nav {
    position: fixed; inset: 78px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--nuit);
    border-bottom: 1px solid rgba(224, 190, 124, 0.18);
    padding: 10px 24px 24px;
    transform: translateY(-130%);
    transition: transform 0.3s var(--ease);
    box-shadow: var(--shadow-md);
  }
  .nav.open { transform: none; }
  .nav a { padding: 14px 4px; font-size: 14px; }
  .nav .btn { margin-top: 12px; justify-content: center; }
  .burger { display: inline-flex; }

  .action-bar { display: flex; }
  .float-ctas { display: none; }
  body { padding-bottom: 78px; }
  .footer { padding-bottom: 92px; }
}

@media (max-width: 560px) {
  .hero-topline { display: none; }
  .btn-hero { width: 100%; justify-content: space-between; }
  .pricing-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 30px 22px; }
  .hero-ctas .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .domains { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
}
