/* ══════════════════════════════════════════════
   css/style.css — Styles principaux du cabinet
   ══════════════════════════════════════════════ */

/* ─── VARIABLES ─── */
:root {
  --ivory:      #F9F5EE;
  --cream:      #EDE8DE;
  --warm-white: #FDFAF5;
  --sage:       #8A9E8C;
  --sage-dark:  #5C7260;
  --sage-pale:  #C8D5C9;
  --gold:       #B8975A;
  --gold-light: #D4B57A;
  --charcoal:   #2C2C2C;
  --mid-grey:   #6B6B6B;
  --light-grey: #ADADAD;
  --border:     rgba(44,44,44,0.1);
  --shadow:     0 8px 40px rgba(44,44,44,0.08);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(253,250,245,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  text-decoration: none;
  line-height: 1.2;
}
.nav-logo span {
  display: block;
  font-size: 0.7rem;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-top: 1px;
}
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.8rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; color: var(--mid-grey);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--charcoal); }

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--sage); color: #fff;
  padding: 0.9rem 2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
  display: inline-block; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--sage-dark); transform: translateY(-1px); }
.btn-outline {
  border: 1px solid var(--charcoal); color: var(--charcoal);
  padding: 0.9rem 2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s; display: inline-block;
}
.btn-outline:hover { background: var(--charcoal); color: #fff; }

/* ─── SECTION COMMONS ─── */
section { padding: 6rem 7rem; }
.section-label {
  font-size: 0.7rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300; line-height: 1.15;
  color: var(--charcoal); margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--sage-dark); }
.section-intro {
  font-size: 0.9rem; color: var(--mid-grey);
  line-height: 1.8; max-width: 540px; font-weight: 300;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
}
.hero-left {
  background: var(--ivory);
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem 6rem 7rem;
  position: relative;
}
.hero-left::before {
  content: '';
  position: absolute;
  top: 10%; left: 5%;
  width: 200px; height: 200px;
  border: 1px solid var(--sage-pale);
  border-radius: 50%; opacity: 0.4;
}
.hero-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem; font-weight: 400;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  font-weight: 300; line-height: 1.1;
  color: var(--charcoal); margin-bottom: 1.8rem;
}
.hero-title em { font-style: italic; color: var(--sage-dark); }
.hero-desc {
  font-size: 0.92rem; color: var(--mid-grey);
  max-width: 360px; line-height: 1.8;
  margin-bottom: 3rem; font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; }
.hero-right { background: var(--sage-pale); position: relative; overflow: hidden; }
.hero-right-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  justify-content: center; overflow: hidden;
}
.hero-illustration { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }


/* ─── SERVICES ─── */
.services { background: var(--ivory); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-top: 4rem;
  border: 1px solid var(--border);
}
.service-card {
  padding: 2.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: background 0.3s; cursor: default;
}
.service-card:last-child,
.service-card:nth-child(3n) { border-right: none; }
.service-card:hover { background: var(--warm-white); }
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; width: 3px; height: 0;
  background: var(--sage);
  transition: height 0.4s cubic-bezier(0.16,1,0.3,1);
}
.service-card:hover::before { height: 100%; }
.service-icon { font-size: 2rem; margin-bottom: 1.2rem; display: block; }
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 400;
  color: var(--charcoal); margin-bottom: 0.8rem;
}
.service-desc { font-size: 0.82rem; color: var(--mid-grey); line-height: 1.7; font-weight: 300; }

