/* SwissHealth by Dr Mokhtari — feuille de style du site
   Jetons repris du design system SwissCare & SwissHealth. */
:root{
  --teal-500:#2e7d7a; --teal-600:#266866; --teal-50:#eef6f5;
  --terra-50:#fbeeec; --terra-100:#f5d6d1; --terra-500:#b33a2a; --terra-600:#9a3023; --terra-700:#7d271c; --terra-800:#631f17;
  --ink:#181818; --gray-800:#333; --gray-700:#4d4d4d; --gray-600:#666; --gray-500:#888; --gray-400:#a8a8a8; --gray-300:#ccc; --gray-200:#e2e2e2;
  --white:#fff; --paper:#faf8f4; --success-500:#2e7d5b; --success-50:#e8f3ee;
  --border:#e2e2e2; --border-strong:#ccc; --border-width:1.5px;
  --shadow-sm:0 2px 6px rgba(24,24,24,.08); --shadow-md:0 6px 18px rgba(24,24,24,.10); --shadow-lg:0 16px 40px rgba(24,24,24,.14);
  --radius-md:14px; --radius-lg:20px; --radius-xl:28px; --radius-pill:999px;
  --font-display:'Poppins',system-ui,-apple-system,'Segoe UI',sans-serif;
  --font-sans:'Mulish',system-ui,-apple-system,'Segoe UI',sans-serif;
  --font-mono:'IBM Plex Mono',ui-monospace,SFMono-Regular,monospace;
  --ease-out:cubic-bezier(.22,1,.36,1);
}
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{margin:0;background:var(--white);font-family:var(--font-sans);font-size:16px;color:var(--gray-800);-webkit-font-smoothing:antialiased}
img{display:block;max-width:100%;height:auto}
h1,h2,h3,h4{font-family:var(--font-display);color:var(--ink);margin:0;line-height:1.1;letter-spacing:-.02em;text-wrap:balance}
p{margin:0;line-height:1.65;text-wrap:pretty}
a{color:var(--terra-600)}
a:hover{color:var(--terra-700)}
ul{margin:0;padding-left:1.25em;line-height:1.65}
li+li{margin-top:.4em}
:focus-visible{outline:3px solid var(--terra-500);outline-offset:2px}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}*{transition:none!important}}

