/* ============================================================
   Hugo Borrell — Thérapeute · Design Raffiné 2026
   Palette : crème ivoire · pierre · violet profond · or doux
   Typographie : Cormorant Garamond (titres) + Lato (corps)
   ============================================================ */

:root {
  --violet: #6b5fa0;
  --violet-light: #9b8fc4;
  --violet-pale: #ede9f8;
  --or: #c9a96e;
  --creme: #faf8f3;
  --pierre: #e8e2d5;
  --texte: #2a2520;
  --texte-doux: #5a524a;
  --blanc: #ffffff;
  --ombre: rgba(42, 37, 32, 0.08);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Lato", system-ui, sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --max-w: 820px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ── Base ───────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--texte);
  background-color: var(--blanc);
}

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

a {
  color: inherit;
}

/* ── Navigation ─────────────────────────────────────────────── */
nav {
  background-color: rgba(250, 248, 243, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--pierre);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.9rem 1.5rem;
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: var(--texte-doux);
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition:
    color var(--transition),
    border-color var(--transition);
}

nav a:hover,
nav a.active {
  color: var(--violet);
  border-bottom-color: var(--or);
}

/* ── Hero (Modifié pour pleine largeur et centrage) ────────── */

/* ── Hero Engine (Structure Unique & Optimisée) ────────── */

.hero {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--blanc);
  overflow: visible; /* Important pour le médaillon */

  /* LE FILTRE UNIQUE : Modifiez ces deux valeurs RGBA pour éclaircir/assombrir tout le site */
  --hero-filter: linear-gradient(
    to top,
    rgba(30, 20, 50, 0.4) 0%,
    rgba(30, 20, 50, 0.1) 100%
  );

  /* Image par défaut */
  background:
    var(--hero-filter),
    url("images/cabinet_hypnose_gresivaudan.webp") center/cover no-repeat;
}

/* -- Médaillon Portrait (Positionnement) -- */
.hero-medaillon {
  position: absolute;
  /* On le place à cheval sur la bordure basse */
  bottom: -40px;
  right: 15%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 4px solid var(--blanc);
  object-fit: cover;
  object-position: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 10;
  background-color: var(--blanc);
}

/* Correction Mobile : on évite que le médaillon ne disparaisse ou ne soit mal placé */
@media (max-width: 768px) {
  .hero {
    min-height: 45vh;
    margin-bottom: 60px; /* Espace pour le médaillon qui dépasse */
  }
  .hero-medaillon {
    width: 130px;
    height: 130px;
    right: 50%;
    transform: translateX(50%);
    bottom: -50px;
  }
}

/* Ajustement pour les petits écrans (Mobile) */
@media (max-width: 768px) {
  .hero-medaillon {
    width: 120px;
    height: 120px;
    right: 50%;
    transform: translateX(50%); /* Centre le médaillon sur mobile */
    bottom: -60px;
  }

  /* Ajoute de l'espace sous le header pour ne pas cacher le texte suivant */
  .hero {
    margin-bottom: 80px;
  }
}

/* Panneau Satisfait ou Remboursé */
.badge-garantie {
  display: block;
  margin: 2rem auto 0;
  padding: 1.5rem;
  border: 3px dashed var(--or);
  border-radius: var(--radius);
  background: rgba(201, 169, 110, 0.1);
  color: var(--or);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  max-width: 400px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 0.6rem;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero h2 {
  font-family: var(--serif);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
  max-width: 600px;
  margin-bottom: 2rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.tag {
  font-style: normal;
  font-weight: 400;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  padding: 0.1em 0.45em;
  font-size: 0.85em;
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
}

/* ── CTA Button ─────────────────────────────────────────────── */
.bouton-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--or);
  color: var(--blanc) !important;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(201, 169, 110, 0.4);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.bouton-cta:hover {
  transform: translateY(-3px);
  background: #b8944f;
  box-shadow: 0 8px 32px rgba(201, 169, 110, 0.5);
}

/* ── Main wrapper ───────────────────────────────────────────── */
main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  margin: 4.5rem 0;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 300;
  color: var(--texte);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 0.75rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3rem;
  height: 2px;
  background: var(--or);
  border-radius: 2px;
}

/* ── Citation ───────────────────────────────────────────────── */
#citation {
  margin: 0;
  background: var(--violet-pale);
  padding: 3.5rem 1.5rem;
  max-width: 100vw;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.citation-wrapper {
  max-width: var(--max-w);
  margin: 0 auto;
}

