/* ============================================================
   CABINET MARIEM KHALIFA — Feuille de styles principale
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Nunito:wght@300;400;500;600;700&display=swap');

/* ---- Variables ---- */
:root {
  --sage:          #87A878;
  --sage-light:    #B4CFA8;
  --sage-lighter:  #EBF3E6;
  --sage-dark:     #5E7D52;
  --cream:         #FAF8F5;
  --beige:         #F2EAE0;
  --beige-mid:     #DDD0BF;
  --beige-dark:    #C8BAA5;
  --terracotta:    #C07050;
  --terracotta-lt: #E4A080;
  --gold:          #C8A560;
  --gold-light:    #EED9A0;
  --dark:          #1C1A18;
  --text:          #3E3A35;
  --text-light:    #7A7268;
  --white:         #FFFFFF;

  --font-title: 'Playfair Display', Georgia, serif;
  --font-body:  'Nunito', 'Segoe UI', sans-serif;

  --section-py:  90px;
  --cw:          1200px;
  --cx:          44px;

  --sh-sm:  0 2px 10px rgba(28, 26, 24, 0.07);
  --sh-md:  0 6px 24px rgba(28, 26, 24, 0.12);
  --sh-lg:  0 12px 48px rgba(28, 26, 24, 0.17);
  --tr:     0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 14px;
  --r-sm:   8px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Container ---- */
.container {
  max-width: var(--cw);
  margin: 0 auto;
  padding: 0 var(--cx);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(250, 248, 245, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--beige-mid);
  transition: box-shadow var(--tr);
}
.header.scrolled { box-shadow: var(--sh-md); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
}
.logo-text {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--tr);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sage);
  border-radius: 2px;
  transition: width var(--tr);
}
.nav-links a:hover,
.nav-links a.active { color: var(--sage-dark); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* RDV nav button */
.btn-nav {
  padding: 10px 24px !important;
  background: var(--sage) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  transition: background var(--tr), transform var(--tr), box-shadow var(--tr) !important;
}
.btn-nav:hover {
  background: var(--sage-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(94, 125, 82, 0.38) !important;
  color: var(--white) !important;
}
.btn-nav::after { display: none !important; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--tr);
  cursor: pointer;
}
.btn-primary {
  background: var(--sage);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(94, 125, 82, 0.38);
}
.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(94, 125, 82, 0.48);
}
.btn-secondary {
  background: transparent;
  color: var(--sage-dark);
  border: 2px solid var(--sage);
}
.btn-secondary:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-3px);
}
.btn-white {
  background: var(--white);
  color: var(--sage-dark);
}
.btn-white:hover {
  background: var(--sage-lighter);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.25);
}
.btn-terra {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(192, 112, 80, 0.38);
}
.btn-terra:hover {
  background: #A05A38;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(192, 112, 80, 0.48);
}

/* ============================================================
   SECTIONS — UTILITAIRES
   ============================================================ */
.section { padding: var(--section-py) 0; }
.section-bg-cream  { background: var(--cream); }
.section-bg-beige  { background: var(--beige); }
.section-bg-sage   { background: var(--sage-lighter); }
.section-bg-dark   { background: var(--dark); }

.section-header { text-align: center; margin-bottom: 64px; }

.section-label {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.22;
  margin-bottom: 16px;
}
.section-title span { color: var(--sage); }
.section-title em   { font-style: italic; color: var(--terracotta); }

.section-sub {
  font-size: 1.02rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}
.divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--gold));
  border-radius: 2px;
  margin: 20px auto 0;
}

