/* ══════════════════════════════════════════════════════════════
   MESH MAKEUP STUDIO — Feuille de style
   Design éditorial luxe · noir & or · responsive · accessible
   ══════════════════════════════════════════════════════════════ */

/* ─── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Couleurs */
  --black:    #0a0908;
  --night:    #0f0e0c;
  --panel:    #15130f;
  --card:     #181613;
  --line:     #2a2722;
  --gold:     #c9a96e;
  --gold-lt:  #e6cd9c;
  --gold-dim: rgba(201,169,110,.4);
  --white:    #ffffff;
  --cream:    #f6f1e9;
  --cream-2:  #efe7da;
  --ink:      #1a1714;
  --muted:    #9a9085;
  --text:     #cfc7ba;

  /* Typo */
  --sans: 'Montserrat', system-ui, -apple-system, sans-serif;
  --serif:'Cormorant Garamond', Georgia, 'Times New Roman', serif;

  /* Système */
  --ease:   cubic-bezier(.22,.61,.36,1);
  --ease-2: cubic-bezier(.65,.05,.36,1);
  --maxw: 1240px;
  --pad: 40px;
  --header-h: 76px;
  --radius: 2px;
  --shadow: 0 24px 60px -24px rgba(0,0,0,.7);
}

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

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
img, svg, video { display: block; max-width: 100%; }
img { width: 100%; height: 100%; object-fit: cover; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* Accessibilité : lecteurs d'écran uniquement */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: -100px; left: 16px; z-index: 2000;
  background: var(--gold); color: var(--black);
  padding: 10px 18px; font-size: .8rem; font-weight: 600; border-radius: var(--radius);
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 16px; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

/* Révélation au scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: none; }


/* ══════════════════════════════════════════════════════════════
   HEADER — transparent sur le hero, opaque au scroll
   ══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s;
}
.site-header.scrolled {
  background: rgba(10,9,8,.82);
  backdrop-filter: blur(14px) saturate(1.1);
  border-bottom-color: var(--line);
}
.header-inner {
  width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

.brand { display: flex; flex-direction: row; align-items: center; gap: 12px; line-height: 1; flex-shrink: 0; }
.brand-logo { height: 44px; width: auto; display: block; }
.brand-text { display: flex; flex-direction: column; }
.brand-mark {
  font-family: var(--serif); font-size: 1.7rem; font-weight: 600;
  letter-spacing: .14em; color: var(--gold);
}
.brand-sub {
  font-size: .5rem; font-weight: 600; letter-spacing: .34em;
  text-transform: uppercase; color: var(--muted); margin-top: 3px; padding-left: 2px;
}

.primary-nav ul { display: flex; align-items: center; gap: 34px; }
.primary-nav a {
  font-size: .72rem; font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase; color: var(--text); position: relative; padding: 6px 0;
}
.primary-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold); transition: width .35s var(--ease);
}
.primary-nav a:hover { color: var(--white); }
.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after { width: 100%; }
.primary-nav a[aria-current="page"] { color: var(--gold); }

.nav-cta {
  flex-shrink: 0; font-size: .68rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--gold-dim); padding: 10px 20px; border-radius: var(--radius);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.nav-cta:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* Burger */
.nav-toggle {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: 0; padding: 8px; z-index: 1100;
}
.nav-toggle span {
  display: block; width: 24px; height: 1.5px; background: var(--white);
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }


/* ══════════════════════════════════════════════════════════════
   BOUTONS
   ══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  padding: 16px 38px; border: 1px solid transparent; border-radius: var(--radius);
  cursor: pointer; transition: background .35s var(--ease), color .35s var(--ease),
    border-color .35s var(--ease), transform .35s var(--ease); white-space: nowrap;
}
.btn--solid { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn--solid:hover { background: var(--gold-lt); border-color: var(--gold-lt); transform: translateY(-2px); }
.btn--ghost { border-color: rgba(255,255,255,.45); color: var(--white); }
.btn--ghost:hover { background: rgba(255,255,255,.07); border-color: var(--white); transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn--dark:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn--block { width: 100%; }


/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100svh; min-height: 100vh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 22%;
  filter: brightness(.46) saturate(.82);
  transform: scale(1.08); animation: kenburns 18s var(--ease) forwards;
}
@keyframes kenburns { to { transform: scale(1); } }
.hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 80% at 50% 30%, transparent 0%, rgba(10,9,8,.35) 70%, rgba(10,9,8,.9) 100%),
    linear-gradient(to bottom, rgba(10,9,8,.25), rgba(10,9,8,.55) 55%, rgba(10,9,8,.95));
}
.hero-content { position: relative; z-index: 2; max-width: 820px; padding: 0 24px; }

.hero-eyebrow {
  display: inline-block; font-size: .68rem; font-weight: 600; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--gold-dim); padding: 9px 22px; border-radius: var(--radius);
  margin-bottom: 30px;
}
.hero-heading {
  font-family: var(--serif); font-weight: 300; line-height: 1.02;
  font-size: clamp(3.4rem, 9vw, 7rem); letter-spacing: .01em; margin-bottom: 22px;
}
.hero-heading em { font-style: italic; color: var(--gold); }
.hero-text {
  font-size: clamp(.95rem, 1.4vw, 1.12rem); font-weight: 300; letter-spacing: .04em;
  color: rgba(255,255,255,.82); max-width: 540px; margin: 0 auto 42px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; left: 50%; bottom: 30px; z-index: 2; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: .58rem; letter-spacing: .3em; text-transform: uppercase; color: var(--muted);
}
.hero-scroll::after {
  content: ''; width: 1px; height: 42px;
  background: linear-gradient(var(--gold), transparent); animation: scrollcue 2.2s var(--ease) infinite;
}
@keyframes scrollcue { 0%,100% { opacity: .2; transform: scaleY(.6); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }
/* Masquer l'indicateur quand la fenêtre est trop courte (évite le chevauchement avec les boutons) */
@media (max-height: 800px) { .hero-scroll { display: none; } }


/* ══════════════════════════════════════════════════════════════
   MARQUEE (bande défilante)
   ══════════════════════════════════════════════════════════════ */
.marquee {
  background: var(--panel); border-block: 1px solid var(--line);
  padding: 22px 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 56px; width: max-content; align-items: center;
  animation: marquee 28s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span {
  font-family: var(--serif); font-style: italic; font-size: 1.5rem;
  color: var(--text); display: inline-flex; align-items: center; gap: 56px; white-space: nowrap;
}
.marquee span::after { content: '✦'; color: var(--gold); font-style: normal; font-size: .9rem; }
@keyframes marquee { to { transform: translateX(-50%); } }


/* ══════════════════════════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════════════════════════ */
.section { padding: clamp(72px, 10vw, 120px) 0; border-top: 1px solid var(--line); }
.section--flush { border-top: 0; }
.section--light { background: var(--cream); color: var(--ink); border-top: 0; }

.section-head { max-width: 680px; margin: 0 auto clamp(48px, 6vw, 72px); text-align: center; }
.section-head--left { margin-inline: 0; text-align: left; }
.eyebrow {
  display: inline-block; font-size: .68rem; font-weight: 600; letter-spacing: .26em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.eyebrow::before { content: '— '; }
.section-title {
  font-family: var(--serif); font-weight: 300; line-height: 1.12;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem); letter-spacing: .005em;
}
.section-title em { font-style: italic; color: var(--gold); }
.section--light .section-title { color: var(--ink); }
.section-sub { margin-top: 16px; font-size: .9rem; color: var(--muted); letter-spacing: .03em; }
.section--light .section-sub { color: #6b6258; }


/* ══════════════════════════════════════════════════════════════
   SERVICES (cartes éditoriales numérotées)
   ══════════════════════════════════════════════════════════════ */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.service {
  position: relative; background: var(--card); overflow: hidden;
  transition: transform .4s var(--ease);
}
.service:hover { transform: translateY(-6px); }
.service-media { aspect-ratio: 4/3.2; overflow: hidden; position: relative; }
.service-media img { transition: transform .8s var(--ease); }
.service:hover .service-media img { transform: scale(1.07); }
.service-index {
  position: absolute; top: 16px; left: 18px; z-index: 2;
  font-family: var(--serif); font-size: 1.05rem; font-style: italic; color: var(--gold);
  background: rgba(10,9,8,.55); backdrop-filter: blur(4px);
  width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%;
  border: 1px solid var(--gold-dim);
}
.service-body { padding: 28px 28px 32px; border-top: 2px solid var(--black); }
.service-title { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; margin-bottom: 12px; }
.service-text { font-size: .84rem; color: var(--muted); line-height: 1.8; margin-bottom: 22px; }
.service-link {
  font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); display: inline-flex; align-items: center; gap: 8px;
  transition: gap .3s var(--ease);
}
.service-link:hover { gap: 14px; }


/* ══════════════════════════════════════════════════════════════
   OFFRES (page services — cartes prestations texte)
   ══════════════════════════════════════════════════════════════ */
.offers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.offer {
  background: var(--card); padding: 36px 32px 34px; border-top: 2px solid var(--gold);
  display: flex; flex-direction: column;
  transition: background .35s var(--ease), transform .35s var(--ease);
}
.offer:hover { background: var(--panel); transform: translateY(-5px); }
.offer-tag {
  font-size: .6rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px;
}
.offer h3 {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 400; line-height: 1.2;
  color: var(--white); margin-bottom: 14px;
}
.offer p { font-size: .85rem; color: var(--muted); line-height: 1.85; margin-bottom: 24px; }
.offer .service-link { margin-top: auto; }
@media (max-width: 1024px) { .offers { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .offers { grid-template-columns: 1fr; } }


/* ══════════════════════════════════════════════════════════════
   FORMATIONS
   ══════════════════════════════════════════════════════════════ */
.training-strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  max-width: 760px; margin: 28px auto 0;
}
.training-strip span {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; letter-spacing: .04em; color: var(--text);
  border: 1px solid var(--line); padding: 10px 18px; border-radius: var(--radius);
}
.training-strip span::before { content: '✦'; color: var(--gold); font-size: .7rem; }

.trainings { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; }
.training {
  background: var(--card); border-top: 2px solid var(--gold); padding: 36px 34px;
  display: flex; flex-direction: column; transition: background .35s var(--ease);
}
.training:hover { background: var(--panel); }
.training-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.training-head h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--white); line-height: 1.2; }
.training-duration {
  flex-shrink: 0; font-size: .58rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold-dim); padding: 6px 12px; border-radius: var(--radius); white-space: nowrap;
}
.training-desc { font-size: .86rem; color: var(--muted); line-height: 1.8; margin-bottom: 22px; }
.training-program-label {
  font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: #6f665b; margin-bottom: 12px;
}
.training-program { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 9px; }
.training-program li { position: relative; padding-left: 20px; font-size: .84rem; color: var(--text); line-height: 1.55; }
.training-program li::before { content: '✦'; position: absolute; left: 0; top: 2px; color: var(--gold); font-size: .68rem; }
.training-cta { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 6px; }
.training-quote { font-size: .64rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

.modules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.module { background: var(--card); border-top: 2px solid var(--gold); padding: 30px 28px; display: flex; flex-direction: column; gap: 14px; transition: background .35s var(--ease); }
.module:hover { background: var(--panel); }
.module h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; color: var(--white); line-height: 1.25; }
.module .training-duration { align-self: flex-start; }

