:root {
  --ink: #241a1c;
  --ink-soft: #5d4f52;
  --bg: #ffffff;
  --bg-alt: #faf5f3;
  --bg-deep: #2a1115;
  --brand: #c60c30;
  --brand-dark: #9e0a26;
  --brand-soft: #fde9ed;
  --accent: #ffc400;
  --accent-soft: #fff6d6;
  --accent-ink: #6b5200;
  --line: #ece2e2;
  --ok: #1f9d6b;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 1px 2px rgba(16,42,71,.06), 0 8px 28px rgba(16,42,71,.08);
  --shadow-lg: 0 18px 50px rgba(16,42,71,.16);
  --wrap: 1180px;
  --narrow: 760px;
  --font: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font); color: var(--ink);
  background: var(--bg); line-height: 1.65; font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-dark); text-decoration-color: rgba(198,12,48,.30); text-underline-offset: 2px; }
a:hover { color: var(--brand); }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; color: var(--ink); letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin: 0 0 .4em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin: 0 0 .5em; }
h3 { font-size: 1.25rem; margin: 0 0 .4em; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.wrap-narrow { max-width: var(--narrow); margin: 0 auto; padding: 0 22px; }
.section { padding: clamp(48px, 7vw, 90px) 0; }
.section--alt { background: var(--bg-alt); }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; font-weight: 700; color: var(--brand); margin: 0 0 .8em; }
.lead { font-size: 1.18rem; color: var(--ink-soft); }
.visually-hidden, .skip-link { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.skip-link:focus { position: static; width: auto; height: auto; clip: auto; background: var(--ink); color:#fff; padding:.5em 1em; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .5em; cursor: pointer;
  font-weight: 600; font-size: .98rem; line-height: 1; text-decoration: none;
  padding: .85em 1.5em; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
}
.btn-lg { padding: 1.05em 1.9em; font-size: 1.05rem; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 6px 18px rgba(198,12,48,.30); }
.btn-primary:hover { background: var(--brand-dark); color:#fff; transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { background: rgba(255,255,255,.24); color:#fff; }
.btn-outline { background: transparent; color: var(--brand-dark); border-color: var(--brand); }
.btn-outline:hover { background: var(--brand-soft); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 68px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand-logo { height: 44px; width: auto; display: block; }
.brand-text strong { color: var(--brand); font-weight: 700; }
.site-nav ul { list-style: none; display: flex; gap: .35em; margin: 0; padding: 0; align-items: center; }
.site-nav a { display: inline-block; padding: .5em .8em; border-radius: 8px; font-weight: 500; font-size: .96rem; color: var(--ink-soft); text-decoration: none; }
.site-nav a:hover, .site-nav a.is-active { color: var(--ink); background: var(--bg-alt); }
.site-nav a.nav-cta { background: var(--accent); color: var(--accent-ink); font-weight: 700; box-shadow: 0 4px 12px rgba(255,196,0,.35); }
.site-nav a.nav-cta:hover { background: #f2bd00; color: var(--accent-ink); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero { position: relative; background: linear-gradient(160deg, #7a0a1d 0%, #c60c30 60%, #e0123b 130%); color: #fff; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: center; padding: clamp(56px, 8vw, 110px) 22px; }
.hero h1 { color: #fff; }
.hero h1 em { color: #ffc400; font-style: normal; }
.hero .eyebrow { color: #ffd98a; }
.hero .lead { color: #ffe1e6; max-width: 36ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 1.8em 0 1.4em; }
.hero-trust { font-size: .95rem; color: #f6cdd4; }
.hero-trust strong { color: #fff; }
.hero-aside { position: relative; min-height: 220px; display: flex; align-items: center; justify-content: center; }
.hero-logo { width: 280px; height: 280px; border-radius: 50%; background: #fff; padding: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,.22), 0 0 0 14px rgba(255,255,255,.08); }

/* Benefits */
.benefits { margin-top: -36px; position: relative; z-index: 5; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.benefit { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow); }
.benefit-icon { font-size: 2rem; margin-bottom: .4em; }
.benefit p { color: var(--ink-soft); margin: 0; }

/* Split */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.split-text p { color: var(--ink-soft); }
.split-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.split-list li { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px; font-weight: 500; display: flex; align-items: center; gap: 14px; box-shadow: var(--shadow); }
.split-list span { font-family: var(--serif); color: var(--brand); font-weight: 600; font-size: 1.1rem; min-width: 1.8em; }

/* Section heads */
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 1.6em; flex-wrap: wrap; }
.section-head h2 { margin: 0; }
.section-more { font-weight: 600; white-space: nowrap; }
.page-head { padding: clamp(40px, 6vw, 72px) 0 1.2em; }
.page-head--center { text-align: center; max-width: 720px; margin: 0 auto; }

/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .15s ease, box-shadow .2s ease; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card-media img { aspect-ratio: 16/7; object-fit: cover; width: 100%; }
.card-body { padding: 22px; }
.card-body h2, .card-body h3 { font-size: 1.18rem; margin: 0 0 .4em; }
.card-body h2 a, .card-body h3 a { color: var(--ink); text-decoration: none; }
.card-body h2 a:hover, .card-body h3 a:hover { color: var(--brand); }
.card-body p { color: var(--ink-soft); font-size: .98rem; }
.card-link { font-weight: 600; font-size: .94rem; }
.testimonio-card { position: relative; }
.quote-mark { font-family: var(--serif); font-size: 3.4rem; line-height: .6; color: var(--brand); opacity: .28; display: block; height: .5em; }
.testimonio-qualite { font-style: italic; color: var(--brand-dark); font-size: .92rem; margin: 0 0 .6em; }
.testimonio-qualite--lg { font-size: 1.1rem; margin: .2em 0 0; }

/* Pro CTA */
.pro-cta-inner { background: linear-gradient(155deg, #7a0a1d, #c60c30); color: #fff; border-radius: 24px; padding: clamp(34px, 5vw, 60px); box-shadow: var(--shadow-lg); }
.pro-cta-head { max-width: 620px; }
.pro-cta-head h2, .pro-cta .eyebrow { color: #fff; }
.pro-cta .eyebrow { color: #ffd98a; }
.pro-cta-head .lead { color: #ffe1e6; }
.pro-cta-head .lead strong { color: #ffc400; }
.pro-benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin: 2.2em 0; }
.pro-benefit h4 { color: #fff; font-family: var(--font); font-weight: 700; font-size: 1rem; margin: 0 0 .3em; }
.pro-benefit p { color: #f3d2d8; font-size: .92rem; margin: 0; }
.pro-cta-foot { text-align: center; }

/* Directory */
.directory-teaser .prov-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; }
.prov-chips a { display: inline-block; padding: .55em 1.1em; background: #fff; border: 1px solid var(--line); border-radius: 999px; font-weight: 500; font-size: .95rem; text-decoration: none; color: var(--ink); box-shadow: var(--shadow); }
.prov-chips a:hover { border-color: var(--brand); color: var(--brand); }

.dir-controls { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 26px; }
.dir-search { flex: 1 1 320px; }
.dir-search input, .dir-filter select { width: 100%; padding: .8em 1em; border: 1.5px solid var(--line); border-radius: var(--radius-sm); font: inherit; background: #fff; color: var(--ink); }
.dir-search input:focus, .dir-filter select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft); }
.dir-filter select { min-width: 220px; }
.dir-count { margin: 0; color: var(--ink-soft); font-size: .92rem; font-weight: 600; }
.dir-notice { background: var(--brand-soft); border-radius: var(--radius-sm); padding: 12px 16px; font-size: .88rem; color: var(--ink-soft); margin: 0 0 22px; }
.dir-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.dir-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.dir-card[hidden] { display: none; }
.dir-card-head { display: flex; justify-content: space-between; align-items: start; gap: 10px; }
.dir-card-head h2 { font-size: 1.12rem; margin: 0; }
.dir-prov { flex: none; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--brand); background: var(--brand-soft); padding: .35em .7em; border-radius: 999px; }
.dir-therapist { margin: .5em 0 0; font-weight: 600; color: var(--ink); }
.dir-cert { margin: .5em 0 .8em; font-size: .82rem; color: var(--ok); }
.dir-meta { list-style: none; margin: auto 0 0; padding: .8em 0 0; border-top: 1px solid var(--line); display: grid; gap: 6px; font-size: .9rem; color: var(--ink-soft); }
.dir-meta a { word-break: break-word; }
.dir-empty { text-align: center; color: var(--ink-soft); padding: 40px; }
.dir-join { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin: 50px 0 10px; padding: 30px; background: var(--accent-soft); border: 1px solid #f3ddc4; border-radius: var(--radius); }
.dir-join h2 { margin: 0 0 .2em; font-size: 1.4rem; }
.dir-join p { margin: 0; color: var(--ink-soft); }

/* Prose */
.prose { font-size: 1.06rem; }
.prose--center { text-align: center; color: var(--ink-soft); }
.prose p { margin: 0 0 1.1em; }
.prose img { border-radius: var(--radius); margin: 1.4em 0; }
.figure-right { float: right; width: 216px; max-width: 42%; margin: .3em 0 1.2em 1.8em; }
.figure-right img { margin: 0; border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: auto; }
.figure-right figcaption { font-size: .82rem; color: var(--ink-soft); margin-top: .6em; line-height: 1.4; font-style: italic; }
@media (max-width: 600px) { .figure-right { float: none; width: 100%; max-width: 280px; margin: 0 auto 1.4em; } }
.prose h2 { margin-top: 1.6em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose blockquote { margin: 1.4em 0; padding: .6em 1.4em; border-left: 4px solid var(--brand); background: var(--bg-alt); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: var(--ink); font-style: italic; }
.prose .media-embed video { width: 100%; border-radius: var(--radius); }
.prose .media-caption { font-size: .9rem; color: var(--ink-soft); text-align: center; }
.callout { margin: 1.6em 0; padding: 18px 22px; background: var(--accent-soft); border: 1px solid #f3ddc4; border-left: 4px solid var(--accent); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: .98rem; }
.callout p { margin: 0; }
.cta-inline { margin: 2.5em 0 0; padding: 26px 30px; background: var(--brand-soft); border-radius: var(--radius); text-align: center; }
.cta-inline p { margin: 0 0 1em; }

/* Forms */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .94rem; margin-bottom: .4em; }
.field .req { color: var(--brand); }
.field input, .field select, .field textarea { width: 100%; padding: .8em 1em; border: 1.5px solid var(--line); border-radius: var(--radius-sm); font: inherit; background: #fff; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field-hint { font-size: .85rem; color: var(--ink-soft); margin: .3em 0 0; }
.field-check { display: flex; gap: 10px; align-items: start; font-size: .92rem; }
.field-check input { width: auto; margin-top: .25em; }
.note-public { background: var(--brand-soft); border-radius: var(--radius-sm); padding: 14px 16px; font-size: .9rem; margin-bottom: 22px; }
.form-error { background: #fde8e8; border: 1px solid #f5c2c2; color: #9b1c1c; border-radius: var(--radius-sm); padding: 14px 16px; font-size: .95rem; margin-bottom: 20px; }
.field-hint-inline { font-weight: 400; font-size: .82rem; color: var(--ink-soft); }
.form-card h2 { font-size: 1.3rem; margin: 1.6em 0 .2em; padding-top: 1.2em; border-top: 1px solid var(--line); }
.form-card h2:first-of-type { border-top: 0; padding-top: 0; margin-top: .4em; }
.check-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 8px; }
.check-grid--compact { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
.check-pill { display: flex; align-items: center; gap: 8px; padding: .55em .8em; border: 1.5px solid var(--line); border-radius: 999px; cursor: pointer; font-size: .9rem; transition: border-color .15s, background .15s; }
.check-pill:hover { border-color: var(--brand); }
.check-pill input { width: auto; margin: 0; accent-color: var(--brand); }
.check-pill:has(input:checked) { background: var(--brand-soft); border-color: var(--brand); font-weight: 600; }

/* Footer */
.site-footer { background: var(--bg-deep); color: #c2d2e3; margin-top: 60px; padding-top: 56px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.footer-col h3 { color: #fff; font-family: var(--font); font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 1em; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-col a { color: #c2d2e3; text-decoration: none; font-size: .95rem; }
.footer-col a:hover { color: #fff; }
.footer-brand .brand-text { color: #fff; font-weight: 700; font-size: 1.15rem; }
.footer-brand p { font-size: .92rem; color: #9fb3c8; margin: .8em 0 0; }
.footer-aff strong { color: #ffc400; }
.footer-legal { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; border-top: 1px solid rgba(255,255,255,.12); margin-top: 44px; padding-top: 22px; font-size: .85rem; color: #8ba3bc; }
.footer-legal a { color: #8ba3bc; }
.disclaimer { font-size: .8rem; color: #6f879f; padding-bottom: 30px; padding-top: 6px; }

/* Responsive */
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-aside { display: none; }
  .split { grid-template-columns: 1fr; gap: 28px; }
  .benefit-grid, .card-grid, .dir-grid { grid-template-columns: repeat(2, 1fr); }
  .pro-benefits { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-toggle { display: flex; }
  .site-nav { position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg); display: none; }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 10px; }
  .site-nav a { padding: .9em 1em; border-radius: 8px; }
  .site-nav a.nav-cta { text-align: center; margin-top: 6px; }
  .benefit-grid, .card-grid, .dir-grid, .pro-benefits, .footer-grid, .field-row { grid-template-columns: 1fr; }
  .dir-join { flex-direction: column; align-items: stretch; text-align: center; }
}
