/* ═══════════════════════════════════════════════════
   BEAUVOIR CLINIC — Design System
   Nouvelle palette dynamique + composants harmonisés
   ═══════════════════════════════════════════════════ */

/* ──────────── Variables ──────────── */
:root {
  /* Palette principale */
  --gold:        #B8860B;
  --gold-light:  #D4A574;
  --gold-hover:  #9A7209;
  --cream:       #FAFAF7;
  --anthracite:  #1A1A2E;
  --bronze:      #8B6F47;
  --lin:         #F0EDE5;
  --bg-dark:     #141424;
  --white:       #FFFFFF;
  --success:     #4A7C59;
  --error:       #C44536;

  /* Transparences */
  --gold-10:     rgba(184, 134, 11, 0.10);
  --gold-15:     rgba(184, 134, 11, 0.15);
  --gold-20:     rgba(184, 134, 11, 0.20);
  --dark-overlay: rgba(20, 20, 36, 0.85);

  /* Typographie */
  --font-heading: 'Noto Serif JP', serif;
  --font-body:    'Outfit', sans-serif;

  /* Espacements (-20% vs original pour densifier les pages) */
  --section-pad:    60px 0;
  --section-pad-sm: 36px 0;
  --container-max:  1140px;
  --container-pad:  0 24px;

  /* Transitions */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --duration:    0.3s;

  /* Ombres */
  --shadow-sm:   0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md:   0 8px 32px rgba(0, 0, 0, 0.06);
  --shadow-lg:   0 12px 48px rgba(0, 0, 0, 0.1);
  --shadow-gold: 0 8px 24px rgba(184, 134, 11, 0.25);

  /* Rayons — V2 Stitch-inspired */
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   1.25rem;
  --radius-xl:   1.5rem;
  --radius-2xl:  2rem;
  --radius-pill: 100px;

  /* ─── Palette cartes — inspirée de l'intérieur Beauvoir ─── */
  --card-creme:       #F5F0E8;  --card-creme-text:       #5a4d2e;
  --card-sable:       #E8DCC4;  --card-sable-text:       #6b5a3f;
  --card-terracotta:  #E5CFB5;  --card-terracotta-text:  #7a4e2d;
  --card-safran:      #D4A876;  --card-safran-text:      #3a2718;
  --card-brique:      #C7806A;  --card-brique-text:      #ffffff;
  --card-rose:        #E8C8C0;  --card-rose-text:        #7a3c34;
  --card-bordeaux:    #7B2D3F;  --card-bordeaux-text:    #ffffff;
  --card-sauge:       #C9CFB8;  --card-sauge-text:       #4a5639;
  --card-olive:       #6B7757;  --card-olive-text:       #ffffff;
  --card-prune:       #D4C0CC;  --card-prune-text:       #5b3b5b;
  --card-or:          #A58847;  --card-or-text:          #ffffff;
  --card-anthracite:  #2C2C2C;  --card-anthracite-text:  #ffffff;
  --card-graphite:    #6B6B6B;  --card-graphite-text:    #ffffff;  /* anthracite éclairci ~30% */
}

/* Classes utilitaires couleurs de cartes (réutilisables partout)
   !important : nécessaire pour surpasser les styles inline des bento-cards & co. */
.bg-creme       { background: var(--card-creme)      !important; color: var(--card-creme-text); }
.bg-sable       { background: var(--card-sable)      !important; color: var(--card-sable-text); }
.bg-terracotta  { background: var(--card-terracotta) !important; color: var(--card-terracotta-text); }
.bg-safran      { background: var(--card-safran)     !important; color: var(--card-safran-text); }
.bg-brique      { background: var(--card-brique)     !important; color: var(--card-brique-text); }
.bg-rose        { background: var(--card-rose)       !important; color: var(--card-rose-text); }
.bg-bordeaux    { background: var(--card-bordeaux)   !important; color: var(--card-bordeaux-text); }
.bg-sauge       { background: var(--card-sauge)      !important; color: var(--card-sauge-text); }
.bg-olive       { background: var(--card-olive)      !important; color: var(--card-olive-text); }
.bg-prune       { background: var(--card-prune)      !important; color: var(--card-prune-text); }
.bg-or          { background: var(--card-or)         !important; color: var(--card-or-text); }
.bg-anthracite  { background: var(--card-anthracite) !important; color: var(--card-anthracite-text); }
.bg-graphite    { background: var(--card-graphite)   !important; color: var(--card-graphite-text); }

