/* =========================================================
   NORD MARIAGE — Design system "Haut de gamme"
   Anthracite / rose poudré / Bodoni Moda + Manrope
   ========================================================= */

@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url('../fonts/Quicksand/regular.ttf') format('truetype');
}

:root {
  /* Fond */
  --bg: #0D0F13;
  --panel: #15171C;
  --panel-2: #1A1C22;
  --line: rgba(248, 247, 245, 0.08);
  --line-soft: rgba(248, 247, 245, 0.05);

  /* Texte */
  --title: #F8F7F5;
  --text: #C9C9C9;
  --text-dim: rgba(201, 201, 201, 0.6);

  /* Identité */
  --blush: #D89B9E;
  --blush-light: #EBC5C8;
  --violet: #6E4A73;
  --gold: #D6B25E;   /* réservé exclusivement aux étoiles / notes Google */
  --sage: #8E9B88;   /* réservé aux badges de réassurance et avis */
  --sage-bg: rgba(142, 155, 136, 0.12);

  --grad-blush: linear-gradient(135deg, var(--blush), var(--blush-light));
  --grad-hero: linear-gradient(90deg, rgba(12,12,15,.85) 0%, rgba(12,12,15,.55) 55%, rgba(12,12,15,.32) 100%);
  --grad-violet: linear-gradient(160deg, #17121b 0%, #2c1f33 45%, var(--violet) 100%);

  --shadow-soft: 0 12px 40px rgba(0,0,0,.18);
  --shadow-strong: 0 20px 60px rgba(0,0,0,.32);

  --radius: 16px;
  --radius-btn: 14px;

  --font-title: 'Bodoni Moda', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: 'Allura', 'Great Vibes', cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 600;
  font-optical-sizing: auto;
  line-height: 1.18;
  letter-spacing: .01em;
  margin: 0 0 .5em;
  color: var(--title);
}
h1 { font-weight: 500; }
p { margin: 0 0 1.1em; color: var(--text); }
ul { margin: 0; padding: 0; list-style: none; }
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.hand {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--blush-light);
  font-size: 1.7em;
  line-height: 1;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 100px;
  background: rgba(216, 155, 158, 0.1);
  border: 1px solid rgba(216, 155, 158, 0.25);
  color: var(--blush-light);
}
.eyebrow.sage {
  background: var(--sage-bg);
  border-color: rgba(142, 155, 136, 0.3);
  color: var(--sage);
}
.eyebrow .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blush); }
.eyebrow.sage .dot { background: var(--sage); }

.grad-text {
  background: var(--grad-blush);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .02em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-blush);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { transform: scale(1.02) translateY(-1px); box-shadow: var(--shadow-strong); background: var(--blush-light); }
