@font-face {
  font-family: 'Caviar Dreams';
  src: url('../css/CaviarDreams.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Caviar Dreams';
  src: url('../css/CaviarDreams_Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Caviar Dreams';
  src: url('../css/CaviarDreams_Italic.ttf') format('truetype');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Caviar Dreams';
  src: url('../css/CaviarDreams_BoldItalic.ttf') format('truetype');
  font-weight: 700; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Requiner';
  src: url('../css/Requiner.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'AvantGarde';
  src: url('../css/AvantGarde-Book.ttf') format('truetype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'AvantGarde';
  src: url('../css/AvantGarde-Demi.ttf') format('truetype');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'AvantGarde';
  src: url('../css/AvantGarde-Oblique.ttf') format('truetype');
  font-weight: 300; font-style: oblique; font-display: swap;
}

/* ============================================================
   EKYLIBRE — Style inspiré CareFirst
   Palette : bleu pétrole #0C3B4A, blanc, gris clair, or accent
   Light / Dark toggle
   ============================================================ */

:root {
  --teal:        #0C3B4A;
  --teal-mid:    #0D4F63;
  --teal-lt:     #E8F4F7;
  --accent:      #C8A96E;
  --text:        #1A2E35;
  --muted:       #6B8089;
  --bg:          #FFFFFF;
  --bg-alt:      #F2F5F6;
  --surface:     #FFFFFF;
  --border:      #DDE6E9;
  --white:       #FFFFFF;

  --font-display: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
  --font-nav:     'AvantGarde', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;

  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  28px;
  --r-xl:  999px;

  --sh-sm: 0 2px 10px rgba(12,59,74,.08);
  --sh-md: 0 8px 32px rgba(12,59,74,.12);
  --sh-lg: 0 24px 64px rgba(12,59,74,.16);

  --ease: 0.22s ease;
  --max:  1200px;
  --hh: 78px;
  --topbar-h: 40px;
}

[data-theme="dark"] {
  --teal:        #1A6B82;
  --teal-mid:    #1A8099;
  --teal-lt:     #071820;
  --accent:      #D4B278;
  --text:        #E2EDF0;
  --muted:       #7A9BA5;
  --bg:          #0A1217;
  --bg-alt:      #0F1B22;
  --surface:     #122029;
  --border:      #1C3040;
  --white:       #FFFFFF;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.65; -webkit-font-smoothing: antialiased; transition: background .3s, color .2s; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--teal-mid); }
ul { list-style: none; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.section--alt { background: var(--bg-alt); }

/* --- Eyebrow --- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'AvantGarde', sans-serif;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px;
}
.eyebrow::before { content: '/'; color: var(--accent); font-weight: 700; }

/* --- Headings --- */
h1,h2,h3,h4 { font-family: var(--font-nav); line-height: 1.08; color: var(--teal); font-weight: 600; }
h1 { font-size: clamp(1rem, 2.8vw, 2.2rem); letter-spacing: 0.08em; white-space: nowrap; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: 0.06em; }
h3 { font-size: 1.4rem; letter-spacing: 0.02em; }
p  { margin-bottom: 1em; max-width: 64ch; }
.lead { font-size: 1rem; color: var(--muted); line-height: 1.75; font-weight: 300; font-family: var(--font-nav); }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 28px; border-radius: var(--r-xl);
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 600;
  border: 2px solid transparent; cursor: pointer;
  transition: all var(--ease); text-decoration: none; white-space: nowrap;
}
.btn-arrow::after { content: '›'; font-size: 1.1rem; }
.btn-dark { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-dark:hover { background: var(--teal-mid); border-color: var(--teal-mid); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-outline:hover { background: var(--white); color: var(--teal); }
.btn-outline-dark { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-outline-dark:hover { background: var(--teal); color: var(--white); }

/* ============================================================
   TOPBAR
   ============================================================ */

.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 101;
  background: var(--teal);
  height: var(--topbar-h);
  display: flex; align-items: center;
  border-radius: 0 0 16px 16px;
  transition: transform .35s ease, opacity .35s ease;
}
.topbar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.topbar-inner {
  display: flex; align-items: center;
  justify-content: center;       /* centré */
  gap: 0; width: 100%;
  position: relative;
}
.topbar-info {
  display: flex; align-items: center;
  gap: 32px; justify-content: center; flex: 1;
}
.topbar-info a {
  color: rgba(255,255,255,.85); font-size: 0.78rem; font-weight: 500;
  display: flex; align-items: center; gap: 7px;
  transition: color var(--ease); white-space: nowrap;
}
.topbar-info a i { font-size: 0.75rem; opacity: .9; }
.topbar-info a:hover { color: var(--white); }
.topbar-social {
  display: flex; align-items: center; gap: 14px;
  position: absolute; right: 28px;   /* réseaux à droite */
}
.topbar-social a {
  color: rgba(255,255,255,.7); font-size: 0.9rem;
  transition: color var(--ease), transform var(--ease);
}
.topbar-social a:hover { color: var(--white); transform: scale(1.15); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: var(--topbar-h); left: 0; right: 0; z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  height: var(--hh);
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease, top .35s ease;
}
/* Quand topbar cachée, header remonte en haut */
.site-header.scrolled { top: 0; }
.site-header.scrolled {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--sh-sm);
}
/* Barre fine dégradé sous le header après scroll */
.header-bar {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal) 20%, var(--accent) 50%, var(--teal) 80%, transparent);
  opacity: 0; transition: opacity .4s ease;
}
.site-header.scrolled .header-bar { opacity: 1; }

body { padding-top: calc(var(--topbar-h) + var(--hh)); }
.hero { margin-top: calc(-1 * (var(--topbar-h) + var(--hh))); padding-top: calc(var(--topbar-h) + var(--hh) + 10px); }

.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: var(--hh); gap: 12px;
  align-items: center;

}

/* Logo SVG — blanc sur hero, filtre teal après scroll */
.logo { display: inline-flex; align-items: center; }
.logo-img {
  height: 56px; width: auto;
  filter: none; /* blanc sur hero */
  transition: filter .35s ease, opacity .25s ease;
}
.logo:hover .logo-img { opacity: .82; }

/* Logo complet : desktop seulement */
.logo-full { display: block; }
.logo-icon { display: none; }

/* Scrolled desktop : filtre teal */
.site-header.scrolled .logo-img {
  filter: brightness(0) saturate(100%) invert(20%) sepia(40%) saturate(600%) hue-rotate(160deg) brightness(80%);
}

/* TABLETTE ET MOBILE — hamburger + icône logo à partir de 1200px */
@media (max-width: 1200px) {
  .logo-full { display: none; }
  .logo-mobile { display: flex !important; }
  .logo-icon { display: block; height: 38px; width: auto; }
}

/* SVG inline logo-icon — fill CSS direct (fonctionne sur tous navigateurs) */
.logo-mobile {
  display: none;
  align-items: center;
  gap: 10px;
}
.logo-text-mobile {
  font-family: 'AvantGarde', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: .04em;
  transition: color .3s ease;
}
.site-header:not(.scrolled) .logo-text-mobile { color: #fff; }
.site-header.scrolled .logo-text-mobile,
body.no-hero .site-header .logo-text-mobile { color: var(--teal); }

.logo-icon {
  fill: #ffffff; /* blanc par défaut sur hero */
  transition: fill .3s ease;
}
.site-header.scrolled .logo-icon,
body.no-hero .site-header .logo-icon {
  fill: #0C3B4A !important; /* teal sur fond blanc */
}

/* Nav */
.main-nav > ul { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  padding: 6px 10px; border-radius: var(--r-sm);
  font-size: 1.05rem; font-weight: 300; letter-spacing: 0.03em;
  font-family: var(--font-nav);
  color: rgba(255,255,255,.92); white-space: nowrap;
  transition: color var(--ease); background: transparent;
}
.main-nav a:hover { color: rgba(255,255,255,.55); background: transparent; }
.site-header.scrolled .main-nav a { color: var(--text); }
.site-header.scrolled .main-nav a:hover { color: var(--muted); }

.has-sub { position: relative; }
.sub-menu {
  display: block;
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); box-shadow: var(--sh-md);
  min-width: 210px; padding: 6px; z-index: 200;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  /* Délai de fermeture : le menu reste 400ms après que la souris parte */
  transition: opacity .15s ease .0s, transform .15s ease .0s;
}
.has-sub:hover .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity .15s ease .0s, transform .15s ease .0s;
}
/* Zone tampon invisible entre le lien et le sous-menu */
.has-sub::after {
  content: '';
  position: absolute;
  top: 100%; left: 0;
  width: 100%; height: 10px;
}
.sub-menu li a { padding: 9px 14px; display: block; border-radius: var(--r-sm); font-size: 0.92rem; font-weight: 300; font-family: var(--font-nav); color: var(--text) !important; }
.sub-menu li a:hover { background: var(--teal-lt); color: var(--teal) !important; }

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;
}
.nav-right > * {
  flex-shrink: 0;
}

/* Bouton tel — sobre, cohérent avec btn-membre */
.btn-tel {
  height: 42px; padding: 0 18px; border-radius: var(--r-xl);
  font-family: var(--font-nav);
  font-size: 0.88rem; font-weight: 300; letter-spacing: 0.04em;
  color: var(--white) !important;
  border: 2px solid rgba(255,255,255,.65);
  background: transparent;
  display: inline-flex; align-items: center; justify-content: center;
  white-space: nowrap; cursor: pointer;
  transition: all .25s ease;
  line-height: 1; box-sizing: border-box;
  margin: 0;
}
.btn-tel:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.95);
}
.site-header.scrolled .btn-tel {
  color: var(--teal) !important;
  border-color: var(--teal);
  background: transparent;
}
.site-header.scrolled .btn-tel:hover {
  background: var(--teal);
  color: var(--white) !important;
}

