/* ============================================================
   KÉVIN MOUREAU — Kinésithérapeute & Ostéopathe
   style.css — Design System & All Styles
   ============================================================ */

/* ------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES
   ------------------------------------------------------------ */
:root {
  /* Brand colors */
  --navy:        #0d2137;
  --navy-light:  #162d45;
  --teal:        #1a5f7a;
  --teal-mid:    #2484a8;
  --teal-light:  #40a7cc;
  --accent:      #e8623a;
  --accent-hover:#cf5230;

  /* Backgrounds */
  --bg:          #f7f9fb;
  --bg-alt:      #eef2f6;
  --white:       #ffffff;

  /* Text */
  --text:        #1a1f2e;
  --text-mid:    #4a5568;
  --text-light:  #718096;

  /* Borders */
  --border:      #e2e8f0;

  /* Spacing */
  --section-pad: 96px 0;
  --max-w:       1140px;

  /* Shadows */
  --shadow-sm:   0 1px 4px rgba(0,0,0,.06), 0 2px 8px rgba(0,0,0,.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.06);

  /* Radii */
  --r-sm:  8px;
  --r:     14px;
  --r-lg:  20px;

  /* Transition */
  --ease: .25s cubic-bezier(.4,0,.2,1);
}

/* ------------------------------------------------------------
   2. RESET
   ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ------------------------------------------------------------
   3. UTILITIES
   ------------------------------------------------------------ */

/* Container */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-sm);
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: -.01em;
  transition: all var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 12px rgba(232,98,58,.35);
}
.btn-accent:hover, .btn-accent:focus-visible {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,98,58,.45);
}

.btn-ghost {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.5); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.45);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* Scroll-triggered animations */
.animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
  transition-delay: var(--delay, 0s);
}
.animate.visible { opacity: 1; transform: none; }

/* Section scaffolding */
.section { padding: var(--section-pad); }

.section-label {
  display: inline-block;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(26,95,122,.08);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.03em;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.0625rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ------------------------------------------------------------
   4. HEADER / NAVIGATION
   ------------------------------------------------------------ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: background var(--ease), box-shadow var(--ease);
}
#site-header.scrolled {
  background: rgba(13,33,55,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,.07), 0 4px 20px rgba(0,0,0,.22);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  flex-shrink: 0;
}
.logo-name {
  font-size: 1.0625rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.025em;
}
.logo-sub {
  font-size: .6875rem;
  color: rgba(255,255,255,.5);
  font-weight: 400;
  letter-spacing: .02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  padding: 6px 13px;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  border-radius: 6px;
  transition: color var(--ease), background var(--ease);
}
.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(255,255,255,.1);
}

.btn-rdv-nav { padding: 9px 20px; font-size: .875rem; flex-shrink: 0; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 9px;
  background: rgba(255,255,255,.1);
  border-radius: var(--r-sm);
}
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--ease);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ------------------------------------------------------------
   5. HERO
   ------------------------------------------------------------ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 72px;
}

/* Ambient background orbs */
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-orb { position: absolute; border-radius: 50%; }
.hero-orb-1 {
  width: 65vw; height: 65vw;
  max-width: 860px; max-height: 860px;
  right: -12%; top: -15%;
  background: radial-gradient(circle at 40% 40%, rgba(36,132,168,.22) 0%, rgba(26,95,122,.07) 55%, transparent 80%);
}
.hero-orb-2 {
  width: 42vw; height: 42vw;
  max-width: 520px; max-height: 520px;
  right: 4%; bottom: -8%;
  background: radial-gradient(circle, rgba(36,132,168,.1) 0%, transparent 70%);
}
.hero-orb-3 {
  width: 22vw; height: 22vw;
  max-width: 300px; max-height: 300px;
  left: 28%; top: 18%;
  background: radial-gradient(circle, rgba(232,98,58,.07) 0%, transparent 70%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
  padding-top: 56px;
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--teal-light);
  background: rgba(64,167,204,.1);
  border: 1px solid rgba(64,167,204,.22);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: 24px;
}
.hero-title em { font-style: normal; color: var(--teal-light); }

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,.62);
  max-width: 520px;
  line-height: 1.72;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-contact-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .8125rem;
  color: rgba(255,255,255,.58);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
  padding: 6px 14px;
  border-radius: 100px;
  transition: all var(--ease);
}
.contact-pill:hover {
  color: #fff;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.25);
}

