/* ============================================================
   Claire Saint-Dizier — Ostéopathie v2
   Design system : moderne, arrondi, inspiré Coelembier
   Palette logo : navy #11242a / blue #1f4670 / pale #d6dce7
   Polices : Cormorant (→ Didot) / DM Sans (→ Mr Eaves Mod OT)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy:      #11242a;
  --navy-2:    #1a3540;
  --blue:      #1f4670;
  --blue-soft: #3f6e96;
  --pale:      #d6dce7;
  --pale-2:    #eef1f6;
  --pale-3:    #f5f6f9;
  --cream:     #fafaf8;
  --white:     #ffffff;
  --ink:       #1c2b30;
  --muted:     #6b7f87;
  --green:     #4caf72;

  --font-display: 'Cormorant Garamond', 'Didot', 'Big Caslon', Georgia, serif;
  --font-body:    'DM Sans', 'Mr Eaves Mod OT', system-ui, sans-serif;

  --r-sm:  10px;
  --r-md:  18px;
  --r-lg:  24px;
  --r-xl:  32px;
  --r-pill: 100px;

  --maxw: 1160px;
  --shadow: 0 2px 16px rgba(17,36,42,.07);
  --shadow-lg: 0 8px 40px rgba(17,36,42,.12);
}

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; }

p { margin-bottom: 1em; max-width: 42em; }
p:last-child { margin-bottom: 0; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--navy); }
img { display: block; max-width: 100%; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

/* ── EYEBROW ── */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

/* ══════════════════════════════
   HEADER
══════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--pale-2);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 14px 32px;
  max-width: var(--maxw); margin: 0 auto;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.brand img { height: 48px; width: auto; }
.brand-name {
  font-family: var(--font-display);
  line-height: 1.1;
}
.brand-name strong {
  display: block;
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 500;
}
.brand-name span {
  display: block;
  font-size: .75rem;
  color: var(--blue-soft);
  font-family: var(--font-body);
  letter-spacing: .06em;
  text-transform: uppercase;
}

nav.primary { display: flex; align-items: center; gap: 6px; }
nav.primary a {
  font-size: .88rem;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  transition: background .2s, color .2s;
  font-weight: 400;
}
nav.primary a:hover,
nav.primary a.active { background: var(--pale-2); color: var(--navy); }

.btn-rdv {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy);
  color: var(--white) !important;
  font-size: .88rem; font-weight: 600;
  padding: 11px 22px;
  border-radius: var(--r-pill);
  border: none; cursor: pointer;
  transition: background .2s, transform .15s;
  white-space: nowrap;
  font-family: var(--font-body);
}
.btn-rdv:hover { background: var(--blue); transform: translateY(-1px); }

.nav-burger { display: none; }

@media (max-width: 900px) {
  nav.primary {
    display: none;
    position: fixed; inset: 72px 0 0 0;
    background: var(--white); flex-direction: column;
    align-items: flex-start; padding: 20px 28px;
    gap: 4px; border-top: 1px solid var(--pale-2);
    overflow-y: auto;
  }
  nav.primary.open { display: flex; }
  nav.primary a { padding: 14px 16px; width: 100%; font-size: 1rem; }
  .nav-burger {
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 6px;
  }
  .nav-burger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: .2s; }
}

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: .95rem;
  padding: 14px 30px; border-radius: var(--r-pill);
  border: 2px solid transparent; cursor: pointer;
  transition: all .2s ease; text-decoration: none;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(17,36,42,.2); }
.btn-outline { border-color: rgba(255,255,255,.6); color: var(--white); background: transparent; }
.btn-outline:hover { background: rgba(255,255,255,.12); color: var(--white); }
.btn-outline-dark { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  min-height: 90vh; display: flex; align-items: center;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0d1e24 0%, #1a3a52 60%, #11242a 100%);
}
/* Pattern decoratif */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 70% 50%, rgba(31,70,112,.35) 0%, transparent 70%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 0 auto; padding: 80px 32px;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9); font-size: .78rem; font-weight: 500;
  padding: 7px 16px; border-radius: var(--r-pill); letter-spacing: .04em;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: ''; width: 7px; height: 7px;
  background: var(--green); border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(76,175,114,.3);
}
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero h1 em { font-style: italic; color: var(--pale); }
.hero .lede {
  color: rgba(255,255,255,.72); font-size: 1.1rem;
  max-width: 34em; margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-google {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85); font-size: .88rem;
  padding: 10px 20px; border-radius: var(--r-pill); margin-top: 28px;
}
.hero-google .stars { color: #facc15; letter-spacing: 2px; font-size: .95rem; }

.hero-visual {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.hero-logo-wrap {
  width: 320px; height: 320px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.hero-logo-wrap img { width: 220px; height: auto; }
/* Cercles décoratifs */
.hero-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08); pointer-events: none;
}
.hero-ring-1 { width: 380px; height: 380px; }
.hero-ring-2 { width: 460px; height: 460px; }

@media (max-width: 860px) {
  .hero { min-height: auto; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .hero-visual { order: -1; }
  .hero-logo-wrap { width: 200px; height: 200px; }
  .hero-logo-wrap img { width: 140px; }
  .hero-ring-1 { width: 240px; height: 240px; }
  .hero-ring-2 { width: 300px; height: 300px; }
}

/* ══════════════════════════════
   SECTIONS
══════════════════════════════ */
section { padding: 88px 0; }
.section-grey { background: var(--pale-3); }
.section-navy { background: var(--navy); }
.section-navy .eyebrow { color: var(--pale); }
.section-navy h2, .section-navy h3, .section-navy p { color: rgba(255,255,255,.88); }
.section-navy h2 { color: var(--white); }

.section-head { margin-bottom: 52px; }
.section-head.center { text-align: center; }
.section-head.center p { margin-left: auto; margin-right: auto; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 1.05rem; max-width: 44em; }

/* ══════════════════════════════
   CARDS
══════════════════════════════ */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) { .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--pale-2);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.card-icon {
  width: 48px; height: 48px;
  background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--white);
}
.card-icon svg { width: 22px; height: 22px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .95rem; }