.citation-rogers {
  border-left: 3px solid var(--or);
  padding-left: 2rem;
}

.citation-rogers p {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-style: italic;
  line-height: 1.8;
  color: var(--texte);
  margin-bottom: 1.2rem;
}

.citation-rogers strong {
  font-style: normal;
  color: var(--violet);
}

.citation-rogers cite {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--texte-doux);
  font-style: normal;
}

/* ── Cards (approches) ──────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--creme);
  border: 1px solid var(--pierre);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px var(--ombre);
  border-color: var(--violet-light);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--texte);
}

.card p {
  font-size: 0.9375rem;
  color: var(--texte-doux);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.card-link {
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--violet);
  border-bottom: 1px solid var(--violet-light);
  padding-bottom: 2px;
  transition:
    color var(--transition),
    border-color var(--transition);
}

.card-link:hover {
  color: var(--or);
  border-color: var(--or);
}

/* ── Avis Trustmary ─────────────────────────────────────────── */
#avis {
  max-width: 100%;
}

/* ── Réseaux Sociaux ────────────────────────────────────────── */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border: 1.5px solid var(--pierre);
  border-radius: var(--radius);
  color: var(--texte-doux);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--creme);
  transition: all var(--transition);
}

.social-links a:hover {
  background: var(--violet);
  border-color: var(--violet);
  color: var(--blanc);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(107, 95, 160, 0.25);
}

.social-links a svg {
  flex-shrink: 0;
}

/* ── Plan ───────────────────────────────────────────────────── */
.plan-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.plan-link {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--pierre);
  box-shadow: 0 4px 20px var(--ombre);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}

.plan-link:hover {
  transform: scale(1.01);
  box-shadow: 0 10px 36px rgba(42, 37, 32, 0.13);
}

.plan-link img {
  width: 100%;
  height: auto;
  display: block;
}

.plan-overlay {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  color: var(--texte);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  border: 1px solid var(--pierre);
  letter-spacing: 0.04em;
}

.plan-adresse {
  font-size: 0.9rem;
  color: var(--texte-doux);
  text-align: center;
}

.plan-adresse a {
  color: var(--violet);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer-actions {
  background: var(--creme);
  border-top: 1px solid var(--pierre);
  padding: 3rem 1.5rem 2rem;
  margin-top: 5rem;
}

.grid-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

.action-item {
  text-align: center;
}

.action-item p {
  font-size: 0.78rem;
  margin-top: 0.5rem;
  color: var(--texte-doux);
  line-height: 1.4;
}

.bouton-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: var(--blanc);
  border: 1.5px solid var(--pierre);
  color: var(--texte) !important;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.1rem 0.75rem 1rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  box-shadow: 0 2px 8px var(--ombre);
}

.bouton-footer svg {
  color: var(--violet);
  transition: color var(--transition);
}

.bouton-footer:hover {
  background: var(--violet);
  border-color: var(--violet);
  color: var(--blanc) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(107, 95, 160, 0.3);
}

.bouton-footer:hover svg {
  color: var(--blanc);
}

.footer-bottom {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.78rem;
  color: var(--texte-doux);
}

.footer-bottom a {
  color: var(--violet);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 640px) {
  .hero {
    min-height: min(55vh, 400px);
    padding: 2rem 1.25rem;
    /* On conserve le filtre en le rappelant ici */
    background:
      var(--hero-filter),
      url("images/cabinet_hypnose_gresivaudan.webp") center/cover no-repeat;
  }
  /* ... reste du code */
}

.nav-container {
  gap: 1.25rem;
}

.cards-grid {
  grid-template-columns: 1fr;
}

.grid-actions {
  grid-template-columns: repeat(2, 1fr);
  max-width: 340px;
}

@media (max-width: 380px) {
  nav a {
    font-size: 0.78rem;
  }
  .grid-actions {
    gap: 0.7rem;
  }
  .bouton-footer {
    font-size: 0.7rem;
    padding: 0.9rem 0.5rem 0.8rem;
  }
}

/* ── Focus visible (accessibilité) ─────────────────────────── */
:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 3px;
  border-radius: 4px;
}

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

/* ============================================================
   PAGE : Thérapie de Couple
   ============================================================ */