/* ─── ABOUT ─── */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 0; }
.about-visual {
  background: var(--sage-pale);
  min-height: 600px; position: relative; overflow: hidden;
}
.about-visual-inner {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--sage-pale) 0%, var(--cream) 100%);
  display: flex; align-items: center; justify-content: center;
}
.about-quote {
  position: absolute; bottom: 3rem; right: -1rem;
  background: var(--gold); color: #fff;
  padding: 2rem 2.5rem; max-width: 280px;
  box-shadow: var(--shadow);
}
.about-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-style: italic;
  line-height: 1.5; font-weight: 300;
}
.about-content {
  padding: 6rem 5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.about-credentials { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.5rem; }
.credential {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
}
.credential:last-child { border-bottom: none; }
.credential-year {
  font-size: 0.75rem; color: var(--gold);
  letter-spacing: 0.1em; font-weight: 500;
  min-width: 55px; padding-top: 2px;
}
.credential-info strong { font-weight: 500; font-size: 0.88rem; display: block; margin-bottom: 0.2rem; }
.credential-info span { font-size: 0.8rem; color: var(--mid-grey); font-weight: 300; }

/* ─── ÉQUIPEMENTS ─── */
.equip { background: var(--charcoal); color: #fff; }
.equip .section-title { color: #fff; }
.equip .section-intro { color: rgba(255,255,255,0.6); }
.equip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem; margin-top: 4rem;
}
.equip-item {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  transition: border-color 0.3s, background 0.3s;
}
.equip-item:hover { border-color: var(--sage); background: rgba(138,158,140,0.1); }
.equip-item .equip-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.equip-item h4 { font-weight: 500; font-size: 0.9rem; margin-bottom: 0.5rem; letter-spacing: 0.05em; }
.equip-item p { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.6; font-weight: 300; }

/* ─── CONTACT ─── */
.contact-rdv { display: grid; grid-template-columns: 1fr; gap: 0; padding: 0; }
.contact-info { background: var(--cream); padding: 6rem 5rem; }
.contact-details { margin-top: 3rem; display: flex; flex-direction: column; gap: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1.2rem; }
.contact-item-icon {
  width: 44px; height: 44px;
  background: var(--sage-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-item-text strong { display: block; font-weight: 500; font-size: 0.88rem; margin-bottom: 0.3rem; }
.contact-item-text span { font-size: 0.82rem; color: var(--mid-grey); line-height: 1.7; font-weight: 300; }
.horaires { margin-top: 3rem; }
.horaires h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; margin-bottom: 1.2rem; font-weight: 400; }
.horaire-row {
  display: flex; justify-content: space-between;
  padding: 0.6rem 0; border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
}
.horaire-row:last-child { border-bottom: none; }
.horaire-row .day { color: var(--mid-grey); font-weight: 300; }
.horaire-row .time { font-weight: 500; color: var(--sage-dark); }
.horaire-row .closed { color: var(--light-grey); font-weight: 300; font-style: italic; }

/* ─── FORMULAIRE RDV ─── */
.rdv-form-section { background: var(--warm-white); padding: 6rem 5rem; }
.rgpd-notice {
  background: #EEF2EE;
  border-left: 3px solid var(--sage);
  padding: 1rem 1.2rem; margin-bottom: 1.5rem;
  font-size: 0.78rem; color: var(--mid-grey); line-height: 1.6;
}
.rgpd-notice strong { color: var(--charcoal); font-weight: 500; }
.form-group { margin-bottom: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label {
  display: block; font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mid-grey); margin-bottom: 0.4rem;
}
input, select, textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1px solid var(--border); background: #fff;
  font-family: 'Jost', sans-serif; font-size: 0.88rem;
  color: var(--charcoal); outline: none;
  transition: border-color 0.2s; appearance: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--sage); }
textarea { resize: vertical; min-height: 100px; }
.consent-group { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.consent-group input[type="checkbox"] {
  width: 16px; height: 16px; min-width: 16px;
  margin-top: 2px; cursor: pointer;
  accent-color: var(--sage); padding: 0;
}
.consent-group label {
  font-size: 0.78rem; text-transform: none;
  letter-spacing: 0; color: var(--mid-grey);
  cursor: pointer; line-height: 1.6; font-weight: 300;
}
.consent-group label a { color: var(--sage-dark); text-decoration: underline; cursor: pointer; }

/* ─── FOOTER ─── */
footer { background: var(--charcoal); color: rgba(255,255,255,0.5); padding: 4rem 7rem 2.5rem; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; color: #fff; font-weight: 300;
  margin-bottom: 1rem; display: block;
}
.footer-brand p { font-size: 0.8rem; line-height: 1.7; max-width: 240px; }
.footer-col h5 {
  color: #fff; font-size: 0.75rem; letter-spacing: 0.15em;
  text-transform: uppercase; margin-bottom: 1.2rem; font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5); text-decoration: none;
  font-size: 0.8rem; transition: color 0.2s; cursor: pointer;
}
.footer-col ul li a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; padding-top: 2rem; font-size: 0.75rem;
}
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; cursor: pointer; }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }
.footer-links { display: flex; gap: 2rem; }
.rgpd-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(138,158,140,0.2); color: var(--sage-pale);
  padding: 0.3rem 0.8rem; font-size: 0.7rem; letter-spacing: 0.1em;
  border: 1px solid rgba(138,158,140,0.3); margin-top: 0.5rem;
}