/* Sur cards "sombres" (texte clair), forcer la lisibilité des titres et listes */
.bg-brique h3, .bg-bordeaux h3, .bg-olive h3, .bg-or h3, .bg-anthracite h3, .bg-graphite h3,
.bg-brique h4, .bg-bordeaux h4, .bg-olive h4, .bg-or h4, .bg-anthracite h4, .bg-graphite h4 { color: #fff !important; }
.bg-brique p, .bg-bordeaux p, .bg-olive p, .bg-or p, .bg-anthracite p, .bg-graphite p { color: rgba(255,255,255,0.85) !important; }

/* Sur fonds soutenus, les liens doivent rester lisibles */
.bg-brique a, .bg-bordeaux a, .bg-olive a, .bg-or a, .bg-anthracite a, .bg-graphite a { color: inherit; }
.bg-brique a:hover, .bg-bordeaux a:hover, .bg-olive a:hover, .bg-or a:hover, .bg-anthracite a:hover, .bg-graphite a:hover { opacity: 0.85; }

/* ─── Cards avec photo besoin en fond (transparence + overlay pour lisibilité) ───
   Spécificité doublée (sélecteur de classe répété) pour surpasser les <style> inline
   qui définissent un background:color avec le shorthand. Cible aussi .besoin-others__card. */
.need-v2--photo.need-v2--photo,
.besoin-others__card.besoin-others__card[data-besoin],
.card--need--photo.card--need--photo[data-besoin] {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff !important;
  background-color: #2C2C2C !important;
  background-size: cover !important;
  background-position: center 30%;
  background-repeat: no-repeat;
  min-height: 220px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.need-v2--photo.need-v2--photo::before,
.besoin-others__card.besoin-others__card[data-besoin]::before,
.card--need--photo.card--need--photo[data-besoin]::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  /* Overlay -70% au total : photos très lumineuses, lisibilité assurée par text-shadow */
  background: linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.18) 60%, rgba(0,0,0,0.30) 100%);
  transition: background 0.4s var(--ease);
}
.need-v2--photo.need-v2--photo:hover::before,
.besoin-others__card.besoin-others__card[data-besoin]:hover::before,
.card--need--photo.card--need--photo[data-besoin]:hover::before {
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.12) 60%, rgba(0,0,0,0.22) 100%);
}
.need-v2--photo.need-v2--photo:hover,
.besoin-others__card.besoin-others__card[data-besoin]:hover,
.card--need--photo.card--need--photo[data-besoin]:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.25);
}
.need-v2--photo h3, .need-v2--photo h4, .need-v2--photo strong,
.need-v2--photo .need-v2__title,
.besoin-others__card[data-besoin] strong,
.card--need--photo[data-besoin] h3,
.card--need--photo[data-besoin] .card__title {
  color: #fff !important;
  /* Ombre renforcée pour rester lisible malgré l'overlay quasi-inexistant */
  text-shadow: 0 2px 4px rgba(0,0,0,0.7), 0 0 14px rgba(0,0,0,0.5), 0 0 24px rgba(0,0,0,0.3);
}
.need-v2--photo p, .need-v2--photo .need-v2__desc,
.card--need--photo[data-besoin] p,
.card--need--photo[data-besoin] .card__text {
  color: rgba(255,255,255,0.98) !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7), 0 0 12px rgba(0,0,0,0.4);
}
.need-v2--photo .need-v2__icon, .need-v2--photo .need-v2__icon svg, .need-v2--photo svg {
  background: rgba(255,255,255,0.15) !important;
  stroke: #fff !important;
  color: #fff !important;
}