/* ============================================================
   HOME — HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('./images/cabinet1.webp');
  background-size: cover;
  background-position: center 20%;
  opacity: 0.42;
  transform: scale(1.06);
  transition: transform 9s ease;
}
.hero:hover .hero-bg { transform: scale(1.0); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(28, 26, 24, 0.72) 0%,
    rgba(94, 125, 82, 0.35) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 740px;
  padding: 0 40px;
  animation: fadeUp 1s ease both;
}
.hero-pill {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 6px 20px;
  border: 1px solid rgba(238, 217, 160, 0.45);
  border-radius: 50px;
  margin-bottom: 26px;
}
.hero-title {
  font-family: var(--font-title);
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.16;
  margin-bottom: 22px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-desc {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.8;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* ============================================================
   HOME — SECTION INTRO
   ============================================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-img-wrap { position: relative; }
.intro-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 62%;
  border-radius: var(--radius);
  box-shadow: var(--sh-lg);
}
.intro-accent {
  position: absolute;
  bottom: -22px;
  right: -22px;
  width: 140px;
  height: 140px;
  background: var(--beige);
  border-radius: var(--radius);
  z-index: -1;
}
.intro-badge {
  position: absolute;
  top: 28px;
  left: -22px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--sh-md);
  text-align: center;
  min-width: 115px;
}
.badge-num {
  display: block;
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--sage);
  line-height: 1;
}
.badge-lbl {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 4px;
}
.intro-content .section-label,
.intro-content .section-title { text-align: left; }
.intro-text { font-size: 1.02rem; line-height: 1.85; color: var(--text); margin-bottom: 18px; }
.intro-values { display: flex; flex-direction: column; gap: 12px; margin: 26px 0; }
.val-item { display: flex; align-items: center; gap: 12px; }
.val-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--gold));
  flex-shrink: 0;
}
.val-item span { font-size: 0.98rem; color: var(--text); }
.intro-sig {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--sage-dark);
  margin-top: 24px;
  margin-bottom: 28px;
}

/* ============================================================
   HOME — SERVICES APERÇU
   ============================================================ */
.services-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* Carte lipocavitation (homepage — pleine largeur) */
.svc-card.svc-card-lipo {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 36px;
  text-align: left;
  background: linear-gradient(135deg, var(--dark) 0%, #251E14 100%);
  border-bottom: none !important;
  padding: 36px 44px;
}
.svc-card.svc-card-lipo:hover {
  border-bottom: none !important;
}
.svc-card.svc-card-lipo .svc-icon {
  width: 88px;
  height: 88px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.svc-card.svc-card-lipo:hover .svc-icon {
  background: var(--terracotta);
}
.svc-card.svc-card-lipo .svc-icon svg {
  width: 34px;
  height: 34px;
  color: var(--terracotta-lt);
}
.svc-card.svc-card-lipo:hover .svc-icon svg {
  color: var(--white);
}
.svc-card-lipo-body { flex: 1; }
.svc-lipo-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta-lt);
  background: rgba(228, 160, 128, 0.15);
  border: 1px solid rgba(228, 160, 128, 0.3);
  padding: 3px 14px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.svc-card.svc-card-lipo h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.svc-card.svc-card-lipo p {
  color: rgba(255,255,255,0.72);
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 0;
}
.svc-lipo-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-light);
  font-size: 0.88rem;
  font-weight: 700;
  margin-top: 16px;
  transition: gap var(--tr), color var(--tr);
}
.svc-lipo-link:hover { gap: 12px; color: var(--white); }
.svc-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
  box-shadow: var(--sh-sm);
  border-bottom: 3px solid transparent;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-bottom-color: var(--sage);
}
.svc-icon {
  width: 70px; height: 70px;
  background: var(--sage-lighter);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--tr);
}
.svc-card:hover .svc-icon { background: var(--sage); }
.svc-icon svg { width: 30px; height: 30px; color: var(--sage); transition: color var(--tr); }
.svc-card:hover .svc-icon svg { color: var(--white); }
.svc-card h3 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.svc-card p { font-size: 0.93rem; color: var(--text-light); line-height: 1.7; }

