/* ==========================================================================
   LUMEA STUDIO — Feuille de style
   Palette : Noir #0A0A0A · Blanc #FFFFFF · Beige #EDE4D3 / #FAF7F1
   Esthétique : épurée, monochrome, éditoriale, très haute couture.
   ========================================================================== */

:root {
  /* Palette principale */
  --noir: #0A0A0A;
  --noir-soft: #1A1A1A;
  --encre: #141414;
  --blanc: #FFFFFF;
  --beige: #FAF7F1;          /* fond principal — off-white chaud */
  --beige-mid: #EDE4D3;      /* beige sable — fonds contrastés doux */
  --beige-dark: #D4C8B0;     /* beige profond — accents subtils */
  --sable: #8E8373;          /* taupe fonctionnel */
  --mute: #6E6E6E;           /* texte secondaire */
  --line: rgba(10, 10, 10, 0.12);
  --line-dark: rgba(250, 247, 241, 0.14);

  /* Alias legacy — conservés pour compatibilité avec styles inline */
  --gold: var(--noir);
  --gold-light: var(--beige-mid);
  --gold-soft: var(--beige-mid);
  --night: var(--noir);
  --night-soft: var(--noir-soft);
  --cream: var(--beige);
  --cream-dark: var(--beige-mid);
  --white: #FFFFFF;
  --ink: var(--noir);

  /* Typographie */
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans:  'Jost', 'Raleway', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  --tracking-wide:  0.26em;
  --tracking-mid:   0.16em;
  --tracking-tight: 0.04em;

  --radius-sm: 0px;
  --radius-md: 2px;

  --shadow-lg: 0 30px 80px -30px rgba(10, 10, 10, 0.22);
  --shadow-sm: 0 8px 24px -12px rgba(10, 10, 10, 0.18);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reset --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--noir);
  background: var(--beige);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .35s var(--ease), opacity .35s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }
p { margin: 0 0 1rem; }
::selection { background: var(--noir); color: var(--beige); }

/* Typographie -------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--noir);
}
h1 { font-size: clamp(2.75rem, 7.5vw, 6rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.9rem); }
h4 {
  font-size: 1rem; font-family: var(--sans); font-weight: 500;
  letter-spacing: var(--tracking-mid); text-transform: uppercase;
}
h1 em, h2 em, h3 em { font-style: italic; font-weight: 400; color: var(--sable); }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--sable);
  margin-bottom: 1.5rem;
}
.eyebrow--light { color: var(--beige-mid); }

.italic-note {
  font-family: var(--serif); font-style: italic;
  font-size: 1.2rem; color: var(--sable);
}

/* Layout ------------------------------------------------------------------- */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.75rem; }
.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 1.75rem; }
.section { padding: 7rem 0; position: relative; }
.section--tight { padding: 4.5rem 0; }
.section--dark { background: var(--noir); color: var(--beige); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--beige); }
.section--dark h1 em, .section--dark h2 em, .section--dark h3 em { color: var(--beige-mid); }
.section--gold, .section--beige { background: var(--beige-mid); }
.section--cream { background: var(--beige); }

.divider-gold, .divider-hair {
  width: 48px; height: 1px; background: var(--noir); margin: 1.75rem 0;
}
.section--dark .divider-gold, .section--dark .divider-hair { background: var(--beige-mid); }
.divider-gold--center { margin: 2rem auto; }

