/* ============================================================
   Léa — Énergie Intégrée · Stylesheet
   Palette inspirée du logo : crème, vert sauge, or chaud
   ============================================================ */

:root {
  /* Couleurs */
  --cream: #f5efe6;
  --cream-deep: #ece2d3;
  --cream-soft: #faf6ef;
  --sage: #7a8f6b;
  --sage-deep: #5d7251;
  --sage-light: #a8b89a;
  --gold: #c9a961;
  --gold-deep: #a8893f;
  --ink: #2f2a24;
  --ink-soft: #5a5048;
  --ink-mute: #8a7f74;
  --white: #ffffff;
  --line: rgba(47, 42, 36, 0.12);

  /* Typo */
  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-script: "Dancing Script", "Cormorant Garamond", cursive;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Espace */
  --max-w: 1180px;
  --pad-x: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 14px;
  --radius-lg: 24px;

  /* Ombres */
  --shadow-sm: 0 1px 2px rgba(47, 42, 36, 0.04), 0 2px 8px rgba(47, 42, 36, 0.04);
  --shadow-md: 0 4px 12px rgba(47, 42, 36, 0.06), 0 12px 32px rgba(47, 42, 36, 0.08);
  --shadow-lg: 0 8px 24px rgba(47, 42, 36, 0.08), 0 24px 64px rgba(47, 42, 36, 0.1);
}

/* ============================================================
   Base
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--sage-deep);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--gold-deep);
}

p {
  margin: 0 0 1em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* Titres */
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 500;
}

em {
  font-style: italic;
  color: var(--sage-deep);
}

/* ============================================================
   Header & Nav
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 239, 230, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
}

.brand-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--sage-deep);
}

.brand-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 2px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.primary-nav a {
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 500;
  position: relative;
}

.primary-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.primary-nav a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--sage-deep);
  color: var(--cream-soft) !important;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.88rem;
}

.nav-cta:hover {
  background: var(--ink);
  color: var(--cream-soft) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 920px) {
  .nav-toggle {
    display: flex;
  }

  .primary-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream-soft);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 1rem var(--pad-x);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .primary-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav a:last-child {
    border-bottom: none;
    margin-top: 0.5rem;
  }

  .nav-cta {
    text-align: center;
  }
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 9vw, 6rem) 0 clamp(4rem, 10vw, 7rem);
}

/* Hero clair (par défaut) */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(168, 184, 154, 0.22), transparent 55%),
    radial-gradient(ellipse at 75% 80%, rgba(201, 169, 97, 0.16), transparent 60%),
    linear-gradient(180deg, var(--cream-soft), var(--cream));
  z-index: -1;
  overflow: hidden;
}

/* ============================================================
   Décorations en fond du hero
   ============================================================ */

.hero-bg .deco {
  position: absolute;
  display: block;
  pointer-events: none;
}

/* Anneaux circulaires */
.hero-bg .deco-ring-1 {
  width: 520px;
  height: 520px;
  top: -200px;
  right: -160px;
  border: 1px solid rgba(201, 169, 97, 0.28);
  border-radius: 50%;
}

.hero-bg .deco-ring-2 {
  width: 360px;
  height: 360px;
  bottom: -120px;
  left: -100px;
  border: 1px solid rgba(122, 143, 107, 0.25);
  border-radius: 50%;
}

.hero-bg .deco-ring-3 {
  width: 180px;
  height: 180px;
  top: 8%;
  left: 6%;
  border: 1px solid rgba(201, 169, 97, 0.22);
  border-radius: 50%;
}

.hero-bg .deco-ring-4 {
  width: 100px;
  height: 100px;
  bottom: 12%;
  right: 8%;
  border: 1px solid rgba(122, 143, 107, 0.22);
  border-radius: 50%;
}

/* Points lumineux */
.hero-bg .deco-dot {
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.4;
}

.hero-bg .deco-dot-1 {
  width: 8px;
  height: 8px;
  top: 18%;
  right: 25%;
}

.hero-bg .deco-dot-2 {
  width: 5px;
  height: 5px;
  top: 60%;
  left: 18%;
  background: var(--sage);
  opacity: 0.5;
}

.hero-bg .deco-dot-3 {
  width: 6px;
  height: 6px;
  bottom: 28%;
  right: 18%;
}

/* Spirale en arrière-plan */
.hero-bg .deco-spiral {
  width: 130px;
  height: 130px;
  top: 28%;
  right: 12%;
  color: rgba(201, 169, 97, 0.3);
}

/* Feuille stylisée */
.hero-bg .deco-leaf {
  width: 80px;
  height: 100px;
  bottom: 18%;
  left: 9%;
  color: rgba(122, 143, 107, 0.32);
  transform: rotate(-15deg);
}