/* ============================================================
   HOME — CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('./images/cabinet6.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.35;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(94, 125, 82, 0.92), rgba(28, 26, 24, 0.82));
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner .section-label { color: var(--gold-light); }
.cta-banner .section-title { color: var(--white); }
.cta-banner .section-sub { color: rgba(255,255,255,0.84); }
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 38px;
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--tr);
  display: inline-block;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* ============================================================
   HOME — STATS ROW
   ============================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--sage);
  line-height: 1;
}
.stat-lbl {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

/* ============================================================
   PAGE HERO (sous-pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 90px 0 70px;
  text-align: center;
  background: var(--dark);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  opacity: 0.28;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(94, 125, 82, 0.7), rgba(28, 26, 24, 0.85));
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-pill {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 5px 18px;
  border: 1px solid rgba(238, 217, 160, 0.4);
  border-radius: 50px;
  margin-bottom: 16px;
}
.page-hero-title {
  font-family: var(--font-title);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.page-hero-title em { font-style: italic; color: var(--gold-light); }
.breadcrumb {
  margin-top: 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--tr); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { margin: 0 6px; }

/* ============================================================
   À PROPOS — PAGE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
}
.about-photo-col { position: sticky; top: 100px; }
.about-photo {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  box-shadow: var(--sh-lg);
}
.about-photo-cap {
  text-align: center;
  margin-top: 16px;
  padding: 18px;
  background: var(--white);
  border-radius: var(--r-sm);
  box-shadow: var(--sh-sm);
}
.about-photo-cap strong {
  display: block;
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
}
.about-photo-cap span {
  font-size: 0.82rem;
  color: var(--sage);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}
.about-content .section-label,
.about-content .section-title { text-align: left; }
.about-lead {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  padding-left: 20px;
  border-left: 3px solid var(--sage);
  margin: 28px 0;
}
.about-text { font-size: 1.02rem; line-height: 1.85; color: var(--text); margin-bottom: 16px; }

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 32px 0;
}
.cred-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--beige);
  padding: 16px 18px;
  border-radius: var(--r-sm);
  transition: box-shadow var(--tr);
}
.cred-item:hover { box-shadow: var(--sh-sm); }
.cred-ico {
  width: 36px; height: 36px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cred-ico svg { width: 18px; height: 18px; color: var(--white); }
.cred-txt strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.cred-txt span   { font-size: 0.82rem; color: var(--text-light); }

.philosophy-block {
  margin-top: 44px;
  padding: 38px 40px;
  background: linear-gradient(135deg, var(--sage-lighter), var(--beige));
  border-radius: var(--radius);
  border-left: 4px solid var(--sage);
}
.philosophy-block h3 {
  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 14px;
}
.philosophy-block p { font-size: 1rem; line-height: 1.85; color: var(--text); }

.quote-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 52px;
  text-align: center;
  position: relative;
  margin: 64px 0;
  box-shadow: var(--sh-sm);
}
.quote-mark {
  font-family: var(--font-title);
  font-size: 7rem;
  color: var(--sage-light);
  opacity: 0.5;
  line-height: 0.6;
  display: block;
  margin-bottom: 14px;
}
.quote-wrap blockquote {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.65;
}
.quote-wrap cite {
  display: block;
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--sage-dark);
  font-style: normal;
}

/* ============================================================
   SERVICES — PAGE
   ============================================================ */
.svc-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.svc-full-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 42px 38px;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: transform var(--tr), box-shadow var(--tr);
}
.svc-full-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sage), var(--gold));
  opacity: 0;
  transition: opacity var(--tr);
}
.svc-full-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.svc-full-card:hover::before { opacity: 1; }
/* Lipo : première carte, pleine largeur, style foncé */
.svc-full-card.svc-lipo {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--dark) 0%, #251E14 100%);
  flex-direction: row;
  align-items: center;
  gap: 44px;
  padding: 48px 48px;
}
.svc-full-card.svc-lipo::before { display: none; }
.svc-full-card.svc-lipo:hover { box-shadow: 0 16px 56px rgba(0,0,0,0.28); }
.svc-full-card.svc-lipo .svc-full-ico {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.08);
  border-radius: 22px;
}
.svc-full-card.svc-lipo:hover .svc-full-ico { background: var(--terracotta); }
.svc-full-card.svc-lipo .svc-full-ico svg { color: var(--terracotta-lt); }
.svc-full-card.svc-lipo:hover .svc-full-ico svg { color: var(--white); }
.svc-full-card.svc-lipo h2  { color: var(--white); font-size: 1.6rem; }
.svc-full-card.svc-lipo p   { color: rgba(255,255,255,0.74); }
.svc-full-card.svc-lipo .svc-tag {
  background: rgba(228, 160, 128, 0.18);
  color: var(--terracotta-lt);
}
.svc-full-card.svc-lipo .svc-link { color: var(--gold-light); }
.svc-full-card.svc-lipo .svc-link:hover { color: var(--white); }
.svc-lipo-body { flex: 1; display: flex; flex-direction: column; gap: 12px; }