.custom-block {
  max-width: 780px; margin: 0 auto; text-align: center;
  background: var(--panel); border: 1px solid var(--gold-dim); padding: clamp(36px, 5vw, 56px);
}
.custom-block h3 { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 1.7rem; color: var(--gold); margin-bottom: 18px; }
.custom-block p { font-size: .94rem; color: var(--text); line-height: 1.9; margin-bottom: 26px; }

@media (max-width: 1024px) { .modules { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px)  { .trainings { grid-template-columns: 1fr; } }
@media (max-width: 600px)  { .modules { grid-template-columns: 1fr; } }


/* ══════════════════════════════════════════════════════════════
   ABOUT (image encadrée + texte + stats)
   ══════════════════════════════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.about-media { position: relative; aspect-ratio: 3/4; }
.about-media img { position: relative; z-index: 1; }
.about-media::before {
  content: ''; position: absolute; inset: -14px 14px 14px -14px;
  border: 1px solid var(--gold-dim); z-index: 0;
}
.about-body p { font-size: .94rem; color: var(--text); line-height: 1.95; margin-bottom: 18px; }
.section--light .about-body p { color: #4a423a; }

.stats { display: flex; gap: clamp(24px, 4vw, 44px); margin-top: 40px; padding-top: 34px; border-top: 1px solid var(--line); }
.section--light .stats { border-top-color: rgba(0,0,0,.12); }
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat-num { font-family: var(--serif); font-size: 2.3rem; font-weight: 300; color: var(--gold); line-height: 1; }
.stat-label { font-size: .66rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.section--light .stat-label { color: #6b6258; }


/* ══════════════════════════════════════════════════════════════
   VALEURS / ENGAGEMENT
   ══════════════════════════════════════════════════════════════ */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.value {
  background: var(--card); padding: 44px 28px; text-align: center;
  border-top: 2px solid var(--gold); transition: background .35s var(--ease);
}
.value:hover { background: var(--panel); }
.value-ico { font-size: 1.3rem; color: var(--gold); margin-bottom: 18px; }
.value h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; margin-bottom: 12px; }
.value p { font-size: .82rem; color: var(--muted); line-height: 1.8; }