/* ─── ANIMATIONS ─── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  nav { padding: 1.2rem 2.5rem; }
  .nav-links { gap: 1.5rem; }
  section { padding: 5rem 3rem; }
  .hero-left { padding: 5rem 3rem 5rem 4rem; }
  .hero-title { font-size: 2.8rem; }
  .equip-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  footer { padding: 3rem 3rem 2rem; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { min-height: 320px; }
  .about { grid-template-columns: 1fr; }
  .about-visual { min-height: 350px; }
  .about-content { padding: 4rem 3rem; }
  .about-quote { right: 1rem; }
  .contact-info, .rdv-form-section { padding: 4rem 3rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card:nth-child(2n) { border-right: none; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  section { padding: 4rem 1.5rem; }
  .hero-left { padding: 4rem 1.5rem; }
  .hero-title { font-size: 2.2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none !important; }
  .equip-grid { grid-template-columns: 1fr; }
  footer { padding: 3rem 1.5rem 2rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .about-quote { position: relative; right: 0; margin-top: 2rem; max-width: 100%; }
}


/* ─── CONSEILS PREVIEW ─── */
.conseils-preview { background: var(--charcoal); }
.conseils-preview-inner {
  padding: 6rem 7rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.conseils-preview-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.preview-card {
  display: block;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 300;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.preview-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--sage-pale);
  color: #fff;
}

/* ─── PAGE LÉGALE (mentions / confidentialité) ─── */
.legal-page { padding: 9rem 7rem 6rem; max-width: 900px; margin: 0 auto; }
.legal-page h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem,3.5vw,3rem);
  font-weight: 300;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}
