/* =========================================================
   MAISON LUMACI · Bien-être du Corps & de l'Esprit
   Feuille de style — Édition Luxe & Élégance
   ========================================================= */

/* Les polices sont chargées via <link> dans le <head> (plus performant que @import). */

:root {
  --cream: #F4EFEA;
  --cream-hi: #FCFAF8;
  --card: #F9F6F0;
  --ink: #1C1917;
  --ink-soft: #5C544D;
  --espresso: #181411;
  --espresso-2: #0C0A08;
  --gold: #C2A67A;
  --gold-deep: #A38757;
  --line: rgba(28, 25, 23, 0.08);
  --line-gold: rgba(194, 166, 122, 0.35);
  --max: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  background: radial-gradient(1200px 600px at 50% 0%, var(--cream-hi), transparent 70%), var(--cream);
  color: var(--ink);
  font-family: 'Jost', -apple-system, sans-serif;
  font-weight: 300;
  line-height: 1.75;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }

/* ---- Typographie ---- */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  text-wrap: balance;
}
h1 em, h2 em, h3 em { font-weight: 300; font-style: italic; color: var(--gold-deep); }
p { color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 400; }

.eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 24px;
}

/* ---- Header fixe (verre dépoli sombre) ---- */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 9999;
  padding: 16px 0;
  background: rgba(12, 10, 8, var(--header-opacity, 0.7));
  backdrop-filter: blur(var(--header-blur, 16px)); -webkit-backdrop-filter: blur(var(--header-blur, 16px));
  border-bottom: 1px solid rgba(194, 166, 122, 0.15);
  transition: padding 0.4s ease;
  transform: translateZ(0);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; }