/* Map chaque besoin → image (cible needs-v2 ET besoin-others) */
.need-v2--photo[data-besoin="regard-paupieres"],
.besoin-others__card[data-besoin="regard-paupieres"]   { background-image: url('../img/besoins/regard-paupieres.jpg') !important; }
.need-v2--photo[data-besoin="visage-harmonie"],
.besoin-others__card[data-besoin="visage-harmonie"]    { background-image: url('../img/besoins/visage-harmonie.jpg') !important; }
.need-v2--photo[data-besoin="peau-eclat"],
.besoin-others__card[data-besoin="peau-eclat"]         { background-image: url('../img/besoins/peau-eclat.jpg') !important; }
.need-v2--photo[data-besoin="levres-bouche"],
.besoin-others__card[data-besoin="levres-bouche"]      { background-image: url('../img/besoins/levres-bouche.jpg') !important; }
.need-v2--photo[data-besoin="corps-silhouette"],
.besoin-others__card[data-besoin="corps-silhouette"]   { background-image: url('../img/besoins/corps-silhouette.jpg') !important; }
.need-v2--photo[data-besoin="seins-feminite"],
.besoin-others__card[data-besoin="seins-feminite"]     { background-image: url('../img/besoins/seins-feminite.jpg') !important; }
.need-v2--photo[data-besoin="post-partum"],
.besoin-others__card[data-besoin="post-partum"]        { background-image: url('../img/besoins/post-partum.jpg') !important; }
.need-v2--photo[data-besoin="cheveux-pilosite"],
.besoin-others__card[data-besoin="cheveux-pilosite"]   { background-image: url('../img/besoins/cheveux-pilosite.jpg') !important; }
.need-v2--photo[data-besoin="prevention-sante"],
.besoin-others__card[data-besoin="prevention-sante"]   { background-image: url('../img/besoins/prevention-sante.jpg') !important; }
.need-v2--photo[data-besoin="homme"],
.besoin-others__card[data-besoin="homme"]              { background-image: url('../img/besoins/homme.jpg') !important; }
.need-v2--photo[data-besoin="intimite"],
.besoin-others__card[data-besoin="intimite"]           { background-image: url('../img/besoins/intimite.jpg') !important; }

/* Cards .card--need--photo (besoins/index.html) — réutilise les mêmes images */
.card--need--photo[data-besoin="regard-paupieres"]   { background-image: url('../img/besoins/regard-paupieres.jpg') !important; background-position: center 65% !important; }
.card--need--photo[data-besoin="visage-harmonie"]    { background-image: url('../img/besoins/visage-harmonie.jpg') !important; }
.card--need--photo[data-besoin="peau-eclat"]         { background-image: url('../img/besoins/peau-eclat.jpg') !important; }
.card--need--photo[data-besoin="levres-bouche"]      { background-image: url('../img/besoins/levres-bouche.jpg') !important; }
.card--need--photo[data-besoin="corps-silhouette"]   { background-image: url('../img/besoins/corps-silhouette.jpg') !important; }
.card--need--photo[data-besoin="seins-feminite"]     { background-image: url('../img/besoins/seins-feminite.jpg') !important; background-position: center 65% !important; }
.card--need--photo[data-besoin="post-partum"]        { background-image: url('../img/besoins/post-partum.jpg') !important; }
.card--need--photo[data-besoin="cheveux-pilosite"]   { background-image: url('../img/besoins/cheveux-pilosite.jpg') !important; }
.card--need--photo[data-besoin="prevention-sante"]   { background-image: url('../img/besoins/prevention-sante.jpg') !important; }
.card--need--photo[data-besoin="homme"]              { background-image: url('../img/besoins/homme.jpg') !important; }
.card--need--photo[data-besoin="intimite"]           { background-image: url('../img/besoins/intimite.jpg') !important; }

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

body {
  font-family: var(--font-body);
  color: var(--anthracite);
  background: var(--white);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--duration) var(--ease); }
ul, ol { list-style: none; }

/* ──────────── Layout ──────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-pad);
}

.section {
  padding: var(--section-pad);
}

/* Section "Aussi connu sous" (seo-alternatives) — padding vertical compact */
.section:has(> .container > .seo-alternatives) {
  padding-top: 15px;
  padding-bottom: 15px;
}

/* Réduit aussi le padding-top de la section qui suit (CTA, etc.) */
.section:has(> .container > .seo-alternatives) + section {
  padding-top: 30px;
}

/* Treatment details : grille adaptative — fonctionne avec 4 ou 5 cartes */
/* Override le CSS inline des fiches traitements (qui force repeat(4, 1fr)) */
.treatment-details {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important;
}
@media (max-width: 480px) {
  .treatment-details {
    grid-template-columns: 1fr !important;
  }
}

/* Bento gallery traitements — cases rééquilibrées pour un recadrage naturel */
/* Hero ≈ 4:5 portrait · petites ≈ 5:3 paysage (override du CSS inline des fiches) */
.gallery-bento__item { min-height: 320px !important; }
.gallery-bento__item--hero { min-height: 656px !important; }
@media (max-width: 768px) {
  .gallery-bento__item { min-height: 200px !important; }
  .gallery-bento__item--hero { min-height: 240px !important; }
}