/* Boutons ------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.1rem 2.5rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border: 1px solid var(--noir);
  background: var(--noir);
  color: var(--beige);
  border-radius: var(--radius-sm);
  transition: all .4s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { background: transparent; color: var(--noir); }

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

.btn--dark {
  background: var(--noir); color: var(--beige); border-color: var(--noir);
}
.btn--dark:hover { background: transparent; color: var(--noir); }

.btn--cream, .btn--beige {
  background: var(--beige); color: var(--noir); border-color: var(--beige);
}
.btn--cream:hover, .btn--beige:hover {
  background: transparent; color: var(--beige); border-color: var(--beige);
}

.section--dark .btn--ghost {
  color: var(--beige); border-color: var(--beige);
}
.section--dark .btn--ghost:hover {
  background: var(--beige); color: var(--noir);
}

.btn--small { padding: 0.75rem 1.6rem; font-size: 0.68rem; }

.link-underline {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--noir);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--noir);
}
.link-underline:hover { opacity: 0.6; }
.section--dark .link-underline { color: var(--beige); border-color: var(--beige); }

/* Navigation --------------------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.5rem 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease), color .4s var(--ease);
  background: transparent;
  color: var(--noir);
}
.nav.is-scrolled {
  background: rgba(250, 247, 241, 0.94);
  backdrop-filter: blur(14px);
  padding: 0.85rem 0;
  box-shadow: 0 1px 0 var(--line);
}
.nav.is-dark { color: var(--beige); }
.nav.is-dark.is-scrolled {
  background: rgba(10, 10, 10, 0.94);
  color: var(--beige);
  box-shadow: 0 1px 0 var(--line-dark);
}

.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1280px; margin: 0 auto; padding: 0 1.75rem;
}
.nav__logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 500;
  color: inherit;
}
.nav__logo-sub {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: none;
  opacity: 0.55;
  margin-top: 3px;
  text-align: center;
  font-weight: 400;
}

.nav__links { display: flex; gap: 2.75rem; align-items: center; }
.nav__link {
  font-size: 0.72rem; letter-spacing: var(--tracking-mid); text-transform: uppercase;
  position: relative; padding: 4px 0; font-weight: 400;
}
.nav__link::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 100%;
  height: 1px; background: currentColor;
  transition: right .4s var(--ease);
}
.nav__link:hover::after, .nav__link.is-active::after { right: 0; }

.nav__cta { display: inline-flex; }

.nav__burger { display: none; width: 26px; height: 22px; position: relative; }
.nav__burger span {
  position: absolute; left: 0; width: 100%; height: 1px; background: currentColor;
  transition: transform .35s var(--ease), opacity .35s var(--ease), top .35s var(--ease);
}
.nav__burger span:nth-child(1) { top: 4px; }
.nav__burger span:nth-child(2) { top: 11px; }
.nav__burger span:nth-child(3) { top: 18px; }
.nav.is-open .nav__burger span:nth-child(1) { top: 11px; transform: rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { top: 11px; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav__links {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 82%; max-width: 360px;
    background: var(--noir); color: var(--beige);
    flex-direction: column; justify-content: center; align-items: flex-start;
    padding: 4rem 2.5rem; gap: 2rem;
    transform: translateX(100%); transition: transform .5s var(--ease);
    box-shadow: -20px 0 60px rgba(0,0,0,0.3);
  }
  .nav.is-open .nav__links { transform: translateX(0); }
  .nav__link { font-size: 1.05rem; letter-spacing: 0.2em; color: var(--beige); }
  .nav__burger { display: block; z-index: 2; }
  .nav__cta { display: none; }
}

/* Hero --------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  background: var(--beige);
  color: var(--noir);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 9rem 0 6rem;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 100%, rgba(212, 200, 176, 0.5), transparent 55%),
    radial-gradient(ellipse at 90% 10%, rgba(237, 228, 211, 0.6), transparent 55%);
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 5rem; align-items: center;
}
.hero__eyebrow {
  font-size: 0.7rem; letter-spacing: var(--tracking-wide); text-transform: uppercase;
  color: var(--sable); margin-bottom: 2.25rem;
  display: flex; align-items: center; gap: 1rem;
}
.hero__eyebrow::before {
  content: ''; width: 42px; height: 1px; background: var(--noir);
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 7.5vw, 6.25rem);
  line-height: 0.98;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--noir);
}
.hero__title em {
  font-style: italic; color: var(--sable); font-weight: 400;
}
.hero__lead {
  font-size: 1.05rem;
  max-width: 480px;
  color: var(--mute);
  margin-bottom: 2.75rem;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__visual {
  position: relative; aspect-ratio: 4/5;
  background:
    linear-gradient(160deg, var(--beige-mid) 0%, var(--beige-dark) 65%, var(--noir) 140%);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__visual::before {
  content: ''; position: absolute; inset: 20px;
  border: 1px solid rgba(10, 10, 10, 0.18);
}
.hero__visual-label {
  position: absolute; bottom: 2.25rem; left: 2.25rem; right: 2.25rem;
  font-family: var(--serif); font-style: italic;
  color: var(--noir); font-size: 1.1rem;
  opacity: 0.82;
}
.hero__visual-mono {
  position: absolute; top: 2rem; right: 1.8rem;
  font-size: 0.58rem; letter-spacing: var(--tracking-wide);
  color: rgba(10,10,10,0.45);
  writing-mode: vertical-rl;
  text-transform: uppercase;
}

.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  font-size: 0.62rem; letter-spacing: var(--tracking-wide); color: var(--sable);
  text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  z-index: 2;
}
.hero__scroll::after {
  content: ''; width: 1px; height: 42px;
  background: linear-gradient(180deg, var(--noir), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(1); }
  50% { opacity: 0.9; transform: scaleY(1.1); }
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__visual { max-width: 320px; margin: 0 auto; }
  .hero__scroll { display: none; }
}

/* Page hero (pages intérieures) ------------------------------------------- */
.page-hero {
  background: var(--noir); color: var(--beige);
  padding: 11rem 0 6rem; position: relative; overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center top, rgba(237, 228, 211, 0.08), transparent 60%);
}
.page-hero__inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; padding: 0 1.75rem; }
.page-hero__title { color: var(--beige); }
.page-hero__title em { font-style: italic; color: var(--beige-mid); }
.page-hero__lead { color: rgba(250,247,241,0.68); margin-top: 1.75rem; font-size: 1.05rem; max-width: 580px; margin-left: auto; margin-right: auto; }