/* Ondulation comme dans le logo */
.hero-bg .deco-wave {
  width: 180px;
  height: 30px;
  top: 50%;
  left: 4%;
  color: rgba(201, 169, 97, 0.2);
}

@media (max-width: 820px) {
  .hero-bg .deco-ring-3 { display: none; }
  .hero-bg .deco-ring-4 { display: none; }
  .hero-bg .deco-spiral { display: none; }
  .hero-bg .deco-leaf { display: none; }
  .hero-bg .deco-wave { display: none; }
  .hero-bg .deco-dot-2 { display: none; }
}

/* ============================================================
   Hero split — logo gauche, texte droite (desktop)
   ============================================================ */

.hero-split .hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: var(--max-w);
  text-align: left;
}

.hero-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-split .hero-logo {
  width: 100%;
  max-width: 480px;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(47, 42, 36, 0.18));
  background: transparent;
  margin: 0;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 540px;
}

.hero-text .eyebrow {
  margin: 0 0 0.5rem;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.85rem);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}

.hero-heading em {
  font-style: italic;
  color: var(--sage-deep);
  font-weight: 400;
}

.hero-split .hero-lede {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.7;
  max-width: none;
}

.hero-split .hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

@media (max-width: 820px) {
  .hero-split .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-split .hero-logo {
    max-width: min(420px, 80vw);
  }

  .hero-text {
    max-width: 580px;
    margin: 0 auto;
    align-items: center;
  }

  .hero-split .hero-cta {
    justify-content: center;
  }
}

.hero-inner {
  text-align: center;
  max-width: 820px;
}

.hero-logo {
  width: min(480px, 80vw);
  height: auto;
  margin: 0 auto 2rem;
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(122, 143, 107, 0.18));
}

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

.eyebrow,
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}

.section-eyebrow.light {
  color: var(--gold);
}

.hero-title {
  margin: 0 0 1.5rem;
  font-weight: 300;
}

.hero-title em {
  font-family: var(--font-script);
  font-weight: 600;
  font-style: normal;
  font-size: 1.15em;
  color: var(--sage-deep);
}

.hero-lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: var(--sage-deep);
  color: var(--cream-soft);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--ink);
  color: var(--cream-soft);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream-soft);
}

.btn-full {
  width: 100%;
}

/* ============================================================
   Sections
   ============================================================ */

.section {
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.section-light {
  background: var(--cream-soft);
}

.section-cream {
  background: var(--cream);
}

.section-deep {
  background:
    radial-gradient(ellipse at top, rgba(168, 184, 154, 0.1), transparent 60%),
    linear-gradient(180deg, #2c352a, #1f261e);
  color: var(--cream-soft);
}

.section-deep .section-title,
.section-deep h3 {
  color: var(--cream-soft);
}

.section-deep em {
  color: var(--gold);
}

.section-deep p {
  color: rgba(245, 239, 230, 0.82);
}

.section-title {
  margin: 0 0 1.25rem;
}

.section-title.light {
  color: var(--cream-soft);
}

.section-intro {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  max-width: 720px;
  color: var(--ink-soft);
  margin-bottom: 3rem;
}

.section-intro.light {
  color: rgba(245, 239, 230, 0.85);
}

/* ============================================================
   Pillars (Méthode)
   ============================================================ */

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.pillar {
  background: var(--white);
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pillar-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(168, 184, 154, 0.2), rgba(201, 169, 97, 0.15));
  color: var(--sage-deep);
  margin-bottom: 1.25rem;
}

.pillar-icon svg {
  width: 28px;
  height: 28px;
}

.pillar h3 {
  margin: 0 0 0.5rem;
}

.pillar p {
  color: var(--ink-soft);
  margin: 0;
}

/* Model card */
.model-card {
  background: linear-gradient(135deg, var(--sage-deep), var(--sage));
  color: var(--cream-soft);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.model-card::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 97, 0.3);
  top: -140px;
  right: -140px;
}

.model-card::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(245, 239, 230, 0.15);
  bottom: -100px;
  left: -100px;
}