.section--alt {
  background: var(--lin);
}

.section--dark {
  background: var(--bg-dark);
  color: var(--cream);
}

.section--dark .section-label { color: var(--gold-light); }
.section--dark .section-title { color: var(--cream); }
.section--dark .section-subtitle { color: rgba(250, 250, 247, 0.6); }

/* ──────────── Typography ──────────── */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
  color: var(--anthracite);
  line-height: 1.25;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  max-width: 640px;
  font-weight: 300;
}

.section-header {
  margin-bottom: 52px;
}

.section-header--centered {
  text-align: center;
}

.section-header--centered .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.3;
}

/* ──────────── Navigation ──────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--gold-15);
  transition: box-shadow var(--duration) var(--ease);
}

/* backdrop-filter sur un pseudo-élément : sinon il crée un bloc de confinement
   qui clippe les enfants position:fixed (menu mobile) à la hauteur de la nav */
.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav--scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo img {
  height: 36px;
  width: auto;
  display: block;
}

/* Navbar always has white bg → dark logo */
.nav__logo-white { display: none; }
.nav__logo-dark  { display: block; }

.nav__links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--anthracite);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: all var(--duration) var(--ease);
  letter-spacing: 0.02em;
  position: relative;
}

.nav__link:hover { color: var(--gold); }

.nav__link--active {
  color: var(--gold);
  background: var(--gold-10);
}

/* Nav dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--gold-15);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration) var(--ease);
  z-index: 200;
  max-height: calc(100vh - 96px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-light) transparent;
}

.nav__dropdown-menu::-webkit-scrollbar { width: 6px; }
.nav__dropdown-menu::-webkit-scrollbar-track { background: transparent; }
.nav__dropdown-menu::-webkit-scrollbar-thumb { background: var(--gold-light); border-radius: 4px; }

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-item {
  display: block;
  padding: 10px 24px;
  font-size: 0.88rem;
  color: var(--anthracite);
  transition: all var(--duration) var(--ease);
}

.nav__dropdown-item:hover {
  background: var(--gold-10);
  color: var(--gold);
}

.nav__dropdown-divider {
  height: 1px;
  background: var(--gold-15);
  margin: 8px 16px;
}

/* Nav CTA */
.nav__cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  white-space: nowrap;
  transition: all var(--duration) var(--ease);
  margin-left: 8px;
}

.nav__cta:hover {
  background: var(--gold-hover);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

/* Mobile hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--anthracite);
  transition: var(--duration) var(--ease);
  border-radius: 1px;
}

/* ──────────── Buttons ──────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
  padding: 16px 36px;
}

.btn--primary:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  padding: 16px 36px;
  border: 1px solid rgba(250, 250, 247, 0.3);
}

.btn--outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.btn--outline-dark {
  background: transparent;
  color: var(--anthracite);
  padding: 16px 36px;
  border: 1px solid var(--gold-20);
}

.btn--outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--ghost {
  background: transparent;
  color: var(--gold);
  padding: 12px 20px;
  font-weight: 500;
}

.btn--ghost:hover {
  background: var(--gold-10);
}

.btn--lg {
  padding: 18px 48px;
  font-size: 1.05rem;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.88rem;
}

.btn--icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ──────────── Hero — Full (accueil) ──────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero--full {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a30 40%, #252540 100%);
}

.hero--full::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(184, 134, 11, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 30% 80%, rgba(212, 165, 116, 0.08) 0%, transparent 50%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 72px 0 48px;
}

.hero__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(212, 165, 116, 0.4);
  padding: 8px 20px;
  border-radius: 4px;
  margin-bottom: 32px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero__title em {
  font-style: normal;
  color: var(--gold-light);
}

.hero__text {
  font-size: 1.15rem;
  color: rgba(250, 250, 247, 0.7);
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 580px;
}

/* Hero — Half V2 (pages pilier) — light cream background */
.hero--half {
  min-height: auto;
  background: var(--cream);
}

.hero--half::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(184, 134, 11, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(212, 165, 116, 0.04) 0%, transparent 50%);
}

.hero--half .hero__content {
  padding: 88px 0 36px;
}

.hero--half .hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--anthracite);
}

.hero--half .hero__text {
  color: #5a5a6e;
}

