/* =========================================================
   LANGLOIS LASER & ESTHÉTIQUE MÉDICALE — Design system
   Pôle esthétique du Groupe Médical Langlois (Antony)
   ---------------------------------------------------------
   Palette : Navy #0e1e3c · Sable #e4e0d8 · Or champagne #c9a47a
   Typographie : Jost (brand) · Cormorant Garamond (editorial)
   Variante de la charte GML — l'or champagne mat remplace le
   sable sur les accents italiques Cormorant, pour signaler
   l'univers esthétique sans rompre la famille visuelle.
   ========================================================= */

/* ---------- Reset & base ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: #0e1e3c;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .2s ease, color .2s ease; }
a:hover { opacity: .75; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* ---------- Tokens ---------- */
:root {
  --navy: #0e1e3c;
  --navy-deep: #08152e;
  --navy-soft: #1a2c52;
  --sand: #e4e0d8;
  --sand-light: #f0ede5;
  --sand-dark: #c8c2b4;
  --gold: #c9a47a;
  --gold-soft: #dcc093;
  --gold-deep: #a8845a;
  --white: #ffffff;
  --gray-50: #f8f7f4;
  --gray-200: #d9d5cc;
  --gray-500: #7a7670;
  --gray-700: #3d3b36;

  --container: 1320px;
  --container-narrow: 980px;
  --gutter: clamp(1.5rem, 4vw, 4rem);
  --section: clamp(4rem, 9vw, 8rem);

  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Typographie ---------- */
.serif { font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif; font-weight: 400; }

h1, h2, h3, h4, h5 {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  letter-spacing: -.01em;
  line-height: 1.15;
  color: var(--navy);
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.6rem); letter-spacing: -.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -.015em; }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); }
h4 { font-size: 1.2rem; font-weight: 400; }

.eyebrow {
  font-size: .78rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}
.eyebrow.light { color: var(--sand); }
.eyebrow.center { justify-content: center; }

.lead {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  line-height: 1.5;
  color: var(--navy);
  max-width: 56ch;
}

p { max-width: 68ch; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.container-narrow { max-width: var(--container-narrow); }

.section { padding-top: var(--section); padding-bottom: var(--section); }
.section-tight { padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: clamp(3rem, 6vw, 5rem); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  padding: 1.05rem 1.9rem;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: .85rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  transition: all .3s var(--ease);
  cursor: pointer;
}
.btn:hover { background: var(--navy-deep); border-color: var(--navy-deep); opacity: 1; transform: translateY(-1px); }
.btn .arrow { display: inline-block; transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-light { background: var(--sand); color: var(--navy); border-color: var(--sand); }
.btn-light:hover { background: var(--white); border-color: var(--white); }

.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--white); }

.btn-ghost-light { background: transparent; color: var(--sand); border-color: rgba(228,224,216,.45); }
.btn-ghost-light:hover { background: var(--sand); color: var(--navy); border-color: var(--sand); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--navy);
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: gap .3s var(--ease), opacity .2s ease;
}
.link-arrow:hover { gap: 1rem; opacity: 1; }
.link-arrow.light { color: var(--sand); }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem 0;
  transition: background .35s var(--ease), padding .35s var(--ease), border-color .35s var(--ease);
  background: transparent;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled,
