/*
Theme Name: Cabinet Kiné Le Président
Description: Thème moderne et épuré pour le Cabinet de Kinésithérapie Le Président — Besançon
Version: 3.0
Author: Cabinet Le Président
Text Domain: cabinet-kine
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Merriweather:ital,wght@0,300;0,400;0,700;1,300;1,400&family=Raleway:wght@300;400;500;600&display=swap');

/* ────────────────────────────────────────────────
   RESET & VARIABLES
──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #FFFFFF;
  --bg-warm:   #FAFAF7;
  --accent:    #DEE0AF;
  --accent-d:  #C8CA90;
  --accent-l:  #F3F4E2;
  --blue:      #8FA6DA;
  --blue-d:    #6B8CC4;
  --blue-l:    #E8EEFF;
  --blue-ll:   #F4F6FD;
  --dark:      #1E2433;
  --mid:       #5A6070;
  --light:     #F0EDE8;
  --white:     #FFFFFF;
  --serif:     'Merriweather', Georgia, serif;
  --sans:      'Outfit', system-ui, sans-serif;
  --display:   'Raleway', 'Outfit', system-ui, sans-serif;
  --r:         12px;
  --r-sm:      8px;
  --r-full:    100px;
  --shadow:    0 4px 24px rgba(143,166,218,0.13);
  --shadow-lg: 0 16px 56px rgba(143,166,218,0.20);
  --nav-h:     66px;
  --max-w:     1200px;
  --pad:       clamp(20px, 5vw, 80px);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--dark);
  font-weight: 300;
  line-height: 1.7;
  min-width: 320px;
  overflow-x: hidden;
  width: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ────────────────────────────────────────────────
   TYPOGRAPHIE
──────────────────────────────────────────────── */
h1 { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 3.2rem); font-weight: 700; line-height: 1.15; color: var(--blue); }
h2 { font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2.4rem); font-weight: 400; line-height: 1.2; color: var(--blue); }
h3 { font-family: var(--sans); font-size: clamp(1rem, 2vw, 1.25rem); font-weight: 600; color: var(--dark); }
h4 { font-family: var(--sans); font-size: 0.95rem; font-weight: 600; color: var(--dark); }

.overline {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue); font-weight: 500; display: block; margin-bottom: 10px;
}
.lead { font-size: clamp(0.95rem, 2vw, 1.05rem); line-height: 1.8; color: var(--mid); }