.legal-page .legal-date {
  font-size: 0.75rem;
  color: var(--light-grey);
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
  display: block;
}
.legal-page h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--charcoal);
  margin: 2.5rem 0 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.legal-page h3 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 1.5rem 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.legal-page p {
  font-size: 0.88rem;
  color: var(--mid-grey);
  line-height: 1.85;
  margin-bottom: 0.8rem;
  font-weight: 300;
}
.legal-page ul {
  list-style: none;
  margin: 0.5rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.legal-page ul li {
  font-size: 0.87rem;
  color: var(--mid-grey);
  line-height: 1.7;
  font-weight: 300;
  padding-left: 1.2rem;
  position: relative;
}
.legal-page ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--sage);
}
.legal-page strong { color: var(--charcoal); font-weight: 500; }
.legal-page a { color: var(--sage-dark); }
.legal-highlight {
  background: #EEF2EE;
  border-left: 3px solid var(--sage);
  padding: 1rem 1.4rem;
  margin: 1.5rem 0;
  font-size: 0.85rem;
  color: var(--mid-grey);
  line-height: 1.7;
}
.legal-highlight strong { color: var(--charcoal); }
.legal-table { width: 100%; border-collapse: collapse; margin: 1.2rem 0; font-size: 0.84rem; }
.legal-table th { background: var(--charcoal); color: #fff; padding: 0.7rem 1rem; text-align: left; font-weight: 500; font-size: 0.75rem; letter-spacing: 0.08em; }
.legal-table td { padding: 0.7rem 1rem; border-bottom: 1px solid var(--border); color: var(--mid-grey); font-weight: 300; line-height: 1.5; }
.legal-table tr:nth-child(even) td { background: var(--ivory); }

/* ─── PAGE ÉQUIPE ─── */
.equipe-hero {
  background: var(--ivory);
  padding: 9rem 7rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 55vh;
}
.equipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 6rem 7rem;
}
.equipe-card {
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.equipe-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.equipe-card-visual {
  background: var(--sage-pale);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  opacity: 0.7;
  position: relative;
}
.equipe-card-body { padding: 1.8rem; background: var(--warm-white); }
.equipe-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}
.equipe-card-role { font-size: 0.75rem; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; }
.equipe-card-spec { font-size: 0.82rem; color: var(--mid-grey); margin-top: 0.75rem; line-height: 1.6; font-weight: 300; }
.equipe-valeurs { background: var(--charcoal); padding: 6rem 7rem; }
.equipe-valeurs .section-title { color: #fff; }
.valeurs-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; margin-top: 3.5rem; }
.valeur-item { padding: 2rem 1.5rem; border: 1px solid rgba(255,255,255,0.1); }
.valeur-item .valeur-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.valeur-item h4 { font-weight: 500; font-size: 0.9rem; color: #fff; margin-bottom: 0.5rem; }
.valeur-item p { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ─── SITEMAP PAGE ─── */
.sitemap-page { padding: 9rem 7rem 6rem; }
.sitemap-page h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 3rem;
  color: var(--charcoal);
}
.sitemap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; }
.sitemap-col h2 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.sitemap-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.sitemap-col ul li a {
  font-size: 0.85rem;
  color: var(--mid-grey);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.sitemap-col ul li a:hover { color: var(--sage-dark); }
.sitemap-col ul li.sub { padding-left: 1rem; }
.sitemap-col ul li.sub a { font-size: 0.8rem; color: var(--light-grey); }
.sitemap-col ul li.sub a:hover { color: var(--mid-grey); }

/* ─── RESPONSIVE NOUVEAUX BLOCS ─── */
@media (max-width: 1100px) {
  .conseils-preview-inner { padding: 5rem 3rem; gap: 3rem; }
  .equipe-hero        { padding: 9rem 3rem 5rem; }
  .equipe-grid        { padding: 5rem 3rem; grid-template-columns: repeat(2,1fr); }
  .equipe-valeurs     { padding: 5rem 3rem; }
  .valeurs-grid       { grid-template-columns: repeat(2,1fr); }
  .legal-page         { padding: 9rem 3rem 5rem; }
  .sitemap-page       { padding: 9rem 3rem 5rem; }
  .sitemap-grid       { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .conseils-preview-inner { grid-template-columns: 1fr; gap: 2rem; }
  .equipe-hero { grid-template-columns: 1fr; min-height: auto; }
}
@media (max-width: 680px) {
  .conseils-preview-inner { padding: 4rem 1.5rem; }
  .conseils-preview-cards { grid-template-columns: 1fr; }
  .equipe-grid        { grid-template-columns: 1fr; padding: 4rem 1.5rem; }
  .equipe-hero        { padding: 8rem 1.5rem 4rem; }
  .equipe-valeurs     { padding: 4rem 1.5rem; }
  .valeurs-grid       { grid-template-columns: 1fr; }
  .legal-page         { padding: 8rem 1.5rem 4rem; }
  .sitemap-page       { padding: 8rem 1.5rem 4rem; }
  .sitemap-grid       { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   BURGER MENU MOBILE
   ══════════════════════════════════════════════ */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44,44,44,0.55);
  z-index: 900;
  backdrop-filter: blur(4px);
}
.nav-mobile-overlay.open { display: block; }

.nav-mobile-panel {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--warm-white);
  z-index: 950;
  padding: 5rem 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: right 0.4s cubic-bezier(0.16,1,0.3,1);
  box-shadow: -8px 0 40px rgba(44,44,44,0.12);
}
.nav-mobile-panel.open { right: 0; }
.nav-mobile-panel a {
  font-size: 1.3rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  color: var(--charcoal);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
}
.nav-mobile-panel a:hover { color: var(--sage-dark); padding-left: 0.5rem; }
.nav-mobile-panel a:last-child { border-bottom: none; }
.nav-mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--mid-grey);
  line-height: 1;
}
.nav-mobile-contact {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.nav-mobile-contact p { font-size: 0.78rem; color: var(--mid-grey); margin-bottom: 0.3rem; }
.nav-mobile-contact strong { font-size: 0.9rem; color: var(--charcoal); }

@media (max-width: 680px) {
  .burger { display: flex; }
  nav .nav-links { display: none !important; }
}

/* ══════════════════════════════════════════════
   FAQ SECTION
   ══════════════════════════════════════════════ */
.faq-section { background: var(--ivory); }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  margin-top: 3.5rem;
  align-items: start;
}
.faq-sidebar-info .section-title { font-size: clamp(1.8rem,2.5vw,2.4rem); }
.faq-sidebar-info p { font-size:0.88rem; color:var(--mid-grey); line-height:1.8; font-weight:300; margin-top:1rem; }
.faq-sidebar-info .btn-outline { margin-top:1.8rem; display:inline-block; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--sage-dark); }
.faq-question .faq-icon {
  font-size: 1.2rem;
  color: var(--sage);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16,1,0.3,1), padding 0.3s;
  padding-bottom: 0;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 1.4rem; }
.faq-answer p { font-size: 0.87rem; color: var(--mid-grey); line-height: 1.8; font-weight: 300; }
.faq-answer a { color: var(--sage-dark); }