/* Hero variante couple */
.hero-couple {
  background-image:
    linear-gradient(
      to top,
      rgba(30, 20, 50, 0.75) 0%,
      rgba(30, 20, 50, 0.28) 60%,
      transparent 100%
    ),
    url("images/therapie_couple.webp");
}

/* Introduction lead */
.introduction {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  font-style: italic;
  line-height: 1.85;
  color: var(--texte-doux);
  margin-bottom: 2rem;
  border-left: 3px solid var(--pierre);
  padding-left: 1.5rem;
}

.introduction strong {
  font-style: normal;
  color: var(--texte);
}

/* Focus box EFT */
.focus-box {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--violet-pale);
  border: 1px solid rgba(107, 95, 160, 0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 2rem;
}

.focus-box-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--violet);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanc);
}

.focus-box h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--texte);
  margin-bottom: 0.6rem;
}

.focus-box p {
  font-size: 0.9375rem;
  color: var(--texte-doux);
  line-height: 1.75;
}

/* Symptômes list */
.symptomes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.symptomes-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  background: var(--creme);
  border: 1px solid var(--pierre);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.symptomes-list li:hover {
  border-color: var(--violet-light);
  box-shadow: 0 4px 18px var(--ombre);
}

.symptome-icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.symptomes-list strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--texte);
  margin-bottom: 0.25rem;
}

.symptomes-list p {
  font-size: 0.9rem;
  color: var(--texte-doux);
  line-height: 1.6;
  margin: 0;
}

/* Offre / Engagement */
.offre-engagement {
  background: linear-gradient(145deg, var(--texte) 0%, #3d3060 100%);
  color: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 12px 48px rgba(42, 37, 32, 0.2);
  overflow: hidden;
  position: relative;
}

.offre-engagement::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(201, 169, 110, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.engagement-badge {
  font-size: 1.6rem;
  color: var(--or);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.engagement-header h3 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  font-weight: 300;
  color: var(--blanc);
  margin-bottom: 0.4rem;
}

.tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.step {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.25rem 0.75rem;
}

.step-number {
  display: block;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--or);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.step p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
}

.step strong {
  display: block;
  font-size: 0.9rem;
  color: var(--blanc);
  margin-bottom: 0.2rem;
}

/* Prix */
.prix-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin: 1.75rem 0 2rem;
}

.prix-barre {
  font-family: var(--sans);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
}

.prix-promo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.montant {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 4rem);
  font-weight: 300;
  color: var(--or);
  line-height: 1;
}

.condition {
  display: inline-block;
  background: rgba(201, 169, 110, 0.2);
  border: 1px solid rgba(201, 169, 110, 0.4);
  color: var(--or);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
}

/* CTA centré dans la card sombre */
.bouton-cta--centre {
  display: inline-flex;
  margin-top: 0.5rem;
}

/* Processus */
.processus-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.processus-list::before {
  content: "";
  position: absolute;
  left: 1.9rem;
  top: 2.5rem;
  bottom: 2.5rem;
  width: 1px;
  background: linear-gradient(
    to bottom,
    var(--pierre),
    var(--violet-light),
    var(--pierre)
  );
}

.processus-item {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  position: relative;
}

.processus-num {
  flex-shrink: 0;
  width: 3.8rem;
  height: 3.8rem;
  background: var(--blanc);
  border: 2px solid var(--violet-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--violet);
  z-index: 1;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.processus-item:hover .processus-num {
  background: var(--violet);
  color: var(--blanc);
  border-color: var(--violet);
}

.processus-item h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--texte);
  margin-bottom: 0.4rem;
  margin-top: 0.7rem;
}

.processus-item p {
  font-size: 0.9375rem;
  color: var(--texte-doux);
  line-height: 1.7;
}

/* Responsive couple page */
@media (max-width: 640px) {
  .hero-couple {
    background-image:
      linear-gradient(
        to top,
        rgba(30, 20, 50, 0.82) 0%,
        rgba(30, 20, 50, 0.35) 60%,
        transparent 100%
      ),
      url("images/therapie_couple_small.webp");
  }

  .focus-box {
    flex-direction: column;
    gap: 1rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .processus-list::before {
    left: 1.6rem;
  }

  .offre-engagement {
    padding: 2rem 1.25rem;
  }
}

/* ============================================================
   PAGE : Thérapie Individuelle — Hypnose & EMDR
   ============================================================ */

/* Hero variante individuelle */
.hero-individuelle {
  background-image:
    linear-gradient(
      to top,
      rgba(20, 35, 40, 0.75) 0%,
      rgba(20, 35, 40, 0.28) 60%,
      transparent 100%
    ),
    url("images/therapie_individuelle.webp");
}

.hero-individuelle .hero-eyebrow {
  color: #8ecfc9;
}

/* Grille des deux méthodes */
.methodes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.methode-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--pierre);
  background: var(--blanc);
  box-shadow: 0 4px 20px var(--ombre);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.methode-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(42, 37, 32, 0.13);
}

