/* ============================================================
   M SOINS DU CORPS v2 — BLANC MATIÈRE LUXE
   Style : blanc pur, grain papier, lignes or, éditorial magazine
   Palette : #948665 · #dfd8ce · #5a7c6a · #062d2a · #f8eee5
   Typo : Gemola (titres) · Lovelace italic (accroches) · Cormorant Infant (corps)
   ============================================================ */

/* ── GEMOLA — family name interne : "Gemola", Regular ── */
@font-face {
  font-family: 'Gemola';
  src: url('assets/fonts/Gemola.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ── LOVELACE — family interne : "Lovelace Light", Italic ── */
@font-face {
  font-family: 'Lovelace';
  src: url('assets/fonts/Lovelace.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

/* ── CORMORANT INFANT — variable font, Light → ExtraBold ── */
@font-face {
  font-family: 'CormorantInfant';
  src: url('assets/fonts/CormorantInfant.ttf') format('truetype');
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --gold:    #948665;
  --lin:     #dfd8ce;
  --sauge:   #5a7c6a;
  --nuit:    #062d2a;
  --creme:   #f8eee5;
  --blanc:   #ffffff;
  --noir:    #111110;

  --bg:         #ffffff;
  --bg-warm:    #faf8f5;
  --bg-texture: #f5f2ee;
  --bg-dark:    #062d2a;

  --text:      #1a1918;
  --text-soft: #4a4540;
  --text-muted:#9a9590;

  --border:      rgba(148,134,101,.14);
  --border-gold: rgba(148,134,101,.28);

  --shadow-sm:  0 2px 12px rgba(6,45,42,.06);
  --shadow:     0 8px 40px rgba(6,45,42,.08);
  --shadow-lg:  0 24px 80px rgba(6,45,42,.1);

  --radius:    10px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-pill: 999px;
  --container: 1280px;
}

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'CormorantInfant', Georgia, serif;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.75;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
p { margin: 0; }
h1, h2, h3, h4 {
  margin: 0;
  font-family: 'Gemola', Georgia, serif;
  font-weight: 400;
  line-height: 1.05;
  color: var(--nuit);
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

/* Texture overlay mixin — appliquer sur les sections */
.texture::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
}
.texture > * { position: relative; z-index: 1; }

/* ─── TYPO HELPERS ──────────────────────────────────────── */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: 'CormorantInfant', serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.kicker::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.lovelace {
  font-family: 'Lovelace', Georgia, serif;
  font-style: italic;
  font-weight: 300;
}

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 36px;
  border-radius: 0;
  font-family: 'CormorantInfant', serif;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s ease;
  border: 1px solid transparent;
  white-space: nowrap;
  position: relative;
}

/* Bouton principal : fond vert nuit, hover → or */
.btn--primary {
  background: var(--nuit);
  color: var(--blanc);
  border-color: var(--nuit);
}
.btn--primary::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .3s ease;
}
.btn--primary:hover {
  background: var(--text);
  border-color: var(--text);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(6,45,42,.18);
}
.btn--primary:hover::after { width: 100%; }

/* Bouton ghost : outline minimal */
.btn--ghost {
  background: transparent;
  color: var(--nuit);
  border-color: var(--nuit);
}
.btn--ghost:hover {
  background: var(--nuit);
  color: var(--blanc);
}

/* Bouton gold line */
.btn--gold-line {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--gold-line:hover {
  background: var(--gold);
  color: var(--blanc);
}

/* Bouton light */
.btn--light {
  background: rgba(255,255,255,.1);
  color: var(--blanc);
  border-color: rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
}
.btn--light:hover {
  background: var(--blanc);
  color: var(--nuit);
  border-color: var(--blanc);
}

.btn--full { width: 100%; }

/* Small icon btn */
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid var(--border-gold);
  color: var(--nuit);
  transition: all .2s;
}
.icon-btn:hover { background: var(--nuit); color: var(--blanc); border-color: var(--nuit); }

/* ─── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 24px rgba(6,45,42,.06);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.brand { display: block; }
.brand img { height: 52px; width: auto; transition: opacity .2s; }
.brand:hover img { opacity: .8; }

.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-family: 'CormorantInfant', serif;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--text-soft);
  transition: color .2s;
  padding: 2px 0;
  border-bottom: 1px solid transparent;
}
.nav a:hover { color: var(--nuit); border-bottom-color: var(--gold); }
.nav--right { gap: 14px; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
}
.burger span {
  display: block; height: 1px;
  background: var(--nuit); transition: all .25s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  padding: 16px 24px;
  font-family: 'CormorantInfant', serif;
  font-size: 1.1rem;
  color: var(--text-soft);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { color: var(--nuit); background: var(--bg-warm); }

/* ─── HERO — EDITORIAL ───────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--blanc);
}

/* Top line decoration */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--sauge) 70%, transparent 100%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 76px);
}