/* card accent (border left) */
.card-accent {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--pale-2);
  padding: 32px 28px 32px 36px;
  position: relative; box-shadow: var(--shadow);
}
.card-accent::before {
  content: ''; position: absolute; left: 0; top: 20px; bottom: 20px;
  width: 3px; background: var(--blue); border-radius: 0 3px 3px 0;
}

/* ══════════════════════════════
   INTRO TEXT SECTION
══════════════════════════════ */
.intro-big {
  text-align: center; padding: 80px 0;
}
.intro-big p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  color: var(--navy); line-height: 1.4;
  max-width: 22em; margin: 0 auto;
}

/* ══════════════════════════════
   LISTE ICÔNES (symptômes/profils)
══════════════════════════════ */
.icon-list { display: flex; flex-direction: column; gap: 24px; }
.icon-item {
  display: flex; align-items: flex-start; gap: 18px;
  padding-bottom: 24px; border-bottom: 1px solid var(--pale-2);
}
.icon-item:last-child { border-bottom: none; padding-bottom: 0; }
.icon-circle {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--white);
}
.icon-circle svg { width: 20px; height: 20px; }
.icon-item h4 { margin-bottom: 4px; color: var(--navy); }
.icon-item p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ══════════════════════════════
   TWO-COL text+image
══════════════════════════════ */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.two-col.reverse .col-visual { order: -1; }
@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse .col-visual { order: 0; }
}
.col-visual {
  border-radius: var(--r-xl); overflow: hidden;
  background: var(--pale-2); aspect-ratio: 4/3;
}
.col-visual img { width: 100%; height: 100%; object-fit: cover; }
.col-text ul {
  list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 12px;
}
.col-text ul li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .97rem; color: var(--muted);
}
.col-text ul li::before {
  content: ''; flex-shrink: 0; width: 8px; height: 8px;
  background: var(--blue); border-radius: 50%; margin-top: 8px;
}