.site-header.dark {
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  padding: .9rem 0;
  border-bottom: 1px solid rgba(14,30,60,.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* === Brand mark dans le header (signe SVG inline + wordmark texte) === */
.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  color: var(--white);
  text-decoration: none;
}
.brand .brand-signe {
  height: 44px;
  width: auto;
  color: var(--white);
  flex-shrink: 0;
}
.brand .brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}
.brand .brand-main {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: .94rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--white);
}
.brand .brand-sub {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: .62rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
/* États : header scrollé OU page intérieure → couleur navy */
.site-header.scrolled .brand,
.site-header.scrolled .brand .brand-signe,
.site-header.scrolled .brand .brand-main,
.site-header.dark .brand,
.site-header.dark .brand .brand-signe,
.site-header.dark .brand .brand-main { color: var(--navy); }
.site-header.scrolled .brand .brand-sub,
.site-header.dark .brand .brand-sub { color: rgba(14,30,60,.55); }
@media (max-width: 540px) {
  .brand .brand-text { display: none; } /* sur petit écran on garde juste le signe */
  .brand .brand-signe { height: 38px; }
}

.main-nav { display: flex; align-items: center; gap: 2.4rem; }
.main-nav a {
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--white);
  position: relative;
  padding: .25rem 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: currentColor;
  transition: width .3s var(--ease);
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }
.main-nav a:hover { opacity: 1; }
.site-header.scrolled .main-nav a,
.site-header.dark .main-nav a { color: var(--navy); }

.header-cta {
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 400;
  padding: .8rem 1.3rem;
  border: 1px solid var(--sand);
  color: var(--sand);
  transition: all .3s var(--ease);
}
.header-cta:hover { background: var(--sand); color: var(--navy); opacity: 1; }
.site-header.scrolled .header-cta,
.site-header.dark .header-cta {
  border-color: var(--navy); color: var(--navy);
}
.site-header.scrolled .header-cta:hover,
.site-header.dark .header-cta:hover { background: var(--navy); color: var(--white); }

.menu-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 6rem;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(228,224,216,.06), transparent 60%);
  pointer-events: none;
}
.hero-pattern {
  position: absolute;
  top: 50%; right: -8%;
  transform: translateY(-50%);
  width: min(58vw, 720px);
  opacity: .12;
  pointer-events: none;
}
@media (max-width: 900px) { .hero-pattern { right: -25%; width: 110%; opacity: .08; } }

.hero-inner { position: relative; z-index: 2; padding-block: 5rem; }
.hero h1,
.hero .hero-h1 {
  color: var(--white);
  font-weight: 200;
  max-width: 18ch;
  margin: 1.8rem 0 2rem;
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -.01em;
}
.hero h1 em,
.hero .hero-h1 em {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--sand);
}
.hero .lead { color: rgba(255,255,255,.82); max-width: 62ch; margin-bottom: 3rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-meta {
  position: absolute;
  bottom: 3rem;
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  z-index: 2;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(228,224,216,.7);
}
.hero-meta .scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding-bottom: 0;
}
.hero-meta .scroll-cue::after {
  content: '';
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--sand), transparent);
  display: inline-block;
  animation: scroll-line 2.4s ease-in-out infinite;
}
@keyframes scroll-line {
  0%,100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(.4); }
}

/* ---------- Section : intro éditoriale ---------- */
.intro {
  background: var(--white);
  position: relative;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
@media (max-width: 800px) { .intro-grid { grid-template-columns: 1fr; gap: 1.5rem; } }
.intro h2 { margin: 1.5rem 0 0; }
.intro-body p { margin-bottom: 1.2rem; color: var(--gray-700); font-weight: 300; }
.intro-stats {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--gray-200);
  padding-top: 2.5rem;
}
@media (max-width: 800px) { .intro-stats { grid-template-columns: repeat(2, 1fr); } }
.stat-num { font-size: clamp(2rem, 4vw, 3rem); font-weight: 200; color: var(--navy); display: block; line-height: 1; }
.stat-num sup { font-size: .5em; vertical-align: top; margin-left: 2px; color: var(--sand-dark); }
.stat-label { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gray-500); margin-top: .8rem; display: block; }

/* ---------- Section : pôles ---------- */
.poles { background: var(--sand-light); }
.poles-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
}
@media (max-width: 800px) { .poles-header { grid-template-columns: 1fr; gap: 1.5rem; } }
.poles-header h2 { max-width: 14ch; }
.poles-header p { color: var(--gray-700); font-weight: 300; }