/* Cartes & services -------------------------------------------------------- */
.grid-features {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.75rem;
}
.feature {
  padding: 2rem 0 0;
  border-top: 1px solid var(--noir);
  position: relative;
}
.section--dark .feature { border-top-color: var(--beige-mid); }
.feature__num {
  font-family: var(--serif); font-style: italic;
  color: var(--sable); font-size: 0.95rem;
  margin-bottom: 0.85rem; display: block;
}
.section--dark .feature__num { color: var(--beige-mid); }
.feature__title { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 0.85rem; }
.feature__text { font-size: 0.94rem; color: var(--mute); }
.section--dark .feature__text { color: rgba(250,247,241,0.65); }

/* Catégorie de services */
.service-category { margin-bottom: 5rem; }
.service-category:last-child { margin-bottom: 0; }
.service-category__head {
  display: flex; align-items: baseline; gap: 1.5rem; margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--line); padding-bottom: 1.25rem;
}
.service-category__head h2 { flex: 1; }
.service-category__count {
  font-family: var(--serif); font-style: italic;
  color: var(--sable); font-size: 0.95rem;
}

.service-list { display: grid; grid-template-columns: 1fr; gap: 0; }
.service-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: background .3s var(--ease);
}
.section--dark .service-row { border-bottom-color: var(--line-dark); }
.service-row:hover { background: rgba(10, 10, 10, 0.02); }
.section--dark .service-row:hover { background: rgba(250, 247, 241, 0.03); }

.service-row__name {
  font-family: var(--serif); font-size: 1.4rem;
  color: var(--noir);
}
.section--dark .service-row__name { color: var(--beige); }
.service-row__desc {
  font-size: 0.85rem; color: var(--mute); font-family: var(--sans);
  font-weight: 300; display: block; margin-top: 6px;
}
.section--dark .service-row__desc { color: rgba(250,247,241,0.55); }

.service-row__duration {
  color: var(--mute); font-size: 0.78rem;
  letter-spacing: var(--tracking-mid); text-transform: uppercase;
}
.section--dark .service-row__duration { color: rgba(250,247,241,0.55); }

.service-row__price {
  font-family: var(--serif); font-size: 1.4rem;
  color: var(--noir); font-weight: 500;
  min-width: 90px; text-align: right;
}
.section--dark .service-row__price { color: var(--beige); }

.service-row__cta {
  font-size: 0.65rem !important;
  padding: 0.7rem 1.35rem !important;
}

@media (max-width: 700px) {
  .service-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1.75rem 0;
  }
  .service-row__price { text-align: left; }
  .service-row__cta { justify-self: start; margin-top: 0.75rem; }
}