.brand img { height: 52px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
.main-nav { display: flex; gap: 38px; align-items: center; }
.main-nav a {
  text-decoration: none;
  color: rgba(252, 250, 248, 0.7);
  font-size: 12px; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase;
  transition: color 0.4s ease, transform 0.4s ease;
}
.main-nav a:hover { color: var(--gold); transform: translateY(-1px); }

.btn-header-book {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Jost', sans-serif; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; font-size: 12px;
  color: rgba(252, 250, 248, 0.9); text-decoration: none;
  transition: color 0.4s ease, transform 0.4s ease;
}
.btn-header-book svg { width: 18px; height: 18px; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; }
.btn-header-book:hover { color: var(--gold); transform: translateY(-1px); }

/* ---- Boutons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-family: 'Jost', sans-serif; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; font-size: 12px;
  padding: 18px 40px; border-radius: 0;
  text-decoration: none; cursor: pointer;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid transparent;
}
.btn-dark {
  background: var(--espresso); color: var(--cream-hi);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.3);
}
.btn-dark:hover { background: var(--espresso-2); border-color: var(--gold); color: var(--gold); }
.btn-light {
  background: var(--cream-hi); color: var(--espresso); border-color: var(--cream-hi);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
}
.btn-light:hover { background: transparent; border-color: var(--cream-hi); color: var(--cream-hi); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { border-color: var(--gold-deep); color: var(--gold-deep); }
.btn-ghost-gold { background: transparent; color: var(--gold); border-color: rgba(194,166,122,0.5); }
.btn-ghost-gold:hover { border-color: var(--gold); background: rgba(194,166,122,0.08); }

/* ---- Animations au scroll ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1.1s cubic-bezier(0.16,1,0.3,1), transform 1.1s cubic-bezier(0.16,1,0.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.05s; } .d2 { transition-delay: 0.18s; } .d3 { transition-delay: 0.32s; } .d4 { transition-delay: 0.46s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- HERO ---------- */
.hero { padding: 190px 0 110px; position: relative; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  /* L'image de fond est définie en inline sur l'élément (modifiable via le backoffice). */
  background-position: center; background-size: cover; background-attachment: fixed;
  z-index: 1; filter: brightness(0.92);
}
.hero-auras { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.aura-1 { position: absolute; top: -10%; left: 15%; width: 50%; height: 70%; background: radial-gradient(circle, rgba(194, 166, 122, 0.18) 0%, transparent 65%); filter: blur(60px); animation: auraFloat 10s infinite alternate; }
@keyframes auraFloat { to { transform: translate(4%, 8%) scale(1.15); } }

.hero-card {
  position: relative; z-index: 3; border-radius: 2px; padding: 90px 48px; text-align: center;
  background: rgba(252, 250, 248, var(--hero-opacity, 0.72));
  backdrop-filter: blur(var(--hero-blur, 3px)); -webkit-backdrop-filter: blur(var(--hero-blur, 3px));
  border: 1px solid var(--line-gold);
  box-shadow: 0 40px 100px -20px rgba(28, 25, 23, 0.18);
  transform: translateZ(0);
  max-width: 920px; margin: 0 auto;
}
.emblem-container { display: flex; align-items: center; justify-content: center; position: relative; margin: 0 auto 24px; height: 78px; width: 78px; }
.emblem-ring { position: absolute; width: 78px; height: 78px; border: 1px dashed var(--line-gold); border-radius: 50%; animation: spinSlow 30s linear infinite; }
.emblem { width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--line-gold); background: rgba(252, 250, 248, 0.5); display: grid; place-items: center; color: var(--gold); font-family: 'Cormorant Garamond', serif; font-size: 20px; animation: pulseGlow 4s infinite alternate; }
@keyframes spinSlow { to { transform: rotate(360deg); } }
@keyframes pulseGlow { 0% { box-shadow: 0 0 10px rgba(194,166,122,0); } 100% { box-shadow: 0 0 20px rgba(194,166,122,0.4); } }

.hero-card h1 { font-size: clamp(40px, 6vw, 74px); max-width: 16ch; margin: 0 auto 28px; }
.hero-card p { font-size: 19px; max-width: 54ch; margin: 0 auto 40px; color: var(--ink-soft); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; align-items: center; }

/* ---- Bandeau de réassurance ---- */
.reassurance {
  position: relative; z-index: 10; margin: -46px auto 0; max-width: 980px;
  background: rgba(252, 250, 248, 0.9);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line-gold);
  display: grid; grid-template-columns: repeat(3, 1fr);
  box-shadow: 0 30px 60px -15px rgba(28, 25, 23, 0.1);
  transform: translateZ(0);
}
.reassurance div { padding: 28px 32px; text-align: center; border-right: 1px solid var(--line); }
.reassurance div:last-child { border-right: none; }
.reassurance .r-title { font-family: 'Cormorant Garamond', serif; font-size: 21px; color: var(--ink); margin-bottom: 2px; }
.reassurance .r-sub { font-size: 13px; letter-spacing: 0.05em; color: var(--gold-deep); text-transform: uppercase; }

/* ---- Sections communes ---- */
section { padding: 110px 0; position: relative; }
.head { max-width: 66ch; margin: 0 auto 70px; text-align: center; }
.head h2 { font-size: clamp(34px, 4.5vw, 54px); margin-bottom: 20px; }
.head p { font-size: 18.5px; }

