/*
Theme Name: Ostéo Lefèvre
Theme URI: https://osteolefevre.com
Author: Benoît Lefèvre
Description: Cabinet ostéopathique Benoît Lefèvre, Tavaux (39).
Version: 1.0.1
License: GNU General Public License v2 or later
Text Domain: osteolefevre
*/

/* ══════════════════════════════════════
   VARIABLES & RESET
══════════════════════════════════════ */
:root {
  --marine:     #0B1F3A;
  --bleu:       #1A4E8A;
  --bleu-mid:   #2669B0;
  --bleu-clair: #4A8DD4;
  --bleu-pale:  #DDE8F5;
  --bleu-brume: #F0F5FB;
  --blanc:      #FFFFFF;
  --creme:      #F8F6F2;
  --gris:       #4A5568;
  --gris-clair: #8EA0B4;
  --texte:      #1C2B3A;
  --or:         #B8893A;
  --radius:     14px;
  --radius-lg:  22px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--blanc);
  color: var(--texte);
  overflow-x: hidden;
  line-height: 1.65;
}

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

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
}
h1 { font-size: clamp(2.8rem, 5vw, 4.4rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400; }
h3 { font-size: 1.5rem; font-weight: 500; }
em { font-style: italic; color: var(--bleu-mid); }

/* ══════════════════════════════════════
   UTILITAIRES
══════════════════════════════════════ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 6rem 0; }
.section-alt { background: var(--bleu-brume); }
.section-dark {
  background: linear-gradient(150deg, var(--marine) 0%, var(--bleu) 100%);
  color: white;
}
.section-dark h2,
.section-dark h3,
.section-dark p { color: white; }
.section-dark em { color: rgba(255,255,255,0.75); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bleu);
  margin-bottom: 1.2rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--bleu);
}
.eyebrow-white { color: rgba(255,255,255,0.55); }
.eyebrow-white::before { background: rgba(255,255,255,0.35); }

/* ══════════════════════════════════════
   REVEAL (animation au scroll)
══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26,78,138,0.08);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(11,31,58,0.1); }

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.nav-logo {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--marine), var(--bleu-mid));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.1rem; flex-shrink: 0;
}
.nav-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 600;
  color: var(--marine); line-height: 1.2; display: block;
}
.nav-brand-sub {
  font-size: 0.62rem; color: var(--gris-clair);
  letter-spacing: 0.1em; text-transform: uppercase; display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.82rem;
  color: var(--gris);
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--bleu); }

.btn-rdv-nav {
  background: var(--marine) !important;
  color: white !important;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s;
}
.btn-rdv-nav:hover {
  background: var(--bleu) !important;
  transform: translateY(-1px);
}

.nav-mobile {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-mobile span {
  display: block;
  width: 24px; height: 2px;
  background: var(--marine);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55% 45%;
  padding-top: 68px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(70,130,210,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 5rem;
  position: relative; z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bleu-pale);
  color: var(--bleu);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  width: fit-content;
  animation: fadeSlide 0.6s ease both;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--bleu);
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.4; transform:scale(1.4); }
}
@keyframes fadeSlide {
  from { opacity:0; transform:translateY(20px); }
  to { opacity:1; transform:translateY(0); }
}

.hero h1 {
  color: var(--marine);
  margin-bottom: 1.5rem;
  animation: fadeSlide 0.7s 0.1s ease both;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--gris);
  font-weight: 300;
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 2.5rem;
  animation: fadeSlide 0.7s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 3rem;
  animation: fadeSlide 0.7s 0.3s ease both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--marine), var(--bleu-mid));
  color: white;
  padding: 0.95rem 2.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 6px 24px rgba(26,78,138,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(26,78,138,0.4);
}
.btn-outline {
  color: var(--marine);
  font-size: 0.9rem;
  border: 1.5px solid rgba(11,31,58,0.2);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--bleu); color: var(--bleu); }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--bleu-pale);
  animation: fadeSlide 0.7s 0.4s ease both;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--marine);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.stat-label { font-size: 0.75rem; color: var(--gris-clair); line-height: 1.4; }
.stat-sep { width: 1px; height: 40px; background: var(--bleu-pale); align-self: center; }

.hero-right {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--bleu-brume), var(--bleu-pale));
}
.hero-right::before {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(26,78,138,0.07);
}
.hero-img {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: center;
}
.hero-img img {
  height: 92%; width: 100%;
  object-fit: cover; object-position: top center;
}
.hero-img-badge {
  position: absolute; bottom: 2.5rem; right: 2.5rem;
  background: white; border-radius: 16px;
  padding: 1rem 1.4rem;
  box-shadow: 0 8px 32px rgba(11,31,58,0.14);
  text-align: center;
}
.hero-img-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 600;
  color: var(--marine); line-height: 1;
}
.hero-img-badge-label { font-size: 0.68rem; color: var(--gris-clair); margin-top: 0.2rem; }

/* ══════════════════════════════════════
   OSTÉOPATHIE
══════════════════════════════════════ */
.osteo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.osteo-lead {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--gris);
  font-weight: 300;
  margin-bottom: 2rem;
}
.osteo-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.osteo-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius);
  background: var(--blanc);
  border: 1px solid var(--bleu-pale);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.osteo-item:hover {
  border-color: var(--bleu-clair);
  box-shadow: 0 4px 16px rgba(26,78,138,0.08);
}
.osteo-item-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }
.osteo-item-title { font-size: 0.9rem; font-weight: 500; color: var(--marine); margin-bottom: 0.2rem; }
.osteo-item-desc { font-size: 0.83rem; color: var(--gris); line-height: 1.6; }