.methode-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  color: var(--blanc);
}

.methode-card__header--hypnose {
  background: linear-gradient(135deg, #4a3880 0%, #6b5fa0 100%);
}

.methode-card__header--emdr {
  background: linear-gradient(135deg, #1a5c6b 0%, #2d8a9e 100%);
}

.methode-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.methode-card__header h2 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--blanc);
  text-shadow: none;
  letter-spacing: 0;
  margin: 0;
}

.methode-card__body {
  padding: 1.75rem;
}

.methode-card__body > p {
  font-size: 0.9375rem;
  color: var(--texte-doux);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.methode-card__body h3 {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--texte-doux);
  margin-bottom: 0.75rem;
}

.indications-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.indications-list li {
  font-size: 0.9rem;
  color: var(--texte);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}

.indications-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--or);
  font-weight: 700;
}

/* Tarif card */
.tarif-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: linear-gradient(145deg, var(--texte) 0%, #2a3d50 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(42, 37, 32, 0.22);
  position: relative;
}

.tarif-card::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(
    circle,
    rgba(201, 169, 110, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.tarif-card__left {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.tarif-card__left h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--blanc);
  margin-bottom: 0.1rem;
}

.tagline-tarif {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.tarif-card__left .prix-container {
  margin: 0;
  align-items: flex-start;
}

.tarif-card__right {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.tarif-inclus {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.tarif-inclus li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.tarif-inclus svg {
  flex-shrink: 0;
  color: #8ecfc9;
  margin-top: 0.1rem;
}

/* FAQ accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--creme);
  border: 1px solid var(--pierre);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item[open] {
  border-color: var(--violet-light);
}

.faq-item summary {
  cursor: pointer;
  padding: 1.1rem 1.5rem;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--texte);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
  transition: color var(--transition);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--violet);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  color: var(--violet);
}

.faq-item > p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--texte-doux);
  line-height: 1.75;
  border-top: 1px solid var(--pierre);
  padding-top: 1rem;
}

/* Responsive individuelle */
@media (max-width: 640px) {
  .hero-individuelle {
    background-image:
      linear-gradient(
        to top,
        rgba(20, 35, 40, 0.82) 0%,
        rgba(20, 35, 40, 0.35) 60%,
        transparent 100%
      ),
      url("images/therapie_individuelle_small.webp");
  }

  .methodes-grid {
    grid-template-columns: 1fr;
  }

  .tarif-card {
    grid-template-columns: 1fr;
  }

  .tarif-card__left {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem 1.5rem 1.5rem;
  }

  .tarif-card__right {
    padding: 1.5rem;
  }
}
/* -- Conteneur Vidéo -- */
.video-section {
  text-align: center;
  margin: 3rem auto;
}

.video-wrapper {
  max-width: 700px; /* Taille optimale pour la visibilité */
  margin: 0 auto;
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--pierre);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 30px var(--ombre);
}

.video-player {
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-player iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: var(--pierre); /* Couleur de secours */
  transition: transform var(--transition);
}

/* Ajout d'un voile sombre pour faire ressortir le bouton Play */
.video-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  transition: background var(--transition);
}

.video-placeholder span {
  position: relative;
  z-index: 2;
  background: var(--violet);
  color: var(--blanc);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.video-player:hover .video-placeholder::before {
  background: rgba(0, 0, 0, 0.1); /* L'image s'éclaircit au survol */
}

.video-player:hover .video-placeholder {
  transform: scale(1.02);
}
/* Rendre le lien d'évitement invisible sauf au focus */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-color);
  color: white;
  padding: 8px;
  z-index: 100;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* Améliorer la visibilité du focus sur les boutons et liens */
a:focus,
button:focus {
  outline: 3px solid #0056b3; /* Un bleu contrasté */
  outline-offset: 2px;
}