.btn-waze {
  width: 42px; height: 42px; border-radius: 50%;
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
  display: none; align-items: center; justify-content: center;
  transition: all var(--ease); flex-shrink: 0;
}
.btn-waze:hover { background: var(--white); color: var(--teal); border-color: var(--white); }
.site-header.scrolled .btn-waze { color: var(--teal); border-color: var(--teal); }
.site-header.scrolled .btn-waze:hover { background: var(--teal); color: var(--white); }
body.no-hero .site-header .btn-waze { color: var(--teal) !important; border-color: var(--teal) !important; }

.btn-membre {
  width: 42px; height: 42px; border-radius: 50%;
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all var(--ease); flex-shrink: 0;
}
.btn-membre:hover { background: var(--white); color: var(--teal); border-color: var(--white); }
.site-header.scrolled .btn-membre { color: var(--teal); border-color: var(--teal); }
.site-header.scrolled .btn-membre:hover { background: var(--teal); color: var(--white); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
@media (min-width: 1201px) { .nav-toggle { display: none !important; } .main-nav { display: flex !important; align-items: center; } }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; }
.site-header.scrolled .nav-toggle span { background: var(--text); }

/* ============================================================
   HERO — plein écran photo + overlay
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  min-height: 580px; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(12,59,74,.38) 0%, rgba(12,59,74,.52) 100%),
              url('../images/fond.jpg') center/cover no-repeat;
}
.hero-inner { position: relative; z-index: 1; padding: 96px 0; }
.hero-content { max-width: 680px; }
.hero-content h1 { color: var(--white); margin-bottom: 20px; line-height: 1; letter-spacing: 0.1em; }
.hero-content .lead {
  color: rgba(255,255,255,.82);
  margin-bottom: 0;
  max-width: 68ch;
  font-size: 1rem;
  font-family: 'AvantGarde', sans-serif;
  font-weight: 300;
  font-style: oblique;
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   FEATURES BAND — bleu pétrole
   ============================================================ */
