/* ============================================================
   Feuille de style des pages de soins (drainage, rééducation,
   tarifs…). Ces pages sont en HTML statique pur (pas de moteur
   « dc » ni de JS) pour être lues instantanément par Google.
   Même palette et mêmes polices que l'accueil (index.html).
   ============================================================ */

:root {
  --bg-beige: #f5eedd;
  --bg-beige-rgb: 245, 238, 221;
  --bg-white: #ffffff;
  --primary: #2c5551;
  --primary-rgb: 44, 85, 81;
  --primary-accent: #486d69;
  --primary-tint: rgba(44, 85, 81, 0.12);
  --text: #000000;
  --text-muted: #5a5a5a;
  --border: rgba(0, 0, 0, 0.1);
  --header-h: 75px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}
body {
  margin: 0;
  font-family: "Mulish", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: var(--primary);
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--primary-accent);
  outline-offset: 3px;
  border-radius: 6px;
}
h1,
h2,
h3 {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
  line-height: 1.12;
  color: var(--primary);
  margin: 0;
  text-wrap: balance;
}
h1 {
  font-size: clamp(34px, 5.2vw, 56px);
  letter-spacing: -0.4px;
}
h2 {
  font-size: clamp(27px, 3.6vw, 38px);
  margin-bottom: 20px;
}
h3 {
  font-size: clamp(21px, 2.4vw, 25px);
  font-weight: 600;
  margin-bottom: 10px;
}
p {
  margin: 0 0 18px;
}
p:last-child {
  margin-bottom: 0;
}
ul {
  margin: 0 0 18px;
  padding-left: 1.2em;
}
li {
  margin-bottom: 8px;
}
strong {
  font-weight: 700;
}
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding-inline: clamp(20px, 5vw, 48px);
}
.prose {
  max-width: 68ch;
}
.eyebrow {
  display: block;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 20px;
}
.muted {
  color: var(--text-muted);
}

/* ---- Boutons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.btn-primary {
  background: var(--primary);
  color: var(--bg-beige);
  box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.45);
}
.btn-primary:hover {
  background: var(--primary-accent);
  transform: translateY(-2px);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(0, 0, 0, 0.2);
  color: var(--text);
}
.btn-secondary:hover {
  background: var(--bg-white);
  border-color: var(--primary);
  transform: translateY(-2px);
}
.btn-secondary:active {
  transform: translateY(0);
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 14px;
  flex-wrap: wrap;
}
.site-header .logo img {
  height: 46px;
  width: auto;
  display: block;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
  flex-wrap: wrap;
}
.site-nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 600;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.site-nav a:hover {
  color: var(--primary);
}
.site-nav .btn {
  min-height: 44px;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--bg-beige);
}
@media (max-width: 640px) {
  .site-nav > a:not(.btn) {
    display: none;
  }
}

/* ---- Fil d'Ariane ---- */
.breadcrumb {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.breadcrumb li {
  margin: 0;
}
.breadcrumb li + li::before {
  content: "›";
  margin-right: 6px;
}
.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* ---- Sections ---- */
.hero {
  background: var(--bg-beige);
  padding-block: clamp(48px, 7vw, 88px);
}
.hero .lede {
  font-size: clamp(17px, 1.9vw, 20px);
  color: var(--text-muted);
  margin: 24px 0 32px;
  max-width: 60ch;
}
.hero .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.section {
  padding-block: clamp(56px, 8vw, 96px);
}
.section-beige {
  background: var(--bg-beige);
}
.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.photo {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 64px -30px rgba(0, 0, 0, 0.5);
  aspect-ratio: 3 / 4;
  max-width: 420px;
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 100%;
  display: block;
}

/* ---- Cartes ---- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 24px 50px -32px rgba(0, 0, 0, 0.35);
}
.section-beige .card {
  box-shadow: none;
}
.card h3 {
  margin-bottom: 8px;
}
.card p,
.card ul {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 0;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}
.tags li {
  margin: 0;
  background: var(--primary-tint);
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
}

/* ---- Étapes ---- */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
  counter-reset: step;
}
.steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  margin: 0;
  align-items: start;
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg-beige);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}
.steps h3 {
  font-size: 20px;
  margin-bottom: 4px;
}
.steps p {
  color: var(--text-muted);
  font-size: 16px;
  margin: 0;
}

/* ---- Tarifs ---- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  font-size: 16px;
}
.price-table th,
.price-table td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.price-table tr:last-child td {
  border-bottom: 0;
}
.price-table th {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  background: rgba(var(--primary-rgb), 0.06);
}
.price-table .price {
  font-family: "Newsreader", Georgia, serif;
  font-size: 22px;
  color: var(--primary);
  font-weight: 600;
  white-space: nowrap;
}
.price-table .duration {
  color: var(--text-muted);
  white-space: nowrap;
}
.table-wrap {
  overflow-x: auto;
  border-radius: 20px;
}
@media (max-width: 560px) {
  .price-table th:nth-child(2),
  .price-table td:nth-child(2) {
    display: none;
  }
}

/* ---- Encadré ---- */
.note {
  background: var(--primary-tint);
  border-left: 4px solid var(--primary);
  border-radius: 0 16px 16px 0;
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 16px;
}
.note p {
  margin: 0;
}

/* ---- FAQ ---- */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
}
.faq-item {
  background: var(--bg-beige);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  overflow: hidden;
}
.section-beige .faq-item {
  background: var(--bg-white);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: clamp(16px, 1.9vw, 18px);
  font-weight: 700;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-size: 26px;
  line-height: 1;
  font-weight: 400;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover {
  color: var(--primary);
}
.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ---- Autres soins ---- */
.related {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.related a {
  display: block;
  padding: 18px 22px;
  border-radius: 16px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--primary);
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.related a span {
  display: block;
  font-weight: 400;
  font-size: 14.5px;
  color: var(--text-muted);
  margin-top: 4px;
}
.related a:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* ---- Bandeau CTA ---- */
.cta {
  background: var(--primary);
  color: var(--bg-beige);
  text-align: center;
  padding-block: clamp(48px, 7vw, 80px);
}
.cta h2 {
  color: var(--bg-beige);
  margin-bottom: 12px;
}
.cta p {
  color: rgba(var(--bg-beige-rgb), 0.85);
  max-width: 34em;
  margin: 0 auto 28px;
}
.cta .actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.cta .btn-primary {
  background: var(--bg-beige);
  color: var(--primary);
}
.cta .btn-primary:hover {
  background: var(--bg-white);
}
.cta .btn-secondary {
  background: transparent;
  border-color: rgba(var(--bg-beige-rgb), 0.5);
  color: var(--bg-beige);
}
.cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--bg-beige);
}

/* ---- Footer ---- */
.site-footer {
  background: var(--primary);
  color: var(--bg-beige);
  font-size: 14.5px;
}
.site-footer .wrap {
  padding-block: clamp(48px, 6vw, 72px) 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}
.site-footer h2 {
  font-family: "Mulish", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(var(--bg-beige-rgb), 0.8);
  font-weight: 700;
  margin-bottom: 16px;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer li {
  margin: 0;
}
.site-footer a {
  color: var(--bg-beige);
  text-decoration: none;
}
.site-footer a:hover {
  text-decoration: underline;
}
.site-footer .bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer .bottom .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  padding-block: 18px;
  font-size: 12.5px;
  color: rgba(var(--bg-beige-rgb), 0.8);
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