.model-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.model-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin: 0 0 1.5rem;
  color: var(--cream-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.model-title .dot {
  color: var(--gold);
}

.model-card p {
  color: rgba(245, 239, 230, 0.9);
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ============================================================
   Section Léa
   ============================================================ */

.lea-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

@media (max-width: 820px) {
  .lea-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.lea-ornament {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  color: var(--sage);
  max-width: 360px;
  margin: 0 auto;
  width: 100%;
}

.lea-ornament svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  animation: ornament-rotate 60s linear infinite;
}

@keyframes ornament-rotate {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .lea-ornament svg { animation: none; }
}

.lea-signature {
  position: relative;
  font-family: var(--font-script);
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--sage-deep);
  margin: 0;
  z-index: 1;
  text-shadow: 0 2px 12px rgba(245, 239, 230, 0.8);
}

.lea-content .section-title {
  margin-top: 0;
}

.credentials {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.credentials li {
  padding: 0.5rem 0;
  color: var(--ink-soft);
  position: relative;
  padding-left: 1.5rem;
}

.credentials li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.credentials strong {
  color: var(--ink);
  font-weight: 500;
}

/* ============================================================
   Torah / Racines
   ============================================================ */

.torah-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.torah-card {
  padding: 2rem;
  background: rgba(245, 239, 230, 0.04);
  border: 1px solid rgba(201, 169, 97, 0.25);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.torah-card h3 {
  color: var(--gold);
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
}

.torah-card p {
  margin: 0;
}

.torah-card em {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.05em;
}

/* ============================================================
   Problématiques
   ============================================================ */

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.problem-cat {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.problem-cat h3 {
  margin: 0 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
  color: var(--sage-deep);
}

.problem-cat ul li {
  padding: 0.4rem 0;
  color: var(--ink-soft);
  position: relative;
  padding-left: 1.25rem;
}

.problem-cat ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ============================================================
   Steps
   ============================================================ */

.steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
}

.steps li {
  display: grid;
  grid-template-columns: 80px 1fr;
  column-gap: 1.5rem;
  row-gap: 0.5rem;
  align-items: start;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.steps li > .step-num {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.steps li > h3,
.steps li > p {
  grid-column: 2;
}

@media (max-width: 600px) {
  .steps li {
    grid-template-columns: 1fr;
  }

  .steps li > .step-num,
  .steps li > h3,
  .steps li > p {
    grid-column: 1;
    grid-row: auto;
  }
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
}

.steps h3 {
  margin: 0 0 0.5rem;
  color: var(--ink);
}

.step-sub {
  font-size: 0.85rem;
  color: var(--ink-mute);
  font-weight: 400;
  font-style: italic;
}

.steps p {
  margin: 0;
  color: var(--ink-soft);
}

/* ============================================================
   Pricing
   ============================================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pricing-grid.pricing-two {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.price span {
  font-size: 1.5rem;
  vertical-align: super;
  font-family: var(--font-display);
  color: var(--sage-deep);
  margin-left: 0.2em;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.price-card.highlight {
  background: linear-gradient(180deg, var(--cream-soft), var(--white));
  border-color: var(--gold);
  position: relative;
}

.price-card.highlight::before {
  content: "Recommandé";
  position: absolute;
  top: -10px;
  right: 1.5rem;
  background: var(--gold);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 999px;
  font-weight: 500;
}

.price-card h3 {
  margin: 0 0 0.75rem;
}

.price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--sage-deep);
  margin: 0 0 0.25rem;
  font-weight: 400;
}

.price span {
  font-size: 0.9rem;
  color: var(--ink-mute);
  font-family: var(--font-body);
}

.price-desc {
  color: var(--ink-mute);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.price-card > p:last-child {
  color: var(--ink-soft);
  margin: 0;
}

.practice-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 2rem clamp(1.5rem, 4vw, 3rem);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  max-width: 820px;
  margin: 0 auto;
}

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

.practice-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--gold-deep);
  margin: 0 0 0.5rem;
  font-weight: 500;
}

.practice-value {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.4;
}

/* ============================================================
   Testimonials
   ============================================================ */

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  margin: 0;
  padding: 2rem;
  background: rgba(245, 239, 230, 0.05);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.testimonial blockquote {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(245, 239, 230, 0.92);
}

.testimonial figcaption {
  font-size: 0.88rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* ============================================================
   Contact
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

@media (max-width: 820px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.channel:hover {
  transform: translateX(2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--gold);
  color: var(--ink);
}

.channel-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(168, 184, 154, 0.18), rgba(201, 169, 97, 0.18));
  border-radius: 50%;
  color: var(--sage-deep);
}

.channel-icon svg {
  width: 20px;
  height: 20px;
}

.channel-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 0.15rem;
}

.channel-value {
  margin: 0;
  font-weight: 500;
  color: var(--ink);
}

.channel-zone {
  cursor: default;
}

.channel-zone:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
  border-color: var(--line);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
  margin: 0 0 0.25rem;
}

.form-sub {
  color: var(--ink-mute);
  font-size: 0.95rem;
  margin: 0 0 1.5rem;
}

/* Form */
.contact-form {
  background: var(--white);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.field {
  margin-bottom: 1.25rem;
}

.field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.optional {
  color: var(--ink-mute);
  font-weight: 400;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream-soft);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sage);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(122, 143, 107, 0.15);
}

.form-feedback {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  min-height: 1.2em;
}

.form-feedback.success {
  color: var(--sage-deep);
}

.form-feedback.error {
  color: #b04a3a;
}

.form-note {
  margin: 1rem 0 0;
  font-size: 0.82rem;
  color: var(--ink-mute);
  text-align: center;
}

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  background: var(--ink);
  color: rgba(245, 239, 230, 0.7);
  padding: 4rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 820px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-logo {
  width: 72px;
  height: 72px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--cream-soft);
  padding: 6px;
  object-fit: contain;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cream-soft);
  margin: 0;
}