.features-band {
  background: var(--teal);
  padding: 40px 0 36px;
  border-radius: 32px 32px 0 0;
  margin-top: -32px;
  position: relative;
  z-index: 2;
}
.features-band-inner {
  display: flex; align-items: stretch;
  gap: 0; justify-content: center;
}
.feature-item {
  display: flex; flex-direction: column; align-items: center;
  justify-content: flex-start;
  gap: 14px; padding: 0 40px;
  color: var(--white); flex: 1;
  text-align: center;
}
.feature-item + .feature-item {
  border-left: 1px solid rgba(255,255,255,.15);
}
.feature-item .icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: rgba(255,255,255,.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.feature-item .icon svg { width: 24px; height: 24px; stroke: #fff; fill: none; }
.feature-item .feature-text { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.feature-item strong {
  display: block;
  font-family: 'AvantGarde', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.05em; line-height: 1.2;
}
.feature-item span {
  font-family: 'AvantGarde', sans-serif;
  font-size: 0.8rem; font-weight: 300;
  font-style: oblique;
  color: rgba(255,255,255,.72);
  line-height: 1.5; letter-spacing: 0.02em;
}

/* ============================================================
   ABOUT — fond blanc, arrondi haut
   ============================================================ */
/* Titres sections uniformisés */
.about-section h2,
.services-section h2,
.team-section h2 {
  font-size: 1.8rem;
}

.about-section {
  background: var(--bg);
  border-radius: 32px 32px 0 0;
  margin-top: -24px; position: relative; z-index: 2;
  padding: 80px 0;
}
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-eyebrow { font-size: 0.8rem; color: var(--muted); display: flex; align-items: center; gap: 6px; margin-bottom: 16px; }
.about-eyebrow::before { content: '/'; color: var(--accent); font-weight: 700; }
.about-points { display: flex; flex-direction: column; gap: 12px; margin: 24px 0 32px; }
.about-point { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 500; color: var(--text); }
.about-point::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.about-trust {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 14px 18px;
  display: inline-flex; align-items: center; gap: 12px;
  box-shadow: var(--sh-sm); margin-top: 8px;
}
.about-trust .avatars { display: flex; }
.about-trust .avatars span {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--teal-lt); border: 2px solid var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 600; color: var(--teal);
  margin-left: -8px;
}
.about-trust .avatars span:first-child { margin-left: 0; }
.about-trust small { font-size: 0.75rem; color: var(--muted); }

/* Photo collage circulaire */
.about-visual { position: relative; }
.about-circle {
  width: 460px; height: 460px; border-radius: 50%;
  overflow: hidden; position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4px; margin: 0 auto;
}
.about-circle img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease, filter .5s ease, box-shadow .5s ease;
}
.about-circle img:hover {
  transform: scale(.93);
  filter: brightness(.75);
  box-shadow: inset 0 8px 24px rgba(0,0,0,.4);
}
.about-circle-logo {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90px; height: 90px; border-radius: 50%;
  background: var(--white); box-shadow: var(--sh-md);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.about-circle-logo img, .about-circle-logo svg { width: 36px; height: 36px; object-fit: contain; }
.about-circle-logo {
  transition: box-shadow .4s ease, transform .4s ease;
}
.about-visual:hover .about-circle-logo {
  box-shadow: 0 0 20px rgba(12,59,74,.3), 0 0 40px rgba(12,59,74,.15), 0 4px 16px rgba(0,0,0,.1);
  transform: translate(-50%, -50%) scale(1.08);
}

/* ============================================================
   SERVICES — fond gris clair, cartes photo+overlay
   ============================================================ */
.services-section { background: var(--bg-alt); padding: 72px 0 80px; position: relative; overflow: hidden; }
.services-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; flex-wrap: wrap; gap: 16px; }
.services-header h2 { margin-bottom: 0; }
.services-grid-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.svc-tile {
  display: flex; flex-direction: column;
  background: var(--teal); border-radius: var(--r-md);
  padding: 24px 22px; color: var(--white);
  text-decoration: none;
  transition: transform var(--ease), box-shadow var(--ease);
  position: relative;
}
.svc-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(12,59,74,.25);
  color: var(--white);
}
.svc-tile__icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  color: #fff;
}
.svc-tile h3 {
  font-family: 'AvantGarde', sans-serif;
  font-size: .95rem; font-weight: 600;
  color: #fff; margin-bottom: 6px;
}
.svc-tile p {
  font-family: 'AvantGarde', sans-serif;
  font-size: .78rem; font-weight: 300;
  color: rgba(255,255,255,.7);
  line-height: 1.6; margin: 0;
  flex: 1;
}
.svc-tile__arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff; font-size: .9rem;
  margin-top: 14px; align-self: flex-end;
  transition: background var(--ease);
}
.svc-tile:hover .svc-tile__arrow { background: #fff; color: var(--teal); }

@media (max-width: 768px) {
  .services-grid-compact { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .services-grid-compact { grid-template-columns: 1fr; }
  .svc-tile { padding: 20px 18px; }
}

/* ============================================================
   ÉQUIPE
   ============================================================ */
.team-section { background: var(--bg); padding: 96px 0; }
.team-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; flex-wrap: wrap; gap: 16px; }
.team-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 22px;
}
.team-card { width: calc(25% - 17px); }
.team-card {
  text-align: center; text-decoration: none; color: inherit;
  display: block; transition: transform var(--ease);
}
.team-card:hover { transform: translateY(-4px); color: inherit; }
.team-card__photo {
  border-radius: var(--r-md); overflow: hidden;
  background: var(--bg-alt); aspect-ratio: 3/3.5; margin-bottom: 14px;
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.4s ease; }
.team-card:hover .team-card__photo img { transform: scale(1.03); }
.team-card__name { font-family: var(--font-display); font-size: 1.1rem; color: var(--teal); margin-bottom: 4px; }
.team-card__metier { font-size: 0.78rem; color: var(--muted); }

/* ============================================================
   TÉMOIGNAGES
   ============================================================ */
.temoignages-section { background: var(--bg-alt); padding: 96px 0; }
.temo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.temo-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 28px 26px; position: relative;
  box-shadow: var(--sh-sm);
}
.temo-card::before {
  content: '"'; font-family: var(--font-display); font-size: 5rem;
  color: var(--teal); opacity: .12; line-height: 1;
  position: absolute; top: 12px; left: 20px;
}
.temo-stars { color: #F59E0B; font-size: 0.8rem; margin-bottom: 14px; margin-top: 18px; }
.temo-card blockquote { font-style: italic; font-size: 0.9rem; color: var(--text); line-height: 1.75; margin-bottom: 16px; }
.temo-card cite { font-size: 0.8rem; color: var(--muted); font-style: normal; font-weight: 600; }

/* ============================================================
   FOOTER — épuré
   ============================================================ */
.site-footer {
  background: var(--teal);
  color: rgba(255,255,255,.8);
  padding: 48px 0 0;
}
.footer-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  padding-bottom: 40px;
}
.footer-brand { display: flex; align-items: center; }
.footer-logo {
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  opacity: .92;
}

/* Barre verticale de séparation */
.footer-divider {
  width: 1px; height: 48px;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}