.poles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}
@media (max-width: 800px) { .poles-grid { grid-template-columns: 1fr; } }
.pole-card {
  background: var(--white);
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: background .35s var(--ease);
  position: relative;
}
.pole-card:hover { background: var(--navy); color: var(--white); }
.pole-card:hover h3 { color: var(--white); }
.pole-card:hover .pole-num,
.pole-card:hover .pole-list li { color: rgba(228,224,216,.8); }
.pole-card:hover .pole-cta { color: var(--sand); border-color: var(--sand); }

.pole-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
  transition: color .3s var(--ease);
}
.pole-card h3 { margin-bottom: 1.2rem; transition: color .3s var(--ease); font-weight: 300; }
.pole-list { font-size: .92rem; color: var(--gray-700); margin-bottom: auto; }
.pole-list li { padding: .35rem 0; border-bottom: 1px solid rgba(14,30,60,.08); transition: color .3s var(--ease); }
.pole-list li:last-child { border-bottom: none; }
.pole-card:hover .pole-list li { border-color: rgba(228,224,216,.15); }
.pole-cta {
  margin-top: 2rem;
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--navy);
  align-self: flex-start;
  transition: all .3s var(--ease);
}
.pole-card:hover .pole-cta { gap: 1rem; }
.pole-card.external::after {
  content: '↗';
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 1.4rem;
  color: var(--gray-500);
  transition: color .3s var(--ease);
}
.pole-card.external:hover::after { color: var(--sand); }

/* ---------- Section : approche / éditorial ---------- */
.approach {
  background: var(--white);
  position: relative;
}
.approach-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
@media (max-width: 800px) { .approach-grid { grid-template-columns: 1fr; } }
.approach-visual {
  background: var(--navy);
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.approach-visual img { width: 60%; opacity: .9; }
.approach-content h2 { margin-bottom: 2rem; }
.approach-content p { color: var(--gray-700); margin-bottom: 1.4rem; }
.approach-list {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.2rem;
}
.approach-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--gray-200);
}
.approach-list li:first-child { border-top: none; padding-top: 0; }
.approach-list .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--sand-dark);
  font-weight: 400;
  line-height: 1;
}
.approach-list strong { display: block; font-weight: 400; margin-bottom: .3rem; color: var(--navy); }
.approach-list span { font-size: .95rem; color: var(--gray-500); font-weight: 300; }

/* ---------- Section : praticiens (preview) ---------- */
.team { background: var(--gray-50); }
.team-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3.5rem;
}
.team-header h2 { max-width: 14ch; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 1000px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .team-grid { grid-template-columns: 1fr; } }
.practitioner {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 2rem 1.6rem;
  transition: all .35s var(--ease);
}
.practitioner:hover { border-color: var(--navy); transform: translateY(-2px); }
.practitioner-photo {
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--sand-light);
  border-radius: 50%;
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 2.8rem;
  color: var(--sand-dark);
  font-weight: 400;
  max-width: 140px;
  margin-inline: auto;
}
.practitioner h4 { font-size: 1.05rem; font-weight: 400; margin-bottom: .35rem; text-align: center; }
.practitioner .specialty { font-size: .82rem; letter-spacing: .04em; color: var(--gray-500); text-align: center; min-height: 2.4em; }
.practitioner .doctolib {
  display: block;
  margin-top: 1.2rem;
  text-align: center;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--navy);
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

/* ---------- Section : centre du sommeil ---------- */
.sommeil {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.sommeil-pattern {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: min(45vw, 540px);
  opacity: .08;
  pointer-events: none;
}
.sommeil-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  position: relative;
}
@media (max-width: 800px) { .sommeil-grid { grid-template-columns: 1fr; } }
.sommeil h2 { color: var(--white); margin: 1.5rem 0 1.5rem; }
.sommeil h2 em { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--sand); font-weight: 400; }
.sommeil p { color: rgba(255,255,255,.78); font-weight: 300; margin-bottom: 1.2rem; }
.sommeil-features { margin: 2rem 0; }
.sommeil-features li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(228,224,216,.15);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
}
.sommeil-features li::before {
  content: '—';
  color: var(--sand);
}