/* Hero visual card */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-visual {
  position: relative;
  width: 300px; height: 360px;
  background: linear-gradient(145deg, rgba(36,132,168,.18), rgba(13,33,55,.45));
  border: 1px solid rgba(64,167,204,.18);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.visual-icon-wrap {
  width: 110px; height: 110px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.14);
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-floating-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8125rem;
  font-weight: 600;
  color: #fff;
  background: rgba(10,26,46,.9);
  border: 1px solid rgba(64,167,204,.28);
  padding: 8px 14px;
  border-radius: 10px;
  backdrop-filter: blur(8px);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}
.visual-floating-tag .tag-check { color: var(--teal-light); }

.visual-tag-1 { top: 28px; right: -52px; animation: floatA 4.5s ease-in-out infinite; }
.visual-tag-2 { left: -60px; top: 148px; animation: floatA 4.5s ease-in-out infinite 1.5s; }
.visual-tag-3 { bottom: 36px; right: -44px; animation: floatA 4.5s ease-in-out infinite 3s; }

@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}

/* Hero wave divider */
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; display: block; }

/* ------------------------------------------------------------
   6. QUOTE SECTION
   ------------------------------------------------------------ */
.quote-section { padding: 80px 0; background: var(--bg); }
.main-quote {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  font-style: normal;
}
.main-quote::before {
  content: '\201C';
  display: block;
  font-size: 5rem;
  line-height: .8;
  color: var(--teal-light);
  opacity: .35;
  margin-bottom: 8px;
  font-family: Georgia, serif;
}
.main-quote p {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  line-height: 1.78;
  color: var(--text-mid);
}

/* ------------------------------------------------------------
   7. INFO / ABOUT SECTION
   ------------------------------------------------------------ */
.section-info { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card-wide { grid-column: span 2; }

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.service-card:hover {
  border-color: var(--teal-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-icon {
  width: 52px; height: 52px;
  background: rgba(26,95,122,.08);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--teal);
  transition: background var(--ease);
}
.service-card:hover .service-icon { background: rgba(26,95,122,.15); }

.service-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.service-card p { font-size: .9375rem; color: var(--text-mid); line-height: 1.65; }

/* ------------------------------------------------------------
   8. MOYENS SECTION
   ------------------------------------------------------------ */
.section-moyens { background: var(--bg); }

.moyens-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.moyen-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.moyen-item:hover {
  border-color: var(--teal-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.moyen-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(36,132,168,.1), rgba(26,95,122,.07));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--teal);
  transition: background var(--ease);
}
.moyen-item:hover .moyen-icon { background: linear-gradient(135deg, rgba(36,132,168,.18), rgba(26,95,122,.13)); }

.moyen-item h3 {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.moyen-item p { font-size: .875rem; color: var(--text-light); line-height: 1.6; }

/* ------------------------------------------------------------
   9. SPÉCIALITÉS SECTION
   ------------------------------------------------------------ */
.section-specialites { background: var(--white); }

.specialites-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.spec-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  overflow: hidden;
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
}
.spec-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--border);
}
.spec-card:last-child { grid-column: 1 / -1; }

.spec-card-featured {
  border-color: rgba(26,95,122,.2);
  background: linear-gradient(145deg, rgba(36,132,168,.04), var(--bg));
}
.spec-card-featured:hover { border-color: var(--teal-mid); }

.spec-number {
  position: absolute;
  top: 22px; right: 26px;
  font-size: 3.25rem;
  font-weight: 900;
  color: rgba(26,95,122,.05);
  letter-spacing: -.05em;
  line-height: 1;
  user-select: none;
}

.spec-icon {
  width: 60px; height: 60px;
  background: rgba(26,95,122,.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 20px;
  transition: background var(--ease), color var(--ease);
}
.spec-card:hover .spec-icon { background: rgba(26,95,122,.14); color: var(--teal-mid); }

.spec-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -.025em;
}

.spec-content p {
  font-size: .9375rem;
  color: var(--text-mid);
  line-height: 1.72;
  margin-bottom: 12px;
}
.spec-content p:last-child { margin-bottom: 0; }

.spec-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.spec-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9375rem;
  color: var(--text-mid);
}
.spec-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: var(--teal);
  color: #fff;
  font-size: .6875rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.spec-highlight {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 14px;
  background: rgba(232,98,58,.06);
  border: 1px solid rgba(232,98,58,.14);
  border-radius: var(--r-sm);
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
}

/* ------------------------------------------------------------
   10. CTA BAND
   ------------------------------------------------------------ */
.cta-section { background: var(--navy); padding: 80px 0; }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.cta-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: 10px;
}
.cta-text p { font-size: 1.0625rem; color: rgba(255,255,255,.58); }
.cta-actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* ------------------------------------------------------------
   11. CONTACT SECTION
   ------------------------------------------------------------ */