@media (max-width:900px) {
  .faq-layout { grid-template-columns:1fr; gap:2.5rem; }
}
@media (max-width:680px) {
  .faq-layout { gap:2rem; }
}

/* ══════════════════════════════════════════════
   MAP SECTION
   ══════════════════════════════════════════════ */
.map-section {
  background: var(--cream);
  padding: 0;
}
.map-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  min-height: 420px;
}
.map-info {
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
.map-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}
.map-info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.map-info-icon {
  width: 38px; height: 38px;
  background: var(--sage-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.map-info-text { font-size: 0.83rem; color: var(--mid-grey); line-height: 1.7; font-weight: 300; }
.map-info-text strong { display: block; font-weight: 500; color: var(--charcoal); margin-bottom: 0.1rem; font-size: 0.85rem; }
.map-frame {
  position: relative;
  background: var(--sage-pale);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border: none;
  filter: grayscale(20%) contrast(1.05);
}
.map-placeholder {
  text-align: center;
  color: var(--sage-dark);
  opacity: 0.5;
}
.map-placeholder p { font-size: 0.8rem; margin-top: 0.5rem; font-weight: 300; }

@media (max-width:900px) {
  .map-inner { grid-template-columns:1fr; }
  .map-frame { min-height: 300px; }
}
@media (max-width:680px) {
  .map-info { padding: 3rem 1.5rem; }
}

/* ══════════════════════════════════════════════
   PAGES SOINS DÉDIÉES
   ══════════════════════════════════════════════ */
.soin-hero {
  background: var(--ivory);
  padding: 9rem 7rem 5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.soin-hero-left .soin-tag {
  font-size: 0.68rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 500; display: block; margin-bottom: 1rem;
}
.soin-hero-left h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 300; line-height: 1.1;
  color: var(--charcoal); margin-bottom: 1.2rem;
}
.soin-hero-left h1 em { font-style: italic; color: var(--sage-dark); }
.soin-hero-left .soin-intro {
  font-size: 0.95rem; color: var(--mid-grey);
  line-height: 1.85; font-weight: 300;
}
.soin-hero-right {
  background: var(--sage-pale);
  min-height: 380px;
  display: flex; align-items: center; justify-content: center;
  font-size: 9rem; opacity: 0.3; border-radius: 0;
}
.soin-body {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 4rem;
  padding: 5rem 7rem;
  align-items: start;
}
.soin-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 300;
  color: var(--charcoal); margin: 2.5rem 0 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.soin-content h2:first-child { margin-top: 0; }
.soin-content h3 {
  font-size: 0.88rem; font-weight: 600;
  color: var(--charcoal); margin: 1.6rem 0 0.5rem;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.soin-content p {
  font-size: 0.9rem; color: var(--mid-grey);
  line-height: 1.85; margin-bottom: 1rem; font-weight: 300;
}
.soin-content strong { color: var(--charcoal); font-weight: 500; }
.soin-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.55rem;
  margin: 0.8rem 0 1.2rem;
}
.soin-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.88rem; color: var(--mid-grey); line-height: 1.65; font-weight: 300;
}
.soin-list li::before { content: '—'; color: var(--sage); flex-shrink: 0; }
.soin-box {
  background: var(--ivory); border-left: 3px solid var(--sage);
  padding: 1.3rem 1.5rem; margin: 1.8rem 0;
}
.soin-box.gold { border-left-color: var(--gold); }
.soin-box.alert { border-left-color: #C4785A; background: #FBF3EE; }
.soin-box-title {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--sage-dark); margin-bottom: 0.5rem;
}
.soin-box.gold  .soin-box-title { color: var(--gold); }
.soin-box.alert .soin-box-title { color: #C4785A; }
.soin-box p { font-size: 0.85rem; color: var(--mid-grey); line-height: 1.7; margin: 0; }
.soin-steps { display: flex; flex-direction: column; gap: 0; margin: 1.5rem 0; }
.soin-step {
  display: flex; gap: 1.5rem;
  padding: 1.4rem 0; border-bottom: 1px solid var(--border);
}
.soin-step:last-child { border-bottom: none; }
.soin-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300;
  color: var(--sage-pale); line-height: 1; flex-shrink: 0; width: 40px; text-align: right;
}
.soin-step-body h4 { font-weight: 500; font-size: 0.9rem; color: var(--charcoal); margin-bottom: 0.35rem; }
.soin-step-body p  { font-size: 0.84rem; margin: 0; }

/* Sidebar soins */
.soin-sidebar { position: sticky; top: 6rem; display: flex; flex-direction: column; gap: 1.5rem; }
.soin-sidebar-card {
  background: var(--ivory); border: 1px solid var(--border); padding: 1.7rem;
}
.soin-sidebar-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 400;
  color: var(--charcoal); margin-bottom: 1rem;
  padding-bottom: 0.6rem; border-bottom: 1px solid var(--border);
}
.soin-sidebar-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.soin-sidebar-card ul li a {
  font-size: 0.82rem; color: var(--mid-grey);
  text-decoration: none; font-weight: 300;
  transition: color 0.2s; display: block; padding: 0.15rem 0;
}
.soin-sidebar-card ul li a:hover { color: var(--sage-dark); }
.soin-sidebar-card ul li a.active { color: var(--sage-dark); font-weight: 500; }
.soin-sidebar-rdv {
  background: var(--charcoal); color: #fff; padding: 1.7rem;
}
.soin-sidebar-rdv h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 300; color: #fff; margin-bottom: 0.7rem;
}
.soin-sidebar-rdv p { font-size: 0.79rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 1rem; }
.soin-sidebar-rdv a {
  display: block; background: var(--sage); color: #fff;
  text-decoration: none; padding: 0.65rem 1.1rem;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em;
  text-align: center; text-transform: uppercase; transition: background 0.2s;
}
.soin-sidebar-rdv a:hover { background: var(--sage-dark); }
.tarif-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.5rem 0;
}
.tarif-item {
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--border);
  background: #fff;
}
.tarif-item .tarif-label { font-size: 0.75rem; color: var(--mid-grey); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.4rem; }
.tarif-item .tarif-prix {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 300; color: var(--sage-dark); line-height: 1;
}
.tarif-item .tarif-note { font-size: 0.72rem; color: var(--light-grey); margin-top: 0.3rem; }
.soin-nav {
  background: var(--cream); padding: 3rem 7rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
.soin-nav-item {
  display: flex; flex-direction: column;
  text-decoration: none; padding: 1.4rem 1.8rem;
  border: 1px solid var(--border); background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
}
.soin-nav-item:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.soin-nav-item.next { align-items: flex-end; text-align: right; }
.soin-nav-dir  { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.soin-nav-title { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 300; color: var(--charcoal); }

/* Page 404 */
.page-404 {
  min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  padding: 9rem 3rem 5rem; text-align: center;
}
.page-404-inner { max-width: 520px; }
.page-404-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(6rem,15vw,12rem); font-weight: 300;
  color: var(--sage-pale); line-height: 1; display: block;
}
.page-404 h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 300; color: var(--charcoal);
  margin-bottom: 1rem;
}
.page-404 p { font-size: 0.9rem; color: var(--mid-grey); line-height: 1.8; font-weight: 300; margin-bottom: 2.5rem; }
.page-404-links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Bouton impression fiches */
.print-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: none; border: 1px solid var(--border);
  padding: 0.5rem 1rem; font-family: 'Jost', sans-serif;
  font-size: 0.75rem; color: var(--mid-grey); cursor: pointer;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: all 0.2s;
}
.print-btn:hover { border-color: var(--sage); color: var(--sage-dark); }
@media print {
  nav, footer, .fiche-sidebar, .fiche-nav, #cookie-banner, #rgpd-btn,
  .print-btn, #cookie-modal, #modal-mentions, #modal-confidentialite { display: none !important; }
  .fiche-body { grid-template-columns: 1fr !important; padding: 1rem !important; }
  .fiche-hero { padding: 1rem !important; }
  body { font-size: 11pt; }
}