/* Tel + Mail */
.footer-contacts { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
  display: flex; align-items: center; gap: 9px;
  font-family: 'AvantGarde', sans-serif;
  font-size: 0.9rem; font-weight: 300;
  color: rgba(255,255,255,.8);
  transition: color var(--ease);
}
.footer-contact-item:hover { color: #fff; }
.footer-contact-item svg { opacity: .7; flex-shrink: 0; }
.footer-social { display: flex; gap: 12px; align-items: center; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.8);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--ease), color var(--ease);
}
.footer-social a:hover { background: rgba(255,255,255,.25); color: #fff; }
.footer-sep { height: 1px; background: rgba(255,255,255,.12); }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 8px;
  padding: 16px 0;
  font-family: 'AvantGarde', sans-serif;
  font-size: 0.78rem; font-weight: 300;
  color: rgba(255,255,255,.4);
}
.footer-legal { display: flex; align-items: center; gap: 10px; }
.footer-legal a { color: rgba(255,255,255,.5); transition: color var(--ease); }
.footer-legal a:hover { color: #fff; }
.footer-dot { opacity: .4; }
@media (max-width: 700px) {
  .footer-inner { flex-direction: column; align-items: center; gap: 24px; text-align: center; }
  .footer-contacts { align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
}

/* ============================================================
   AUTH / DASHBOARD / PRATICIEN (inchangés, simplifiés)
   ============================================================ */
.auth-page { min-height: calc(100vh - var(--hh)); display: flex; align-items: center; justify-content: center; background: var(--bg-alt); padding: 40px 24px; }
.auth-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--sh-lg); padding: 48px; width: 100%; max-width: 420px; }
.auth-card h1 { font-size: 2rem; margin-bottom: 6px; }
.auth-card .lead { font-size: 0.95rem; margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.83rem; font-weight: 600; margin-bottom: 6px; }
.form-group input { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--r-sm); font-family: var(--font-body); font-size: 0.95rem; background: var(--bg); color: var(--text); transition: border-color var(--ease); }
.form-group input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(12,59,74,.1); }
.form-error { background: #FEE2E2; border: 1px solid #FCA5A5; color: #B91C1C; padding: 12px 16px; border-radius: var(--r-sm); font-size: 0.88rem; margin-bottom: 18px; }
.dashboard-layout { display: grid; grid-template-columns: 230px 1fr; min-height: calc(100vh - var(--hh)); }
.sidebar { background: var(--teal); padding: 28px 0; }
.sidebar-user { padding: 0 20px 22px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 12px; }
.sidebar-user strong { color: #fff; display: block; font-size: 0.9rem; }
.sidebar-user span { color: rgba(255,255,255,.6); font-size: 0.75rem; }
.sidebar-nav a { display: flex; align-items: center; gap: 10px; padding: 11px 20px; color: rgba(255,255,255,.6); font-size: 0.87rem; transition: all var(--ease); }
.sidebar-nav a:hover, .sidebar-nav a.active { background: rgba(255,255,255,.1); color: #fff; }
.dashboard-content { padding: 40px 48px; background: var(--bg); }
.praticien-hero { background: var(--surface); padding: 64px 0; border-bottom: 1px solid var(--border); }
.praticien-hero-inner { display: grid; grid-template-columns: 260px 1fr; gap: 52px; align-items: start; }
.praticien-photo { border-radius: var(--r-md); overflow: hidden; aspect-ratio: 3/4; background: var(--bg-alt); }
.praticien-photo img { width: 100%; height: 100%; object-fit: cover; }
.praticien-metier-badge { display: inline-block; background: var(--teal-lt); color: var(--teal); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 5px 14px; border-radius: var(--r-xl); margin-bottom: 14px; }


/* ============================================================
   PAGE HERO MINI (pages intérieures)
   ============================================================ */
.page-hero {
  background: var(--teal);
  padding-top: calc(var(--topbar-h) + var(--hh) + 48px);
  padding-bottom: 56px;
  color: var(--white);
  position: relative; overflow: hidden;
  margin-top: calc(-1 * (var(--topbar-h) + var(--hh)));
}

/* Page hero avec image de fond */
.page-hero--img {
  background-image:
    linear-gradient(to right, rgba(12,59,74,.75) 30%, rgba(12,59,74,.45) 100%),
    var(--hero-img, none);
  background-size: cover;
  background-position: center;
}
/* Pages intérieures : même padding que l'accueil */
body.page-interieure { padding-top: calc(var(--topbar-h) + var(--hh)); }

/* Pages sans hero : header blanc et positionné à top:0 dès le chargement */
body.no-hero .site-header {
  top: 0 !important;
  background: var(--surface) !important;
  border-bottom: 1px solid var(--border) !important;
  box-shadow: var(--sh-sm) !important;
}
body.no-hero .site-header .main-nav a { color: var(--text) !important; }
body.no-hero .site-header .main-nav a:hover { color: var(--muted) !important; }
body.no-hero .site-header .logo-img {
  filter: brightness(0) saturate(100%) invert(20%) sepia(40%) saturate(600%) hue-rotate(160deg) brightness(80%) !important;
}
body.no-hero .site-header .btn-tel { color: var(--teal) !important; border-color: var(--teal) !important; }
body.no-hero .site-header .btn-membre { color: var(--teal); border-color: var(--teal); }
body.no-hero .site-header .btn-waze { color: var(--teal); border-color: var(--teal); }



body.no-hero .topbar { display: none; }
body.no-hero { padding-top: var(--hh) !important; }
.page-hero::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 40px;
  background: var(--bg);
  border-radius: 40px 40px 0 0;
}
.page-hero .eyebrow { color: rgba(255,255,255,.6); }
.page-hero .eyebrow::before { background: rgba(255,255,255,.4); }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero .lead { color: rgba(255,255,255,.75); max-width: 56ch; }

/* ============================================================
   PAGE ACCÈS
   ============================================================ */
.acces-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.acces-infos { display: flex; flex-direction: column; gap: 16px; }

.acces-card {
  display: flex; align-items: flex-start; gap: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px 24px;
  box-shadow: var(--sh-sm);
  transition: box-shadow var(--ease), border-color var(--ease);
}
.acces-card:hover { box-shadow: var(--sh-md); border-color: var(--teal); }
.acces-card__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--teal-lt);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 1.1rem;
}
.acces-card h3 {
  font-family: 'AvantGarde', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--teal); margin-bottom: 10px;
}
.acces-card p { margin: 0; font-size: 0.92rem; line-height: 1.65; font-family: 'AvantGarde', sans-serif; font-weight: 300; }
.acces-card a { color: var(--teal); font-weight: 600; }
.acces-card a:hover { color: var(--teal-mid); }

/* Horaires */
.horaires-table { width: 100%; border-collapse: collapse; }
.horaires-table td {
  padding: 7px 0; font-size: 0.92rem;
  border-bottom: 1px solid var(--border);
}
.horaires-table td:first-child { font-weight: 600; color: var(--text); width: 40%; }
.horaires-table td:last-child { color: var(--teal); font-weight: 500; }
.horaires-table tr.closed td { color: var(--muted); }
.horaires-table tr:last-child td { border-bottom: none; }

/* Liste accès pratique */
.acces-list { display: flex; flex-direction: column; gap: 10px; margin: 0; }
.acces-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.92rem; line-height: 1.5;
}
.acces-list li i { color: var(--teal); width: 18px; text-align: center; flex-shrink: 0; }

/* Carte */
.acces-map {
  position: sticky; top: calc(var(--topbar-h) + var(--hh) + 20px);
  height: 580px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--border);
}
.acces-map iframe { width: 100%; height: 100%; border: none; }

@media (max-width: 900px) {
  .acces-grid { grid-template-columns: 1fr; }
  .acces-map { position: static; height: 380px; }
}


/* --- Bus badges & autoroute --- */
.bus-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  background: var(--teal); color: #fff;
  font-weight: 700; font-size: 0.85rem;
}
.acces-list { display: flex; flex-direction: column; gap: 14px; margin: 0; }
.acces-list li { display: flex; align-items: center; gap: 14px; font-size: 0.92rem; }
.acces-list li small { color: var(--muted); font-size: 0.82rem; }
.acces-card__icon svg { color: var(--teal); }

.autoroute-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-top: 14px;
}
.autoroute-item {
  background: var(--bg-alt); border-radius: var(--r-sm);
  padding: 14px 16px;
}
.autoroute-from {
  font-family: 'AvantGarde', sans-serif;
  font-size: 0.88rem; font-weight: 600;
  color: var(--teal); margin-bottom: 10px;
}
.autoroute-from small { font-weight: 300; color: var(--muted); margin-left: 4px; }
.autoroute-steps {
  list-style: none; display: flex; flex-direction: column; gap: 7px; margin: 0;
}
.autoroute-steps li {
  display: flex; align-items: flex-start; gap: 8px;
  font-family: 'AvantGarde', sans-serif;
  font-size: 0.8rem; font-weight: 300; color: var(--muted); line-height: 1.4;
}
.step-badge {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--teal); color: #fff;
  font-family: 'AvantGarde', sans-serif;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 2px 7px; border-radius: 4px; flex-shrink: 0;
  margin-top: 1px;
}