.footer-tagline {
  font-style: italic;
  color: var(--gold);
  margin: 0.25rem 0 0;
  font-size: 0.92rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav a {
  color: rgba(245, 239, 230, 0.7);
  font-size: 0.92rem;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-meta {
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-meta a {
  color: var(--gold);
}

.footer-meta a:hover {
  color: var(--cream-soft);
}

.copyright {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: rgba(245, 239, 230, 0.4);
  letter-spacing: 0.05em;
}

/* ============================================================
   Reveal animations
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

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

  html {
    scroll-behavior: auto;
  }
}

/* ============================================================
   Section problématiques — prose (remplace les listes)
   ============================================================ */

.problem-prose {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.problem-lede {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.problem-prose p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.problem-close {
  font-style: italic;
  color: var(--sage-deep);
  font-size: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: inline-block;
  max-width: 520px;
}

/* ============================================================
   Section citation — "La guérison est un processus"
   ============================================================ */

.section-quote {
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.quote-inner {
  text-align: center;
  max-width: 800px;
}

.quote-ornament {
  width: 80px;
  height: 20px;
  color: var(--gold);
  margin: 0 auto 1.5rem;
  display: block;
}

.quote-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  margin: 0 0 2rem;
}

.big-quote {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--cream-soft);
  margin: 0 0 1.5rem;
  letter-spacing: -0.005em;
}

.big-quote em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.quote-sub {
  font-size: 1.05rem;
  color: rgba(245, 239, 230, 0.7);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   Tarifs — prix de lancement
   ============================================================ */

.launch-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--white);
  padding: 0.3rem 0.8rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  font-weight: 500;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.launch-badge.subtle {
  background: transparent;
  color: var(--gold-deep);
  border: 1px solid rgba(201, 169, 97, 0.5);
}

.price-card.highlight::before {
  display: none; /* on retire l'ancien "Recommandé" car le badge "Tarif de lancement" prend le relais */
}

/* On augmente la spécificité pour battre l'ancienne règle .price span */
.price > .price-old {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink-mute);
  font-weight: 300;
  margin-right: 0.6rem;
  text-decoration: line-through;
  text-decoration-color: rgba(176, 74, 58, 0.75);
  text-decoration-thickness: 2px;
  display: inline-block;
  opacity: 0.65;
}

.price > .price-old > span {
  font-size: 0.85rem;
  vertical-align: super;
  margin-left: 0.1em;
  color: var(--ink-mute);
  font-family: var(--font-display);
  font-weight: 300;
}

.price > .price-new {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  color: var(--sage-deep);
  font-weight: 400;
  display: inline-block;
  line-height: 1;
}

.price > .price-new > span {
  font-size: 0.5em;
  vertical-align: super;
  font-family: var(--font-display);
  color: var(--sage-deep);
  margin-left: 0.15em;
  font-weight: 400;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0.5rem 0 1rem;
}

/* ============================================================
   Modèle — Hébreu sous Corps · Esprit · Âme
   ============================================================ */

.model-hebrew {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: var(--gold);
  margin: -0.5rem 0 1.75rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  opacity: 0.85;
}

.model-hebrew .dot {
  color: rgba(201, 169, 97, 0.6);
  font-style: normal;
}

/* ============================================================
   Tarif unique — carte centrée
   ============================================================ */

.pricing-single {
  max-width: 580px;
  margin: 0 auto 3rem;
}

.pricing-single .price-card {
  text-align: center;
  padding: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.pricing-single .launch-badge {
  align-self: center;
}

.pricing-single .price {
  justify-content: center;
  margin: 0.5rem 0;
}

.pricing-single h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0 0 1rem;
}

.pricing-single .price-desc {
  margin-bottom: 1.5rem;
}

.price-foot {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-style: italic;
  color: var(--sage-deep);
  font-size: 0.95rem;
}

/* Hébreu en grand et fin */
.model-hebrew[lang="he"] {
  font-family: "Cormorant Garamond", "David Libre", "SBL Hebrew", "Times New Roman", serif;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  direction: ltr;
}