/* ══════════════════════════════════════════════════════════════
   PORTFOLIO (filtres + grille + lightbox)
   ══════════════════════════════════════════════════════════════ */
.filters { display: flex; justify-content: center; gap: 10px; margin-bottom: 48px; flex-wrap: wrap; }
.filter {
  padding: 11px 26px; font-size: .66rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted); background: none;
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: color .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.filter:hover, .filter[aria-pressed="true"] { color: var(--gold); border-color: var(--gold); }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 300px; gap: 6px; }
.gallery-item {
  position: relative; overflow: hidden; cursor: pointer; background: var(--card);
  border: 0; padding: 0; transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.gallery-item.is-tall { grid-row: span 2; }
.gallery-item img { transition: transform .8s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.is-hidden { display: none; }
.gallery-cap {
  position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 22px; background: linear-gradient(transparent 45%, rgba(10,9,8,.78));
  opacity: 0; transition: opacity .4s var(--ease);
}
.gallery-item:hover .gallery-cap, .gallery-item:focus-visible .gallery-cap { opacity: 1; }
.gallery-cap span {
  font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--white);
}
.gallery-cap span::after { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); margin-top: 8px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1500; display: none;
  background: rgba(6,5,4,.94); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 4vw;
}
.lightbox.open { display: flex; }
.lightbox-figure { max-width: min(92vw, 900px); max-height: 88vh; position: relative; text-align: center; }
.lightbox-figure img { width: auto; max-width: 100%; max-height: 80vh; margin: 0 auto; box-shadow: var(--shadow); }
.lightbox-cap { margin-top: 16px; font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--cream); }
.lightbox-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border: 1px solid var(--line); background: rgba(20,18,15,.6);
  color: var(--white); font-size: 1.3rem; border-radius: 50%; display: grid; place-items: center;
  transition: background .25s, border-color .25s;
}
.lightbox-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.lightbox-prev { left: 2vw; }
.lightbox-next { right: 2vw; }
.lightbox-close { position: absolute; top: 3vh; right: 3vw; }