@media (max-width: 600px) {
  .autoroute-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGES PRATICIENS (kiné / ostéo)
   ============================================================ */
.praticiens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  padding-top: 48px;
}

.praticien-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: box-shadow var(--ease), transform var(--ease);
}
.praticien-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }

/* Photo + overlay reflet */
.praticien-card__photo-wrap {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.praticien-card__photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  transition: transform .45s ease;
}
.praticien-card:hover .praticien-card__photo-wrap img { transform: scale(1.04); }

/* Overlay reflet lumineux */
.praticien-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0) 40%, rgba(255,255,255,.18) 100%);
  display: flex; align-items: flex-end; justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s ease;
}
/* Reflet supplémentaire qui glisse */
.praticien-card__photo-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.25) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform .55s ease;
}
.praticien-card:hover .praticien-card__photo-wrap::after { transform: translateX(100%); }
.praticien-card:hover .praticien-card__overlay { opacity: 1; }

.praticien-card__overlay span {
  display: flex; align-items: center; gap: 8px;
  background: var(--teal); color: #fff;
  font-family: 'AvantGarde', sans-serif;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em;
  padding: 8px 16px; border-radius: var(--r-xl);
}

/* Corps de la carte */
.praticien-card__body { padding: 28px 28px 32px; }

.praticien-card__titre {
  font-family: 'AvantGarde', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--teal); margin-bottom: 8px;
}
.praticien-card__nom {
  font-family: 'AvantGarde', sans-serif;
  font-size: 1.6rem; font-weight: 600;
  color: var(--teal); line-height: 1.15;
  margin-bottom: 24px; letter-spacing: 0.02em;
}
.praticien-card__nom span { font-weight: 300; }

/* Horaires dans la carte */
.praticien-card__horaires h3 {
  display: flex; align-items: center; gap: 7px;
  font-family: 'AvantGarde', sans-serif;
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); margin-bottom: 12px;
}
.praticien-card__horaires .horaires-table td { font-size: 0.85rem; padding: 5px 0; }

@media (max-width: 760px) {
  .praticiens-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   TARIFS
   ============================================================ */
.tarifs-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px; margin-top: 32px;
}
.tarif-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 24px 20px;
  text-align: center; transition: transform var(--ease), box-shadow var(--ease);
}
.tarif-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.tarif-card--accent { border-color: var(--teal); background: var(--teal-lt); }
.tarif-card__nom {
  font-family: 'AvantGarde', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted); margin-bottom: 10px;
}
.tarif-card__prix {
  font-family: 'AvantGarde', sans-serif;
  font-size: 2.2rem; font-weight: 600;
  color: var(--teal); line-height: 1;
  margin-bottom: 6px;
}
.tarif-card__duree {
  font-family: 'AvantGarde', sans-serif;
  font-size: 0.78rem; font-weight: 300;
  color: var(--muted); font-style: oblique;
}

/* ============================================================
   FAQ TUILES
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin-top: 40px;
}
@media (max-width: 600px) {
  .faq-grid { grid-template-columns: 1fr; }
}
.faq-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 28px 24px;
  box-shadow: var(--sh-sm);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  position: relative; overflow: hidden;
}
.faq-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--teal);
}
/* Accent coloré en haut de la tuile */
.faq-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), transparent);
  opacity: 0; transition: opacity var(--ease);
}
.faq-card:hover::before { opacity: 1; }

.faq-card__icon {
  width: 48px; height: 48px;
  background: var(--teal-lt); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); margin-bottom: 16px;
}
.faq-card h3 {
  font-family: 'AvantGarde', sans-serif;
  font-size: 1rem; font-weight: 600;
  color: var(--teal); margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.faq-card p {
  font-family: 'AvantGarde', sans-serif;
  font-size: 0.88rem; font-weight: 300;
  color: var(--muted); line-height: 1.7; margin: 0;
}

/* Photos praticiens moins hautes */
.praticien-card__photo-wrap { aspect-ratio: 3/2.5; }

/* Carte praticien sans photo */
.praticien-card--no-photo { min-height: 0; }
.praticien-card--no-photo .praticien-card__body { padding: 32px; }
.praticien-card__header {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.praticien-card__link {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--teal-lt); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all var(--ease);
}
.praticien-card__link:hover { background: var(--teal); color: #fff; }
.praticien-card__nom { font-size: 1.4rem; margin-bottom: 0; }

/* Sections arrondies */
.section--rounded {
  border-radius: 24px 24px 0 0;
  margin-top: -24px;
  position: relative; z-index: 2;
}
.section--rounded-inv {
  border-radius: 0 0 24px 24px;
}

/* Tarifs — 3 tuiles + note */
.tarifs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 32px;
}
/* Nouvelle grille 3 tuiles égales */
.tarifs-grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 32px;
}
.tarif-card--wide { grid-column: 1 / -1; }
.tarif-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 28px 20px;
  text-align: center; cursor: default;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease), background var(--ease);
  position: relative; overflow: hidden;
}
.tarif-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--teal); opacity: 0; transition: opacity var(--ease);
}
.tarif-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--teal);
  background: var(--teal-lt);
}
.tarif-card:hover::before { opacity: 1; }
.tarif-card:hover .tarif-card__prix { color: var(--teal); }
.tarif-card__duree { display: none; }

/* Indications */
.indications-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 40px;
}
/* Conteneur élargi pour les sections tuiles (indications + FAQ) */
.section--tuiles .container { max-width: 1100px; }

@media (max-width: 1100px) {
  .indications-grid { grid-template-columns: repeat(2, 1fr); }
}
.indication-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 24px 20px;
  transition: transform var(--ease), box-shadow var(--ease);
}
.indication-item:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.indication-item__icon { font-size: 1.8rem; margin-bottom: 12px; }
.indication-item h3 {
  font-family: 'AvantGarde', sans-serif;
  font-size: 0.9rem; font-weight: 600;
  color: var(--teal); margin-bottom: 6px; letter-spacing: 0.02em;
}
.indication-item p {
  font-family: 'AvantGarde', sans-serif;
  font-size: 0.8rem; font-weight: 300;
  color: var(--muted); margin: 0; line-height: 1.55;
}

@media (max-width: 700px) {
  .tarifs-grid-3 { grid-template-columns: 1fr; }
  .indications-grid { grid-template-columns: 1fr 1fr; }
}

/* Note remboursement */
.tarif-note {
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: 20px; padding: 16px 18px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-family: 'AvantGarde', sans-serif;
  font-size: 0.82rem; font-weight: 300;
  font-style: oblique; color: var(--muted); line-height: 1.65;
}
.tarif-note svg { flex-shrink: 0; margin-top: 2px; color: var(--teal); }