.patients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.patient-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  border: 1px solid var(--bleu-pale);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.patient-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(26,78,138,0.1);
}
.patient-card-icon { font-size: 1.8rem; margin-bottom: 0.7rem; }
.patient-card-label { font-size: 0.82rem; font-weight: 500; color: var(--marine); }
.patients-note {
  font-size: 0.78rem;
  color: var(--gris-clair);
  margin-top: 1.5rem;
  text-align: center;
  font-style: italic;
}

/* ══════════════════════════════════════
   TRAITEMENT
══════════════════════════════════════ */
.traitement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.traitement-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  border: 1px solid var(--bleu-pale);
  transition: transform 0.2s, box-shadow 0.2s;
}
.traitement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(26,78,138,0.1);
}
.traitement-icon { font-size: 2rem; margin-bottom: 1.2rem; }
.traitement-title { font-size: 1rem; font-weight: 600; color: var(--marine); margin-bottom: 0.6rem; }
.traitement-desc { font-size: 0.85rem; color: var(--gris); line-height: 1.7; }

/* ══════════════════════════════════════
   PRATICIEN
══════════════════════════════════════ */
.praticien-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 5rem;
  align-items: center;
}
.praticien-photo-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(11,31,58,0.18);
  aspect-ratio: 3/4;
}
.praticien-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
}
.praticien-photo-badge {
  position: absolute; bottom: 1.8rem; right: 1.8rem;
  background: white; border-radius: 14px;
  padding: 0.9rem 1.2rem; text-align: center;
  box-shadow: 0 4px 20px rgba(11,31,58,0.15);
}
.praticien-photo-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 600;
  color: var(--marine); line-height: 1;
}
.praticien-photo-badge-label { font-size: 0.62rem; color: var(--gris-clair); margin-top: 0.2rem; }

.praticien-desc {
  font-size: 1rem;
  color: var(--gris);
  line-height: 1.85;
  margin: 1.2rem 0;
  font-weight: 300;
}
.praticien-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.5rem 0; }
.tag {
  font-size: 0.72rem; font-weight: 500;
  background: var(--bleu-pale); color: var(--bleu);
  padding: 0.35rem 0.9rem; border-radius: 50px;
}
.praticien-infos { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 1.5rem; }
.praticien-info {
  display: flex; gap: 0.9rem; align-items: flex-start;
  font-size: 0.88rem; color: var(--gris);
}
.praticien-info a { color: var(--bleu); }
.praticien-info a:hover { text-decoration: underline; }