/* Left: texte */
.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 0;
  position: relative;
}

/* Grain texture sur la gauche */
.hero__left::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 28px;
}
.hero__eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold);
}

.hero__title {
  font-family: 'Gemola', Georgia, serif;
  font-size: clamp(4rem, 7vw, 8rem);
  font-weight: 400;
  line-height: .95;
  color: var(--nuit);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.hero__title-sub {
  font-family: 'Lovelace', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  color: var(--sauge);
  margin-bottom: 32px;
  display: block;
  position: relative;
  z-index: 1;
}
.hero__tagline {
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.hero__desc {
  font-size: 1.1rem;
  color: var(--text-soft);
  line-height: 1.85;
  max-width: 440px;
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }

/* Right: image + déco */
.hero__right {
  position: relative;
  overflow: hidden;
  background: var(--bg-texture);
}

/* Fond texture côté droit */
.hero__right::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 30%, rgba(90,124,106,.06) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 80%, rgba(148,134,101,.08) 0%, transparent 50%);
}

.hero__right-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

/* Grand monogramme/lettre décorative */
.hero__deco-letter {
  font-family: 'Gemola', Georgia, serif;
  font-size: 38vw;
  font-weight: 400;
  color: rgba(6,45,42,.03);
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
}

/* Illustration flottante */
.hero__illustration {
  position: relative;
  z-index: 1;
  width: 72%;
  max-width: 380px;
}
.hero__illustration-frame {
  aspect-ratio: 2/3;
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

/* Ligne dorée verticale à gauche du héro droit */
.hero__gold-line {
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: .35;
}

/* Stats flottantes */
.hero__stat-float {
  position: absolute;
  background: var(--blanc);
  border: 1px solid var(--border-gold);
  padding: 18px 24px;
  box-shadow: var(--shadow);
}
.hero__stat-float--tl { top: 12%; left: 8%; }
.hero__stat-float--br { bottom: 12%; right: 8%; }
.hero__stat-float .num {
  font-family: 'Gemola', serif;
  font-size: 2.4rem;
  color: var(--nuit);
  display: block;
  line-height: 1;
}
.hero__stat-float .label {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: 'CormorantInfant', serif;
}

/* ─── RUBRIQUE LIGNE / DIVIDER ───────────────────────────── */
.section-line {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.section-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--border-gold), transparent);
}
.section-line span {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
}

/* ─── SECTION GÉNÉRIQUE ─────────────────────────────────── */
.section { padding: 104px 0; }
.section--warm { background: var(--bg-warm); }
.section--texture { background: var(--bg-texture); position: relative; overflow: hidden; }
.section--dark { background: var(--nuit); color: var(--blanc); }
.section--dark h2, .section--dark h3 { color: var(--blanc); }

/* ─── MANIFESTE ──────────────────────────────────────────── */
.manifeste__inner {
  display: grid;
  grid-template-columns: 1fr 1px 1.1fr;
  gap: 80px;
  align-items: center;
}
.manifeste__separator {
  width: 1px;
  height: 280px;
  background: linear-gradient(to bottom, transparent, var(--border-gold) 20%, var(--border-gold) 80%, transparent);
  align-self: center;
}
.manifeste__left { text-align: right; }
.manifeste__num {
  font-family: 'Gemola', serif;
  font-size: 7rem;
  color: rgba(148,134,101,.1);
  line-height: 1;
  display: block;
  margin-bottom: -20px;
}
.manifeste__quote {
  font-family: 'Gemola', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  color: var(--nuit);
  line-height: 1.2;
  margin: 0 0 32px;
  padding: 0;
  border: none;
  font-style: normal;
  text-align: right;
}
.manifeste__right p {
  font-size: 1.1rem;
  color: var(--text-soft);
  line-height: 1.85;
  margin-bottom: 32px;
}