/* Bilan : 6e carte, centrée (lipo est maintenant en 1re position) */
.svc-full-card:nth-child(6) {
  grid-column: 1 / -1;
  max-width: 620px;
  margin: 0 auto;
  width: 100%;
}
.svc-full-ico {
  width: 78px; height: 78px;
  background: linear-gradient(135deg, var(--sage-lighter), var(--beige));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--tr);
}
.svc-full-card:hover .svc-full-ico { background: linear-gradient(135deg, var(--sage-light), var(--sage)); }
.svc-full-ico svg { width: 34px; height: 34px; color: var(--sage-dark); transition: color var(--tr); }
.svc-full-card:hover .svc-full-ico svg { color: var(--white); }
.svc-full-card h2 {
  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--dark);
}
.svc-full-card p { font-size: 0.98rem; line-height: 1.8; color: var(--text); flex-grow: 1; }
.svc-tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: var(--sage-lighter);
  padding: 4px 12px;
  border-radius: 50px;
  align-self: flex-start;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--sage-dark);
  transition: gap var(--tr), color var(--tr);
  align-self: flex-start;
}
.svc-link:hover { gap: 12px; color: var(--terracotta); }

/* Processus */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
  margin-top: 60px;
}
.process-step { position: relative; }
.process-step::after {
  content: '';
  position: absolute;
  top: 26px;
  left: calc(50% + 26px);
  width: calc(100% - 52px);
  height: 2px;
  background: var(--beige-mid);
  border-radius: 1px;
}
.process-step:last-child::after { display: none; }
.step-num {
  width: 52px; height: 52px;
  background: var(--sage);
  border-radius: 50%;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
}
.process-step h4 {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.process-step p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

/* ============================================================
   GALERIE — PAGE
   ============================================================ */
.gallery-intro { text-align: center; margin-bottom: 48px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--sh-sm);
}
.gallery-item:nth-child(1) { grid-column: span 2; }
.gallery-item:nth-child(7) { grid-column: span 2; }

.gallery-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.gallery-item:nth-child(1) .gallery-img,
.gallery-item:nth-child(7) .gallery-img { height: 370px; }
.gallery-item:nth-child(3) .gallery-img { height: 370px; }

.gallery-ovl {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(94, 125, 82, 0.72), rgba(28, 26, 24, 0.62));
  opacity: 0;
  transition: opacity var(--tr);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-ovl svg {
  width: 48px; height: 48px;
  color: var(--white);
  transform: scale(0.65);
  transition: transform var(--tr);
}
.gallery-item:hover .gallery-img { transform: scale(1.07); }
.gallery-item:hover .gallery-ovl { opacity: 1; }
.gallery-item:hover .gallery-ovl svg { transform: scale(1); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10, 10, 10, 0.93);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 36px;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--r-sm);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  animation: zoomIn 0.28s ease both;
}
.lb-close {
  position: fixed;
  top: 20px; right: 22px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  transition: background var(--tr);
}
.lb-close:hover { background: rgba(255,255,255,0.28); }
.lb-prev, .lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  transition: background var(--tr);
}
.lb-prev { left: 18px; }
.lb-next { right: 18px; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.28); }

/* ============================================================
   RDV — PAGE
   ============================================================ */