/* ---- Concept (Trio) ---- */
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.tile {
  background: var(--card); border: 1px solid var(--line); padding: 50px 40px; text-align: center;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.tile:hover { transform: translateY(-10px); border-color: var(--gold); box-shadow: 0 20px 40px -20px rgba(194, 166, 122, 0.25); }
.tile svg { width: 32px; height: 32px; stroke: var(--gold-deep); fill: none; stroke-width: 1.2; margin: 0 auto 24px; }
.tile h3 { font-size: 26px; margin-bottom: 12px; }
.tile p { font-size: 16px; }

/* ---- Univers (deux pôles) ---- */
.universe-section { background: var(--cream-hi); }
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.universe {
  position: relative; min-height: 460px; display: flex; align-items: flex-end;
  padding: 48px; overflow: hidden; border: 1px solid var(--line);
  background-size: cover; background-position: center;
  transition: all 0.6s cubic-bezier(0.2,0.8,0.2,1);
}
.universe::before { content: ""; position: absolute; inset: 0; z-index: 1; transition: opacity 0.6s ease; }
.universe.corps::before { background: linear-gradient(to top, rgba(28,25,23,0.82) 0%, rgba(28,25,23,0.15) 70%, transparent 100%); }
.universe.esprit::before { background: linear-gradient(to top, rgba(12,10,8,0.9) 0%, rgba(12,10,8,0.3) 65%, rgba(60,40,20,0.1) 100%); }
.universe:hover { transform: translateY(-6px); }
.universe-inner { position: relative; z-index: 2; }
.universe .eyebrow { color: var(--gold); }
.universe.corps .eyebrow { color: #fff; }
.universe h3 { color: var(--cream-hi); font-size: 34px; margin-bottom: 12px; }
.universe p { color: rgba(252,250,248,0.82); font-size: 16px; margin-bottom: 24px; max-width: 38ch; }
.universe .uni-link {
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold);
  text-decoration: none; border-bottom: 1px solid var(--line-gold); padding-bottom: 4px;
  transition: 0.3s;
}
.universe .uni-link:hover { color: var(--cream-hi); border-color: var(--cream-hi); }

/* ---- Liste de soins (cartes image) ---- */
.care-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.care-card {
  background: var(--card); border: 1px solid var(--line); overflow: hidden;
  display: flex; flex-direction: column;
  transition: all 0.5s cubic-bezier(0.2,0.8,0.2,1);
}
.care-card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: 0 26px 50px -24px rgba(28,25,23,0.25); }
.care-media { aspect-ratio: 4/3; overflow: hidden; }
.care-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s cubic-bezier(0.2,0.8,0.2,1); }
.care-card:hover .care-media img { transform: scale(1.06); }
.care-body { padding: 32px 30px 36px; display: flex; flex-direction: column; flex-grow: 1; }
.care-body .meta { font-family: 'Jost'; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 12px; display: block; }
.care-body h3 { font-size: 25px; margin-bottom: 10px; }
.care-body p { font-size: 15px; margin-bottom: 20px; flex-grow: 1; }
.care-price { font-family: 'Cormorant Garamond', serif; font-size: 15px; letter-spacing: 0.04em; color: var(--ink); border-top: 1px solid var(--line); padding-top: 16px; }
.care-price strong { color: var(--gold-deep); font-size: 22px; font-weight: 500; }

/* ---- Section sombre (Énergie / Esprit) ---- */
.dark-section { background: var(--espresso-2); color: var(--cream-hi); position: relative; overflow: hidden; border-top: 1px solid rgba(194,166,122,0.2); border-bottom: 1px solid rgba(194,166,122,0.2); }
.dark-section .aura-soft { position: absolute; top: 10%; right: -5%; width: 45%; height: 60%; background: radial-gradient(circle, rgba(194,166,122,0.14) 0%, transparent 70%); filter: blur(70px); animation: auraFloat 12s infinite alternate; pointer-events: none; }
.dark-section h2, .dark-section h3 { color: var(--cream-hi); }
.dark-section h2 em, .dark-section h3 em { color: var(--gold); }
.dark-section p { color: rgba(252,250,248,0.72); }
.dark-section .eyebrow { color: var(--gold); }
.dark-section .head h2, .dark-section .head p { color: var(--cream-hi); }
.dark-section .head p { color: rgba(252,250,248,0.72); }