@media (max-width: 600px) {
  .tarifs-grid { grid-template-columns: 1fr 1fr; }
  .tarif-card--wide { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .tarifs-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   FICHE PRATICIEN
   ============================================================ */
/* Hero plus petit pour les fiches */
.page-hero--sm {
  min-height: 200px;
  padding-top: calc(var(--topbar-h) + var(--hh) + 32px);
  padding-bottom: 60px;
  margin-top: calc(-1 * (var(--topbar-h) + var(--hh)));
}

.page-hero__specialite {
  font-family: 'AvantGarde', sans-serif;
  font-size: 1.6rem; font-weight: 600;
  color: #fff; letter-spacing: 0.06em;
  text-transform: uppercase;
}

.praticien-fiche-section {
  background: var(--bg);
  padding: 0 0 56px;
}
.praticien-fiche {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--border);
}

/* Photo */
.praticien-fiche__photo {
  background: var(--teal-lt);
  overflow: hidden;
}
.praticien-fiche__photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  min-height: 400px;
}

/* Contenu */
.praticien-fiche__content {
  padding: 40px 44px;
  display: flex; flex-direction: column; gap: 24px;
}
.praticien-fiche__header { display: flex; align-items: flex-start; justify-content: space-between; }
.praticien-fiche__nom {
  font-family: 'AvantGarde', sans-serif;
  font-size: 1.8rem; font-weight: 600;
  color: var(--teal); letter-spacing: 0.02em;
  margin-bottom: 4px; white-space: normal;
}
.praticien-fiche__titre {
  font-family: 'AvantGarde', sans-serif;
  font-size: 0.82rem; font-weight: 300;
  color: var(--muted); letter-spacing: 0.06em;
  text-transform: uppercase;
}
.praticien-fiche__desc {
  font-family: 'AvantGarde', sans-serif;
  font-size: 0.9rem; font-weight: 300;
  color: var(--text); line-height: 1.75;
  max-width: 56ch; margin: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

/* Grille icônes infos */
.praticien-fiche__meta {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.fiche-meta-item {
  display: flex; align-items: flex-start; gap: 14px;
}
.fiche-meta-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--teal-lt); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
}
.fiche-meta-label {
  font-family: 'AvantGarde', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); margin-bottom: 3px;
}
.fiche-meta-val {
  font-family: 'AvantGarde', sans-serif;
  font-size: 0.9rem; font-weight: 300;
  color: var(--text);
}
.fiche-meta-val a { color: var(--teal); }
.fiche-meta-val a:hover { color: var(--teal-mid); }

.praticien-fiche__rdv { margin-top: auto; padding-top: 8px; }

/* Horaires grand format */
.horaires-table--lg td { padding: 9px 0; font-size: 0.92rem; }

@media (max-width: 860px) {
  .praticien-fiche { grid-template-columns: 1fr; }
  .praticien-fiche__photo { min-height: 280px; max-height: 320px; }
  .praticien-fiche__photo img { min-height: 0; }
  .praticien-fiche__content { padding: 28px 24px; }
  .praticien-fiche__meta { grid-template-columns: 1fr; gap: 16px; }
}


/* Image extra dans la description */
.praticien-img-extra {
  width: 100%; max-width: 340px;
  border-radius: var(--r-md);
  margin: 20px 0 8px;
  box-shadow: var(--sh-sm);
  object-fit: cover;
}

/* Signature praticien */
.praticien-signature {
  height: 52px; width: auto;
  margin-top: 20px; opacity: .85;
  filter: brightness(0) saturate(100%) invert(20%) sepia(40%) saturate(600%) hue-rotate(160deg) brightness(80%);
}

/* Bouton Doctolib */
.btn-doctolib {
  background: #0596DE; color: #fff !important;
  border: 2px solid #0596DE; border-radius: var(--r-xl);
  padding: 13px 24px; font-size: 0.9rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all var(--ease); text-decoration: none;
}
.btn-doctolib:hover { background: #047bb8; border-color: #047bb8; color: #fff !important; }

/* Boutons RDV */
.praticien-fiche__rdv { display: flex; gap: 12px; flex-wrap: wrap; margin-top: auto; padding-top: 8px; }

/* Grille horaires + tarifs */
.fiche-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cabinet-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.fiche-bottom-grid--single {
  grid-template-columns: 1fr !important;
  max-width: 560px;
  margin: 0 auto;
}
.fiche-bottom-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px;
  box-shadow: var(--sh-sm);
}
.fiche-bottom-tile__header {
  display: flex; align-items: center; gap: 10px;
  font-family: 'AvantGarde', sans-serif;
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--teal); margin-bottom: 18px;
}
.fiche-tarif-ligne {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px; margin-bottom: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-family: 'AvantGarde', sans-serif; font-size: 0.9rem;
  position: relative; overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease), background var(--ease);
  cursor: default;
}
/* Barre en haut */
.fiche-tarif-ligne::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--teal); opacity: 0; transition: opacity var(--ease);
}
/* Shimmer */
.fiche-tarif-ligne::after {
  content: '';
  position: absolute; top: -50%; left: -75%;
  width: 50%; height: 200%;
  background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,.5) 50%, transparent 80%);
  transform: skewX(-15deg);
  transition: left .55s ease;
  pointer-events: none;
}
.fiche-tarif-ligne:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
  border-color: var(--teal);
  background: var(--teal-lt);
}
.fiche-tarif-ligne:hover::before { opacity: 1; }
.fiche-tarif-ligne:hover::after { left: 125%; }
.fiche-tarif-prix {
  font-weight: 600; color: var(--teal);
  font-size: 1.2rem;
}
.fiche-tarif-note {
  font-size: 0.75rem; color: var(--muted);
  font-style: oblique; margin-top: 14px; line-height: 1.5;
}

@media (max-width: 700px) {
  .fiche-bottom-grid { grid-template-columns: 1fr; }
  .praticien-fiche__rdv { flex-direction: column; }
}


/* Réseaux sociaux praticien */
.praticien-fiche__social {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 4px;
}
.praticien-social-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: var(--r-xl);
  font-family: 'AvantGarde', sans-serif;
  font-size: 0.82rem; font-weight: 300;
  border: 1.5px solid var(--border);
  color: var(--text); background: transparent;
  transition: all var(--ease);
}
.praticien-social-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-lt);
}


/* ============================================================
   PAGE CABINET
   ============================================================ */

/* Intro */
.cabinet-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.cabinet-intro__text h2 { margin-bottom: 20px; }
.cabinet-intro__text p {
  font-family: 'AvantGarde', sans-serif;
  font-size: .92rem; font-weight: 300;
  color: var(--text); line-height: 1.8; margin-bottom: 14px;
}
.cabinet-intro__img img {
  width: 100%; border-radius: var(--r-lg);
  box-shadow: var(--sh-lg); object-fit: cover;
  aspect-ratio: 4/3;
}

/* Stats */
.cabinet-stats {
  display: flex; gap: 32px; margin-top: 32px;
  padding-top: 28px; border-top: 1px solid var(--border);
}
.cabinet-stat__nb {
  font-family: 'AvantGarde', sans-serif;
  font-size: 2rem; font-weight: 600; color: var(--teal);
}
.cabinet-stat__label {
  font-family: 'AvantGarde', sans-serif;
  font-size: .75rem; font-weight: 300;
  color: var(--muted); text-transform: uppercase; letter-spacing: .08em;
}