.section-contact { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
}
.contact-info h3 {
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 28px;
  letter-spacing: -.02em;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; padding-bottom: 0; }

.ci-icon {
  width: 42px; height: 42px;
  min-width: 42px;
  background: rgba(26,95,122,.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

.ci-body strong {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 5px;
}
.ci-body a, .ci-body span {
  display: block;
  font-size: .9375rem;
  color: var(--text);
  font-weight: 500;
  transition: color var(--ease);
  margin-bottom: 2px;
}
.ci-body a:hover { color: var(--teal); }
.rdv-link { color: var(--teal) !important; font-weight: 600 !important; }

/* Right column: policy + CTA */
.contact-right { display: flex; flex-direction: column; gap: 20px; }

.policy-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  flex: 1;
}
.policy-icon {
  width: 48px; height: 48px;
  background: rgba(232,98,58,.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.policy-box h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -.02em;
}
.policy-box p {
  font-size: .9375rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 8px;
}
.policy-box p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------
   12. ACCÈS SECTION
   ------------------------------------------------------------ */
.section-acces { background: var(--white); }

.map-container { margin-bottom: 0; overflow: hidden; }
.map-container iframe { display: block; border: none; width: 100%; height: 450px; }

.acces-address-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
  font-size: 1rem;
  color: var(--text-mid);
  border-top: 1px solid var(--border);
  margin-top: 0;
}
.acces-address-bar strong { color: var(--text); }
.acces-address-bar svg { color: var(--teal); flex-shrink: 0; }

/* ------------------------------------------------------------
   13. FOOTER
   ------------------------------------------------------------ */
.site-footer {
  background: var(--navy);
  padding: 64px 0 0;
  color: rgba(255,255,255,.55);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo-name {
  display: block;
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.025em;
  margin-bottom: 4px;
}
.footer-logo-sub {
  display: block;
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
}
.footer-address { font-size: .875rem; color: rgba(255,255,255,.35); }

.footer-nav h4, .footer-contact-col h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 8px; }
.footer-nav li a {
  font-size: .9375rem;
  color: rgba(255,255,255,.5);
  transition: color var(--ease);
}
.footer-nav li a:hover { color: #fff; }

.footer-contact-col { display: flex; flex-direction: column; }
.footer-contact-col a:not(.btn) {
  display: block;
  font-size: .9375rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 8px;
  transition: color var(--ease);
}
.footer-contact-col a:not(.btn):hover { color: #fff; }
.footer-rdv { margin-top: 16px; align-self: flex-start; }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: .8125rem;
  color: rgba(255,255,255,.28);
}

/* ------------------------------------------------------------
   14. RESPONSIVE — TABLET (≤ 1024px)
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  :root { --section-pad: 80px 0; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 0; padding-bottom: 80px; }
  .hero-visual { display: none; }
  .hero-subtitle { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-contact-bar { justify-content: center; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card-wide { grid-column: span 2; }

  .moyens-grid { grid-template-columns: repeat(3, 1fr); }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

/* ------------------------------------------------------------
   15. RESPONSIVE — MOBILE (≤ 768px)
   ------------------------------------------------------------ */
@media (max-width: 768px) {
  :root { --section-pad: 64px 0; }

  .nav-links, .btn-rdv-nav { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(10,24,44,.98);
    backdrop-filter: blur(14px);
    padding: 12px 20px 24px;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.07);
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
  }
  .nav-links.open .nav-link {
    padding: 14px 12px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav-links.open .nav-link:last-child { border-bottom: none; }
  .nav-links.open .btn-rdv-nav-mobile {
    display: block;
    margin-top: 16px;
    text-align: center;
    padding: 12px;
    background: var(--accent);
    color: #fff;
    border-radius: var(--r-sm);
    font-weight: 600;
  }
  .menu-toggle { display: flex; }

  .hero-title { font-size: 2.25rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card-wide { grid-column: span 1; }

  .moyens-grid { grid-template-columns: repeat(2, 1fr); }

  .specialites-grid { grid-template-columns: 1fr; }
  .spec-card:last-child { grid-column: auto; }

  .section-header { margin-bottom: 40px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
}

/* ------------------------------------------------------------
   16. RESPONSIVE — SMALL MOBILE (≤ 480px)
   ------------------------------------------------------------ */
@media (max-width: 480px) {
  .moyens-grid { grid-template-columns: 1fr; }
  .hero-contact-bar { flex-direction: column; align-items: center; }
  .contact-pill { font-size: .75rem; }
}