/* ────────────────────────────────────────────────
   BOUTONS
──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 0.85rem; font-weight: 500;
  padding: 12px 24px; border-radius: var(--r-full); border: none;
  cursor: pointer; transition: all 0.22s; text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--blue); color: white; }
.btn-primary:hover { background: var(--blue-d); color: white; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline  { border: 2px solid var(--blue); color: var(--blue); background: transparent; }
.btn-outline:hover { background: var(--blue); color: white; }
.btn-accent   { background: var(--accent); color: var(--dark); }
.btn-accent:hover { background: var(--accent-d); transform: translateY(-1px); }
.btn-white    { background: white; color: var(--blue); }
.btn-white:hover { background: var(--blue-ll); }

/* ────────────────────────────────────────────────
   NAVBAR
──────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad);
  background: rgba(255,255,255,0.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(143,166,218,0.15);
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: 0 2px 20px rgba(143,166,218,0.18); }

.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--blue); display: flex; align-items: center; justify-content: center;
}
.nav-logo svg { width: 18px; height: 18px; fill: white; }
.nav-brand-text strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--dark); line-height: 1.2; }
.nav-brand-text small  { font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid); }

.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  font-size: 0.82rem; font-weight: 400; color: var(--mid);
  transition: color 0.2s; position: relative; white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 2px; background: var(--blue); border-radius: 2px;
  transform: scaleX(0); transition: transform 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-tel {
  background: var(--blue) !important; color: white !important;
  padding: 9px 18px; border-radius: var(--r-full);
  font-size: 0.82rem !important; font-weight: 500 !important;
}
.nav-tel::after { display: none !important; }
.nav-tel:hover { background: var(--blue-d) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; z-index: 1001;
}
.hamburger span { width: 22px; height: 1.5px; background: var(--dark); display: block; transition: 0.3s; }

/* ────────────────────────────────────────────────
   BANDEAU
──────────────────────────────────────────────── */
.site-banner {
  position: relative;
  background: var(--dark);
  min-height: 180px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.site-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: var(--banner-img, none);
  background-size: cover; background-position: center;
  opacity: 0.25;
}
.site-banner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30,36,51,0.92) 0%, rgba(143,166,218,0.3) 100%);
}
.banner-inner {
  position: relative; z-index: 1;
  text-align: center; padding: 40px var(--pad);
  width: 100%;
}
.banner-logo-wrap {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.10); border: 1.5px solid rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 12px;
}
.banner-logo-wrap svg { width: 20px; height: 20px; fill: white; opacity: 0.7; }
.banner-inner h2 {
  color: white !important; font-size: clamp(1.2rem, 3vw, 2rem) !important;
  font-weight: 400; margin: 0;
}
.banner-inner .banner-sub {
  color: rgba(255,255,255,0.6); font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase; display: block; margin-top: 8px;
}
.banner-decor {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  height: 36px; background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* ────────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────────── */
#site-footer { background: var(--dark); padding: clamp(40px,6vw,60px) var(--pad) 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand-name { font-family: var(--serif); font-size: 1rem; color: rgba(255,255,255,0.85); margin-bottom: 10px; display: block; font-weight: 400; }
.footer-brand p { font-size: 0.8rem; color: rgba(255,255,255,0.38); line-height: 1.8; }
.footer-col h5 { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.3); font-weight: 500; margin-bottom: 14px; }
.footer-col a, .footer-col p { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 8px; line-height: 1.6; transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; padding-top: 22px; }
.footer-bottom p, .footer-bottom a { font-size: 0.72rem; color: rgba(255,255,255,0.2); }

/* ────────────────────────────────────────────────
   SECTION HELPERS
──────────────────────────────────────────────── */
.section-head { text-align: center; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head h2 { margin-bottom: 14px; }
.section-head p { max-width: 560px; margin: 0 auto; color: var(--mid); font-size: 0.95rem; }

/* ────────────────────────────────────────────────
   ACCUEIL — HERO
──────────────────────────────────────────────── */
#hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
  align-items: stretch;
}
.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(40px, 6vw, 80px) var(--pad);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-l); color: var(--dark); font-size: 0.74rem; font-weight: 500;
  padding: 6px 14px; border-radius: var(--r-full); margin-bottom: 24px;
  border: 1px solid var(--accent-d); width: fit-content;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-d); flex-shrink: 0; }
.hero-content h1 { margin-bottom: 18px; }
.hero-content h1 em { font-style: italic; color: var(--blue-d); }
.hero-content .lead { margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 40px; }

.hero-tel {
  display: flex; align-items: center; gap: 10px;
  font-size: clamp(1rem, 2vw, 1.15rem); font-family: var(--sans); font-weight: 600; color: var(--dark);
  white-space: nowrap; letter-spacing: 0.03em;
}
.hero-tel-ico {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--blue-l); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-tel-ico svg { width: 15px; height: 15px; fill: var(--blue); }
.hero-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  font-size: 0.74rem; background: var(--bg-warm);
  border: 1px solid rgba(143,166,218,0.2); color: var(--mid);
  padding: 5px 12px; border-radius: var(--r-full);
}