/* Responsive soins */
@media (max-width:1100px) {
  .soin-hero { padding: 9rem 3rem 5rem; gap:3rem; }
  .soin-body  { padding: 4rem 3rem; gap:3rem; }
  .soin-nav   { padding: 3rem; }
}
@media (max-width:900px) {
  .soin-hero  { grid-template-columns:1fr; }
  .soin-body  { grid-template-columns:1fr; }
  .soin-sidebar { position: static; }
  .soin-nav   { grid-template-columns:1fr; }
  .soin-nav-item.next { align-items:flex-start; text-align:left; }
  .tarif-grid { grid-template-columns:1fr; }
}
@media (max-width:680px) {
  .soin-hero  { padding: 8rem 1.5rem 3rem; }
  .soin-body  { padding: 3rem 1.5rem; }
  .soin-nav   { padding: 2rem 1.5rem; }
}

/* ══════════════════════════════════════════════
   RÉSEAUX SOCIAUX (footer)
   ══════════════════════════════════════════════ */
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.8rem 0 1rem;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-social-link:hover {
  border-color: var(--sage-pale);
  color: #fff;
  background: rgba(200,213,201,0.1);
}
.footer-social-link.doctolib {
  border-color: rgba(184,151,90,0.4);
  color: var(--gold-light);
}
.footer-social-link.doctolib:hover {
  background: rgba(184,151,90,0.15);
  border-color: var(--gold-light);
}