.rdv-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 50px;
  align-items: start;
}
.rdv-cal-wrap {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--sh-md);
  overflow: hidden;
}
.rdv-sidebar { position: sticky; top: 96px; }
.rdv-contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--sh-sm);
  margin-bottom: 22px;
}
.rdv-contact-card h3 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 22px;
}
.contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--beige);
}
.contact-row:last-child { border-bottom: none; }
.contact-ico {
  width: 40px; height: 40px;
  background: var(--sage-lighter);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-ico svg { width: 18px; height: 18px; color: var(--sage-dark); }
.contact-info strong { display: block; font-size: 0.78rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 2px; }
.contact-info span  { font-size: 0.94rem; color: var(--text); }
.rdv-hours-card {
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  border-radius: var(--radius);
  padding: 30px 34px;
  color: var(--white);
}
.rdv-hours-card h3 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 18px;
  opacity: 0.95;
}
.hour-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  opacity: 0.88;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.hour-row:last-child { border-bottom: none; }
.hour-row strong { opacity: 1; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 14px; margin-top: 48px; }
.faq-item {
  background: var(--white);
  border-radius: var(--r-sm);
  box-shadow: var(--sh-sm);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--tr);
}
.faq-q:hover { color: var(--sage-dark); }
.faq-chevron {
  width: 20px; height: 20px;
  color: var(--sage);
  flex-shrink: 0;
  transition: transform var(--tr);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--tr);
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner {
  padding: 0 22px 18px;
  font-size: 0.96rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); padding-top: 68px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.footer-logo { height: 48px; width: auto; object-fit: contain; }
.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  margin-top: 14px;
  max-width: 270px;
}
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50px;
  transition: all var(--tr);
}
.social-btn svg { width: 15px; height: 15px; }
.social-btn:hover {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-nav-list { display: flex; flex-direction: column; gap: 9px; }
.footer-nav-list a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--tr);
}
.footer-nav-list a::before { content: '›'; color: var(--sage-light); font-size: 1rem; }
.footer-nav-list a:hover { color: var(--sage-light); }
.footer-contact-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 13px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}
.footer-contact-row svg { width: 17px; height: 17px; color: var(--sage-light); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.38); }
.footer-legal-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  margin-left: 18px;
  transition: color var(--tr);
}
.footer-legal-links a:hover { color: var(--sage-light); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }

/* ============================================================
   UTILITAIRES
   ============================================================ */
.text-center   { text-align: center; }
.text-left     { text-align: left; }
.mt-16  { margin-top: 16px; }
.mt-24  { margin-top: 24px; }
.mt-32  { margin-top: 32px; }
.mt-40  { margin-top: 40px; }
.mt-48  { margin-top: 48px; }
.mb-16  { margin-bottom: 16px; }
.mb-32  { margin-bottom: 32px; }
.pt-0   { padding-top: 0; }

/* ============================================================
   RESPONSIVE — BURGER (caché sur desktop)
   ============================================================ */
.nav-toggle { display: none; }

/* ============================================================
   RESPONSIVE — TABLETTE  (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-py: 72px; --cx: 32px; }

  .section-title { font-size: 2.1rem; }
  .nav-links { gap: 20px; }

  .hero-title { font-size: 3rem; }
  .intro-grid { gap: 48px; }
  .intro-img { height: 440px; }

  .services-preview { grid-template-columns: repeat(2, 1fr); }
  .svc-card.svc-card-lipo { grid-column: 1 / -1; }

  .stats-row { gap: 24px; }
  .stat-num { font-size: 2.3rem; }

  .about-grid { grid-template-columns: 300px 1fr; gap: 48px; }

  .svc-full-card.svc-lipo { gap: 30px; padding: 36px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-step::after { display: none; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; }

  .rdv-layout { grid-template-columns: 1fr 280px; gap: 32px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE — MOBILE  (≤ 767px)
   ============================================================ */