/* ══════════════════════════════
   TABS (Pour qui)
══════════════════════════════ */
.tabs-layout {
  display: grid; grid-template-columns: 280px 1fr; gap: 24px; align-items: start;
}
@media (max-width: 860px) { .tabs-layout { grid-template-columns: 1fr; } }

.tab-nav { display: flex; flex-direction: column; gap: 6px; }
@media (max-width: 860px) {
  .tab-nav { flex-direction: row; flex-wrap: wrap; }
}
.tab-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border-radius: var(--r-md);
  border: 1px solid transparent; background: transparent;
  font-family: var(--font-body); font-size: .97rem; font-weight: 500;
  color: var(--muted); cursor: pointer; text-align: left;
  transition: all .2s ease;
}
.tab-btn:hover { background: var(--pale-2); color: var(--navy); }
.tab-btn.active {
  background: var(--navy); color: var(--white);
  border-color: var(--navy);
}
.tab-btn .tab-icon {
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.15);
}
.tab-btn:not(.active) .tab-icon { background: var(--pale-2); }
.tab-btn .tab-icon svg { width: 16px; height: 16px; }

.tab-panel {
  background: var(--white); border-radius: var(--r-xl);
  border: 1px solid var(--pale-2);
  padding: 40px; box-shadow: var(--shadow);
  display: none;
}
.tab-panel.active { display: block; }
.tab-panel h3 {
  font-family: var(--font-display); color: var(--blue); margin-bottom: 16px;
  font-size: 1.6rem;
}
.tab-panel ul {
  list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 10px;
}
.tab-panel ul li {
  display: flex; gap: 12px; align-items: flex-start;
  color: var(--muted); font-size: .96rem;
}
.tab-panel ul li::before {
  content: ''; flex-shrink: 0; width: 8px; height: 8px;
  background: var(--blue); border-radius: 50%; margin-top: 7px;
}

/* ══════════════════════════════
   STEPS (déroulement)
══════════════════════════════ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 860px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--white); border-radius: var(--r-xl);
  border: 1px solid var(--pale-2); padding: 36px 24px;
  text-align: center; box-shadow: var(--shadow);
}
.step-num {
  font-family: var(--font-display); font-size: 3.5rem; font-weight: 500;
  color: var(--blue); line-height: 1; margin-bottom: 16px; display: block;
}
.step h3 { font-size: 1.15rem; margin-bottom: 12px; }
.step p { color: var(--muted); font-size: .92rem; text-align: left; }

/* ══════════════════════════════
   TEAM
══════════════════════════════ */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 700px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  border-radius: var(--r-xl); overflow: hidden;
  background: var(--navy); color: var(--white);
}
.team-card-top {
  display: flex; align-items: center; gap: 20px;
  padding: 28px 28px 24px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--blue-soft); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 3px solid rgba(255,255,255,.2);
  font-family: var(--font-display); font-size: 1.6rem; color: var(--white);
}
.team-card-top h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 4px; }
.team-card-top span { font-size: .84rem; color: var(--pale); opacity: .8; }
.team-card-body { padding: 24px 28px; }
.team-card-body p { color: rgba(255,255,255,.78); font-size: .95rem; max-width: none; }
.team-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--pale); font-size: .88rem; margin-top: 16px;
  opacity: .8; transition: opacity .2s;
}
.team-link:hover { opacity: 1; }

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border-radius: var(--r-md);
  border: 1px solid var(--pale-2); overflow: hidden;
  box-shadow: var(--shadow);
}
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 24px;
  font-family: var(--font-body); font-size: 1.02rem; font-weight: 500; color: var(--navy);
}
.faq-icon {
  flex-shrink: 0; width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1.5px solid var(--pale);
  color: var(--blue); font-size: 1.2rem; transition: transform .3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--navy); color: var(--white); border-color: var(--navy); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner {
  padding: 0 24px 22px;
  color: var(--muted); font-size: .96rem; border-top: 1px solid var(--pale-2);
  padding-top: 16px;
}
.faq-a-inner p { margin: 0; }