.hero--half .hero__badge {
  color: var(--anthracite);
  border: 1.5px solid rgba(184, 134, 11, 0.55);
  background: rgba(184, 134, 11, 0.12);
  border-radius: var(--radius-pill);
  font-weight: 700;
}

.hero--half .btn--outline {
  color: var(--anthracite);
  border-color: var(--gold-20);
}

.hero--half .btn--outline:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Hero — Banner V2 (landing pages) — light cream */
.hero--banner {
  min-height: auto;
  padding: 105px 0 54px;
  background: var(--cream);
}

.hero--banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(184, 134, 11, 0.06) 0%, transparent 60%);
}

.hero--banner .hero__content {
  padding: 0;
  max-width: 800px;
}

.hero--banner .hero__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--anthracite);
}

.hero--banner .hero__text {
  color: #5a5a6e;
}

.hero--banner .hero__badge {
  color: var(--gold);
  border-color: rgba(184, 134, 11, 0.25);
  background: rgba(184, 134, 11, 0.06);
  border-radius: var(--radius-pill);
}

/* ──────────── Breadcrumbs V2 ──────────── */
.breadcrumbs {
  padding: 16px 0;
  background: var(--white);
  border-bottom: 1px solid rgba(184, 134, 11, 0.08);
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #888;
}

.breadcrumbs__item a {
  color: var(--bronze);
  font-weight: 500;
}

.breadcrumbs__item a:hover { color: var(--gold); }

.breadcrumbs__sep {
  color: #ccc;
  font-size: 0.7rem;
}

.breadcrumbs__current {
  color: var(--anthracite);
  font-weight: 500;
}

/* ──────────── Stats bar ──────────── */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gold-15);
}

.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-bar__item {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid var(--gold-15);
}

.stats-bar__item:last-child { border-right: none; }

.stats-bar__number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 4px;
}

.stats-bar__label {
  font-size: 0.82rem;
  color: #888;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ──────────── Cards — Treatment ──────────── */
.card-grid {
  display: grid;
  gap: 32px;
}

.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid rgba(184, 134, 11, 0.18);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}

.card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(184, 134, 11, 0.12);
  transform: translateY(-4px);
}

.card:hover::before { transform: scaleX(1); }

.card__icon {
  width: 56px;
  height: 56px;
  background: rgba(184, 134, 11, 0.08);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.card__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--anthracite);
  margin-bottom: 12px;
}

.card__text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card__tag {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--anthracite);
  background: var(--lin);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--duration) var(--ease);
}

.card__link:hover { gap: 10px; }

.card__link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Card — Practitioner */
.card--practitioner {
  text-align: center;
  padding: 0;
}

.card--practitioner .card__photo {
  height: 280px;
  background: linear-gradient(135deg, var(--lin) 0%, #d8cfbf 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  overflow: hidden;
}

.card--practitioner .card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card--practitioner .card__photo svg {
  width: 64px;
  height: 64px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1;
  opacity: 0.4;
}

.card--practitioner .card__body {
  padding: 28px 24px;
}

.card--practitioner .card__role {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 8px;
}

/* Card — Need (besoin) V2 */
.card--need {
  text-align: center;
  padding: 40px 28px;
  cursor: pointer;
  background: var(--cream);
  border: 1px solid rgba(184, 134, 11, 0.18);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.card--need:hover {
  background: var(--white);
  box-shadow: 0 8px 32px rgba(184, 134, 11, 0.12);
}

.card--need .card__icon {
  margin: 0 auto 20px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(184, 134, 11, 0.1);
}

.card--need .card__icon svg {
  width: 28px;
  height: 28px;
}

/* ──────────── Intro / Two columns ──────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.two-col--reverse {
  direction: rtl;
}

.two-col--reverse > * {
  direction: ltr;
}

.two-col__visual {
  background: linear-gradient(135deg, #2C2C2C 0%, #3d3327 100%);
  border-radius: var(--radius-2xl);
  padding: 36px 28px;
  text-align: center;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.two-col__visual p {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--cream);
  line-height: 1.5;
}

.two-col__visual em {
  font-style: normal;
  color: var(--gold-light);
}

/* Feature list */
.feature-list {
  margin-top: 32px;
}

.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gold-15);
}

.feature-list__item:last-child { border-bottom: none; }

.feature-list__check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: rgba(184, 134, 11, 0.08);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.feature-list__check svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-list__item strong {
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
}

.feature-list__item span {
  font-size: 0.9rem;
  color: #666;
}