@media (max-width: 767px) {
  :root { --section-py: 56px; --cx: 20px; }

  .section-title { font-size: 1.75rem; }
  .section-sub { font-size: 0.95rem; }
  .section-header { margin-bottom: 36px; }

  /* ---- NAV hamburger ---- */
  .nav { height: 68px; }
  .logo-img { height: 54px; }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 8px;
    border-radius: var(--r-sm);
    transition: background var(--tr);
  }
  .nav-toggle:hover { background: var(--beige); }
  .nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .header { overflow: visible; }

  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 16px;
    box-shadow: var(--sh-md);
    border-top: 1px solid var(--beige-mid);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s linear 0.3s;
    z-index: 999;
    pointer-events: none;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s;
    pointer-events: auto;
  }

  .nav-links a {
    display: block;
    padding: 14px 24px;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--beige);
    letter-spacing: 0.05em;
  }
  .nav-links a::after { display: none; }
  .nav-links li:last-child a { border-bottom: none; }

  .nav-links .btn-nav {
    display: block !important;
    margin: 12px 20px 0 !important;
    padding: 12px 24px !important;
    text-align: center !important;
    border-bottom: none !important;
  }

  /* ---- Hero ---- */
  .hero { min-height: 82vh; }
  .hero-content { padding: 0 8px; }
  .hero-title { font-size: 2.3rem; }
  .hero-desc { font-size: 0.97rem; margin-bottom: 28px; }
  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero-actions .btn { width: 100%; max-width: 300px; text-align: center; }

  /* ---- Intro ---- */
  .intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .intro-img { height: 340px; }
  .intro-accent { display: none; }
  .intro-badge { left: 12px; top: 16px; padding: 12px 14px; min-width: 90px; }
  .badge-num { font-size: 1.7rem; }

  /* ---- Services preview (home) ---- */
  .services-preview { grid-template-columns: 1fr; }
  .svc-card.svc-card-lipo {
    flex-direction: column;
    text-align: center;
    padding: 28px 22px;
    gap: 18px;
  }
  .svc-card.svc-card-lipo .svc-icon { margin: 0 auto; }

  /* ---- Stats ---- */
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-num { font-size: 2rem; }

  /* ---- CTA banner ---- */
  .cta-banner { padding: 60px 0; }
  .cta-bg { background-attachment: scroll; }
  .cta-actions { flex-direction: column; align-items: center; gap: 12px; }
  .cta-actions .btn,
  .cta-actions .btn-outline-white {
    width: 100%; max-width: 300px;
    text-align: center; display: block;
  }

  /* ---- Page hero ---- */
  .page-hero { padding: 60px 0 44px; }
  .page-hero-title { font-size: 2rem; }

  /* ---- À propos ---- */
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-photo-col { position: static; }
  .about-photo { height: 400px; object-position: center 55%; }
  .credentials-grid { grid-template-columns: 1fr; }
  .philosophy-block { padding: 24px 20px; }
  .quote-wrap { padding: 28px 20px; margin: 24px 0; }
  .quote-mark { font-size: 4.5rem; }
  .quote-wrap blockquote { font-size: 1.08rem; }

  /* ---- Services page ---- */
  .svc-full-grid { grid-template-columns: 1fr; }
  .svc-full-card { padding: 28px 22px; }
  .svc-full-card.svc-lipo {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 22px;
    gap: 18px;
  }
  .svc-full-card:nth-child(6) { grid-column: 1; max-width: 100%; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .process-step::after { display: none; }

  /* ---- Galerie ---- */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-item:nth-child(1) { grid-column: 1 / -1; }
  .gallery-img { height: 200px; }
  .gallery-item:nth-child(1) .gallery-img,
  .gallery-item:nth-child(7) .gallery-img { height: 240px; }
  .gallery-item:nth-child(3) .gallery-img { height: 200px; }

  /* ---- RDV ---- */
  .rdv-layout { grid-template-columns: 1fr; gap: 28px; }
  .rdv-sidebar { position: static; }
  .calendly-inline-widget { height: 600px !important; min-width: unset !important; }

  /* ---- Footer ---- */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; }
  .footer-brand p { max-width: 100%; }
  .footer-social { flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer-legal-links { display: flex; justify-content: center; }
  .footer-legal-links a:first-child { margin-left: 0; }
}