.btn-outline {
  background: transparent;
  border-color: rgba(248,247,245,.28);
  color: var(--title);
}
.btn-outline:hover { border-color: var(--blush-light); color: var(--blush-light); transform: scale(1.02); }
.btn-outline.on-dark { border-color: rgba(255,255,255,.3); color: var(--white, #fff); }
.btn-outline.on-dark:hover { border-color: var(--blush-light); color: var(--blush-light); }
.btn-sm { padding: 12px 24px; font-size: .82rem; }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 15, 19, .32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.site-header.scrolled {
  background: rgba(15, 15, 18, .85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--title);
}
.brand img { height: 40px; width: auto; }
.brand-word {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: .01em;
  color: var(--title);
  line-height: 1;
}
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > ul { display: flex; align-items: center; gap: 2px; }
.main-nav a.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  border-radius: 100px;
  font-weight: 500;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  transition: background .25s, color .25s;
}
.main-nav a.nav-link:hover, .main-nav li.active > a.nav-link {
  background: rgba(216,155,158,.1);
  color: var(--blush-light);
}
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 260px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-strong);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: .87rem;
  font-weight: 500;
  color: var(--text);
}
.dropdown a:hover { background: rgba(216,155,158,.08); color: var(--blush-light); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.phone-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid var(--line);
  font-weight: 500;
  font-size: .82rem;
  color: var(--text);
  transition: border-color .25s, color .25s;
}
.phone-pill:hover { border-color: var(--blush); color: var(--blush-light); }
.burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: transparent;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.burger span, .burger span::before, .burger span::after {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--title);
  position: relative;
  transition: .2s;
}
.burger span::before { position: absolute; top: -6px; width: 18px; }
.burger span::after { position: absolute; top: 6px; width: 18px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--grad-violet);
  color: var(--title);
  overflow: hidden;
  padding: 130px 0 100px;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hero-img, none);
  background-size: cover;
  background-position: center;
  transform: scale(1.05) translateY(var(--hero-shift, 0px));
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  align-items: center;
}
.hero-inner { max-width: 640px; }
.hero-sm { min-height: 58vh; padding: 150px 0 64px; }
.hero-sm .hero-carousel { aspect-ratio: 5 / 4; }
@media (max-width: 1024px) {
  .hero-sm { min-height: auto; }
}
.hero-inner .hand { display: block; margin-bottom: 6px; }
.hero-emotion {
  display: block;
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.8vw, 2.15rem);
  color: var(--blush-light);
  margin: 4px 0 2px;
  line-height: 1;
}
.hero h1 {
  color: var(--title);
  font-size: clamp(2.4rem, 4.6vw, 3.9rem);
  margin: 14px 0 22px;
  font-weight: 500;
}
.hero h1 em {
  font-style: normal;
  color: var(--blush-light);
}
.hero p.lead {
  font-family: var(--font-body);
  font-size: 1.08rem;
  color: rgba(248,247,245,.78);
  max-width: 600px;
  margin-bottom: 34px;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 70px;
  padding-top: 40px;
  border-top: 1px solid rgba(248,247,245,.12);
  position: relative;
  z-index: 2;
}
.hero-stat { padding-right: 18px; }
.hero-stat b,
.hero-stat .stat-priority-word {
  display: block;
  font-family: var(--font-title);
  font-size: clamp(2.1rem, 2.6vw, 2.5rem);
  font-weight: 600;
  color: var(--title);
  letter-spacing: -.01em;
  line-height: 1;
  margin-bottom: 10px;
}
.hero-stat b.sage-num { color: var(--sage); }
.hero-stat span { font-size: .78rem; color: rgba(248,247,245,.55); letter-spacing: .02em; }

.hero-stat.stat-main b { color: var(--blush-light); }
.stat-count { display: inline-block; transition: filter .25s ease; }
.stat-count.counting { filter: blur(4px); }

.hero-stat .stat-priority-word { color: var(--blush-light); }