/* ---------- Section : contact / accès ---------- */
.contact-block {
  background: var(--sand-light);
  position: relative;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--gray-200);
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { padding: clamp(2.5rem, 5vw, 4rem); background: var(--white); }
.contact-info h3 { margin-bottom: 2rem; font-weight: 300; }
.contact-row {
  padding: 1.4rem 0;
  border-top: 1px solid var(--gray-200);
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.contact-row:first-of-type { border-top: none; padding-top: 0; }
.contact-label { font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gray-500); padding-top: 4px; }
.contact-value { font-size: 1rem; line-height: 1.6; }
.contact-value strong { display: block; font-weight: 400; }
.contact-value a { border-bottom: 1px solid currentColor; }
.contact-map {
  background: var(--navy);
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.contact-map iframe { width: 100%; height: 100%; border: none; min-height: 460px; }

/* ---------- CTA bandeau ---------- */
.cta-banner {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.cta-banner h2 { color: var(--white); font-weight: 200; margin: 1.5rem 0 .8rem; }
.cta-banner h2 em { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--sand); font-weight: 400; }
.cta-banner p { color: rgba(255,255,255,.75); margin: 0 auto 2.5rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.75);
  padding: clamp(4rem, 7vw, 6rem) 0 0;
  font-size: .9rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(228,224,216,.12);
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-top { grid-template-columns: 1fr; gap: 2rem; } }
.footer-brand img { height: 70px; margin-bottom: 1.5rem; }
.footer-brand p { font-size: .92rem; line-height: 1.7; }
/* Logo inline SVG dans le footer — sur fond navy-deep, currentColor=white */
.footer-brand-mark {
  display: block;
  width: 200px;
  height: auto;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.footer-col h5 {
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.4rem;
  font-weight: 400;
}
.footer-col ul li { padding: .35rem 0; }
.footer-col ul a { color: rgba(255,255,255,.78); }
.footer-col ul a:hover { color: var(--sand); opacity: 1; }
.footer-col p { font-size: .92rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.8rem 0;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.footer-bottom-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-bottom-links a:hover { color: var(--sand); opacity: 1; }

/* ---------- Annuaire praticiens (page dédiée) ---------- */
.directory-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-200);
}
.filter-chip {
  padding: .6rem 1.2rem;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  background: transparent;
  transition: all .25s var(--ease);
  cursor: pointer;
}
.filter-chip:hover { border-color: var(--navy); color: var(--navy); }
.filter-chip.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ---------- Page hero (intérieur) ---------- */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding-top: 9rem;
  padding-bottom: clamp(4rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at right, rgba(228,224,216,.05), transparent 70%);
  pointer-events: none;
}
.page-hero h1 { color: var(--white); margin: 1.2rem 0 1.4rem; font-weight: 200; max-width: 20ch; }
.page-hero h1 em { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--sand); font-weight: 400; }
.page-hero p { color: rgba(255,255,255,.8); max-width: 60ch; }
.breadcrumb {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(228,224,216,.7);
}
.breadcrumb a:hover { color: var(--sand); opacity: 1; }
.breadcrumb .sep { margin: 0 .8rem; opacity: .5; }

/* ---------- Forms ---------- */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; }
.form-field label {
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: .6rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 300;
  padding: .9rem 0;
  border: none;
  border-bottom: 1px solid var(--gray-200);
  background: transparent;
  color: var(--navy);
  outline: none;
  transition: border-color .2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-bottom-color: var(--navy); }
.form-field textarea { resize: vertical; min-height: 120px; padding: .9rem 0; }