/* Aperçu services (accueil) ------------------------------------------------ */
.services-overview { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.service-card {
  padding: 2.5rem 2rem;
  background: var(--beige);
  border: 1px solid var(--line);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px;
  background: var(--noir); transform: scaleX(0); transform-origin: left;
  transition: transform .55s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__visual {
  aspect-ratio: 4/3; margin-bottom: 2rem;
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--beige-mid), var(--beige-dark) 100%);
}
.service-card__visual--lips {
  background: linear-gradient(160deg, #EDE4D3 0%, #BFAC90 60%, #6B5E47 120%);
}
.service-card__visual--brows {
  background: linear-gradient(160deg, #D4C8B0 0%, #4A4239 70%, #0A0A0A 120%);
}
.service-card__visual--skin {
  background: linear-gradient(160deg, #FAF7F1 0%, #EDE4D3 50%, #8E8373 120%);
}
.service-card__visual::after {
  content: ''; position: absolute; inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.service-card__tag {
  font-size: 0.62rem; letter-spacing: var(--tracking-wide); text-transform: uppercase;
  color: var(--sable); margin-bottom: 0.6rem;
  display: inline-block;
}
.service-card__title { font-size: 1.55rem; margin-bottom: 0.85rem; }
.service-card__text { font-size: 0.92rem; color: var(--mute); margin-bottom: 1.5rem; }

@media (max-width: 900px) {
  .services-overview { grid-template-columns: 1fr; }
}

/* Témoignages -------------------------------------------------------------- */
.testimonials {
  background: var(--noir); color: var(--beige); padding: 7rem 0;
  position: relative; overflow: hidden;
}
.testimonials::before {
  content: '"'; position: absolute; top: -80px; left: 4%;
  font-family: var(--serif); font-size: 32rem;
  color: rgba(237, 228, 211, 0.04);
  line-height: 1; pointer-events: none;
}
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem;
  position: relative; z-index: 2;
}
.testimonial {
  padding: 2rem 0 0;
  border-top: 1px solid rgba(237, 228, 211, 0.25);
}
.testimonial__stars {
  color: var(--beige-mid); letter-spacing: 0.25em;
  margin-bottom: 1.5rem; font-size: 0.78rem;
}
.testimonial__text {
  font-family: var(--serif); font-size: 1.18rem; font-style: italic;
  line-height: 1.55; margin-bottom: 1.75rem;
  color: rgba(250, 247, 241, 0.92);
}
.testimonial__name {
  font-size: 0.7rem; letter-spacing: var(--tracking-mid);
  text-transform: uppercase; color: var(--beige-mid);
}
.testimonial__service {
  font-size: 0.72rem; color: rgba(250,247,241,0.45); margin-top: 6px;
  font-family: var(--serif); font-style: italic;
  letter-spacing: normal; text-transform: none;
}
@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* Feed Instagram ----------------------------------------------------------- */
.instagram-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem;
}
.instagram-head h2 { max-width: 600px; }

/* Conteneur du widget LightWidget — fond beige sable, léger cadre chic */
.instagram-feed {
  background: var(--beige);
  padding: 0;
  position: relative;
}
.instagram-feed .lightwidget-widget {
  display: block;
  min-height: 320px;
}
@media (max-width: 700px) {
  .instagram-feed .lightwidget-widget { min-height: 260px; }
}
.instagram-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.6rem;
}
.ig-tile {
  aspect-ratio: 1; background: var(--beige-mid);
  position: relative; overflow: hidden;
  transition: transform .45s var(--ease), filter .45s var(--ease);
}
.ig-tile:hover { transform: scale(1.015); filter: brightness(1.05); }
.ig-tile:nth-child(1) { background: linear-gradient(160deg, #EDE4D3, #8E8373); }
.ig-tile:nth-child(2) { background: linear-gradient(160deg, #FAF7F1, #0A0A0A); }
.ig-tile:nth-child(3) { background: linear-gradient(160deg, #D4C8B0, #4A4239); }
.ig-tile:nth-child(4) { background: linear-gradient(160deg, #0A0A0A, #8E8373); }
.ig-tile:nth-child(5) { background: linear-gradient(160deg, #FAF7F1, #EDE4D3 70%, #8E8373); }
.ig-tile:nth-child(6) { background: linear-gradient(160deg, #1A1A1A, #D4C8B0); }
.ig-tile::after {
  content: '@'; position: absolute; inset: 0; display: flex;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.2); font-family: var(--serif);
  font-size: 2.5rem; font-style: italic;
}
@media (max-width: 900px) {
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Processus --------------------------------------------------------------- */
.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 3rem; position: relative;
}
.process-grid::before {
  content: ''; position: absolute; top: 22px; left: 14%; right: 14%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--beige-mid), transparent);
}
.process-step { text-align: center; position: relative; }
.process-step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--noir); border: 1px solid var(--beige-mid);
  color: var(--beige-mid);
  font-family: var(--serif); font-size: 1.1rem; font-style: italic;
  margin-bottom: 1.5rem; position: relative; z-index: 2;
}
.process-step h3 { margin-bottom: 0.85rem; color: var(--beige); }
.process-step p {
  font-size: 0.95rem; color: rgba(250,247,241,0.65);
  max-width: 280px; margin: 0 auto;
}
@media (max-width: 700px) {
  .process-grid { grid-template-columns: 1fr; gap: 3rem; }
  .process-grid::before { display: none; }
}

/* Section Lumea.skin ------------------------------------------------------ */
.skin-section {
  background: var(--beige-mid);
  position: relative; overflow: hidden;
}
.skin-section::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(10,10,10,0.04), transparent 70%);
}
.skin-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  position: relative; z-index: 2;
}
.skin-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--noir); color: var(--beige);
  font-size: 0.62rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  font-family: var(--sans);
  font-weight: 400;
}
.skin-visual {
  aspect-ratio: 1; position: relative;
  background: linear-gradient(160deg, var(--noir) 0%, var(--noir-soft) 100%);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.skin-visual::before {
  content: ''; position: absolute; inset: 22px;
  border: 1px solid rgba(237, 228, 211, 0.25);
}
.skin-visual-label {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--serif); color: var(--beige-mid);
  font-size: 2.5rem; letter-spacing: 0.15em;
  text-align: center; line-height: 1.1;
}
.skin-visual-label span {
  display: block; font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: rgba(250, 247, 241, 0.5);
  margin-top: 0.75rem; font-family: var(--sans);
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .skin-inner { grid-template-columns: 1fr; gap: 3rem; }
  .skin-visual { max-width: 320px; margin: 0 auto; }
}

/* À propos ---------------------------------------------------------------- */
.about-inner {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem; align-items: center;
}
.about-portrait {
  aspect-ratio: 4/5; position: relative;
  background: linear-gradient(160deg, var(--beige-mid) 0%, var(--beige-dark) 60%, var(--noir) 160%);
  box-shadow: var(--shadow-lg);
  margin: 0; overflow: hidden;
}
.about-portrait::before {
  content: ''; position: absolute; inset: 18px;
  border: 1px solid rgba(10,10,10,0.18);
  z-index: 2; pointer-events: none;
}
.about-portrait img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.about-portrait__placeholder {
  position: absolute; inset: 18px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.6rem; text-align: center;
  border: 1px dashed rgba(10,10,10,0.35);
  color: var(--noir);
}
.about-portrait__placeholder-icon {
  font-size: 2.4rem; color: var(--gold);
  font-family: var(--serif); line-height: 1;
}
.about-portrait__placeholder-label {
  font-family: var(--serif); font-style: italic;
  font-size: 1.15rem; color: var(--noir);
}
.about-portrait__placeholder-hint {
  font-size: 0.68rem; letter-spacing: var(--tracking-wide);
  text-transform: uppercase; color: var(--sable);
}
.about-portrait__caption {
  position: absolute; bottom: -28px; left: 20px;
  background: var(--noir); color: var(--beige);
  padding: 0.85rem 1.35rem;
  font-family: var(--serif); font-style: italic; font-size: 0.95rem;
  z-index: 3;
}
.about-values {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2rem; margin-top: 2.75rem;
}
.about-value {
  border-top: 1px solid var(--noir); padding-top: 1.1rem;
}
.about-value__label {
  font-size: 0.68rem; letter-spacing: var(--tracking-wide);
  text-transform: uppercase; color: var(--sable);
  margin-bottom: 0.4rem;
}
.about-value__text { font-size: 0.9rem; color: var(--mute); }

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-portrait { max-width: 360px; margin: 0 auto; }
}

/* Bannière CTA ------------------------------------------------------------ */
.cta-banner {
  background: var(--beige-mid); padding: 6rem 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
  content: ''; position: absolute; top: 50%;
  width: 70px; height: 1px; background: var(--noir);
}
.cta-banner::before { left: 15%; }
.cta-banner::after { right: 15%; }
.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p {
  color: var(--mute); margin-bottom: 2.25rem;
  max-width: 520px; margin-left: auto; margin-right: auto;
}

/* Formulaires ------------------------------------------------------------- */
.form { display: grid; gap: 1.35rem; max-width: 520px; }
.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-field label {
  font-size: 0.68rem; letter-spacing: var(--tracking-wide);
  text-transform: uppercase; color: var(--noir);
}
.section--dark .form-field label { color: var(--beige-mid); }
.form-field input, .form-field textarea, .form-field select {
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--line);
  background: var(--beige);
  font-family: var(--sans); font-size: 0.95rem; color: var(--noir);
  border-radius: var(--radius-sm);
  transition: border-color .3s var(--ease);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--noir);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.section--dark .form-field input, .section--dark .form-field textarea, .section--dark .form-field select {
  background: rgba(250,247,241,0.05);
  border-color: rgba(237,228,211,0.22);
  color: var(--beige);
}

/* FAQ --------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.75rem 0; cursor: pointer;
}
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
  font-family: var(--serif); font-size: 1.3rem;
  list-style: none; cursor: pointer;
  color: var(--noir);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem; color: var(--noir);
  transition: transform .3s var(--ease);
  font-family: var(--sans); font-weight: 300;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin-top: 1rem; color: var(--mute);
  font-size: 0.95rem; max-width: 680px;
}

/* Grille contact ---------------------------------------------------------- */
.contact-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 4rem; align-items: start;
}
.contact-info__row {
  padding: 1.75rem 0; border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: 110px 1fr;
  gap: 1.5rem; align-items: start;
}
.contact-info__label {
  font-size: 0.68rem; letter-spacing: var(--tracking-wide);
  text-transform: uppercase; color: var(--sable);
}
.contact-info__value {
  font-family: var(--serif); font-size: 1.2rem;
  color: var(--noir);
}
.contact-info__value a:hover { color: var(--sable); }
.contact-info__sub {
  display: block; font-family: var(--sans);
  font-size: 0.85rem; color: var(--mute); margin-top: 4px;
}