/* ── Urgences footer ── */
.footer-urgence {
  margin-top: 1.2rem;
  padding: 0.7rem 1rem;
  background: rgba(255,255,255,0.05);
  border-left: 2px solid rgba(196,120,90,0.6);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.footer-urgence span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
}
.footer-urgence a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9) !important;
  text-decoration: none;
  letter-spacing: 0.03em;
}
.footer-urgence a:hover { color: #fff !important; }

/* ══════════════════════════════════════════════
   VALIDATION FORMULAIRE (retours visuels)
   ══════════════════════════════════════════════ */
.form-group { position: relative; }

input.valid, select.valid, textarea.valid {
  border-color: var(--sage) !important;
}
input.invalid, select.invalid, textarea.invalid {
  border-color: #C4785A !important;
  background: #FBF3EE;
}
.field-error {
  display: none;
  font-size: 0.72rem;
  color: #C4785A;
  margin-top: 0.3rem;
  letter-spacing: 0.03em;
}
.field-error.show { display: block; }

.form-progress {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  align-items: center;
}
.form-progress-bar {
  flex: 1;
  height: 3px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}
.form-progress-fill {
  height: 100%;
  background: var(--sage);
  width: 0%;
  transition: width 0.4s ease;
}
.form-progress-label {
  font-size: 0.7rem;
  color: var(--mid-grey);
  white-space: nowrap;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════
   ACCESSIBILITÉ — focus visible
   ══════════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}
/* Masquer le focus sur clic souris, le garder au clavier */
:focus:not(:focus-visible) { outline: none; }

/* Skip-to-content link */
.skip-link {
  position: fixed;
  top: -100%;
  left: 1rem;
  background: var(--sage-dark);
  color: #fff;
  padding: 0.6rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  z-index: 99999;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ══════════════════════════════════════════════
   BANDEAU DOCTOLIB (CTA flottant optionnel)
   ══════════════════════════════════════════════ */
#doctolib-cta {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--gold);
  color: #fff;
  padding: 0.75rem 1.4rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 8000;
  box-shadow: 0 4px 20px rgba(184,151,90,0.4);
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
#doctolib-cta.show { display: block; }
#doctolib-cta:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ══════════════════════════════════════════════
   AMÉLIORATION SECTION CONTACT — liens cliquables
   ══════════════════════════════════════════════ */
.contact-item-text a {
  color: var(--sage-dark);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-item-text a:hover { color: var(--charcoal); }

/* ══════════════════════════════════════════════
   INDICATEUR PAGE ACTIVE dans nav soins/fiches
   ══════════════════════════════════════════════ */
.nav-links a[aria-current="page"] {
  color: var(--charcoal) !important;
  font-weight: 500;
}

/* ══════════════════════════════════════════════
   ANIMATION hero — entrée progressive
   ══════════════════════════════════════════════ */
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Nom du médecin au-dessus du hero ── */
.hero-medecin-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

/* ── Carte : placeholder cookies ── */
#map-cookie-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  text-align: center;
  min-height: 280px;
  background: var(--sage-pale);
  opacity: 0.9;
}
#map-cookie-placeholder p { color: var(--mid-grey); font-size: 0.85rem; line-height: 1.6; font-weight: 300; }
#map-cookie-placeholder button:hover { background: var(--sage-dark) !important; }

/* ── Hero — bloc coordonnées ── */
.hero-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--mid-grey);
}
.hero-contact-info span { display: block; line-height: 1.5; }
.hero-contact-info a {
  color: var(--mid-grey);
  text-decoration: none;
  transition: color 0.2s;
}
.hero-contact-info a:hover { color: var(--sage-dark); }