/* ---------- Mobile menu ---------- */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 8px;
    cursor: pointer;
  }
  .menu-toggle span {
    display: block;
    width: 26px;
    height: 1.5px;
    background: var(--white);
    transition: all .3s var(--ease);
  }
  .site-header.scrolled .menu-toggle span,
  .site-header.dark .menu-toggle span { background: var(--navy); }
  .mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 200;
    padding: 6rem var(--gutter) 3rem;
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    overflow-y: auto;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 200;
    padding: .7rem 0;
    border-bottom: 1px solid rgba(228,224,216,.15);
  }
  .mobile-nav .close {
    position: absolute;
    top: 1.5rem; right: var(--gutter);
    font-size: 1.5rem;
    color: var(--white);
    background: transparent;
    line-height: 1;
  }
}

/* ---------- Legal / prose pages ---------- */
.prose-section { padding: clamp(3rem, 6vw, 5rem) 0; }
.prose {
  max-width: 72ch;
  margin: 0 auto;
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--gray-800, #2a2f3a);
}
.prose h2 {
  font-weight: 300;
  font-size: 1.5rem;
  margin: 3rem 0 1.2rem;
  letter-spacing: -.01em;
  color: var(--navy);
}
.prose h2:first-of-type { margin-top: 1rem; }
.prose h3 {
  font-weight: 400;
  font-size: 1.05rem;
  margin: 2rem 0 .8rem;
  color: var(--navy);
}
.prose p { margin: 0 0 1.2rem; }
.prose ul { margin: 0 0 1.4rem 1.2rem; padding: 0; }
.prose li { margin-bottom: .6rem; }
.prose a { border-bottom: 1px solid var(--sand-dark); color: var(--navy); }
.prose a:hover { color: var(--sand-dark); }
.prose .updated {
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 2rem;
}

/* ---------- 404 page ---------- */
.error-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
  text-align: center;
  background: var(--sand-light);
}
.error-section .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(6rem, 18vw, 12rem);
  font-weight: 400;
  color: var(--sand-dark);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.error-section h1 {
  font-weight: 200;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
  color: var(--navy);
}
.error-section h1 em { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--sand-dark); font-weight: 400; }
.error-section p { color: var(--gray-700); max-width: 50ch; margin: 0 auto 2.5rem; font-weight: 300; }

/* ---------- Animations on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Accessibility ---------- */
:focus-visible {
  outline: 2px solid var(--sand);
  outline-offset: 4px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: .8rem 1.4rem;
  font-size: .9rem;
  font-weight: 400;
  text-decoration: none;
  z-index: 9999;
  border-radius: 0 0 4px 0;
}
.skip-link:focus {
  left: 0;
  outline: 2px solid var(--sand);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}

/* ---------- Hero title-page (page de titre, fond sable) ---------- */
.hero-title {
  min-height: 100vh;
  padding-top: 6rem;
  text-align: center;
  /* override navy defaults from .hero */
  background: var(--sand-light);
  color: var(--navy);
}
.hero-title::before { display: none; }   /* no radial-gradient on sand bg */
.hero-title .hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: 4rem;
  width: 100%;
}
.brand-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.2rem;
  max-width: 720px;
  margin: 0 auto;
}
.brand-mark img {
  width: clamp(280px, 36vw, 480px);
  height: auto;
  display: block;
}
.brand-mark .brand-rule {
  width: 60px;
  height: 1px;
  background: rgba(14,30,60,.22);
  border: 0;
  margin: .5rem 0;
}
.brand-mark .brand-meta {
  font-family: 'Jost', sans-serif;
  font-size: .78rem;
  font-weight: 300;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gray-700);
  margin: 0;
}
/* Hero meta on sand background */
.hero-title .hero-meta {
  color: rgba(14,30,60,.55);
}
.hero-title .hero-meta .scroll-cue {
  color: var(--navy);
}
.hero-title .hero-meta .scroll-cue::after {
  background: linear-gradient(to bottom, var(--navy), transparent);
}