/* ──────────── Steps / Parcours V2 ──────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step {
  text-align: center;
  position: relative;
  background: var(--white);
  border: 1px solid rgba(184, 134, 11, 0.18);
  border-radius: var(--radius-xl);
  padding: 40px 28px;
  transition: all 0.4s var(--ease);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.step:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}

.step__circle {
  width: 52px;
  height: 52px;
  background: rgba(184, 134, 11, 0.08);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gold);
}

.step h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--anthracite);
}

.step p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
}

/* Dark section steps override */
.section--dark .step {
  background: rgba(250, 250, 247, 0.05);
  border-color: rgba(184, 134, 11, 0.12);
}
.section--dark .step h4 { color: var(--cream); }
.section--dark .step p { color: rgba(250, 250, 247, 0.55); }
.section--dark .step__circle { background: rgba(184, 134, 11, 0.15); color: var(--gold-light); }

/* ──────────── Testimonial V2 ──────────── */
.testimonial {
  background: var(--cream);
  padding: var(--section-pad);
}

.testimonial__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(184, 134, 11, 0.18);
  border-radius: var(--radius-2xl);
  padding: 45px 38px;
  position: relative;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.testimonial__quote {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 400;
  color: var(--anthracite);
  line-height: 1.6;
  margin-bottom: 28px;
  position: relative;
  padding-top: 40px;
}

.testimonial__quote::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--gold);
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  line-height: 1;
  opacity: 0.15;
}

.testimonial__author {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 500;
}

.testimonial__author span {
  color: #888;
  font-weight: 300;
}

/* ──────────── Forms V2 ──────────── */
.form-container {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 44px;
  border: 1px solid rgba(184, 134, 11, 0.18);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.form-container h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--anthracite);
}

.form-container > p {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--anthracite);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gold-20);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--anthracite);
  background: var(--white);
  transition: border-color var(--duration), box-shadow var(--duration);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-10);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23B8860B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

/* Validation states */
.form-group--valid input,
.form-group--valid select,
.form-group--valid textarea {
  border-color: var(--success);
}

.form-group--error input,
.form-group--error select,
.form-group--error textarea {
  border-color: var(--error);
}

.form-group__error {
  font-size: 0.78rem;
  color: var(--error);
  margin-top: 4px;
  display: none;
}

.form-group--error .form-group__error {
  display: block;
}

.form-submit {
  width: 100%;
  padding: 14px 24px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

.form-submit:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-privacy {
  font-size: 0.78rem;
  color: #aaa;
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success--visible { display: block; }

.form-success__icon {
  width: 64px;
  height: 64px;
  background: rgba(74, 124, 89, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--success);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-success h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.form-success p {
  font-size: 0.95rem;
  color: #666;
}

.form-or {
  text-align: center;
  margin: 20px 0;
  position: relative;
}

.form-or::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold-15);
}

.form-or span {
  background: var(--white);
  padding: 0 16px;
  position: relative;
  font-size: 0.82rem;
  color: #aaa;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ──────────── FAQ Accordion ──────────── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(184, 134, 11, 0.15);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--anthracite);
  cursor: pointer;
  text-align: left;
  transition: color var(--duration);
}

.faq-item__question:hover { color: var(--gold); }

.faq-item__icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--gold-10);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--duration) var(--ease), background var(--duration);
}

.faq-item--open .faq-item__icon {
  transform: rotate(45deg);
  background: var(--gold);
}

.faq-item__icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
}

.faq-item--open .faq-item__icon svg {
  stroke: var(--white);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-item--open .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer p {
  padding: 0 0 24px;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
}

/* ──────────── CTA Section V2 ──────────── */
.cta-section {
  background: var(--white);
  padding: var(--section-pad);
}

.cta-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: start;
  background: var(--cream);
  border-radius: var(--radius-2xl);
  padding: 45px 38px;
  overflow: hidden;
}

.cta-contact-info {
  list-style: none;
  margin-top: 32px;
}

.cta-contact-info li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gold-15);
  font-size: 0.95rem;
}

.cta-contact-info li:last-child { border-bottom: none; }

.cta-contact-info .info-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--gold-10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-contact-info .info-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-contact-info a {
  color: var(--anthracite);
  font-weight: 500;
}

.cta-contact-info a:hover { color: var(--gold); }

/* ──────────── Footer ──────────── */
.footer {
  background: var(--card-graphite);
  padding: 34px 0 18px;
  color: rgba(255, 255, 255, 0.78);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 34px;
  margin-bottom: 30px;
}

