/* page-massage-therapeutique */

:root {
  --container:    1180px;
  --container-sm: 920px;
  --radius:       4px;
  --radius-lg:    12px;
  --transition:   0.25s ease;
  --font-display: var(--font-heading);
}

.container-sm { max-width: var(--container-sm); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-primary);
  margin-bottom: 1.2rem;
  display: inline-block;
}

/* ===========================================
   BREADCRUMB
   =========================================== */
.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--color-muted); }
.breadcrumb a:hover { color: var(--color-primary); }
.breadcrumb span { color: var(--color-border); }

/* ===========================================
   THERAPY HERO
   =========================================== */
.therapy-hero {
  padding: 60px 0 80px;
  background: var(--color-background);
  border-bottom: 1px solid var(--color-border);
}
.therapy-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.therapy-hero-content { max-width: 540px; }
.therapy-hero h1 { margin-bottom: 1.2rem; }
.therapy-hero h1 em { font-style: italic; font-weight: 400; color: var(--color-primary); }
.therapy-hero-lead {
  font-size: 1.15rem;
  color: var(--color-muted);
  margin-bottom: 32px;
  line-height: 1.65;
}
.therapy-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  padding: 24px 0;
  margin-bottom: 32px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
  color: var(--color-muted);
}
.therapy-hero-meta strong {
  display: block;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 2px;
}
.therapy-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.therapy-hero-visual {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  box-shadow: 0 30px 60px -20px rgba(44, 74, 62, 0.25);
}
.therapy-hero-visual img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .therapy-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .therapy-hero-visual { aspect-ratio: 4 / 3; order: -1; }
  .therapy-hero { padding: 32px 0 56px; }
}

/* ===========================================
   CONTENT SECTIONS
   =========================================== */
.content-section { padding: 80px 0; }
.content-section.alt { background: var(--color-surface); }
.content-inner { max-width: 780px; margin: 0 auto; }
.content-inner.wide { max-width: 1080px; }
.content-inner h2 { margin-bottom: 1.5rem; }
.content-inner h2 em { font-style: italic; color: var(--color-primary); }
.content-inner p { font-size: 1.05rem; line-height: 1.75; }
.content-inner p:not(:last-child) { margin-bottom: 1.2rem; }
.content-inner strong { color: var(--color-primary); font-weight: 500; }

@media (max-width: 900px) {
  .content-section { padding: 56px 0; }
}

/* Bienfaits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.benefit {
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
}
.content-section.alt .benefit { background: #fff; }
.benefit:hover { border-color: var(--color-primary); transform: translateY(-2px); }
.benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--color-primary) 18%, transparent);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.benefit h3 {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 8px;
  font-family: var(--font-body);
  letter-spacing: 0;
}
.benefit p { font-size: 0.92rem; color: var(--color-muted); line-height: 1.6; margin: 0; }

/* Indications */
.indications-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}
.indications-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: var(--color-background);
  border-left: 3px solid var(--color-primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.95rem;
  line-height: 1.5;
}
.content-section.alt .indications-list li { background: #fff; }
.indications-list svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--color-primary); margin-top: 2px; }

/* Déroulé */
.steps-list { margin-top: 40px; }
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-primary);
  font-weight: 400;
  line-height: 1;
  font-style: italic;
}
.step h3 { margin-bottom: 8px; font-size: 1.2rem; }
.step p { margin: 0; color: var(--color-muted); font-size: 0.98rem; line-height: 1.65; }

@media (max-width: 700px) {
  .step { grid-template-columns: 60px 1fr; gap: 16px; }
  .step-num { font-size: 2rem; }
}

/* Précautions */
.precautions-box {
  margin-top: 32px;
  padding: 28px 32px;
  background: color-mix(in srgb, var(--color-accent) 8%, var(--color-background));
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.precautions-box h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.precautions-box h3 svg { color: var(--color-accent); }
.precautions-box p { margin: 0; font-size: 0.95rem; color: var(--color-text); line-height: 1.65; }

/* ===========================================
   TÉMOIGNAGE
   =========================================== */
.single-testimonial {
  padding: 80px 0;
  background: var(--color-primary);
  color: var(--color-background);
  text-align: center;
}
.single-testimonial-inner { max-width: 720px; margin: 0 auto; }
.single-testimonial-stars {
  display: inline-flex;
  gap: 4px;
  color: var(--color-accent);
  margin-bottom: 24px;
}
.single-testimonial-stars svg { width: 20px; height: 20px; }
.single-testimonial blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  margin: 0 0 32px;
  color: var(--color-background);
}
.single-testimonial cite {
  font-style: normal;
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--color-background) 70%, transparent);
}

/* ===========================================
   FAQ
   =========================================== */
.faq-list { margin-top: 40px; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item details { padding: 20px 0; }
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-primary);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-primary);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item details[open] summary::after { transform: rotate(45deg); }
.faq-item details p { margin-top: 16px; color: var(--color-text); line-height: 1.7; font-size: 0.98rem; }

/* ===========================================
   CTA BAND
   =========================================== */
.cta-band {
  padding: 80px 0;
  background: var(--color-accent);
  color: #fff;
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band h2 em { color: var(--color-background); font-style: italic; }
.cta-band p {
  max-width: 540px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
}
.cta-band-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-primary { background: var(--color-background); color: var(--color-primary); }
.cta-band .btn-primary:hover { background: var(--color-primary); color: var(--color-background); }
.cta-band .btn-secondary { border-color: rgba(255,255,255,0.4); color: #fff; }
.cta-band .btn-secondary:hover { background: #fff; color: var(--color-primary); border-color: #fff; }

/* ===========================================
   THÉRAPIES LIÉES
   =========================================== */
.related { padding: 100px 0; }
.related-head { text-align: center; margin-bottom: 48px; }
.related-head h2 em { font-style: italic; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.related-card {
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.related-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -10px rgba(44, 74, 62, 0.12);
}
.related-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.related-card p { font-size: 0.9rem; color: var(--color-muted); margin: 0 0 16px; line-height: 1.55; flex-grow: 1; }
.related-card-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.related-card:hover .related-card-link { color: var(--color-accent); }