.energy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.energy-card {
  position: relative; z-index: 2; display: flex; flex-direction: column;
  background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(194,166,122,0.28); overflow: hidden;
  transition: all 0.5s cubic-bezier(0.2,0.8,0.2,1);
}
.energy-card:hover { border-color: var(--gold); transform: translateY(-6px); }
.energy-media { aspect-ratio: 16/10; overflow: hidden; }
.energy-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.92; transition: transform 0.9s ease; }
.energy-card:hover .energy-media img { transform: scale(1.05); }
.energy-body { padding: 40px 40px 44px; }
.energy-body .meta { font-family: 'Jost'; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: block; }
.energy-body h3 { font-size: 30px; margin-bottom: 14px; }
.energy-body p { font-size: 15.5px; margin-bottom: 18px; }
.energy-body ul { list-style: none; margin-bottom: 28px; }
.energy-body li { font-size: 15px; padding-left: 26px; position: relative; margin-bottom: 12px; color: rgba(252,250,248,0.78); }
.energy-body li::before { content: "✦"; position: absolute; left: 0; top: 1px; color: var(--gold); font-size: 12px; }
.energy-price { font-family: 'Cormorant Garamond', serif; font-size: 16px; color: rgba(252,250,248,0.8); }
.energy-price strong { color: var(--gold); font-size: 24px; font-weight: 500; }

/* ---- L'application de suivi (dans la section Esprit) ---- */
.app-block { position: relative; z-index: 2; margin-top: 96px; padding-top: 76px; border-top: 1px solid rgba(194,166,122,0.2); }
.app-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 70px; align-items: center; }
.app-text h3 { font-size: clamp(28px, 3.4vw, 42px); margin-bottom: 18px; }
.app-text > p { font-size: 16px; margin-bottom: 28px; }
.app-feats { list-style: none; margin-bottom: 36px; }
.app-feats li { font-size: 15px; padding-left: 28px; position: relative; margin-bottom: 14px; color: rgba(252,250,248,0.8); }
.app-feats li::before { content: "✦"; position: absolute; left: 0; top: 1px; color: var(--gold); font-size: 12px; }
/* Élément de liste vide : on masque la ligne (et donc sa puce) */
.energy-body li:empty, .app-feats li:empty { display: none; }
.welcome-gift { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; background: rgba(252,250,248,0.05); border: 1px solid var(--line-gold); padding: 26px 28px; }
.gift-tag { background: var(--gold); color: var(--espresso); font-size: 10px; letter-spacing: 0.15em; font-weight: 500; padding: 6px 13px; border-radius: 20px; text-transform: uppercase; white-space: nowrap; flex: none; margin-top: 2px; }
.welcome-gift .gift-body strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 23px; color: var(--cream-hi); margin-bottom: 4px; font-weight: 500; }
.welcome-gift .gift-body p { font-size: 14px; margin: 0; color: rgba(252,250,248,0.72); }
.app-phones { display: flex; gap: 22px; justify-content: center; position: relative; }
.app-phones img { width: 48%; max-width: 232px; height: auto; border-radius: 30px; border: 5px solid #2a2420; box-shadow: 0 34px 70px rgba(0,0,0,0.6); background: #000; }
.app-phones img:nth-child(2) { margin-top: 56px; }

/* ---- Étapes (Rituel) ---- */
.steps { max-width: 760px; margin: 0 auto; }
.step { display: flex; gap: 32px; padding: 30px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.step:last-child { border-bottom: none; }
.step .num {
  flex: none; width: 62px; height: 62px; display: grid; place-items: center; border-radius: 50%;
  font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--gold-deep);
  border: 1px solid var(--line-gold); background: var(--cream-hi);
}
.step h3 { font-size: 23px; margin-bottom: 6px; }
.step p { font-size: 16px; }

/* ---- Tarifs (deux colonnes thématiques) ---- */
.pricing-section { background: var(--cream-hi); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.price-panel { background: var(--card); border: 1px solid var(--line); padding: 50px 46px; }
.price-panel.energie { background: linear-gradient(165deg, var(--espresso) 0%, var(--espresso-2) 100%); border: 1px solid var(--gold); }
.price-panel .panel-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 8px; }
.price-panel h3 { font-size: 30px; }
.price-panel.energie h3 { color: var(--cream-hi); }
.price-panel .panel-tag { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); }
.price-panel.energie .panel-tag { color: var(--gold); }
.price-panel > p.panel-intro { font-size: 15px; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.price-panel.energie > p.panel-intro { color: rgba(252,250,248,0.72); border-color: rgba(194,166,122,0.25); }
.price-row { display: flex; justify-content: space-between; gap: 20px; padding: 16px 0; border-bottom: 1px dashed var(--line); }
.price-panel.energie .price-row { border-color: rgba(252,250,248,0.12); }
.price-row:last-of-type { border-bottom: none; }
.price-row .pr-name { font-size: 15.5px; }
.price-row .pr-name strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--ink); font-weight: 500; }
.price-panel.energie .price-row .pr-name strong { color: var(--cream-hi); }
.price-row .pr-name span { font-size: 13px; color: var(--ink-soft); }
.price-panel.energie .price-row .pr-name span { color: rgba(252,250,248,0.6); }
.price-row .pr-cost { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--gold-deep); white-space: nowrap; }
.price-panel.energie .price-row .pr-cost { color: var(--gold); }
.price-panel .btn { width: 100%; margin-top: 36px; }