/* =========================================================
   LANGLOIS LASER — Accents or champagne
   ---------------------------------------------------------
   Substitutions ciblées : les italiques Cormorant qui étaient
   en --sand passent à --gold-soft. Le reste du sable est
   conservé pour préserver la famille visuelle avec GML.
   ========================================================= */

/* Accents italiques sur fond navy */
.hero h1 em,
.hero .hero-h1 em,
.page-hero h1 em,
.cta-banner h2 em,
.error-section h1 em { color: var(--gold-soft); }

/* Section-seal — variante dark : filets or tamisé */
.section-seal.on-dark::before,
.section-seal.on-dark::after { background: rgba(220,192,147,.28); }

/* Frontispice — filet d'or sous le brand-mark */
.brand-mark .brand-rule { background: rgba(168,132,90,.45); }

/* Approche — numéros italiques en or */
.approach-list .num { color: var(--gold-deep); }

/* Specialties-list — numéros italiques en or */
.specialties-list .num { color: var(--gold-deep); }

/* Pole-card — numéros italiques en or */
.pole-num { color: var(--gold-deep); opacity: .9; }

/* Practitioner — initiales italiques en or pâle */
.practitioner-photo { color: var(--gold-soft); }

/* Eyebrow numérique sup — accent or sur les compteurs */
.stat-num sup { color: var(--gold-deep); }

/* Liens prose — ligne d'or au lieu de sable-foncé */
.prose a { border-bottom-color: var(--gold-deep); }
.prose a:hover { color: var(--gold-deep); }

/* 404 — chiffre italique en or pâle */
.error-section .num { color: var(--gold-soft); }

/* Boutons : btn-light reste sable (continuité GML), mais
   on introduit un .btn-gold pour les CTA Doctolib/RDV
   spécifiques au pôle esthétique. */
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--white);
}

/* Filet sous les titres Cormorant des sections — touche or discrète */
.summary-grid h2 em,
.team-strip h2 em,
.external-cta h3 em { color: var(--gold-deep); }
.sommeil h2 em { color: var(--gold-soft); }

/* =========================================================
   FICHES D'ACTES — gabarit unique (épilation, taches, RF, HIFU)
   ========================================================= */
.fiche-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 900px) { .fiche-grid { grid-template-columns: 1fr; } }
.fiche-image {
  aspect-ratio: 1 / 1;
  background: var(--sand-light);
  overflow: hidden;
  position: relative;
}
.fiche-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fiche-image + .fiche-image { margin-top: 1.4rem; }
.fiche-image.infographie {
  aspect-ratio: auto;
  background: var(--white);
}
.fiche-image.infographie img { height: auto; }

.fiche-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.fiche-content h2 em { font-style: italic; }
.fiche-content > section + section { margin-top: 2.5rem; }
.fiche-content p { color: var(--gray-700); line-height: 1.7; }

.fiche-label {
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--gold-deep);
  margin-bottom: .8rem;
  display: block;
}
.fiche-list { list-style: none; padding: 0; margin: 0; }
.fiche-list li {
  padding: .55rem 0;
  border-top: 1px solid var(--gray-200);
  color: var(--gray-700);
  font-size: .95rem;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: .8rem;
  align-items: start;
}
.fiche-list li:first-child { border-top: none; padding-top: 0; }
.fiche-list li::before {
  content: '—';
  color: var(--gold-deep);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

.fiche-callout {
  border-left: 2px solid var(--gold-deep);
  background: var(--sand-light);
  padding: 1.4rem 1.5rem;
}
.fiche-callout .fiche-label { color: var(--navy); }
.fiche-callout.warn { border-left-color: #a0392e; }
.fiche-callout.warn .fiche-label { color: #a0392e; }
.fiche-callout.note { border-left-color: var(--sand-dark); }
.fiche-callout.note .fiche-label { color: var(--gray-700); }

/* Tarifs */
.tarifs { background: var(--gray-50); }
.tarifs h2 {
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: .4rem;
}
.tarifs h2 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}
.tarifs .tarifs-note {
  text-align: center;
  color: var(--gray-500);
  font-size: .9rem;
  margin-bottom: 3rem;
  font-style: italic;
}
.tarifs-section { margin-top: 3rem; }
.tarifs-section h3 {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--navy);
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
}
.tarifs-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 800px) { .tarifs-cols { grid-template-columns: 1fr; } }
.tarif-col {
  background: var(--white);
  padding: 1.8rem 1.5rem;
  border: 1px solid var(--gray-200);
}
.tarif-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 1.2rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--gray-200);
}
.tarif-col ul { list-style: none; padding: 0; margin: 0; }
.tarif-col li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: .5rem 0;
  font-size: .92rem;
}
.tarif-col li .zone { color: var(--gray-700); }
.tarif-col li .prix { color: var(--gold-deep); font-weight: 400; }