.hero-visual {
  background: linear-gradient(145deg, var(--blue-ll) 0%, var(--accent-l) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding: 40px 20px;
}
.hero-visual::before {
  content: ''; position: absolute;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(143,166,218,0.1); top: -60px; right: -60px;
}
.hero-building { width: 80%; max-width: 300px; position: relative; z-index: 1; }
.hero-address-card {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: white; border-radius: var(--r); padding: 12px 20px;
  box-shadow: var(--shadow-lg); white-space: nowrap; text-align: center;
}
.hero-address-card strong { display: block; font-size: 0.82rem; color: var(--dark); font-weight: 600; }
.hero-address-card span { font-size: 0.7rem; color: var(--mid); }

/* ────────────────────────────────────────────────
   ACCUEIL — À PROPOS
──────────────────────────────────────────────── */
#about {
  padding: clamp(60px, 8vw, 100px) var(--pad);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
  background: var(--bg-warm);
}
#about h2 { margin-bottom: 16px; }
#about .lead { margin-bottom: 18px; }
#about p { font-size: 0.9rem; color: var(--mid); line-height: 1.8; }
.about-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.about-tag {
  display: flex; align-items: center; gap: 8px;
  background: var(--blue-ll); border-radius: var(--r); padding: 10px 14px;
  font-size: 0.8rem; color: var(--dark);
}
.about-tag svg { width: 15px; height: 15px; fill: var(--blue); flex-shrink: 0; }
.about-visual { position: relative; }
.about-img-wrap {
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--blue-ll);
  padding: clamp(30px, 5vw, 48px);
  display: flex; align-items: center; justify-content: center;
  min-height: 280px;
}
.about-stat {
  position: absolute; background: white; border-radius: var(--r);
  padding: 12px 16px; box-shadow: var(--shadow); text-align: center;
}
.about-stat strong { display: block; font-family: var(--serif); font-size: 1.6rem; color: var(--blue); line-height: 1; }
.about-stat span { font-size: 0.7rem; color: var(--mid); white-space: nowrap; }
.about-stat-1 { bottom: -14px; left: -14px; }
.about-stat-2 { top: 20px; right: -14px; }

/* ────────────────────────────────────────────────
   ACCUEIL — ÉQUIPE
──────────────────────────────────────────────── */
#equipe { padding: clamp(60px, 8vw, 100px) var(--pad); }
.kines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 28px);
}
.kine-card {
  background: white; border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(143,166,218,0.15);
  text-align: center; text-decoration: none; color: inherit;
  transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
  display: block;
}
.kine-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.kine-photo-wrap {
  padding: clamp(24px, 4vw, 36px) clamp(24px, 4vw, 36px) 18px;
  background: linear-gradient(180deg, var(--blue-ll) 0%, var(--bg-warm) 100%);
  position: relative;
}
.kine-photo-circle {
  width: clamp(120px, 12vw, 160px);
  height: clamp(120px, 12vw, 160px);
  border-radius: 50%; overflow: hidden;
  margin: 0 auto;
  border: 4px solid white; box-shadow: 0 8px 28px rgba(143,166,218,0.25);
}
.kine-photo-circle img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.kine-badge {
  display: inline-block; background: var(--accent); color: var(--dark);
  font-size: 0.63rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--r-full); margin-top: 12px;
}
.kine-info { padding: 16px 20px 24px; }
.kine-info h3 { font-size: clamp(0.95rem, 2vw, 1.1rem); margin-bottom: 4px; }
.kine-specialty { font-size: 0.7rem; color: var(--blue); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; display: block; }
.kine-info p { font-size: 0.83rem; color: var(--mid); line-height: 1.65; margin-bottom: 16px; }
.kine-cta-link { display: inline-flex; align-items: center; gap: 5px; font-size: 0.78rem; font-weight: 500; color: var(--blue); }