/* Galerie */
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 12px; margin-top: 40px;
}
.galerie-item {
  position: relative; overflow: hidden;
  border-radius: var(--r-md); cursor: pointer;
}
.galerie-item--large { grid-column: span 2; }
.galerie-item img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform .5s ease;
}
.galerie-item:hover img { transform: scale(1.06); }
.galerie-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,59,74,.7) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 16px;
  opacity: 0; transition: opacity var(--ease);
}
.galerie-item:hover .galerie-overlay { opacity: 1; }
.galerie-overlay span {
  font-family: 'AvantGarde', sans-serif;
  font-size: .82rem; font-weight: 600;
  color: #fff; letter-spacing: .06em; text-transform: uppercase;
}

/* Équipements */
.equipements-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; margin-top: 44px;
}
.equipement-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 36px 32px;
  box-shadow: var(--sh-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.equipement-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.equipement-card__logo {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.equipement-card__logo img { height: 40px; width: auto; opacity: .85; }
.equipement-card__badge {
  display: inline-block; margin-bottom: 12px;
  padding: 3px 12px; background: var(--teal-lt);
  color: var(--teal); border-radius: 20px;
  font-family: 'AvantGarde', sans-serif;
  font-size: .72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
}
.equipement-card h3 {
  font-family: 'AvantGarde', sans-serif;
  font-size: 1.15rem; font-weight: 600;
  color: var(--teal); margin-bottom: 12px;
}
.equipement-card p {
  font-family: 'AvantGarde', sans-serif;
  font-size: .88rem; font-weight: 300;
  color: var(--text); line-height: 1.7; margin-bottom: 16px;
}
.equipement-list {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 20px;
}
.equipement-list li {
  font-family: 'AvantGarde', sans-serif;
  font-size: .85rem; font-weight: 300;
  color: var(--muted); display: flex; align-items: center; gap: 8px;
}
.equipement-list li::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--teal); flex-shrink: 0;
}
.equipement-link {
  font-family: 'AvantGarde', sans-serif;
  font-size: .82rem; font-weight: 600;
  color: var(--teal); text-decoration: none;
  transition: opacity var(--ease);
}
.equipement-link:hover { opacity: .7; }



/* ============================================================
   ANIMATIONS
   ============================================================ */
[data-anim] { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
[data-anim].anim-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { [data-anim] { opacity: 1; transform: none; } }



/* ============================================================
   GALERIE CABINET
   ============================================================ */
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 14px;
}
.galerie-item {
  position: relative; overflow: hidden;
  border-radius: var(--r-md);
  aspect-ratio: 3/4;
  box-shadow: var(--sh-sm);
  cursor: zoom-in;
}
.galerie-item--large {
  grid-column: span 2;
  aspect-ratio: 4/3;
}
.galerie-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.galerie-item:hover img { transform: scale(1.05); }
.galerie-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 10px 16px;
  background: linear-gradient(to top, rgba(12,59,74,.7), transparent);
  color: #fff;
  font-family: 'AvantGarde', sans-serif;
  font-size: .78rem; font-weight: 300;
  opacity: 0; transition: opacity var(--ease);
}
.galerie-item:hover .galerie-caption { opacity: 1; }

/* Lightbox simple */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.9); z-index: 1000;
  align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 8px; }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  color: #fff; font-size: 2rem; cursor: pointer;
  background: none; border: none; line-height: 1;
}


@media (max-width: 480px) {
  .galerie-grid { grid-template-columns: 1fr; }
  .galerie-item, .galerie-item--large { grid-column: span 1; aspect-ratio: 4/3; }
}


/* ============================================================
   CABINET — RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .cabinet-intro-grid { grid-template-columns: 1fr !important; gap: 36px !important; }
  .cabinet-duo-photos { grid-template-columns: 1fr 1fr !important; }
  .cabinet-duo-photos img:last-child { margin-top: 0 !important; }
  .cabinet-equip-grid { grid-template-columns: 1fr !important; }
  .cabinet-stats-grid { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 480px) {
  .cabinet-duo-photos { grid-template-columns: 1fr !important; }
  .cabinet-duo-photos img { aspect-ratio: 4/3 !important; }
  .cabinet-stats-grid { grid-template-columns: repeat(2,1fr) !important; gap: 12px !important; }
}

.valeurs-grid {
  grid-template-columns: repeat(2, 1fr) !important;
}
@media (max-width: 480px) {
  .valeurs-grid { grid-template-columns: 1fr !important; }
}


/* ============================================================
   EXPERTISE SECTION (fiches praticiens — section séparée)
   ============================================================ */
.expertise-section {
  background: var(--teal);
  padding: 48px 0 56px;
  border-radius: 24px 24px 0 0;
}
.expertise-title {
  font-family: 'AvantGarde', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 24px;
}
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  text-align: center;
}
.expertise-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 12px 4px;
}
.expertise-icon {
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  color: rgba(255,255,255,.85);
}

.expertise-icon svg { position: relative; z-index: 1; }
.expertise-label {
  font-family: 'AvantGarde', sans-serif;
  font-size: .78rem;
  font-weight: 300;
  color: rgba(255,255,255,.9);
  line-height: 1.3;
}

@media (max-width: 900px) {
  .expertise-title {
  font-family: 'AvantGarde', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 24px;
}
.expertise-grid { grid-template-columns: repeat(3, 1fr); }
  .expertise-section { margin: 0 12px; border-radius: 20px; padding: 36px 0 40px; }
}
@media (max-width: 480px) {
  .expertise-title {
  font-family: 'AvantGarde', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 24px;
}
.expertise-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .expertise-section { margin: 0 8px; border-radius: 16px; padding: 28px 0 32px; }
  .expertise-icon { width: 48px; height: 48px; }
  .expertise-icon svg { width: 32px; height: 32px; }
  .expertise-label { font-size: .72rem; }
}



/* ============================================================
   RESPONSIVE GLOBAL
   ============================================================ */

/* Tablette */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }
  .team-card { width: calc(50% - 11px); }
}
@media (max-width: 480px) {
  .team-card { width: calc(50% - 11px); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; }
  .about-circle { display: none; }
  .fiche-bottom-grid { grid-template-columns: 1fr; }
  .praticien-fiche { grid-template-columns: 280px 1fr; }
}