/* ══════════════════════════════
   TARIFS
══════════════════════════════ */
.tarifs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 700px; }
@media (max-width: 600px) { .tarifs-grid { grid-template-columns: 1fr; } }
.tarif-card {
  background: var(--white); border-radius: var(--r-xl);
  border: 1px solid var(--pale-2); padding: 40px 32px;
  text-align: center; box-shadow: var(--shadow);
}
.tarif-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .15em; color: var(--muted); margin-bottom: 16px; display: block; }
.tarif-price {
  font-family: var(--font-display); font-size: 3.5rem; font-weight: 500;
  color: var(--navy); line-height: 1; margin-bottom: 8px; display: block;
}
.tarif-sub { font-size: .88rem; color: var(--muted); margin-bottom: 24px; display: block; }
.tarif-info {
  background: var(--pale-3); border-radius: var(--r-lg);
  border: 1px solid var(--pale-2); padding: 24px 28px; margin-top: 32px;
}
.tarif-info p { color: var(--muted); font-size: .94rem; }
.tarif-info strong { color: var(--navy); }

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; }
@media (max-width: 860px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.contact-info-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--pale-2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--blue);
}
.contact-info-icon svg { width: 18px; height: 18px; }
.contact-info-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); display: block; margin-bottom: 3px; }
.contact-info-val { color: var(--navy); font-weight: 500; }
.map-wrap { border-radius: var(--r-lg); overflow: hidden; margin-top: 28px; }
.map-wrap iframe { display: block; width: 100%; height: 240px; border: 0; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-group label { display: block; font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 8px; }
.form-group input,
.form-group textarea {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--pale-2); border-radius: var(--r-md);
  font-family: var(--font-body); font-size: .97rem; color: var(--ink);
  background: var(--white); transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 130px; }

/* ══════════════════════════════
   PAGE HERO (sous-pages)
══════════════════════════════ */
.page-hero {
  background: var(--navy); padding: 72px 0 60px;
}
.page-hero .eyebrow { color: var(--pale); opacity: .8; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero .lede { color: rgba(255,255,255,.7); font-size: 1.1rem; max-width: 36em; }

/* ══════════════════════════════
   CTA SECTION
══════════════════════════════ */
.cta-section {
  background: var(--navy); padding: 72px 0; text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,.7); max-width: 36em; margin: 0 auto 32px; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer.site {
  background: var(--navy); color: var(--pale);
  padding: 60px 0 28px;
}
footer.site .wrap { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; }
@media (max-width: 860px) { footer.site .wrap { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { footer.site .wrap { grid-template-columns: 1fr; } }
.foot-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.foot-brand img { height: 40px; filter: brightness(0) invert(1) opacity(.7); }
.foot-brand strong { color: var(--white); font-family: var(--font-display); font-size: 1.1rem; }
footer.site p { color: rgba(255,255,255,.5); font-size: .9rem; }
footer.site h5 {
  color: var(--white); font-family: var(--font-body); font-size: .75rem;
  text-transform: uppercase; letter-spacing: .14em; font-weight: 600;
  margin-bottom: 18px;
}
footer.site ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer.site ul li a { color: rgba(255,255,255,.55); font-size: .92rem; transition: color .2s; }
footer.site ul li a:hover { color: var(--white); }
.foot-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; color: rgba(255,255,255,.55); font-size: .9rem; }
.foot-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--pale); margin-top: 2px; }
.foot-contact-item a { color: rgba(255,255,255,.55); }
.foot-contact-item a:hover { color: var(--white); }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 48px; padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: .78rem; color: rgba(255,255,255,.35);
}
.foot-bottom a { color: rgba(255,255,255,.35); }
.foot-bottom a:hover { color: rgba(255,255,255,.7); }

/* ══════════════════════════════
   UTILS
══════════════════════════════ */
.center { text-align: center; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.pull-quote {
  font-family: var(--font-display); font-size: 1.4rem; font-style: italic;
  color: var(--navy); border-left: 3px solid var(--blue);
  padding-left: 24px; margin: 28px 0;
}
.tag {
  display: inline-block; font-size: .75rem; letter-spacing: .06em; text-transform: uppercase;
  background: var(--pale-2); color: var(--blue); padding: 5px 12px;
  border-radius: var(--r-pill); margin: 0 6px 8px 0;
}

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; } }