/* ══════════════════════════════════════════════════════════════
   AVIS (carousel)
   ══════════════════════════════════════════════════════════════ */
.carousel { position: relative; max-width: 820px; margin: 0 auto; }
.carousel-viewport { overflow: hidden; }
.carousel-track { display: flex; transition: transform .6s var(--ease); }
.review {
  flex: 0 0 100%; padding: 8px 4px; text-align: center;
}
.review-stars { color: var(--gold); letter-spacing: 5px; font-size: 1rem; margin-bottom: 24px; }
.review-quote {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem); line-height: 1.5; color: var(--cream);
  margin-bottom: 32px;
}
.review-person { display: inline-flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 46px; height: 46px; border-radius: 50%; background: var(--gold); color: var(--black);
  font-family: var(--serif); font-size: 1.2rem; font-weight: 600;
  display: grid; place-items: center; flex-shrink: 0;
}
.review-person strong { display: block; font-size: .88rem; font-weight: 600; text-align: left; }
.review-person span { font-size: .74rem; color: var(--muted); }
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 40px; }
.carousel-arrow {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
  background: none; color: var(--text); font-size: 1.1rem; display: grid; place-items: center;
  transition: color .25s, border-color .25s;
}
.carousel-arrow:hover { color: var(--gold); border-color: var(--gold); }
.carousel-dots { display: flex; gap: 10px; }
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%; border: 0; background: var(--line);
  transition: background .25s, transform .25s;
}
.carousel-dot[aria-current="true"] { background: var(--gold); transform: scale(1.3); }