/* Mobile large */
@media (max-width: 1200px) {
  .nav-toggle { display: flex !important; }
  .main-nav {
    display: none; position: fixed;
    top: var(--hh); left: 0; right: 0; bottom: 0;
    background: var(--surface); overflow-y: auto;
    padding: 40px 0; z-index: 99;
    border-top: 2px solid var(--teal);
  }
  .main-nav.open { display: block !important; }
  .main-nav > ul { flex-direction: column; gap: 0; padding: 0 24px; }
  .main-nav > ul > li { border-bottom: 2px solid var(--border); }
  .main-nav > ul > li:last-child { border-bottom: none; }
  .main-nav a {
    display: block; padding: 22px 8px;
    font-size: 1.35rem; font-weight: 300;
    color: var(--text) !important; border-radius: 0;
    letter-spacing: .03em;
    transition: color .2s ease, padding-left .2s ease;
  }
  .main-nav a:hover {
    color: var(--teal) !important;
    padding-left: 16px;
  }
  .main-nav .has-sub > a {
    display: flex; justify-content: space-between; align-items: center;
  }
  .main-nav .has-sub > a svg {
    transition: transform .3s ease;
    opacity: .4;
  }
  .main-nav .has-sub.open > a {
    color: var(--teal) !important;
  }
  .main-nav .has-sub.open > a svg {
    transform: rotate(180deg);
    opacity: 1;
  }
  .main-nav .has-sub .sub-menu {
    position: static; opacity: 1; visibility: visible;
    box-shadow: none; border: none;
    background: transparent;
    padding: 0 0 6px 0; margin: 0;
    min-width: auto;
    display: none;
    border-left: 2px solid var(--teal);
    margin-left: 12px;
  }
  .main-nav .has-sub.open .sub-menu {
    display: block !important;
  }
  .main-nav .has-sub .sub-menu a {
    font-size: 1.15rem; padding: 14px 18px;
    color: var(--muted) !important;
    font-weight: 300;
    transition: color .2s ease, padding-left .2s ease;
  }
  .main-nav .has-sub .sub-menu a:hover {
    color: var(--teal) !important;
    padding-left: 24px;
  }
  .btn-waze { display: inline-flex; width: 38px; height: 38px; }
  .btn-tel {
    height: 38px; font-size: 0.82rem; padding: 0 14px;
    display: inline-flex; align-items: center; justify-content: center;
    margin: 0;
  }
  .btn-membre { width: 38px; height: 38px; }
  .topbar { display: none !important; }
  body { padding-top: var(--hh) !important; }
  body.page-interieure { padding-top: var(--hh) !important; }
  .hero { margin-top: calc(-1 * var(--hh)) !important; padding-top: calc(var(--hh) + 60px) !important; }
  .page-hero { margin-top: calc(-1 * var(--hh)) !important; padding-top: calc(var(--hh) + 40px) !important; }
  .page-hero--sm { margin-top: calc(-1 * var(--hh)) !important; padding-top: calc(var(--hh) + 32px) !important; }
}

@media (max-width: 768px) {
  :root { --hh: 64px; }
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }

  /* Header */
  .header-inner { height: var(--hh); }
  .main-nav > ul { padding: 0 16px; }
  .main-nav a { font-size: 1rem; padding: 16px 8px; }
  .btn-tel { margin: 20px 16px 0; }

  /* Topbar masquée sur mobile */
  .topbar { display: none; }
  body { padding-top: var(--hh) !important; }
  body.page-interieure { padding-top: var(--hh) !important; }
  .hero { margin-top: calc(-1 * var(--hh)); padding-top: calc(var(--hh) + 60px); }
  .page-hero { margin-top: calc(-1 * var(--hh)); padding-top: calc(var(--hh) + 40px); }
  .page-hero--sm { margin-top: calc(-1 * var(--hh)); padding-top: calc(var(--hh) + 32px); }

  /* Logo toujours coloré sur mobile (fond blanc ou transparent) */
  .site-header .logo-img {
    filter: brightness(0) saturate(100%) invert(20%) sepia(40%) saturate(600%) hue-rotate(160deg) brightness(80%) !important;
  }
  /* Sauf sur hero au chargement */
  .site-header:not(.scrolled) .logo-img {
    filter: brightness(0) invert(1) !important;
  }

  /* Sous-menus mobile */
  .sub-menu {
    position: static !important; box-shadow: none !important;
    border: none !important; padding: 0 0 0 20px !important;
    opacity: 0; pointer-events: none; transform: none !important;
    transition: none !important; display: none;
  }
  .sub-menu.open { opacity: 1 !important; pointer-events: auto !important; display: block !important; }

  /* Nav right */
  .btn-tel { font-size: 0.75rem; height: 34px; padding: 0 10px; margin: 0; display: inline-flex; align-items: center; justify-content: center; }
  .btn-membre { width: 34px; height: 34px; }
  .btn-waze { width: 34px; height: 34px; }
  .nav-right { gap: 8px; }
  .logo-icon { height: 32px !important; }
  .logo-text-mobile { font-size: 1.1rem; }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero-content { max-width: 100%; }
  .hero-content h1 { font-size: clamp(1.2rem, 5vw, 2rem); }
  .features-band-inner { flex-direction: column; gap: 20px; }
  .feature-item { padding: 0 20px; border-left: none !important; border-top: 1px solid rgba(255,255,255,.15); padding-top: 20px; }
  .feature-item:first-child { border-top: none; padding-top: 0; }

  /* Grilles */
  .about-inner { grid-template-columns: 1fr; }
  .about-circle { display: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .temo-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .tarifs-grid, .tarifs-grid-3 { grid-template-columns: 1fr; }
  .indications-grid { grid-template-columns: 1fr 1fr; }
  .praticiens-grid { grid-template-columns: 1fr; }

  /* Praticien fiche */
  .praticien-fiche { grid-template-columns: 1fr; }
  .praticien-fiche__photo { max-height: 320px; }
  .praticien-fiche__photo img { min-height: 0; }
  .praticien-fiche__content { padding: 24px 20px; }
  .praticien-fiche__meta { grid-template-columns: 1fr; gap: 14px; }
  .praticien-fiche__rdv { flex-wrap: wrap; }
  .fiche-bottom-grid { grid-template-columns: 1fr; }

  /* Cabinet */
  .galerie-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .galerie-item--large { grid-column: span 2; aspect-ratio: 4/3; }
  .galerie-item { aspect-ratio: 3/4; }

  /* Accès */
  .acces-grid { grid-template-columns: 1fr; }
  .acces-map { position: static; height: 320px; }
  .autoroute-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: center; gap: 20px; text-align: center; }
  .footer-divider { display: none; }
  .footer-contacts { align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
  .footer-logo { height: 34px; max-width: 180px; }

  /* Dashboard */
  .dashboard-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .dashboard-content { padding: 24px 16px; }
}

/* Mobile petit */
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .indications-grid { grid-template-columns: 1fr; }
  .praticien-fiche__nom { font-size: 1.4rem; }
  .footer-tel { font-size: 1rem; }
  .auth-card { padding: 28px 20px; }
  h1 { font-size: clamp(1rem, 6vw, 1.8rem); white-space: normal !important; }
  h2 { font-size: clamp(1.4rem, 5vw, 2rem); }
}

/* Bouton retour en haut */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--teal); border: none;
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(12,59,74,.3);
  opacity: 0; transform: translateY(20px);
  transition: opacity .3s ease, transform .3s ease, background .3s ease;
  z-index: 90; pointer-events: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { background: #0a2f3a; }

/* Boutons navigation GPS (page accès) */
.acces-nav-btns {
  display: flex; gap: 12px; justify-content: center;
  margin-top: 20px; flex-wrap: wrap;
}
.acces-nav-btns .btn { font-size: .88rem; gap: 8px; }
@media (min-width: 769px) {
  .acces-nav-btns { display: none; }
}