/* ══════════════════════════════
   V3 ADDITIONS & OVERRIDES
══════════════════════════════ */

/* Hero with real photo */
.hero { min-height: 95vh; }
.hero-bg {
  background: linear-gradient(135deg, rgba(10,20,26,.88) 0%, rgba(20,45,70,.75) 100%);
}
.hero-photo {
  position: absolute; inset: 0; z-index: 0;
  object-fit: cover; width: 100%; height: 100%;
  opacity: .45;
}

/* Team cards v3 — sans ronds initiales */
.team-card-top { align-items: flex-start; flex-direction: column; gap: 8px; }
.team-card-photo {
  width: 100%; height: 200px; object-fit: cover;
  object-position: center top;
}
.team-card-info { padding: 16px 28px 0; }
.team-card-info h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 4px; }
.team-card-info span { font-size: .83rem; color: var(--pale); opacity: .8; }
.team-grid { grid-template-columns: repeat(2,1fr); gap: 24px; }

/* CTA section grey (pas navy) */
.cta-grey {
  background: var(--pale-3); padding: 72px 0; text-align: center;
}
.cta-grey h2 { color: var(--navy); margin-bottom: 16px; }
.cta-grey p { color: var(--muted); max-width: 36em; margin: 0 auto 32px; }
.cta-grey .eyebrow { color: var(--blue); }

/* Champs d'action grid */
.champs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 860px) { .champs-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .champs-grid { grid-template-columns: 1fr; } }
.champ-card {
  background: var(--white); border: 1px solid var(--pale-2);
  border-radius: var(--r-lg); padding: 28px 24px;
  box-shadow: var(--shadow); display: flex; gap: 16px; align-items: flex-start;
}
.champ-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--white);
}
.champ-icon svg { width: 20px; height: 20px; }
.champ-card h4 { margin-bottom: 6px; font-size: 1rem; }
.champ-card p { color: var(--muted); font-size: .88rem; margin: 0; }

/* Bain bébé page */
.bebe-hero {
  background: var(--navy); padding: 72px 0 0; overflow: hidden;
}
.bebe-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 48px;
  max-width: var(--maxw); margin: 0 auto; padding: 0 32px;
}
.bebe-hero-text { padding-bottom: 60px; }
.bebe-hero-text h1 { color: var(--white); }
.bebe-hero-text .lede { color: rgba(255,255,255,.7); }
.bebe-hero-photo { border-radius: var(--r-xl) var(--r-xl) 0 0; overflow: hidden; height: 420px; }
.bebe-hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
@media (max-width: 860px) {
  .bebe-hero-inner { grid-template-columns: 1fr; }
  .bebe-hero-photo { height: 280px; border-radius: var(--r-xl); margin-bottom: 0; }
}

/* Bon cadeau encart */
.bon-cadeau {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: var(--r-xl); padding: 40px; color: var(--white); text-align: center;
  margin-top: 48px;
}
.bon-cadeau h3 { color: var(--white); font-size: 1.8rem; margin-bottom: 12px; }
.bon-cadeau p { color: rgba(255,255,255,.78); max-width: none; margin-bottom: 24px; }
.bon-cadeau .gift-icon { font-size: 3rem; margin-bottom: 16px; display: block; }

/* Gallery contact */
.gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 28px; }
@media (max-width:600px){ .gallery { grid-template-columns: repeat(2,1fr); } }
.gallery img { border-radius: var(--r-md); width:100%; height:160px; object-fit:cover; }
.gallery img:first-child { grid-column: span 2; height: 240px; }

/* Footer links fix */
.foot-bottom a:hover { color: var(--white); }

/* Mentions légales */
.mentions-content { max-width: 800px; }
.mentions-content h3 { font-size: 1.2rem; color: var(--navy); margin: 32px 0 12px; font-family: var(--font-body); font-weight: 600; }
.mentions-content p { color: var(--muted); font-size: .96rem; }
.mentions-content a { color: var(--blue); }

/* ══════════════════════════════
   V4 OVERRIDES
══════════════════════════════ */