/* ══════════════════════════════════════════════════════════════
   PAGE BANNER (pages intérieures)
   ══════════════════════════════════════════════════════════════ */
.page-banner {
  position: relative; min-height: 52vh; display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.page-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 25%; filter: brightness(.42) saturate(.82); z-index: 0; }
.page-banner::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, rgba(10,9,8,.45), rgba(10,9,8,.9)); }
.page-banner-body { position: relative; z-index: 2; padding: var(--header-h) 24px 0; }
.page-crumb { font-size: .66rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.page-crumb a:hover { color: var(--white); }
.page-title { font-family: var(--serif); font-weight: 300; line-height: 1.08; font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
.page-title em { font-style: italic; color: var(--gold); }


/* ══════════════════════════════════════════════════════════════
   PAGES LÉGALES
   ══════════════════════════════════════════════════════════════ */
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 {
  font-family: var(--serif); font-size: 1.55rem; font-weight: 400;
  color: var(--gold); margin: 44px 0 14px;
}
.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal li { font-size: .92rem; color: var(--text); line-height: 1.9; margin-bottom: 14px; }
.legal ul { padding-left: 20px; list-style: disc; margin-bottom: 14px; }
.legal a { color: var(--gold); text-decoration: underline; }
.legal strong { color: var(--white); font-weight: 600; }
.legal .legal-note {
  background: var(--card); border-left: 2px solid var(--gold);
  padding: 16px 20px; font-size: .86rem; color: var(--muted); margin-bottom: 32px;
}
.legal .updated { font-size: .8rem; color: var(--muted); font-style: italic; margin-top: 44px; }


/* ══════════════════════════════════════════════════════════════
   CTA BAND
   ══════════════════════════════════════════════════════════════ */
.cta-band { text-align: center; }
.cta-band .section-sub { margin-bottom: 36px; }


/* ══════════════════════════════════════════════════════════════
   CONTACT — infos + formulaire (→ WhatsApp)
   ══════════════════════════════════════════════════════════════ */
.contact-info { text-align: center; }
.info-block { max-width: 720px; margin: 0 auto; }
.info-block + .info-block { margin-top: 56px; padding-top: 48px; border-top: 1px solid var(--line); }
.info-block h3 { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 1.5rem; color: var(--gold); margin-bottom: 18px; }
.info-block p { font-size: .92rem; color: var(--text); line-height: 1.9; }

.contact-channels { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; margin-top: 28px; }
.channel {
  display: inline-flex; align-items: center; gap: 10px; font-size: .76rem; font-weight: 500;
  letter-spacing: .08em; color: var(--text); border: 1px solid var(--line);
  padding: 12px 24px; border-radius: var(--radius);
  transition: color .25s, border-color .25s;
}
.channel:hover { color: var(--gold); border-color: var(--gold); }

.coords { display: flex; justify-content: center; gap: clamp(28px, 6vw, 64px); flex-wrap: wrap; }
.coord { display: flex; flex-direction: column; align-items: center; gap: 7px; }
.coord-label { font-size: .62rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.coord a { font-size: .98rem; font-weight: 300; }
.coord a:hover { color: var(--gold); }

.zones { display: flex; justify-content: center; gap: clamp(24px, 5vw, 48px); flex-wrap: wrap; }
.zones span {
  font-size: .72rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--white);
}
.zones span::after { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); margin: 8px auto 0; }

/* Formulaire */
.form-shell { max-width: 880px; margin: 0 auto; }
.contact-form { display: flex; flex-direction: column; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: .66rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #5a5149; }
.field label .req { color: var(--gold); }
.field label .opt { color: #9a9085; font-weight: 500; text-transform: none; letter-spacing: 0; }
.field input, .field select, .field textarea {
  border: 1px solid #d6cdbf; border-bottom: 2px solid #b7ab98; background: #fff;
  padding: 14px 16px; font-family: var(--sans); font-size: .9rem; color: var(--ink);
  border-radius: 0; appearance: none; outline: none; transition: border-color .25s var(--ease);
}
.field textarea { resize: vertical; min-height: 150px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); border-bottom-color: var(--gold); }
.field input::placeholder, .field textarea::placeholder { color: #a99e8d; }
.field select { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23b7ab98' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }
.field[aria-hidden] { display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #c0392b; border-bottom-color: #c0392b; }
.field-error { font-size: .72rem; color: #c0392b; font-weight: 500; min-height: 0; }

.form-consent { display: flex; align-items: flex-start; gap: 12px; }
.form-consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--gold); flex-shrink: 0; }
.form-consent label { font-size: .76rem; color: #5a5149; font-weight: 400; letter-spacing: 0; text-transform: none; line-height: 1.6; }
.form-consent a { color: var(--ink); text-decoration: underline; }

.form-submit { margin-top: 6px; }
.form-feedback { font-size: .82rem; text-align: center; min-height: 1.2em; }
.form-feedback.ok { color: #1f7a4d; font-weight: 600; }
.form-feedback.err { color: #c0392b; font-weight: 600; }
.form-hint { display: inline-flex; align-items: center; gap: 8px; justify-content: center; font-size: .76rem; color: #6b6258; margin-top: 4px; }
.form-hint svg { flex-shrink: 0; }


/* ══════════════════════════════════════════════════════════════
   INSTAGRAM STRIP
   ══════════════════════════════════════════════════════════════ */
.ig-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; }
.ig-tile { position: relative; aspect-ratio: 1; overflow: hidden; }
.ig-tile img { transition: transform .7s var(--ease), filter .4s; filter: grayscale(.15); }
.ig-tile:hover img { transform: scale(1.1); filter: grayscale(0); }
.ig-tile::after {
  content: ''; position: absolute; inset: 0; background: rgba(10,9,8,.35); opacity: 0; transition: opacity .35s;
}
.ig-tile:hover::after { opacity: 1; }


/* ══════════════════════════════════════════════════════════════
   BOUTON WHATSAPP FLOTTANT
   ══════════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 1200;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 30px -6px rgba(0,0,0,.5);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 16px 40px -8px rgba(37,211,102,.5); }
.wa-float svg { width: 28px; height: 28px; }


/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.site-footer { background: var(--night); border-top: 1px solid var(--line); }
.footer-top { padding: 80px 0 64px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 48px; }
.footer-brand .brand { margin-bottom: 20px; }
.footer-logo-link { display: inline-block; margin-bottom: 22px; }
.footer-logo-img { height: 118px; width: auto; display: block; }
.footer-brand p { font-size: .82rem; color: var(--muted); line-height: 1.85; max-width: 260px; margin-bottom: 26px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%;
  display: grid; place-items: center; color: var(--muted);
  transition: color .25s, border-color .25s, transform .25s;
}
.footer-social a:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
.footer-col h4, .footer-news h4 {
  font-size: .66rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: .82rem; color: var(--muted); }
.footer-col a:hover { color: var(--white); }
.footer-news p { font-size: .82rem; color: var(--muted); line-height: 1.75; margin-bottom: 18px; }
.news-form { display: flex; border: 1px solid var(--line); }
.news-form input { flex: 1; background: transparent; border: 0; padding: 13px 16px; color: var(--white); font-family: var(--sans); font-size: .8rem; outline: none; }
.news-form input::placeholder { color: #5a534a; }
.news-form button { background: var(--gold); border: 0; color: var(--black); font-family: var(--sans); font-size: .64rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 0 18px; white-space: nowrap; transition: background .25s; }
.news-form button:hover { background: var(--gold-lt); }
.footer-bottom { border-top: 1px solid var(--line); padding: 24px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .72rem; color: var(--muted); letter-spacing: .03em; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: .68rem; color: var(--muted); }
.footer-legal a:hover { color: var(--white); }


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --pad: 32px; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-media { max-width: 460px; }
  .values { grid-template-columns: repeat(2, 1fr); }
  .ig-strip { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  :root { --pad: 22px; }

  /* Nav mobile */
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .primary-nav {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    background: var(--night); border-left: 1px solid var(--line);
    transform: translateX(100%); transition: transform .4s var(--ease);
    display: flex; align-items: center; z-index: 1050;
  }
  .primary-nav.open { transform: translateX(0); }
  .primary-nav ul { flex-direction: column; align-items: flex-start; gap: 26px; padding: 0 40px; width: 100%; }
  .primary-nav a { font-size: 1rem; letter-spacing: .12em; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .services { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery-item.is-tall { grid-row: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .marquee span { font-size: 1.2rem; }
}

@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .stats { flex-direction: column; gap: 22px; }
  .coords { flex-direction: column; gap: 24px; }
}

/* Préférence : mouvement réduit */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero-media img { transform: none; }
}