.map-embed {
  aspect-ratio: 4/3;
  width: 100%;
  position: relative;
  margin-top: 2rem;
  background: var(--noir);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  filter: grayscale(100%) contrast(1.05);
  transition: filter .5s var(--ease);
}
.map-embed:hover { filter: grayscale(40%) contrast(1); }
.map-embed iframe {
  display: block; width: 100%; height: 100%; border: 0;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-info__row { grid-template-columns: 1fr; gap: 0.35rem; }
}

/* Formation --------------------------------------------------------------- */
.training-hero {
  background: var(--noir); color: var(--beige);
  padding: 4.5rem 3rem;
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem; align-items: center;
  box-shadow: var(--shadow-lg);
}
.training-hero::before {
  content: ''; position: absolute; top: -50px; right: -50px;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(237,228,211,0.06), transparent 70%);
}
.training-meta {
  display: flex; gap: 2rem; margin: 1.75rem 0; flex-wrap: wrap;
}
.training-meta__item {
  border-left: 1px solid rgba(237,228,211,0.28);
  padding-left: 1rem;
}
.training-meta__label {
  font-size: 0.62rem; letter-spacing: var(--tracking-wide);
  text-transform: uppercase; color: rgba(237,228,211,0.7);
}
.training-meta__value {
  font-family: var(--serif); font-size: 1.5rem;
  color: var(--beige);
}