.footer__logo {
  height: 26px;
  width: auto;
  display: block;
  margin-bottom: 12px;
}

.footer__brand h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 16px;
}

.footer__brand h3 span { color: var(--gold); }

.footer__brand p {
  font-size: 0.82rem;
  line-height: 1.6;
}

.footer__col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.footer__col li {
  margin-bottom: 7px;
  font-size: 0.82rem;
}

.footer__col a:hover { color: var(--gold-light); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__legal-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  align-items: center;
}

.footer__legal-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__legal-links a:hover {
  color: var(--gold-light);
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration) var(--ease);
}

.footer__social a:hover {
  border-color: var(--gold);
  background: var(--gold-10);
}

.footer__social svg {
  width: 15px;
  height: 15px;
  fill: rgba(255, 255, 255, 0.78);
  transition: fill var(--duration);
}

.footer__social a:hover svg { fill: var(--gold-light); }

/* ──────────── Utility ──────────── */
.text-gold { color: var(--gold); }
.text-gold-light { color: var(--gold-light); }
.text-muted { color: #888; }
.bg-alt { background: var(--lin); }
.bg-dark { background: var(--bg-dark); color: var(--cream); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }
.mt-6 { margin-top: 48px; }
.mb-6 { margin-bottom: 48px; }
.text-center { text-align: center; }

/* ──────────── Responsive ──────────── */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }

  /* Nav : menu burger dès 1024px — 7 liens + loupe + CTA ne tiennent pas en-dessous */
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .nav__links--open {
    display: flex;
    flex-direction: column;
    align-items: stretch;           /* <li> prennent toute la largeur du conteneur */
    /* position fixed ancrée au viewport → pas de rubber-band qui remonte */
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 24px 24px 48px;
    gap: 4px;
    border-bottom: 1px solid var(--gold-15);
    box-shadow: var(--shadow-lg);
    /* Scroll interne fluide, tout le menu accessible jusqu'en bas */
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    list-style: none;
    margin: 0;
  }

  .nav__links--open > li {
    list-style: none;
    text-align: center;
    width: auto;
  }

  /* Quand le menu burger est ouvert, on bloque le scroll de la page derrière */
  body.nav-menu-open {
    overflow: hidden;
  }

  .nav__links--open .nav__link {
    padding: 12px 16px;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .nav__links--open .nav__cta {
    margin-left: 0;
    margin-top: 8px;
    text-align: center;
  }

  /* Dropdown traitements : accordéon repli/dépli en mobile */
  .nav__dropdown-menu,
  .nav__dropdown:hover .nav__dropdown-menu {
    position: static !important;
    transform: none !important;        /* override desktop hover translateX(-50%) */
    left: auto !important;
    top: auto !important;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 4px 0 8px 0;
    margin: 0;
    opacity: 1;
    visibility: visible;
    min-width: 0;
    width: 100%;
    max-height: none;
    overflow: visible;
    text-align: center;
  }

  .nav__dropdown-menu {
    display: none;
  }

  .nav__dropdown--open > .nav__dropdown-menu {
    display: block;
  }

  .nav__dropdown > .nav__link span {
    transition: transform 0.25s ease;
  }

  .nav__dropdown--open > .nav__link span {
    transform: rotate(180deg);
  }

  .nav__dropdown-item {
    display: block;
    padding: 9px 12px;
    text-align: center;
    width: 100%;
    margin: 0;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 36px 0;
  }

  .hero__content { padding: 80px 0 48px; }

  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__item:nth-child(2) { border-right: none; }

  .card-grid--2,
  .card-grid--3,
  .card-grid--4 { grid-template-columns: 1fr; }

  .steps { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }

  .cta-layout { grid-template-columns: 1fr; gap: 36px; padding: 40px 28px; }
  .form-row { grid-template-columns: 1fr; }
  .form-container { padding: 28px 24px; border-radius: var(--radius-xl); }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 24px 20px; margin-bottom: 22px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__col h4 { margin-bottom: 10px; }
  .footer__col li { margin-bottom: 5px; }
  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
}

@media (max-width: 480px) {
  .stats-bar__inner { grid-template-columns: 1fr; }
  .stats-bar__item { border-right: none; border-bottom: 1px solid var(--gold-15); padding: 24px 20px; }
  .steps { grid-template-columns: 1fr; }
  .card { padding: 32px 24px; }
}