/* Hero : sans ronds, logo blanc centré */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
}
.hero-ring { display: none; }
.hero-logo-wrap {
  background: transparent;
  border: none;
  backdrop-filter: none;
  width: auto; height: auto;
}
.hero-logo-wrap img {
  width: 280px; height: auto;
  filter: brightness(0) invert(1) opacity(.85);
}

/* Footer bottom - une ligne */
.foot-bottom {
  flex-direction: row;
  justify-content: space-between;
}
.foot-bottom-left { white-space: nowrap; }

/* Contact layout v4 */
.contact-v4 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 860px) { .contact-v4 { grid-template-columns: 1fr; } }
.contact-photos-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
.contact-photos-3 img { border-radius: var(--r-md); width: 100%; height: 180px; object-fit: cover; }
.contact-map-full { border-radius: var(--r-lg); overflow: hidden; margin-top: 32px; }
.contact-map-full iframe { display: block; width: 100%; height: 260px; border: 0; }

/* Champs action button center fix */
.champs-btn-wrap { display: flex; justify-content: center; margin-top: 36px; }

/* Bain bébé h1 sup fix */
.bebe-hero-text h1 { word-break: keep-all; }
.bebe-hero-text h1 sup { font-size: .45em; vertical-align: super; line-height: 0; }

/* Photo cadrage par image */
.hero-photo { object-position: center 20%; }
.col-visual img { object-position: center center; }
img.photo-cabinet-claire { object-position: center 30%; }
img.photo-hero-claire { object-position: center 15%; }
img.photo-bain-1 { object-position: center 40%; }
img.photo-bain-2 { object-position: center 30%; }
img.photo-traitement { object-position: center 20%; }
img.photo-sportif { object-position: center 25%; }
img.photo-facade { object-position: center 50%; }
img.photo-salle1 { object-position: center 40%; }
img.photo-salle2 { object-position: center 40%; }
.team-card-photo { object-position: center 15%; }

/* ══════════════════════════════
   V5 OVERRIDES
══════════════════════════════ */

/* Footer bottom — forcer une ligne */
.foot-bottom {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
@media (max-width: 600px) {
  .foot-bottom { flex-wrap: wrap !important; }
}

/* Bain bébé photos cadrées */
.bebe-hero-photo img { object-position: center 60%; }
.bebe-col-photo img  { object-position: center 50%; }

/* Team Claire portrait */
.team-card-photo.claire { object-position: center 10%; }
/* Team Maxime cabinet : dézoomer */
.team-card-photo.maxime { object-fit: cover; object-position: center 40%; transform: scale(0.85); transform-origin: center; }

/* Contact : 2 photos côte à côte */
.contact-photos-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 40px;
}
.contact-photos-2 img {
  border-radius: var(--r-md);
  width: 100%; height: 220px;
  object-fit: cover;
}
.contact-photos-2 img.photo-facade { object-position: center 50%; }
.contact-photos-2 img.photo-salle  { object-position: center 40%; }

/* ══════════════════════════════
   V6 — Portfolio slider + Contact fix
══════════════════════════════ */

/* Portfolio slider */
.portfolio { overflow: hidden; position: relative; margin-top: 48px; }
.portfolio-track {
  display: flex; gap: 16px;
  animation: slide 32s linear infinite;
  width: max-content;
}
.portfolio:hover .portfolio-track { animation-play-state: paused; }
.portfolio-track img {
  height: 260px; width: auto;
  border-radius: var(--r-md);
  object-fit: cover; flex-shrink: 0;
  cursor: pointer; transition: transform .2s;
}
.portfolio-track img:hover { transform: scale(1.02); }
@keyframes slide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Contact v6 - carte sous infos */
.contact-v6 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 860px) { .contact-v6 { grid-template-columns: 1fr; } }
.contact-left-col { display: flex; flex-direction: column; gap: 0; }
.contact-map-inline { border-radius: var(--r-lg); overflow: hidden; margin-top: 24px; }
.contact-map-inline iframe { display: block; width: 100%; height: 240px; border: 0; }

/* Claire portrait v6 */
.team-card-photo.claire { object-position: center 5%; }