/* ---- Portrait / Bio ---- */
.bio { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 80px; align-items: center; }
.portrait { position: relative; aspect-ratio: 3/4; }
.portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.portrait::after { content: ""; position: absolute; top: 22px; left: -22px; right: 22px; bottom: -22px; border: 1px solid var(--gold); z-index: -1; }
.bio h2 { font-size: clamp(36px, 4vw, 52px); margin-bottom: 8px; }
.bio .role { display: block; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 24px; }
.bio p { margin-bottom: 18px; }

/* ---- Galerie cabinet ---- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery figure { overflow: hidden; aspect-ratio: 3/4; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(0.2,0.8,0.2,1); }
.gallery figure:hover img { transform: scale(1.08); }
.gallery figure:nth-child(1), .gallery figure:nth-child(4) { aspect-ratio: 3/4; }

/* ---- Témoignages ---- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote { background: var(--card); border: 1px solid var(--line); padding: 40px 32px; }
.quote .mark { font-family: 'Cormorant Garamond', serif; font-size: 64px; color: var(--gold); line-height: 0.5; }
.quote p { font-style: italic; font-size: 17px; margin: 16px 0 24px; font-family: 'Cormorant Garamond', serif; color: var(--ink); }
.quote .who { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-deep); }

/* ---- FAQ ---- */
.faq { max-width: 760px; margin: 0 auto; }
details { border-bottom: 1px solid var(--line); }
summary {
  list-style: none; cursor: pointer; padding: 24px 40px 24px 0; position: relative;
  font-family: 'Cormorant Garamond', serif; font-size: 23px; color: var(--ink);
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 0; top: 22px; font-size: 26px; color: var(--gold-deep); transition: 0.3s; font-family: 'Jost', sans-serif; }
details[open] summary::after { transform: rotate(45deg); }
details .faq-body { font-size: 16px; padding: 0 0 24px; color: var(--ink-soft); }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.contact-info .ci-row { display: flex; gap: 18px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-info .ci-row:last-child { border-bottom: none; }
.contact-info svg { width: 22px; height: 22px; stroke: var(--gold-deep); fill: none; stroke-width: 1.3; flex: none; margin-top: 4px; }
.contact-info .ci-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); display: block; margin-bottom: 2px; }
.contact-info .ci-val { font-family: 'Cormorant Garamond', serif; font-size: 21px; color: var(--ink); text-decoration: none; }
.contact-info .ci-val:hover { color: var(--gold-deep); }
.contact-map { aspect-ratio: 4/3; border: 1px solid var(--line); }
.contact-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) sepia(0.1); }