.entreprise-block {
  background: linear-gradient(135deg, var(--bleu-brume), var(--bleu-pale));
  border: 1px solid var(--bleu-pale);
  border-radius: var(--radius-lg);
  padding: 2rem 2.2rem;
  margin-top: 2.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.entreprise-icon { font-size: 2.2rem; flex-shrink: 0; }
.entreprise-block h3 { color: var(--marine); margin-bottom: 0.7rem; font-size: 1.2rem; }
.entreprise-block p { font-size: 0.88rem; color: var(--gris); line-height: 1.8; margin-bottom: 0.8rem; }
.entreprise-tel { font-size: 0.88rem; font-weight: 500; color: var(--bleu); }
.entreprise-tel a { color: var(--bleu); }
.entreprise-tel a:hover { text-decoration: underline; }

/* ══════════════════════════════════════
   TARIFS
══════════════════════════════════════ */
.tarif-center { max-width: 520px; margin: 0 auto; }
.tarif-card-main {
  background: linear-gradient(135deg, var(--marine) 0%, var(--bleu) 100%);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  text-align: center;
  color: white;
  box-shadow: 0 16px 48px rgba(11,31,58,0.25);
  margin-bottom: 1.5rem;
}
.tarif-emoji { font-size: 3rem; margin-bottom: 1rem; }
.tarif-title {
  font-size: 0.78rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
  margin-bottom: 0.8rem;
}
.tarif-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; font-weight: 600;
  line-height: 1; color: white; margin-bottom: 0.4rem;
}
.tarif-duration { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-bottom: 1.5rem; }
.tarif-desc {
  font-size: 0.9rem; color: rgba(255,255,255,0.8);
  line-height: 1.7; margin-bottom: 1.5rem; font-weight: 300;
}
.tarif-paiement {
  font-size: 0.78rem; color: rgba(255,255,255,0.4);
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.remboursement {
  background: white; border-radius: 16px;
  padding: 1.5rem 1.8rem;
  display: flex; gap: 1rem;
  border: 1px solid var(--bleu-pale);
}
.remboursement-icon { font-size: 1.4rem; flex-shrink: 0; }
.remboursement-text { font-size: 0.85rem; color: var(--gris); line-height: 1.7; }
.remboursement-text strong { display: block; color: var(--marine); margin-bottom: 0.3rem; }

/* ══════════════════════════════════════
   VCARD
══════════════════════════════════════ */
.vcard-wrap { display: flex; justify-content: center; }
.vcard {
  width: 100%; max-width: 420px;
  background: var(--blanc); border-radius: 2rem; overflow: hidden;
  box-shadow: 0 24px 80px rgba(11,31,58,0.12), 0 4px 16px rgba(11,31,58,0.06);
}
.vcard-header {
  background: linear-gradient(135deg, var(--marine) 0%, var(--bleu) 100%);
  padding: 2.5rem 2rem 3rem; text-align: center;
  position: relative; overflow: hidden;
}
.vcard-header::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.vcard-avatar {
  width: 90px; height: 90px; border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.35);
  margin: 0 auto 1.2rem; overflow: hidden;
  position: relative; z-index: 1;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.vcard-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.vcard-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 600; color: white;
  position: relative; z-index: 1; margin-bottom: 0.3rem;
}
.vcard-sub {
  font-size: 0.78rem; color: rgba(255,255,255,0.65);
  letter-spacing: 0.1em; text-transform: uppercase;
  position: relative; z-index: 1;
}
.vcard-body { padding: 0 0 1.5rem; }
.vcard-section-label {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.66rem; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 500;
  color: var(--bleu); background: var(--bleu-pale);
  padding: 0.4rem 1rem; border-radius: 50px;
  width: fit-content; margin: 1.6rem 2rem 0.8rem;
}
.vcard-info-list { padding: 0 0.5rem; }
.vcard-info {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.7rem 1.5rem; border-radius: 10px;
  font-size: 0.88rem; color: var(--texte);
  transition: background 0.2s;
}
a.vcard-info:hover { background: var(--bleu-pale); }
.vcard-info-icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--bleu-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; flex-shrink: 0;
}
.vcard-info-label {
  font-size: 0.63rem; color: var(--gris-clair);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.1rem;
}
.vcard-info-val { font-size: 0.88rem; color: var(--texte); }
.vcard-divider { height: 1px; background: var(--bleu-pale); margin: 1rem 2rem; }
.vcard-qr {
  margin: 1.5rem 2rem 0;
  background: var(--bleu-pale); border-radius: 1.2rem;
  padding: 1.5rem; text-align: center;
}
.vcard-qr-label {
  font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--bleu);
  font-weight: 500; margin-bottom: 1rem;
}
#qrcode { display: flex; justify-content: center; margin-bottom: 0.6rem; }
#qrcode canvas, #qrcode img { border-radius: 8px; }
.vcard-qr-hint { font-size: 0.72rem; color: var(--gris); }
.vcard-cta { padding: 1.2rem 2rem 0.5rem; }
.btn-vcard {
  width: 100%;
  background: linear-gradient(135deg, var(--marine), var(--bleu));
  color: white; border: none; border-radius: 50px; padding: 1rem;
  font-size: 0.9rem; font-weight: 500; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-vcard:hover { opacity: 0.9; transform: translateY(-1px); }
.vcard-footer { text-align: center; padding: 1rem 2rem 1.8rem; }
.vcard-footer a { font-size: 0.75rem; color: var(--gris-clair); }
.vcard-footer a:hover { color: var(--bleu); }

/* ══════════════════════════════════════
   RENDEZ-VOUS
══════════════════════════════════════ */
.rdv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.rdv-left h2 { margin-bottom: 1rem; }
.rdv-left p {
  font-size: 1rem; color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem; font-weight: 300;
}
.rdv-steps { display: flex; flex-direction: column; gap: 1.2rem; }
.rdv-step { display: flex; gap: 1.2rem; align-items: flex-start; }
.step-num {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 600;
  border: 1px solid rgba(255,255,255,0.2);
}
.step-text {
  font-size: 0.9rem; color: rgba(255,255,255,0.8);
  line-height: 1.6; padding-top: 0.5rem;
}
.rdv-card {
  background: white; border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 16px 48px rgba(11,31,58,0.25);
}
.rdv-card h3 { color: var(--marine); margin-bottom: 0.3rem; }
.rdv-card-sub { font-size: 0.8rem; color: var(--gris-clair); margin-bottom: 2rem; }
.rdv-infos { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.rdv-info-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.rdv-info-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--bleu-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.rdv-info-label {
  font-size: 0.65rem; color: var(--gris-clair);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.15rem;
}
.rdv-info-val { font-size: 0.9rem; color: var(--texte); }
.btn-rdv-main {
  display: block; text-align: center;
  background: linear-gradient(135deg, var(--marine), var(--bleu));
  color: white; padding: 1rem 2rem; border-radius: 50px;
  font-size: 0.9rem; font-weight: 500;
  box-shadow: 0 6px 24px rgba(26,78,138,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-rdv-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(26,78,138,0.4);
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.map-container {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 8px 32px rgba(11,31,58,0.12);
  position: relative;
}
.map-container iframe { width: 100%; height: 380px; border: none; display: block; }
.map-overlay-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(11,31,58,0.85); color: white;
  padding: 0.9rem 1.2rem; font-size: 0.82rem;
  backdrop-filter: blur(8px);
}
.contact-details { display: flex; flex-direction: column; gap: 1.8rem; }
.contact-bloc-label {
  font-size: 0.65rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--gris-clair); margin-bottom: 0.4rem;
}
.contact-bloc-val { font-size: 0.92rem; color: var(--texte); line-height: 1.7; }
.contact-bloc-val a { color: var(--bleu); }
.contact-bloc-val a:hover { text-decoration: underline; }
.horaires-grid { display: flex; flex-direction: column; gap: 0.3rem; }
.horaire-row {
  display: flex; justify-content: space-between;
  font-size: 0.85rem; padding: 0.3rem 0;
  border-bottom: 1px solid var(--bleu-pale);
}
.horaire-row.ferme span { color: var(--gris-clair); }
.horaire-row span:last-child { font-weight: 500; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--marine);
  color: white;
  padding: 3rem 0;
}
.footer-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 2rem;
  display: flex; flex-direction: column;
  align-items: center; gap: 1.5rem; text-align: center;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 500;
}
.footer-brand span {
  font-size: 0.72rem; font-family: 'DM Sans', sans-serif;
  display: block; color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.2rem;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.3); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 4rem 2rem 2rem; }
  .hero-right { height: 50vw; min-height: 300px; }
  .osteo-grid { grid-template-columns: 1fr; gap: 3rem; }
  .praticien-grid { grid-template-columns: 1fr; gap: 3rem; }
  .praticien-photo-wrap { max-width: 360px; }
  .traitement-grid { grid-template-columns: 1fr 1fr; }
  .rdv-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-mobile { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    padding: 1.5rem 2rem; gap: 1.2rem;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid var(--bleu-pale);
    z-index: 999;
  }
  section { padding: 4rem 0; }
  .hero-left { padding: 3rem 1.5rem; }
  .traitement-grid { grid-template-columns: 1fr; }
  .patients-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .entreprise-block { flex-direction: column; gap: 1rem; }
  .rdv-card { padding: 1.8rem; }
}