/* ────────────────────────────────────────────────
   ACCUEIL — SÉCURITÉ SOCIALE
──────────────────────────────────────────────── */
#ss-infos { padding: clamp(60px, 8vw, 80px) var(--pad); background: var(--accent-l); }
.ss-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
.ss-card { background: white; border-radius: var(--r); padding: clamp(20px, 3vw, 28px); }
.ss-card h4 { color: var(--blue); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--blue-l); }
/* Liste domaines pris en charge */
.ss-card ul { padding: 0; margin: 0; list-style: none; }
.ss-card ul li {
  font-size: 0.83rem; color: var(--mid); padding: 9px 0;
  border-bottom: 1px solid var(--light);
}
.ss-card ul li:last-child { border-bottom: none; }
.ss-card ul li strong { font-weight: 600; color: var(--dark); }
.amk-table { width: 100%; border-collapse: collapse; }
.amk-table tr { border-bottom: 1px solid var(--light); }
.amk-table tr:last-child { border-bottom: none; }
.amk-table td { padding: 10px 8px; vertical-align: middle; font-size: 0.83rem; }
.amk-code { font-weight: 600; color: var(--dark); white-space: nowrap; width: 70px; }
.amk-desc { color: var(--mid); }
.amk-prix { font-weight: 600; color: var(--dark); white-space: nowrap; text-align: right; width: 64px; }
.ss-note { margin-top: 22px; font-size: 0.8rem; color: var(--mid); text-align: center; line-height: 1.75; }

/* ────────────────────────────────────────────────
   CTA STRIP
──────────────────────────────────────────────── */
#cta-strip {
  background: var(--blue); padding: clamp(40px, 6vw, 60px) var(--pad);
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
#cta-strip h2 { color: white; font-size: clamp(1.2rem, 3vw, 2rem); }
#cta-strip p { color: rgba(255,255,255,0.72); font-size: 0.92rem; margin-top: 5px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ────────────────────────────────────────────────
   PAGE KINÉ
──────────────────────────────────────────────── */
.kine-hero-inner {
  padding: clamp(40px, 6vw, 72px) var(--pad);
  display: grid; grid-template-columns: auto 1fr;
  gap: clamp(32px, 5vw, 64px); align-items: start;
}
.kine-photo-col { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.kine-photo-large {
  width: clamp(180px, 20vw, 260px);
  height: clamp(180px, 20vw, 260px);
  border-radius: 50%; overflow: hidden;
  border: 5px solid white; box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}
.kine-photo-large img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.exp-badge {
  background: var(--accent); color: var(--dark);
  font-size: 0.74rem; font-weight: 600; padding: 6px 14px; border-radius: var(--r-full);
  white-space: nowrap;
}
.rpps-info {
  background: white; border-left: 3px solid var(--blue);
  padding: 12px 16px; border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 0.77rem; color: var(--mid); line-height: 1.65;
  width: 100%;
}
.kine-hero-text {}
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: var(--mid); margin-bottom: 22px; transition: color 0.2s;
}
.back-link:hover { color: var(--blue); }
.kine-hero-text h1 { margin-bottom: 10px; }
.specialty-tag {
  display: inline-block; background: var(--accent); color: var(--dark);
  font-size: 0.74rem; font-weight: 500; padding: 5px 14px;
  border-radius: var(--r-full); margin-bottom: 18px;
}
.kine-bio { font-size: 0.93rem; color: var(--mid); line-height: 1.85; margin-bottom: 22px; }
.kine-bio p { margin-bottom: 14px; }
.kine-bio em { color: var(--blue-d); font-style: italic; }
.kine-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.kine-pill {
  background: var(--blue-ll); color: var(--blue); font-size: 0.74rem;
  font-weight: 500; padding: 5px 12px; border-radius: var(--r-full);
  border: 1px solid rgba(143,166,218,0.3);
}

/* Spécialisations */
#specialisations { padding: clamp(50px, 7vw, 80px) var(--pad); background: var(--bg-warm); }
.spec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 36px; }
.spec-card {
  background: white; border-radius: var(--r);
  border: 1px solid rgba(143,166,218,0.15); padding: clamp(20px, 3vw, 28px);
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.spec-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue); }
.spec-ico {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--blue-ll); display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.spec-ico svg { width: 22px; height: 22px; fill: var(--blue); }
.spec-card h3 { font-size: 0.98rem; margin-bottom: 10px; }
.spec-card p { font-size: 0.84rem; color: var(--mid); line-height: 1.75; margin-bottom: 10px; }
.spec-card ul { padding-left: 14px; list-style: disc; }
.spec-card li { font-size: 0.81rem; color: var(--mid); margin-bottom: 4px; line-height: 1.65; }