/* ─── SERVICES ────────────────────────────────────────────── */
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}
.services-intro h2 { font-size: clamp(2.2rem, 4vw, 4rem); }
.services-intro p { font-size: 1.05rem; color: var(--text-soft); line-height: 1.8; }

/* Grille alternée */
.services-list { display: flex; flex-direction: column; gap: 0; }
.service-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  transition: background .2s;
  cursor: default;
}
.service-row:first-child { border-top: 1px solid var(--border); }
.service-row:hover { background: var(--bg-warm); margin: 0 -24px; padding-left: 24px; padding-right: 24px; }

.service-row__num {
  font-family: 'Gemola', serif;
  font-size: 1.8rem;
  color: var(--border-gold);
  color: rgba(148,134,101,.3);
  font-weight: 400;
}
.service-row__body h3 {
  font-family: 'Gemola', serif;
  font-size: 1.8rem;
  color: var(--nuit);
  margin-bottom: 4px;
  transition: color .2s;
}
.service-row:hover .service-row__body h3 { color: var(--sauge); }
.service-row__body p {
  font-size: .95rem;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 680px;
}
.service-row__tag {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 6px 14px;
  white-space: nowrap;
  font-family: 'CormorantInfant', serif;
  font-weight: 600;
}

/* ─── À PROPOS ───────────────────────────────────────────── */
.apropos__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.apropos__portrait {
  position: relative;
  background: var(--bg-texture);
  min-height: 600px;
  overflow: hidden;
}
.apropos__portrait-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.apropos__portrait-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: sepia(8%) contrast(1.02);
}
/* Overlay dégradé latéral */
.apropos__portrait-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--blanc));
}
/* Badge flottant */
.apropos__badge {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: var(--nuit);
  color: var(--creme);
  padding: 20px 28px;
  max-width: 200px;
}
.apropos__badge .num {
  font-family: 'Gemola', serif;
  font-size: 3rem;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.apropos__badge .label {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .7;
}

.apropos__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 0 72px 72px;
  background: var(--blanc);
}
.apropos__content h2 { font-size: clamp(2.5rem, 3.5vw, 4rem); margin-bottom: 8px; }
.apropos__hook {
  font-family: 'Lovelace', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--sauge);
  margin-bottom: 28px;
}
.apropos__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.apropos__text p { font-size: 1.05rem; color: var(--text-soft); line-height: 1.85; }
.apropos__text p:first-child {
  font-family: 'Lovelace', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text);
  line-height: 1.7;
}

/* Expertise pills */
.apropos__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid var(--border-gold);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--nuit);
  font-family: 'CormorantInfant', serif;
  font-weight: 600;
}
.pill::before {
  content: '·';
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 0;
}

/* ─── LOCALISATION ─────────────────────────────────────── */
.localisation__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  align-items: start;
}
.localisation__copy h2 { font-size: clamp(2rem, 3.5vw, 3.5rem); color: var(--blanc); margin-bottom: 24px; }
.localisation__desc { font-size: 1.05rem; color: rgba(248,238,229,.65); line-height: 1.85; margin-bottom: 40px; }

.loc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 24px; }
.loc-list li { display: flex; gap: 20px; align-items: flex-start; }
.loc-icon-box {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border: 1px solid rgba(148,134,101,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-top: 2px;
}
.loc-list strong { display: block; color: var(--gold); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 4px; font-weight: 600; }
.loc-list p, .loc-list address { font-style: normal; font-size: 1rem; color: rgba(248,238,229,.7); line-height: 1.65; }
.loc-list a { color: rgba(248,238,229,.7); transition: color .2s; }
.loc-list a:hover { color: var(--gold); }

.localisation__card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(148,134,101,.2);
  padding: 40px;
  backdrop-filter: blur(4px);
}
.localisation__card h3 { font-family: 'Gemola', serif; font-size: 1.5rem; color: var(--gold); margin-bottom: 16px; }
.hours-grid { display: flex; flex-direction: column; gap: 10px; }
.hours-row { display: flex; justify-content: space-between; gap: 20px; align-items: baseline; }
.hours-row .day { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(248,238,229,.45); }
.hours-row .time { font-family: 'Gemola', serif; font-size: 1.1rem; color: rgba(248,238,229,.8); }
.hours-note { margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(148,134,101,.15); font-family: 'Lovelace', serif; font-style: italic; font-size: .9rem; color: rgba(248,238,229,.4); }