.training-visual {
  aspect-ratio: 1; position: relative;
  background: linear-gradient(160deg, var(--beige) 0%, var(--beige-mid) 60%, var(--beige-dark) 120%);
}
.training-visual::before {
  content: ''; position: absolute; inset: 16px;
  border: 1px solid rgba(10,10,10,0.25);
}
.training-visual-label {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif); font-style: italic;
  font-size: 2rem; color: var(--noir);
  text-align: center;
}
.training-visual-label span {
  display: block; font-size: 0.58rem;
  letter-spacing: 0.32em; text-transform: uppercase;
  font-style: normal; margin-top: 0.75rem;
  color: rgba(10,10,10,0.55);
  font-family: var(--sans);
}

@media (max-width: 900px) {
  .training-hero { grid-template-columns: 1fr; padding: 2.5rem 1.75rem; }
  .training-visual { max-width: 280px; margin: 0 auto; }
}

.training-includes {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.training-include {
  padding: 1.75rem; background: var(--beige);
  border-left: 2px solid var(--noir);
}
.training-include h4 { font-size: 0.88rem; margin-bottom: 0.6rem; }
.training-include p { font-size: 0.92rem; color: var(--mute); margin: 0; }
@media (max-width: 700px) { .training-includes { grid-template-columns: 1fr; } }

/* Pied de page ------------------------------------------------------------ */
.footer {
  background: var(--noir); color: rgba(250,247,241,0.7);
  padding: 5.5rem 0 2rem;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3.5rem;
}
.footer__brand .nav__logo { font-size: 1.45rem; color: var(--beige); }
.footer__tagline {
  font-family: var(--serif); font-style: italic;
  font-size: 1rem; color: rgba(250,247,241,0.55);
  margin-top: 1rem; max-width: 340px;
}
.footer__col-title {
  font-size: 0.68rem; letter-spacing: var(--tracking-wide);
  text-transform: uppercase; color: var(--beige-mid);
  margin-bottom: 1.4rem;
}
.footer ul li { margin-bottom: 0.8rem; font-size: 0.9rem; }
.footer a:hover { color: var(--beige); }
.footer__bottom {
  border-top: 1px solid rgba(237,228,211,0.1);
  padding-top: 2rem;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.74rem; letter-spacing: var(--tracking-tight);
  color: rgba(250,247,241,0.45);
}
.footer__socials { display: flex; gap: 1rem; }
.footer__socials a {
  width: 38px; height: 38px;
  border: 1px solid rgba(237,228,211,0.3);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .35s var(--ease); color: var(--beige-mid);
}
.footer__socials a:hover {
  background: var(--beige);
  color: var(--noir);
  border-color: var(--beige);
}

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 500px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* CTA flottant (mobile) --------------------------------------------------- */
.cta-floating {
  display: none;
  position: fixed; bottom: 1rem; left: 1rem; right: 1rem; z-index: 90;
  padding: 1.05rem; text-align: center;
  background: var(--noir); color: var(--beige);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: var(--tracking-wide); text-transform: uppercase;
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 32px rgba(10,10,10,0.22);
}
@media (max-width: 700px) {
  .cta-floating { display: block; }
  body { padding-bottom: 4rem; }
}

/* Révélation au scroll ---------------------------------------------------- */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* Avant / Après ----------------------------------------------------------- */
.ba-slider {
  position: relative; aspect-ratio: 16/10; overflow: hidden; user-select: none;
  box-shadow: var(--shadow-lg);
}
.ba-before, .ba-after { position: absolute; inset: 0; }
.ba-before { background: linear-gradient(160deg, #EDE4D3, #8E8373 80%); }
.ba-after  { background: linear-gradient(160deg, #0A0A0A, #4A4239); clip-path: inset(0 0 0 50%); }
.ba-before::after, .ba-after::after {
  content: 'AVANT'; position: absolute; top: 1rem; left: 1rem;
  background: rgba(0,0,0,0.55); color: var(--beige);
  padding: 5px 12px; font-size: 0.62rem;
  letter-spacing: var(--tracking-wide);
}
.ba-after::after {
  content: 'APRÈS'; left: auto; right: 1rem;
  background: var(--beige); color: var(--noir);
}
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 1.5px;
  background: var(--beige); cursor: ew-resize;
  transform: translateX(-50%);
}
.ba-handle::after {
  content: '⇆'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--beige); color: var(--noir);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Statistiques ------------------------------------------------------------ */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.stat__num {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  color: var(--noir); line-height: 1;
}
.section--dark .stat__num { color: var(--beige); }
.stat__label {
  font-size: 0.68rem; letter-spacing: var(--tracking-wide);
  text-transform: uppercase; color: var(--sable);
  margin-top: 0.9rem;
}
.section--dark .stat__label { color: rgba(250,247,241,0.55); }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; } }

/* En-tête de section ------------------------------------------------------ */
.section-head {
  text-align: center; max-width: 760px; margin: 0 auto 4.5rem;
}
.section-head p {
  color: var(--mute); margin-top: 1.25rem; font-size: 1.05rem;
}
.section--dark .section-head p { color: rgba(250,247,241,0.65); }
.section-head--left { text-align: left; margin-left: 0; }

/* Utilitaires ------------------------------------------------------------- */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