/* ---------- Hero carousel ---------- */
.hero-carousel {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(248, 247, 245, .14);
  background: var(--panel);
}
.hero-carousel-track { position: absolute; inset: 0; }
.hero-carousel-track .hc-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.4s ease, transform 7s ease;
  filter: saturate(.9) contrast(1.06);
  z-index: 1;
}
.hero-carousel-track .hc-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}
.hero-carousel::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 46%;
  background: linear-gradient(to top, rgba(8,8,10,.7), rgba(8,8,10,0));
  z-index: 3;
  pointer-events: none;
}
.hero-carousel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  box-shadow: inset 0 0 0 1px rgba(216,155,158,.16);
  z-index: 4;
  pointer-events: none;
}
.hero-carousel-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 5;
  background: rgba(15,15,18,.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(248,247,245,.18);
}
.hero-carousel-tag .hand { font-size: 1.25rem; color: var(--blush-light); }
.hero-carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 5;
}
.hc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(248,247,245,.35);
  transition: all .35s ease;
  cursor: pointer;
}
.hc-dot.active { background: var(--blush-light); width: 22px; border-radius: 100px; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--panel);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  color: var(--text);
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0;
  position: relative;
}
.marquee-track {
  display: inline-flex;
  gap: 44px;
  animation: marquee 36s linear infinite;
}
.marquee span {
  font-family: var(--font-title);
  font-weight: 500;
  font-style: italic;
  letter-spacing: .02em;
  font-size: 1.05rem;
  color: var(--text-dim);
}
.marquee span.gold { color: var(--blush); font-family: var(--font-body); font-style: normal; font-size: .9rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
section { padding: 110px 0; position: relative; }
.section-white { background: var(--panel); }
.section-lav { background: var(--bg); }

/* Section claire "blanc cassé" — alterne le rythme sombre/clair du site.
   Redéfinit les tokens de couleur localement : tous les composants enfants
   (cartes, prix, FAQ, liens...) s'adaptent automatiquement via les variables CSS. */
.section-cream {
  --bg: #F8F7F5;
  --panel: #FFFFFF;
  --panel-2: #F3F1EE;
  --line: rgba(21,23,28,.1);
  --line-soft: rgba(21,23,28,.06);
  --title: #1A1A1D;
  --text: #17171A;
  --text-dim: rgba(17,17,19,.78);
  --blush: #C9767D;
  --blush-light: #B15C63;
  background: var(--bg);
}
.section-cream .btn-outline { border-color: rgba(21,23,28,.22); }
.section-cream .btn-outline.on-dark { border-color: rgba(21,23,28,.22); color: var(--title); }
.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); font-weight: 500; }
.section-head p { color: var(--text-dim); font-size: 1.02rem; }

.diagonal-top, .diagonal-bottom { clip-path: none; }
.band-grad {
  background: var(--grad-violet);
  color: var(--title);
  padding: 80px 0;
}
.band-grad h2, .band-grad h3 { color: var(--title); }
.band-grad p { color: rgba(248,247,245,.78); }

/* Fade up (JS ajoute .in) */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease, border-color .4s ease;
  border: 1px solid var(--line);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); border-color: rgba(216,155,158,.25); }
.card-media { aspect-ratio: 4/3; overflow: hidden; background: var(--panel-2); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; filter: saturate(.94) contrast(1.04); }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 26px; }
.card-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card-body p { color: var(--text-dim); font-size: .92rem; margin-bottom: 0; }

/* Forfait pricing cards */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.price-card {
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: transform .4s ease, border-color .4s ease;
}
.price-card:hover { transform: translateY(-4px); border-color: rgba(216,155,158,.2); }
.price-card.featured {
  background: linear-gradient(165deg, #201820 0%, var(--panel) 60%);
  border: 1px solid rgba(216,155,158,.35);
  box-shadow: var(--shadow-strong);
}
.price-card.featured .badge { background: var(--grad-blush); color: #fff; border-color: transparent; }
.price-card .badge {
  align-self: flex-start;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text-dim);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.price-card h3 { font-size: 1.35rem; margin-bottom: 2px; font-weight: 500; }
.price-card .price { font-family: var(--font-title); font-size: 2.3rem; font-weight: 600; color: var(--blush-light); margin-bottom: 4px; }
.price-card .price small { font-size: .95rem; font-weight: 500; opacity: .7; }
.price-card .cap { font-size: .8rem; color: var(--text-dim); margin-bottom: 20px; }
.price-card ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; flex: 1; }
.price-card > a.btn { margin-top: auto; }
.price-card li {
  font-size: .87rem;
  color: var(--text);
  padding-left: 22px;
  position: relative;
}
.price-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blush);
}