/* ─── RÉSEAUX ──────────────────────────────────────────── */
.reseaux { background: var(--blanc); text-align: center; }
.reseaux__wrap { max-width: 600px; margin-inline: auto; }
.reseaux h2 { font-size: clamp(2rem, 3vw, 3rem); margin-bottom: 12px; }
.reseaux__sub { font-family: 'Lovelace', serif; font-style: italic; font-size: 1.1rem; color: var(--sauge); margin-bottom: 44px; }
.social-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.social-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid var(--border);
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--nuit);
  font-weight: 600;
  transition: all .2s;
}
.social-item:hover { background: var(--nuit); color: var(--blanc); border-color: var(--nuit); }

/* ─── FAQ ──────────────────────────────────────────────── */
.faq__inner { display: grid; grid-template-columns: 1fr 1.8fr; gap: 80px; align-items: start; }
.faq__title-col h2 { font-size: clamp(2.5rem, 4vw, 4rem); position: sticky; top: 100px; }
.faq__title-col p { font-family: 'Lovelace', serif; font-style: italic; font-size: 1.1rem; color: var(--sauge); margin-top: 12px; position: sticky; top: 180px; }

.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  background: none; border: none; cursor: pointer;
  font-family: 'CormorantInfant', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--nuit);
  text-align: left;
  transition: color .2s;
  letter-spacing: .01em;
}
.faq-q:hover { color: var(--sauge); }
.faq-toggle {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  opacity: .35;
  transition: all .2s;
}
.faq-toggle::before, .faq-toggle::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: all .2s;
}
.faq-toggle::before { width: 10px; height: 1px; }
.faq-toggle::after  { width: 1px; height: 10px; }
.faq-q[aria-expanded="true"] .faq-toggle { opacity: 1; color: var(--gold); }
.faq-q[aria-expanded="true"] .faq-toggle::after { transform: rotate(90deg); opacity: 0; }
.faq-a { padding: 0 0 24px; font-size: 1.02rem; color: var(--text-soft); line-height: 1.85; }

/* ─── CONTACT ──────────────────────────────────────────── */
.contact { background: var(--bg-warm); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact__copy h2 { font-size: clamp(2rem, 3.5vw, 3.5rem); margin-bottom: 12px; }
.contact__sub { font-family: 'Lovelace', serif; font-style: italic; font-size: 1.1rem; color: var(--sauge); margin-bottom: 28px; }
.contact__desc { font-size: 1rem; color: var(--text-soft); line-height: 1.85; margin-bottom: 36px; }

.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-info li { display: flex; gap: 14px; align-items: flex-start; list-style: none; }
.ci-icon { width: 36px; height: 36px; flex-shrink: 0; border: 1px solid var(--border-gold); display: flex; align-items: center; justify-content: center; color: var(--gold); margin-top: 2px; }
.ci-label { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 600; display: block; margin-bottom: 3px; }
.ci-value { font-size: 1rem; color: var(--text-soft); }
.ci-value a { color: var(--text-soft); transition: color .2s; }
.ci-value a:hover { color: var(--nuit); }

/* Formulaire */
.form-card {
  background: var(--blanc);
  border: 1px solid var(--border);
  padding: 48px;
  box-shadow: var(--shadow);
}
.form-card h3 {
  font-family: 'Gemola', serif;
  font-size: 1.8rem;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid label { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
label.full { grid-column: 1 / -1; }
.field {
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--bg-warm);
  font-family: 'CormorantInfant', serif;
  font-size: 1rem;
  color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.field:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(148,134,101,.08);
  background: var(--blanc);
}
.field--textarea { resize: vertical; min-height: 110px; }
select.field { cursor: pointer; }
.form-note { margin-top: 14px; font-size: .82rem; color: var(--text-muted); text-align: center; }
.form-note a { color: var(--sauge); }

/* ─── FOOTER ───────────────────────────────────────────── */
.footer {
  background: var(--noir);
  color: rgba(255,255,255,.6);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--sauge) 70%, transparent);
  opacity: .4;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding: 72px 0 48px;
}
.footer__brand img { filter: brightness(0) invert(1); opacity: .75; margin-bottom: 14px; max-height: 44px; width: auto; }
.footer__tagline {
  font-family: 'Lovelace', serif;
  font-style: italic;
  font-size: .95rem;
  color: rgba(255,255,255,.3);
}
.footer__col-title {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  font-family: 'CormorantInfant', serif;
  margin-bottom: 16px;
  display: block;
}
.footer__col p { font-size: .92rem; line-height: 1.8; }
.footer__col a { color: rgba(255,255,255,.55); display: block; margin-bottom: 4px; transition: color .2s; font-size: .92rem; }
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
  font-size: .75rem;
  color: rgba(255,255,255,.25);
  text-align: center;
}
.footer__bottom a { color: rgba(255,255,255,.35); transition: color .2s; }
.footer__bottom a:hover { color: var(--gold); }