.tarifs-forfaits {
  margin-top: 3rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 2rem;
}
.tarifs-forfaits h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--gold-deep);
  margin-bottom: 1.4rem;
  text-align: left;
  padding-bottom: 0;
  border-bottom: none;
  text-transform: none;
  letter-spacing: 0;
}
.tarifs-forfaits ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .3rem 2rem;
}
@media (max-width: 700px) { .tarifs-forfaits ul { grid-template-columns: 1fr; } }
.tarifs-forfaits li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: .55rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: .92rem;
  gap: 1rem;
}
.tarifs-forfaits li .zone { color: var(--gray-700); }
.tarifs-forfaits li .prix { color: var(--gold-deep); font-weight: 400; white-space: nowrap; }

/* Tarifs — table simple (taches) */
.tarifs-table {
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 1.8rem 2rem;
}
.tarifs-table table { width: 100%; border-collapse: collapse; }
.tarifs-table th {
  text-align: left;
  padding: .6rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-weight: 400;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
}
.tarifs-table th:last-child { text-align: right; }
.tarifs-table td {
  padding: .8rem 0;
  border-bottom: 1px solid var(--gray-100, #f5f3ee);
  font-size: .95rem;
  color: var(--gray-700);
}
.tarifs-table tr:last-child td { border-bottom: none; }
.tarifs-table td:last-child { text-align: right; color: var(--gold-deep); }

/* FAQ */
.faq { max-width: 880px; margin: 0 auto; }
.faq h2 {
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 3rem;
}
.faq h2 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}
.faq details { border-top: 1px solid var(--gray-200); }
.faq details:last-of-type { border-bottom: 1px solid var(--gray-200); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 0;
  font-size: 1rem;
  font-weight: 400;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--gold-deep);
}
.faq details[open] summary::after { content: '−'; }
.faq summary:hover { color: var(--gold-deep); }
.faq details p {
  padding: 0 0 1.4rem;
  color: var(--gray-700);
  line-height: 1.7;
  max-width: 72ch;
}

.acte-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2.5rem;
  margin-top: 4rem;
  border-top: 1px solid var(--gray-200);
  gap: 1rem;
  flex-wrap: wrap;
}
.acte-nav a {
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 400;
}
.acte-nav a:hover { color: var(--gold-deep); opacity: 1; }

/* ---------- Section seal (sceau entre sections) ---------- */
.section-seal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 320px;
  margin: 0 auto;
  padding: 4rem 0;
}
.section-seal::before,
.section-seal::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}
.section-seal img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  opacity: .85;
}
/* Variant for dark sections */
.section-seal.on-dark::before,
.section-seal.on-dark::after {
  background: rgba(228,224,216,.22);
}
.section-seal.on-dark img {
  opacity: .9;
}
@media (max-width: 600px) {
  .section-seal { padding: 2.5rem 0; gap: 1.2rem; max-width: 240px; }
  .section-seal img { width: 30px; height: 30px; }
}