.wrap{max-width:1200px;margin:0 auto;padding:0 24px}
.wrap--md{max-width:960px;margin:0 auto;padding:0 24px}
.skip{position:absolute;left:-9999px}
.skip:focus{left:24px;top:12px;z-index:200;background:var(--ink);color:#fff;padding:10px 16px;border-radius:8px;text-decoration:none}

/* En-tête */
.site-header{position:sticky;top:0;z-index:100;background:rgba(255,255,255,.94);backdrop-filter:blur(10px);border-bottom:var(--border-width) solid var(--border)}
.site-header__inner{max-width:1200px;margin:0 auto;padding:0 24px;min-height:110px;display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap}
.site-header__logo{display:block;flex:none;padding:12px 0}
.site-header__logo img{height:78px;width:auto}
.site-nav{display:flex;gap:28px;align-items:center;flex:1;justify-content:flex-end;flex-wrap:wrap}
.site-nav a{font-weight:700;font-size:14px;color:var(--gray-800);text-decoration:none}
.site-nav a:hover,.site-nav a[aria-current="page"]{color:var(--terra-600)}
.site-header__aside{display:flex;align-items:center;gap:12px;flex:none;flex-wrap:wrap}
.langsw{display:flex;border:var(--border-width) solid var(--border-strong);border-radius:var(--radius-pill);overflow:hidden;background:var(--white)}
.langsw a{font-weight:700;font-size:12px;letter-spacing:.06em;padding:9px 14px;line-height:1;color:var(--ink);text-decoration:none;transition:background 200ms var(--ease-out)}
.langsw a:hover{background:var(--terra-50);color:var(--ink)}
.langsw a[aria-current="true"]{background:var(--terra-500);color:#fff}
@media (max-width:860px){
  .site-header__inner{min-height:0;padding:12px 20px;gap:12px}
  .site-header__logo img{height:58px}
  .site-nav{order:3;flex-basis:100%;justify-content:flex-start;gap:18px}
}

/* Type */
.eyebrow{font-weight:700;font-size:12px;letter-spacing:.16em;text-transform:uppercase;color:var(--gray-600)}
.h-hero{font-weight:800;font-size:clamp(2.15rem,5vw,3.75rem);line-height:1.05;letter-spacing:-.025em;margin:16px 0}
.h-page{font-weight:800;font-size:clamp(1.9rem,4.2vw,2.9rem);line-height:1.08;letter-spacing:-.025em;margin:16px 0}
.h-sec{font-weight:700;font-size:clamp(1.6rem,3.2vw,2.15rem);letter-spacing:-.02em}
.h-card{font-weight:700;font-size:1.375rem}
.lead{font-size:1.125rem;line-height:1.65;color:var(--gray-800);max-width:52ch}
.body{font-size:1rem;line-height:1.65;color:var(--gray-800);max-width:68ch}
.small{font-size:.875rem;line-height:1.5;color:var(--gray-600)}
.mono{font-family:var(--font-mono)}

/* Sections */
.section{padding:72px 0}
.section--paper{background:var(--paper);border-top:var(--border-width) solid var(--border);border-bottom:var(--border-width) solid var(--border)}
.section--tight{padding:56px 0}
[id]{scroll-margin-top:130px}
.grid{display:grid;gap:24px}
.grid--3{grid-template-columns:repeat(auto-fit,minmax(min(280px,100%),1fr))}
.grid--2{grid-template-columns:repeat(auto-fit,minmax(min(400px,100%),1fr))}
.grid--team{grid-template-columns:repeat(auto-fit,minmax(min(440px,100%),1fr))}
.stack{display:flex;flex-direction:column;gap:16px}

/* Boutons */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;font-family:var(--font-sans);font-weight:700;font-size:15px;line-height:1;
  min-height:46px;padding:0 22px;border-radius:var(--radius-pill);border:var(--border-width) solid transparent;text-decoration:none;cursor:pointer;
  transition:background 200ms var(--ease-out),color 200ms var(--ease-out),border-color 200ms var(--ease-out)}
.btn--sm{min-height:38px;padding:0 16px;font-size:13.5px}
.btn--lg{min-height:54px;padding:0 28px;font-size:16px}
.btn--solid{background:var(--terra-500);color:#fff}
.btn--solid:hover{background:var(--terra-600);color:#fff}
.btn--outline{background:var(--white);color:var(--ink);border-color:var(--ink)}
.btn--outline:hover{background:var(--terra-50);color:var(--ink)}
.btn--ghost{background:transparent;color:var(--terra-600)}
.btn--ghost:hover{background:var(--terra-50);color:var(--terra-700)}
.btn-row{display:flex;gap:12px;flex-wrap:wrap}

/* Cartes */
.card{background:var(--white);border:var(--border-width) solid var(--border);box-shadow:var(--shadow-sm);border-radius:var(--radius-lg);padding:32px}
.card--flat{box-shadow:none}
.card__num{font-family:var(--font-display);font-weight:800;font-size:1.375rem;letter-spacing:.02em;margin-bottom:16px}
.pills{display:flex;gap:12px;flex-wrap:wrap;list-style:none;padding:0}
.pill{font-size:14px;font-weight:700;border:var(--border-width) solid var(--border-strong);border-radius:var(--radius-pill);padding:9px 16px;color:var(--ink);text-decoration:none;background:var(--white)}
.pill:hover{background:var(--terra-50);color:var(--ink)}

/* Équipe */
.person{display:flex;gap:24px;flex-wrap:wrap;align-items:flex-start}
.person__body{flex:1;min-width:240px;display:flex;flex-direction:column;gap:12px}
.person__role{font-size:14px;font-weight:700;margin-top:2px}
.person__role--md{color:var(--terra-600)}
.person__role--para{color:var(--teal-600)}
.avatar{flex:none;width:160px;height:200px;border-radius:var(--radius-md);background:var(--terra-50);color:var(--terra-500);
  display:flex;align-items:center;justify-content:center;font-family:var(--font-display);font-weight:800;font-size:2.25rem;letter-spacing:.02em}
.avatar--teal{background:var(--teal-50);color:var(--teal-600)}
.avatar--lg{width:200px;height:240px;font-size:2.75rem}
.avatar img{width:100%;height:100%;object-fit:cover;border-radius:var(--radius-md)}

/* Contact */
.infoline{display:flex;gap:12px;align-items:flex-start}
.infoline svg{flex:none;margin-top:3px}
.infoline__label{font-size:12px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--gray-600);margin-bottom:3px}
.infoline__val{font-size:1rem;font-weight:600;color:var(--ink);line-height:1.6}
.rule{height:1px;background:var(--border)}
.hours{width:100%;border-collapse:collapse;font-size:15px}
.hours caption{text-align:left;font-weight:700;color:var(--ink);font-size:12px;letter-spacing:.14em;text-transform:uppercase;color:var(--gray-600);padding-bottom:8px}
.hours th,.hours td{text-align:left;padding:7px 0;vertical-align:top;border-bottom:1px solid var(--border)}
.hours th{font-weight:600;color:var(--gray-700);padding-right:16px;white-space:nowrap}
.hours td{color:var(--ink);font-weight:600}
.hours tr:last-child th,.hours tr:last-child td{border-bottom:0}
.mapbox{border:var(--border-width) solid var(--border);box-shadow:var(--shadow-sm);border-radius:var(--radius-lg);overflow:hidden;background:var(--paper);
  min-height:300px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:16px;padding:32px;text-align:center}

/* Formulaire */
.field{display:block}
.field label{display:block;font-weight:700;font-size:14px;color:var(--ink);margin-bottom:6px}
.input,textarea{width:100%;font-family:var(--font-sans);font-size:1rem;color:var(--ink);background:var(--white);
  border:var(--border-width) solid var(--border-strong);border-radius:var(--radius-md);padding:12px 14px;outline:none;min-height:46px}
textarea{resize:vertical;line-height:1.65}
.input:focus,textarea:focus{border-color:var(--terra-500)}
.hp{position:absolute;left:-9999px}

/* Bandeaux */
.notice{background:var(--terra-50);border-radius:var(--radius-lg);padding:24px;max-width:68ch}
.notice p{color:var(--terra-800)}
.emergency{background:var(--terra-700);padding:24px;text-align:center;font-size:14px;color:#fff}
.emergency strong{color:#fff}

/* Pied */
.site-footer{background:var(--ink);color:var(--gray-300);padding:64px 0 24px}
.site-footer__grid{max-width:1200px;margin:0 auto;padding:0 24px;display:grid;grid-template-columns:repeat(auto-fit,minmax(min(260px,100%),1fr));gap:40px}
.site-footer img{height:150px;width:auto}
.site-footer h2{color:#fff;font-size:14px;font-weight:700;font-family:var(--font-sans);letter-spacing:0}
.site-footer a{color:var(--gray-400);text-decoration:none;font-size:14px}
.site-footer a:hover{color:#fff}
.site-footer p,.site-footer span{color:var(--gray-400);font-size:14px;line-height:1.65}
.site-footer__col{display:flex;flex-direction:column;gap:12px}
.site-footer__bar{max-width:1200px;margin:48px auto 0;padding:24px 24px 0;border-top:1px solid rgba(255,255,255,.12);display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap;font-size:14px;color:var(--gray-500)}

/* Fil d'Ariane */
.crumbs{font-size:13px;color:var(--gray-600);padding:20px 0 0}
.crumbs ol{list-style:none;display:flex;gap:8px;flex-wrap:wrap;margin:0;padding:0}
.crumbs a{color:var(--gray-600);text-decoration:none}
.crumbs a:hover{color:var(--terra-600)}
.crumbs li+li::before{content:"›";margin-right:8px;color:var(--gray-400)}