/* Option list cards */
.option-card {
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease, border-color .4s ease;
}
.option-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-strong); border-color: rgba(216,155,158,.25); }
.option-card .thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  flex: none;
  overflow: hidden;
  background: var(--panel-2);
}
.option-card .thumb img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.94) contrast(1.04); transition: transform .6s ease; }
.option-card:hover .thumb img { transform: scale(1.05); }
.option-card > div:last-child { padding: 22px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.option-card .head { display: flex; justify-content: space-between; gap: 10px; align-items: baseline; }
.option-card h4 { font-size: 1.12rem; margin: 0 0 8px; font-weight: 500; }
.option-card .tag {
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--blush-light);
  white-space: nowrap;
  font-size: 1.1rem;
}
.option-card p { font-size: .9rem; color: var(--text-dim); margin: 0; line-height: 1.6; }

/* FAQ accordion */
.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-btn);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 26px;
  font-family: var(--font-title);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--title);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--blush);
  flex: none;
  transition: transform .3s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 26px 24px; color: var(--text-dim); font-size: .93rem; }
.faq-item .faq-a p { margin-bottom: .8em; }

/* Testimonials */
.avis-band {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  background: var(--panel);
  border: 1px solid var(--sage-bg);
  border-radius: var(--radius);
  padding: 30px 34px;
  box-shadow: var(--shadow-soft);
}
.avis-score { display: flex; align-items: baseline; gap: 10px; }
.avis-score b { font-family: var(--font-title); font-size: 2.4rem; font-weight: 600; color: var(--title); }
.stars { color: var(--gold); letter-spacing: 2px; font-size: .95rem; }

/* Badges de réassurance (vert sauge) */
.trust-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; }
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 100px;
  background: var(--sage-bg);
  border: 1px solid rgba(142,155,136,.28);
  color: var(--sage);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.trust-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); }

/* Timeline (agence) */
.timeline { border-left: 1px solid var(--line); padding-left: 32px; display: flex; flex-direction: column; gap: 38px; }
.timeline .t-item { position: relative; }
.timeline .t-item::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 6px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--blush);
  box-shadow: 0 0 0 5px rgba(216,155,158,.14);
}
.timeline .t-year { font-family: var(--font-title); font-weight: 600; color: var(--blush-light); font-size: 1rem; letter-spacing: .02em; }

/* CTA band */
.cta-band {
  background: var(--grad-violet);
  color: var(--title);
  border-radius: 28px;
  padding: 70px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(216,155,158,.15);
}
.cta-band h2 { color: var(--title); }
.cta-band p { color: rgba(248,247,245,.75); max-width: 560px; margin: 0 auto 32px; }
.cta-band .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Studio feature block */
.studio-block {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
  background: var(--panel);
  border-radius: 28px;
  padding: 56px;
  box-shadow: var(--shadow-strong);
  border: 1px solid var(--line);
}
.studio-block .mock {
  background: var(--grad-violet);
  border-radius: var(--radius);
  padding: 34px;
  color: #F8F7F5;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  border: 1px solid rgba(216,155,158,.15);
}
.studio-block .mock .bar { height: 8px; border-radius: 6px; background: rgba(248,247,245,.14); }
.studio-block .mock .bar.w60 { width: 60%; }
.studio-block .mock .bar.w80 { width: 80%; }
.studio-block .mock .bar.w40 { width: 40%; }
.studio-block .mock .chip {
  align-self: flex-start;
  background: var(--grad-blush);
  color: #fff;
  font-weight: 600;
  font-size: .76rem;
  padding: 9px 18px;
  border-radius: 100px;
  margin-top: 12px;
}
.studio-list { display: flex; flex-direction: column; gap: 16px; margin: 26px 0 32px; }
.studio-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: .93rem;
  color: var(--text);
}
.studio-list li .ic {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(216,155,158,.12);
  color: var(--blush-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-title); font-weight: 600; font-size: .8rem;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--panel); border-top: 1px solid var(--line-soft); color: var(--text-dim); padding: 80px 0 30px; }