/* Autres kinés */
.autres-kines-section { padding: clamp(40px, 6vw, 60px) var(--pad); background: var(--accent-l); }
.autres-kines-section h3 { text-align: center; margin-bottom: 28px; }
.autres-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 680px; margin: 0 auto; }
.autre-card {
  background: white; border-radius: var(--r); padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: inherit;
  border: 1px solid rgba(143,166,218,0.15);
  transition: border-color 0.2s, transform 0.2s;
}
.autre-card:hover { border-color: var(--blue); transform: translateY(-2px); }
.autre-photo { width: 50px; height: 50px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.autre-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.autre-info strong { display: block; font-size: 0.87rem; margin-bottom: 2px; }
.autre-info span { font-size: 0.72rem; color: var(--mid); }
.autre-info em { display: block; font-size: 0.71rem; color: var(--blue); font-style: normal; margin-top: 3px; }

/* ────────────────────────────────────────────────
   PAGE CONTACT
──────────────────────────────────────────────── */
.contact-main {
  padding: clamp(40px, 6vw, 80px) var(--pad);
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 64px); align-items: start;
  max-width: var(--max-w); margin: 0 auto;
}
.contact-infos h2 { margin-bottom: 8px; }
.contact-infos .lead { margin-bottom: 28px; }

.tel-card {
  background: var(--blue); border-radius: var(--r);
  padding: 18px 22px; display: flex; align-items: center; gap: 14px;
  text-decoration: none; margin-bottom: 14px; transition: background 0.2s;
}
.tel-card:hover { background: var(--blue-d); }
.tel-ico {
  width: 42px; height: 42px; background: rgba(255,255,255,0.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.tel-ico svg { width: 20px; height: 20px; fill: white; }
.tel-card-txt strong { display: block; font-size: clamp(1.3rem, 3vw, 1.6rem); font-family: var(--sans); font-weight: 600; color: white; letter-spacing: 0.04em; }
.tel-card-txt span { font-size: 0.74rem; color: rgba(255,255,255,0.75); }
.tel-note {
  background: var(--blue-ll); border-left: 3px solid var(--blue);
  padding: 12px 16px; border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 0.81rem; color: var(--mid); line-height: 1.7; margin-bottom: 28px;
}
.info-bloc { margin-bottom: 24px; }
.info-bloc h4 { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.info-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.info-ico {
  width: 30px; height: 30px; border-radius: 50%; background: var(--blue-ll);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.info-ico svg { width: 13px; height: 13px; fill: var(--blue); }
.info-row p, .info-row a { font-size: 0.84rem; color: var(--mid); line-height: 1.65; }
.info-row strong { display: block; font-size: 0.84rem; font-weight: 600; color: var(--dark); margin-bottom: 2px; }

.horaires { background: var(--bg-warm); border-radius: var(--r); overflow: hidden; }
.horaire-ligne {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 16px; border-bottom: 1px solid rgba(143,166,218,0.1); font-size: 0.83rem;
}
.horaire-ligne:last-child { border-bottom: none; }
.h-jour { color: var(--dark); }
.h-heure { font-weight: 500; color: var(--blue); font-size: 0.8rem; text-align: right; }
.h-heure.ferme { color: var(--mid); font-weight: 300; }

/* Formulaire */
.contact-form-wrap {
  background: var(--bg-warm); border-radius: 18px;
  padding: clamp(24px, 4vw, 40px); position: sticky; top: calc(var(--nav-h) + 16px);
}
.contact-form-wrap h3 { margin-bottom: 6px; }
.contact-form-wrap .subtitle { font-size: 0.87rem; color: var(--mid); margin-bottom: 24px; line-height: 1.65; }
.form-group { margin-bottom: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group label { display: block; font-size: 0.71rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--dark); margin-bottom: 5px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: white;
  border: 1.5px solid rgba(143,166,218,0.2); border-radius: var(--r-sm);
  padding: 10px 13px; font-size: 0.9rem; color: var(--dark);
  font-family: var(--sans); font-weight: 300;
  outline: none; transition: border-color 0.2s; -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 80px; }
.file-input-wrap { position: relative; }
.file-input-label {
  display: flex; align-items: center; gap: 10px;
  background: white; border: 1.5px dashed rgba(143,166,218,0.4);
  border-radius: var(--r-sm); padding: 13px 14px; cursor: pointer;
  font-size: 0.84rem; color: var(--mid); transition: border-color 0.2s;
}
.file-input-label:hover { border-color: var(--blue); }
.file-input-label svg { width: 18px; height: 18px; fill: var(--blue); flex-shrink: 0; }
.file-input-wrap input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.form-hint { font-size: 0.72rem; color: var(--mid); margin-top: 4px; }
.form-24h {
  background: var(--accent-l); border: 1px solid var(--accent-d); border-radius: var(--r-sm);
  padding: 11px 14px; font-size: 0.81rem; color: var(--dark); margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.form-24h svg { width: 15px; height: 15px; fill: var(--accent-d); flex-shrink: 0; }
.btn-submit {
  width: 100%; background: var(--blue); color: white; border: none;
  padding: 14px; font-size: 0.85rem; font-weight: 600; font-family: var(--sans);
  cursor: pointer; border-radius: var(--r-full); transition: background 0.2s;
}
.btn-submit:hover { background: var(--blue-d); }
.form-legal { font-size: 0.7rem; color: var(--mid); margin-top: 10px; line-height: 1.6; text-align: center; }
.form-success {
  display: none; background: white; border: 2px solid var(--blue);
  border-radius: var(--r); padding: 28px; text-align: center;
}
.form-success .check-icon { font-size: 2.5rem; margin-bottom: 10px; }
.form-success strong { display: block; font-size: 1rem; font-family: var(--serif); margin-bottom: 8px; color: var(--blue); }
.form-success p { font-size: 0.84rem; color: var(--mid); }

/* Google Maps */
#map-section { padding: 0 var(--pad) clamp(60px, 8vw, 100px); max-width: var(--max-w); margin: 0 auto; }
.map-header { text-align: center; padding: clamp(40px, 5vw, 60px) 0 32px; }
.map-header h2 { margin-bottom: 10px; }
.map-wrapper { background: white; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(143,166,218,0.12); }
.map-embed { width: 100%; }
.map-embed iframe { width: 100%; height: clamp(280px, 40vw, 420px); border: 0; display: block; }
.map-callouts { display: grid; grid-template-columns: repeat(3, 1fr); }
.map-callout {
  padding: 18px 20px; display: flex; align-items: flex-start; gap: 12px;
  border-top: 1px solid rgba(143,166,218,0.12);
}
.map-callout:not(:last-child) { border-right: 1px solid rgba(143,166,218,0.12); }
.callout-ico { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.callout-ico.cabinet { background: var(--blue-ll); }
.callout-ico.parking { background: #E8F4E8; }
.callout-ico.bus     { background: #FFF5E0; }
.callout-ico.cabinet svg { fill: var(--blue); }
.callout-ico.parking svg { fill: #2E7D32; }
.callout-ico.bus     svg { fill: #E65100; }
.callout-ico svg { width: 17px; height: 17px; }
.callout-txt strong { display: block; font-size: 0.84rem; font-weight: 600; margin-bottom: 3px; }
.callout-txt p { font-size: 0.78rem; color: var(--mid); line-height: 1.5; }
.highlight { display: inline-block; font-size: 0.71rem; font-weight: 600; padding: 2px 8px; border-radius: var(--r-full); margin-top: 5px; }
.highlight.parking { background: #E8F4E8; color: #2E7D32; }
.highlight.bus      { background: #FFF5E0; color: #E65100; }

/* ────────────────────────────────────────────────
   NOMS DES KINÉS — Typo moderne Syne
──────────────────────────────────────────────── */
.kine-name {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--dark);
}
.kine-name .prenom {
  display: block;
  color: var(--mid);
  font-weight: 300;
  font-size: 0.72em;
  letter-spacing: 0.18em;
  margin-bottom: 2px;
}
.kine-name .nom-famille {
  display: block;
  color: var(--blue);
  font-weight: 600;
  letter-spacing: 0.08em;
}
/* Cartes accueil */
.kine-info h3 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0.04em;
}
/* Cartes "autres kinés" */
.autre-info strong {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ────────────────────────────────────────────────
   WP CONTENT (pages simples)
──────────────────────────────────────────────── */
.wp-content-wrap { padding: clamp(40px, 6vw, 80px) var(--pad); max-width: 820px; margin: 0 auto; }
.wp-content-wrap h1 { margin-bottom: 24px; }
.wp-content-wrap h2 { font-size: 1.4rem; margin: 28px 0 14px; }
.wp-content-wrap h3 { font-size: 1.1rem; margin: 22px 0 10px; }
.wp-content-wrap p  { font-size: 0.93rem; color: var(--mid); line-height: 1.85; margin-bottom: 16px; }
.wp-content-wrap ul { padding-left: 18px; list-style: disc; margin-bottom: 16px; }
.wp-content-wrap li { font-size: 0.9rem; color: var(--mid); line-height: 1.75; margin-bottom: 6px; }

/* ────────────────────────────────────────────────
   RESPONSIVE — TABLET (≤ 1024px)
──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .kines-grid { gap: 18px; }
  .kine-photo-circle { width: 120px; height: 120px; }
  .ss-grid { gap: 18px; }
}

/* ────────────────────────────────────────────────
   RESPONSIVE — MOBILE L (≤ 900px)
──────────────────────────────────────────────── */
@media (max-width: 900px) {
  /* Hero accueil */
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { min-height: 260px; padding: 30px 20px; }
  .hero-address-card { white-space: normal; text-align: center; width: calc(100% - 40px); }

  /* About */
  #about { grid-template-columns: 1fr; gap: 36px; }
  .about-stat-1 { bottom: -10px; left: 0; }
  .about-stat-2 { top: 10px; right: 0; }

  /* Équipe */
  .kines-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
  .kine-photo-circle { width: 140px; height: 140px; }

  /* SS */
  .ss-grid { grid-template-columns: 1fr; }

  /* CTA */
  #cta-strip { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }

  /* Page kiné */
  .kine-hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .kine-photo-col { align-items: center; }
  .kine-photo-large { width: 200px; height: 200px; }

  /* Contact */
  .contact-main { grid-template-columns: 1fr; }
  .contact-form-wrap { position: static; }

  /* Maps callouts */
  .map-callouts { grid-template-columns: 1fr; }
  .map-callout { border-right: none !important; }

  /* Autres kinés */
  .autres-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
}

/* ────────────────────────────────────────────────
   RESPONSIVE — MOBILE S (≤ 640px)
──────────────────────────────────────────────── */
@media (max-width: 640px) {
  /* Navbar mobile */
  .nav-brand-text small { display: none; }
  .nav-links {
    display: none; flex-direction: column; align-items: flex-start;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: white; padding: 20px var(--pad) 28px;
    border-bottom: 1px solid var(--light);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08); gap: 16px; z-index: 999;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  /* Hero */
  .hero-content { text-align: center; align-items: center; }
  .hero-tags { justify-content: center; }
  .hero-actions { justify-content: center; flex-direction: column; align-items: center; }

  /* Bandeau */
  .site-banner { min-height: 140px; }

  /* Kiné photo plus petite */
  .kine-photo-large { width: 160px; height: 160px; }
}

/* ────────────────────────────────────────────────
   RESPONSIVE — XS (≤ 420px)
──────────────────────────────────────────────── */
@media (max-width: 420px) {
  .ss-card { padding: 16px 18px; }
  .map-callout { padding: 14px; }
  .btn { font-size: 0.8rem; padding: 10px 18px; }
}