/* ---- Footer final ---- */
.final-cta { background: var(--espresso-2); color: var(--cream-hi); padding: 110px 0 60px; text-align: center; position: relative; overflow: hidden; border-top: 1px solid rgba(194,166,122,0.2); }
.final-cta .emblem { margin: 0 auto 32px; animation: none; }
.final-cta h2 { font-size: clamp(34px, 5vw, 56px); max-width: 20ch; margin: 0 auto 24px; color: var(--cream-hi); }
.final-cta h2 em { color: var(--gold); }
.final-cta > .wrap > p { color: rgba(252,250,248,0.72); max-width: 52ch; margin: 0 auto 40px; }
.footer-meta { border-top: 1px solid rgba(194,166,122,0.15); margin-top: 80px; padding-top: 40px; }
.footer-cols { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 32px; text-align: left; margin-bottom: 40px; }
.footer-cols .fc-brand img { height: 76px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.9; margin-bottom: 18px; }
.footer-cols p, .footer-cols a { font-size: 14px; color: rgba(252,250,248,0.6); text-decoration: none; }
.footer-cols a:hover { color: var(--gold); }
.footer-cols h4 { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; font-weight: 500; }
.footer-cols ul { list-style: none; }
.footer-cols li { margin-bottom: 8px; }
.legal { font-size: 12px; color: var(--cream-hi); opacity: 0.72; max-width: 90ch; margin: 0 auto 16px; }
.copyright { font-size: 12px; color: var(--cream-hi); opacity: 0.62; letter-spacing: 0.05em; }

/* ---- Pages légales ---- */
.legal-page-main { padding-top: 150px; }
.legal-title { font-size: clamp(34px, 5vw, 52px); margin-bottom: 12px; }
.legal-content { max-width: 820px; margin: 40px auto 0; }
.legal-content h2 { font-size: clamp(24px, 3vw, 34px); margin: 48px 0 14px; }
.legal-content h3 { font-size: 21px; margin: 26px 0 8px; }
.legal-content p, .legal-content li { font-size: 16px; color: var(--ink-soft); margin-bottom: 12px; line-height: 1.7; }
.legal-content ul { padding-left: 22px; margin-bottom: 14px; }
.legal-content strong { color: var(--ink); }
.legal-content a { color: var(--gold-deep); }
.legal-id { list-style: none !important; padding: 26px 30px !important; margin: 0 0 14px; border: 1px solid var(--line-gold); background: var(--card); }
.legal-id li { margin-bottom: 10px; font-size: 15.5px; }
.legal-id li:last-child { margin-bottom: 0; }
.legal-note { font-size: 13px; font-style: italic; opacity: 0.75; border-left: 2px solid var(--gold); padding-left: 14px; margin: 18px 0; }
.legal-updated { margin-top: 48px; font-size: 13px; color: var(--gold-deep); letter-spacing: 0.04em; }

/* ---- Responsive ---- */
@media (max-width: 992px) {
  body { font-size: 16px; }
  .site-header { padding: 12px 0; }
  .brand img { height: 44px; width: auto; }
  .main-nav { display: none; }
  .btn-header-book span { display: none; }
  .btn-header-book svg { width: 24px; height: 24px; color: var(--gold); }

  section { padding: 80px 0; }
  .head { margin-bottom: 48px; }

  .hero { padding: 150px 0 70px; }
  .hero-bg { background-attachment: scroll; }
  .hero-card { padding: 56px 26px; }
  .hero-card p { font-size: 17px; }

  .reassurance { grid-template-columns: 1fr; margin: -30px 20px 0; }
  .reassurance div { border-right: none; border-bottom: 1px solid var(--line); }
  .reassurance div:last-child { border-bottom: none; }

  .trio, .care-grid, .quotes { grid-template-columns: 1fr; gap: 28px; }
  .duo, .energy-grid, .pricing-grid, .bio, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .app-block { margin-top: 64px; padding-top: 56px; }
  .app-grid { grid-template-columns: 1fr; gap: 48px; }
  .app-phones { order: -1; }
  .app-phones img { max-width: 180px; }
  .welcome-gift { flex-direction: column; gap: 14px; }
  .universe { min-height: 380px; padding: 36px; }
  .portrait { max-width: 420px; margin: 0 auto; }
  .portrait::after { left: -14px; bottom: -14px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }

  .actions { flex-direction: column; width: 100%; }
  .actions .btn { width: 100%; }
  .footer-cols { flex-direction: column; }
}