/* ---------- Footer : infographie "Zones d'intervention" ---------- */
.footer-closer {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 56px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--line-soft);
}
.footer-map-eyebrow { font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--blush-light); margin-bottom: 14px; display: block; }
.footer-map-title {
  font-family: var(--font-title);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--title);
  line-height: 1.15;
  margin: 0 0 18px;
}
.footer-map-text { font-size: .93rem; color: var(--text-dim); max-width: 420px; margin-bottom: 24px; }
.footer-map-legend { display: flex; flex-direction: column; gap: 14px; margin-bottom: 22px; }
.legend-item { display: flex; align-items: flex-start; gap: 12px; }
.legend-dot { width: 11px; height: 11px; border-radius: 50%; margin-top: 4px; flex: none; }
.legend-dot.rose { background: var(--blush-light); box-shadow: 0 0 0 4px rgba(216,155,158,.15); }
.legend-dot.sage { background: var(--sage); box-shadow: 0 0 0 4px rgba(142,155,136,.15); }
.legend-item strong { display: block; font-size: .87rem; color: var(--title); font-weight: 600; margin-bottom: 2px; }
.legend-item span { font-size: .8rem; color: var(--text-dim); }
.footer-map-cities { font-size: .88rem; color: var(--text-dim); max-width: 420px; margin-bottom: 12px; }
.footer-map-cities span { color: var(--title); font-weight: 600; }
.footer-map-reassurance { font-size: .85rem; font-style: italic; color: var(--blush-light); margin-bottom: 0; }
.footer-msl {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  opacity: .8;
}
.footer-msl img { height: 20px; width: auto; opacity: .8; }
.footer-msl span { font-size: .76rem; color: var(--text-dim); }

/* Carte SVG */
.footer-map-card {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.footer-map-card svg { width: 100%; height: auto; display: block; overflow: visible; }
.footer-map-outline { fill: none; stroke: rgba(248,247,245,.07); stroke-width: 1; }
.footer-map-border-be { fill: none; stroke: rgba(216,155,158,.16); stroke-width: 1; stroke-dasharray: 1 4; stroke-linecap: round; }
.footer-map-line {
  stroke: rgba(216,155,158,.3);
  stroke-width: 1;
  stroke-dasharray: 3 4;
  opacity: 0;
  transition: opacity 1s ease;
}
.footer-map-card.map-in .footer-map-line { opacity: 1; }
.footer-map-city {
  opacity: 0;
  transform: scale(.7);
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity .6s ease, transform .6s cubic-bezier(.2,.8,.2,1);
}
.footer-map-card.map-in .footer-map-city { opacity: 1; transform: scale(1); }
.footer-map-pin { transform-box: fill-box; transform-origin: center; transition: transform .3s ease; }
.footer-map-pin.rose { fill: var(--blush-light); }
.footer-map-pin.sage { fill: var(--sage); }
.footer-map-pin.home { fill: var(--sage); }
.footer-map-pin-glow { filter: blur(4px); opacity: .3; }
.footer-map-pin-glow.rose { fill: var(--blush-light); }
.footer-map-pin-glow.sage { fill: var(--sage); }
.footer-map-pin-glow.home { fill: var(--sage); animation: mapHomePulse 4s ease-in-out infinite; }
@keyframes mapHomePulse {
  0%, 100% { opacity: .28; }
  50% { opacity: .55; }
}
.footer-map-label { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: .02em; fill: var(--text-dim); transition: fill .3s ease; }
.footer-map-label.home-label { fill: var(--sage); font-weight: 700; font-size: 10.5px; }
.footer-map-city:hover .footer-map-pin { transform: scale(1.5); }
.footer-map-city.rose:hover .footer-map-label { fill: var(--blush-light); }
.footer-map-city.sage:hover .footer-map-label,
.footer-map-city.home:hover .footer-map-label { fill: var(--sage); }

.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 56px; }
.footer-brand p { color: var(--text-dim); font-size: .88rem; max-width: 280px; margin-top: 16px; }
.site-footer h5 {
  color: var(--title);
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 20px;
}
.site-footer ul { display: flex; flex-direction: column; gap: 11px; }
.site-footer a { color: var(--text-dim); font-size: .9rem; transition: color .25s; }
.site-footer a:hover { color: var(--blush-light); }
.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .78rem;
  color: rgba(201,201,201,.4);
}
.social-row { display: flex; gap: 10px; flex-wrap: wrap; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(248,247,245,.04);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.social-row a:hover { background: rgba(216,155,158,.12); color: var(--blush-light); border-color: rgba(216,155,158,.3); transform: translateY(-2px); }
.social-row svg { display: block; }

/* ---------- Utilities ---------- */
.mt-0{margin-top:0}.mb-0{margin-bottom:0}
.text-center{text-align:center}
.flex{display:flex}
.gap-10{gap:10px}
.items-center{align-items:center}
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.tag-list span {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text-dim);
  font-size: .78rem;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 100px;
}
.breadcrumb { font-size: .78rem; color: rgba(248,247,245,.5); margin-bottom: 18px; letter-spacing: .04em; text-transform: uppercase; }
.breadcrumb a { color: rgba(248,247,245,.7); font-weight: 600; }