/* ─── PAGES LÉGALES ─────────────────────────────────────── */
.legal-banner {
  background: var(--nuit);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.legal-banner::after {
  content: attr(data-letter);
  position: absolute;
  right: 5%;
  bottom: -20%;
  font-family: 'Gemola', serif;
  font-size: 22rem;
  color: rgba(255,255,255,.03);
  line-height: 1;
  pointer-events: none;
}
.legal-banner h1 { color: var(--blanc); font-size: clamp(2.5rem, 5vw, 5rem); margin-bottom: 10px; position: relative; z-index: 1; }
.legal-banner p { font-family: 'Lovelace', serif; font-style: italic; font-size: 1rem; color: var(--gold); position: relative; z-index: 1; }

.legal-body { background: var(--blanc); padding: 80px 0; }
.legal-body .wrap { max-width: 780px; }
.legal-body h2 { font-size: 1.6rem; margin: 40px 0 12px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body h3 { font-family: 'Lovelace', serif; font-style: italic; font-size: 1.1rem; color: var(--sauge); margin: 22px 0 6px; }
.legal-body p, .legal-body li { font-size: 1rem; color: var(--text-soft); line-height: 1.85; margin-bottom: 10px; }
.legal-body a { color: var(--sauge); text-decoration: underline; }
.legal-hr { border: 0; border-top: 1px solid var(--border); margin: 48px 0; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; min-height: auto; }
  .hero__left { padding: 72px 0 48px; text-align: center; }
  .hero__desc { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__eyebrow { justify-content: center; }
  .hero__right { min-height: 480px; }
  .hero__stat-float--tl { top: 8%; left: 4%; }
  .hero__stat-float--br { bottom: 8%; right: 4%; }

  .manifeste__inner { grid-template-columns: 1fr; }
  .manifeste__separator { display: none; }
  .manifeste__left { text-align: left; }
  .manifeste__quote { text-align: left; }

  .apropos__inner { grid-template-columns: 1fr; }
  .apropos__portrait { min-height: 500px; }
  .apropos__content { padding: 56px 0 0; }

  .localisation__inner { grid-template-columns: 1fr; gap: 56px; }
  .faq__inner { grid-template-columns: 1fr; }
  .faq__title-col h2, .faq__title-col p { position: static; }
  .contact__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .services-intro { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .nav--left { display: none; }
  .burger { display: flex; }
  .nav--right .btn { display: none; }
  .nav--right .btn:last-of-type { display: inline-flex; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .hero__left { padding: 56px 0 40px; }
  .form-card { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 32px; }
  .service-row { grid-template-columns: 40px 1fr; }
  .service-row__tag { display: none; }
  .apropos__portrait { min-height: 400px; }
  .hero__stat-float { padding: 12px 16px; }
  .hero__stat-float .num { font-size: 1.8rem; }
  .apropos__content { padding: 40px 0 0; }
}
