/* =============================================
   REIKI A DISTANCE
   Complement de style.css, uniquement pour reiki-distance.html.
   style.css n'est pas modifie : la page d'accueil reste intacte.
   ============================================= */

/* ---------- HERO ---------- */
/* Deux colonnes : le texte sur le vert de la charte, la photo en pleine lumiere.
   Pas de voile sombre sur la photo, donc aucune zone noire en haut de page. */
#r-hero {
  margin-top: 68px;
  display: grid; grid-template-columns: 1.05fr .95fr;
  min-height: 80vh;
  background: var(--green);
}

.r-hero-text {
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 6rem 4.5rem;
}

/* Halo dore, rappel du logo infini */
.r-hero-glow {
  position: absolute; top: -40%; left: -10%;
  width: 780px; height: 780px;
  background: radial-gradient(circle, rgba(184,146,42,.20) 0%, rgba(184,146,42,0) 62%);
  pointer-events: none;
}

.r-hero-inner { position: relative; z-index: 2; width: 100%; }

/* Photo verticale : recadree pour exclure la zone abimee de hero.png */
.r-hero-photo { position: relative; min-height: 540px; }
.r-hero-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
}

#r-hero h1 {
  display: flex; flex-direction: column; gap: .05em;
  margin-bottom: 2rem;
}
#r-hero h1 em {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: rgba(255,255,255,.82); letter-spacing: .06em; line-height: 1;
}
#r-hero h1 strong {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.4rem, 4.6vw, 4.4rem);
  color: #fff; letter-spacing: .14em; line-height: .95;
  text-transform: uppercase;
}

#r-hero .hero-tagline { margin-bottom: 2.6rem; }

/* Animations d'entree, memes delais que la page d'accueil */
#r-hero h1 em     { animation: fadeUp .9s ease .3s forwards; opacity: 0; }
#r-hero h1 strong { animation: fadeUp .9s ease .45s forwards; opacity: 0; }

.r-hero-note {
  margin-top: 1.6rem;
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
  animation-delay: 1s;
}

/* ---------- BLOCS DE TEXTE ---------- */
.r-narrow { max-width: 720px; }

#r-distance { padding: 6rem 0; background: var(--cream); }
#r-bienfaits { padding: 6rem 0; background: var(--cream); }

#r-distance h2,
#r-bienfaits h2,
#r-pourquoi h2,
#r-participation h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--green); line-height: 1.2; margin-bottom: 2rem;
}
#r-distance p,
#r-bienfaits p,
#r-pourquoi p,
#r-participation p {
  font-size: 1rem; line-height: 1.9; color: var(--soft);
  margin-bottom: 1.4rem;
}

/* ---------- LISTE DES BIENFAITS ---------- */
.r-list { margin: 2.4rem 0 2rem; }
.r-list li {
  position: relative; padding-left: 2rem; margin-bottom: 1.5rem;
  font-size: 1rem; line-height: 1.85; color: var(--soft);
}
.r-list li::before {
  content: '✦';
  position: absolute; left: 0; top: .1rem;
  color: var(--gold); font-size: .9rem;
}
.r-list strong {
  display: block; font-weight: 400;
  font-family: var(--serif); font-size: 1.2rem;
  color: var(--green); margin-bottom: .25rem;
}

.r-legal-inline {
  margin-top: 2.4rem; padding-top: 1.6rem;
  border-top: 1px solid rgba(184,146,42,.22);
  font-size: .85rem !important; font-style: italic;
  color: rgba(122,128,117,.85) !important;
}

/* ---------- POURQUOI CA MARCHE : photo + texte ---------- */
#r-pourquoi {
  display: grid; grid-template-columns: 1fr 1.15fr;
  background: var(--sage);
}
.r-split-photo { position: relative; min-height: 520px; }
.r-split-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.r-split-text {
  padding: 5.5rem 4.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.r-split-text h2 { margin-bottom: 1.8rem; }
.r-split-text p:last-child { margin-bottom: 0; }

/* ---------- PORTRAIT DE CHRISTINE ---------- */
.r-portrait {
  width: 132px; height: 132px; margin: 0 0 2.4rem;
  border-radius: 50%; overflow: hidden;
  border: 2px solid rgba(184,146,42,.45);
  box-shadow: 0 6px 26px rgba(30,74,56,.14);
}
.r-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }

/* ---------- LES 3 ETAPES ---------- */
#deroule { padding: 6rem 0; background: var(--sage); }

.r-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.r-step {
  background: var(--cream);
  border: 1px solid rgba(184,146,42,.18);
  border-radius: 4px;
  padding: 2.6rem 2rem;
}
.r-step-num {
  display: block;
  font-family: var(--serif); font-size: 1.6rem; font-weight: 300;
  color: var(--gold); letter-spacing: .1em; margin-bottom: 1.2rem;
}
.r-step h3 {
  font-family: var(--serif); font-weight: 400; font-size: 1.35rem;
  color: var(--green); margin-bottom: .9rem; line-height: 1.3;
}
.r-step p { font-size: .92rem; line-height: 1.8; color: var(--soft); }

/* ---------- AVIS ---------- */
#r-avis { background: var(--green); padding: 5rem 0; text-align: center; }
#r-avis .stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1.5rem; }
#r-avis blockquote {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(1.2rem, 2.6vw, 1.75rem);
  color: rgba(255,255,255,.9); line-height: 1.7;
  margin: 0 auto 1.5rem;
}
#r-avis cite {
  font-style: normal; font-size: .75rem; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
}

/* ---------- PARTICIPATION ---------- */
#r-participation { padding: 6rem 0; background: var(--cream); }
#r-participation .r-note {
  margin-top: 2.2rem; padding-top: 2rem;
  border-top: 1px solid rgba(184,146,42,.22);
  font-style: italic; color: var(--green);
}

/* ---------- DEMANDE (reprend le bloc contact) ---------- */
#demande {
  position: relative; overflow: hidden;
  padding: 7rem 0; text-align: center;
  background: var(--green);
}
.r-contact-intro {
  max-width: 520px; margin: 0 auto 2.6rem;
  font-size: .95rem; line-height: 1.9; color: rgba(255,255,255,.6);
}
#demande .phone { display: block; margin-top: 3rem; font-size: clamp(1.8rem, 4vw, 3rem); }

/* ---------- MOBILE ---------- */
@media (max-width: 900px) {
  .r-steps { grid-template-columns: 1fr; gap: 1.4rem; }
  #r-pourquoi { grid-template-columns: 1fr; }
  .r-split-photo { min-height: 280px; }
  .r-split-text { padding: 4rem 2rem; }
  /* la photo passe au-dessus du texte */
  #r-hero { grid-template-columns: 1fr; min-height: 0; }
  .r-hero-photo { order: -1; min-height: 0; height: 330px; }
  .r-hero-text { padding: 3.5rem 2rem 4rem; }
}

@media (max-width: 720px) {
  /* le nav repasse en position relative dans style.css */
  #r-hero { margin-top: 0; }
  #r-distance, #deroule, #r-participation, #r-bienfaits { padding: 4rem 0; }
  #demande { padding: 5rem 0; }
  #r-avis { padding: 4rem 0; }
  .r-portrait { width: 108px; height: 108px; margin-bottom: 2rem; }
  .r-list li { padding-left: 1.7rem; }
}