/* ---------- Article de blog (contenu long format) ---------- */
.article-body { font-size: 1.02rem; }
.article-body p { margin: 0 0 1.3em; }
.article-body h2 {
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  margin: 1.8em 0 .6em;
  font-weight: 500;
}
.article-body h3 {
  font-size: 1.25rem;
  margin: 1.6em 0 .5em;
  font-weight: 600;
  color: var(--blush-light);
}
.article-body h2:first-child, .article-body h3:first-child { margin-top: 0; }
.article-signature {
  margin-top: 3em;
  padding: 34px 36px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}
.article-signature .hand { display: block; font-size: 2.2rem; margin-bottom: 6px; }
.article-signature p { font-size: .95rem; color: var(--text-dim); margin: 0 0 .6em; }
.article-signature p:last-child { margin-bottom: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .studio-block { grid-template-columns: 1fr; padding: 40px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
  .hero-grid { grid-template-columns: 1.2fr .8fr; gap: 40px; }
  .hero-carousel { aspect-ratio: 3 / 4; }
}
@media (max-width: 860px) {
  .main-nav { display: none; }
  .burger { display: flex; }
  .header-cta .btn { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 34px; }
  .cta-band { padding: 48px 28px; }
  .hero { min-height: auto; padding: 110px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-closer { grid-template-columns: 1fr; gap: 34px; padding-bottom: 40px; margin-bottom: 40px; }
  .hero-carousel { aspect-ratio: 16 / 10; max-width: 460px; }
}
@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  section { padding: 70px 0; }
  .studio-block { padding: 30px 24px; }
  .container { padding: 0 20px; }
}
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; row-gap: 22px; }
  .hero-stat { padding-right: 0; padding-bottom: 18px; border-bottom: 1px solid rgba(248,247,245,.1); }
  .hero-stat:last-child { padding-bottom: 0; border-bottom: none; }
  .footer-map-card { padding: 18px; }
}

/* Mobile nav panel */
.mobile-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(340px, 86vw);
  background: var(--panel);
  border-left: 1px solid var(--line);
  z-index: 200;
  padding: 28px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  box-shadow: -20px 0 60px rgba(0,0,0,.4);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; margin-top: 22px; }
.mobile-nav a { display: block; padding: 13px 8px; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--line); }
.mobile-nav .sub { padding-left: 14px; }
.mobile-nav .sub a { font-weight: 500; font-size: .92rem; color: var(--blush-light); border-bottom: none; }
.nav-scrim { position: fixed; inset: 0; background: rgba(4,4,6,.6); z-index: 190; opacity: 0; visibility: hidden; transition: .25s; }
.nav-scrim.open { opacity: 1; visibility: visible; }
.mobile-close { background: none; border: none; font-size: 1.3rem; color: var(--blush-light); float: right; cursor: pointer; }
