/* ══════════════════════════════════════════════════════════════
   Cecilia Organise — Feuille de styles principale
   cecilia-organise.fr
   ══════════════════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --rose-poudre:   #E8C9D2;
  --creme-vanille: #F7EFE7;
  --taupe-chaud:   #B8A9A1;
  --dore-doux:     #D8C5A3;
  --rose-the:      #DDB7C2;
  --beige-rose:    #EDE3DD;
  --prune:         #8C6A78;
  --prune-dark:    #7A5C6A;
  --prune-light:   #A8889A;
  --gris-perle:    #F4F2F3;
  --anthracite:    #4A4444;
  --taupe-fonce:   #6B5F5A;
  --white:         #ffffff;
  --border:        rgba(232, 201, 210, 0.5);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', Arial, sans-serif;

  --max-width: 1200px;
  --section-py: 90px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;

  --shadow-soft: 0 4px 24px rgba(74, 68, 68, 0.07);
  --shadow-card: 0 2px 16px rgba(74, 68, 68, 0.08);
  --shadow-hover: 0 8px 40px rgba(74, 68, 68, 0.14);

  --transition: 0.28s ease;
  --transition-slow: 0.5s ease;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--anthracite);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; color: var(--anthracite); }
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); }
h4 { font-size: 1.15rem; font-weight: 600; }
p  { color: var(--taupe-fonce); line-height: 1.8; }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: var(--section-py) 0; }
.section-sm { padding: 60px 0; }
.bg-creme   { background: var(--creme-vanille); }
.bg-beige   { background: var(--beige-rose); }
.bg-perle   { background: var(--gris-perle); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--prune);
  margin-bottom: 12px;
}
.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p  { font-size: 1.05rem; }

/* ── Boutons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--prune);
  color: var(--white);
  border: 2px solid var(--prune);
}
.btn-primary:hover {
  background: var(--prune-dark);
  border-color: var(--prune-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(140, 106, 120, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--prune);
  border: 2px solid var(--prune);
}
.btn-outline:hover {
  background: var(--prune);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(140, 106, 120, 0.25);
}
.btn-light {
  background: var(--white);
  color: var(--prune);
  border: 2px solid var(--white);
}
.btn-light:hover {
  background: var(--rose-poudre);
  border-color: var(--rose-poudre);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 0.95rem; }

/* ── Top Bar ────────────────────────────────────────────────── */
.top-bar {
  background: var(--prune);
  color: rgba(255,255,255,0.92);
  font-size: 0.8rem;
  font-weight: 400;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color var(--transition);
}
.top-bar-item:hover { color: var(--rose-poudre); }
.top-bar-item i { font-size: 0.78rem; opacity: 0.8; }

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(247, 239, 231, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-soft); }
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo img { height: 160px; width: auto; margin-top: 18px; filter: drop-shadow(0 2px 6px rgba(160, 100, 110, 0.22)); }
.logo-fallback {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--prune);
  letter-spacing: -0.3px;
}
.logo-fallback span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--taupe-chaud);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links li a {
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--anthracite);
  border-radius: 50px;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}
.nav-links li a:hover,
.nav-links li a.active {
  color: var(--prune);
  background: rgba(140, 106, 120, 0.08);
}
.nav-cta {
  background: var(--prune) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
}
.nav-cta:hover {
  background: var(--prune-dark) !important;
  box-shadow: 0 4px 16px rgba(140, 106, 120, 0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--anthracite);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Dropdown nav ───────────────────────────────────────────── */
.has-dropdown { position: relative; }
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--anthracite);
  border-radius: 50px;
  transition: all var(--transition);
  letter-spacing: 0.3px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
}
.dropdown-toggle i { font-size: 0.65rem; transition: transform var(--transition); }
.dropdown-toggle:hover,
.has-dropdown.open .dropdown-toggle {
  color: var(--prune);
  background: rgba(140, 106, 120, 0.08);
}
.has-dropdown.open .dropdown-toggle i { transform: rotate(180deg); }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 8px 8px;
  box-shadow: var(--shadow-hover);
  min-width: 240px;
  z-index: 200;
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.has-dropdown.open .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--anthracite);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.dropdown-menu li a:hover { background: var(--creme-vanille); color: var(--prune); }
.dropdown-menu li a i { width: 16px; text-align: center; color: var(--prune); font-size: 0.82rem; }
.dropdown-sep { border-top: 1px solid var(--border); margin: 6px 4px; }

/* Instagram logo in footer */
.social-instagram-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

/* ── FAB ────────────────────────────────────────────────────── */
.fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.fab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  transition: all var(--transition);
}
.fab-btn:hover { transform: scale(1.1) translateY(-2px); }
.fab-tel    { background: var(--prune); }
.fab-tel:hover { background: var(--prune-dark); }
.fab-contact { background: var(--dore-doux); color: var(--anthracite) !important; }
.fab-contact:hover { background: #c4b08c; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  background: var(--creme-vanille);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,201,210,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,197,163,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--rose-poudre);
  color: var(--prune);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.hero-tag i { font-size: 0.75rem; }
.hero-content h1 {
  margin-bottom: 20px;
  color: var(--anthracite);
}
.hero-content h1 em {
  font-style: italic;
  color: var(--prune);
}
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--taupe-fonce);
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--taupe-fonce);
  font-weight: 400;
}
.hero-feature i { color: var(--prune); font-size: 0.85rem; }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-photo-wrap {
  position: relative;
  display: inline-block;
}
.hero-photo-circle {
  width: 440px;
  height: 480px;
  border-radius: 240px 240px 200px 200px;
  overflow: hidden;
  position: relative;
  background: var(--rose-poudre);
}
.hero-photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-deco-ring {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border-radius: 250px 250px 220px 220px;
  border: 2px solid var(--rose-poudre);
  pointer-events: none;
  opacity: 0.6;
}
.hero-badge {
  position: absolute;
  bottom: 30px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}
.hero-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--rose-poudre);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--prune);
  font-size: 1rem;
  flex-shrink: 0;
}
.hero-badge-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--prune);
}
.hero-badge-text span {
  font-size: 0.72rem;
  color: var(--taupe-chaud);
  font-weight: 400;
}
.hero-badge-2 {
  position: absolute;
  top: 30px;
  right: -24px;
  background: var(--prune);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: 0 8px 28px rgba(140, 106, 120, 0.35);
  color: var(--white);
  text-align: center;
  min-width: 130px;
}
.hero-badge-2 strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.hero-badge-2 span {
  font-size: 0.7rem;
  opacity: 0.8;
}

/* ── Services Grid ──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose-poudre), var(--prune));
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--rose-poudre);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--creme-vanille);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--prune);
  font-size: 1.2rem;
  margin-bottom: 20px;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--prune);
  color: var(--white);
}
.service-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.service-card p { font-size: 0.9rem; line-height: 1.7; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--prune);
  transition: gap var(--transition);
}
.service-link:hover { gap: 10px; }

/* ── Différenciateurs ───────────────────────────────────────── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.diff-item {
  text-align: center;
  padding: 28px 20px;
}
.diff-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--rose-poudre);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--prune);
  font-size: 1.4rem;
  margin: 0 auto 18px;
}
.diff-item h3 { font-size: 1.1rem; margin-bottom: 10px; }
.diff-item p { font-size: 0.9rem; }

/* ── Processus ──────────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--rose-poudre), var(--prune));
  opacity: 0.4;
}
.p-step { text-align: center; position: relative; }
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--prune);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(140, 106, 120, 0.35);
}
.p-step h4 { margin-bottom: 8px; font-size: 1rem; }
.p-step p { font-size: 0.88rem; }

/* ── Zone d'intervention ────────────────────────────────────── */
.zone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.zone-content h2 { margin-bottom: 16px; }
.zone-content p { margin-bottom: 24px; }
.zone-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.zone-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--rose-poudre);
  color: var(--anthracite);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}
.zone-tag i { color: var(--prune); font-size: 0.75rem; }
.zone-visual {
  background: linear-gradient(135deg, var(--rose-poudre) 0%, var(--beige-rose) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}
.zone-visual-inner {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.zone-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.zone-stat { text-align: center; }
.zone-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--prune);
  font-weight: 700;
}
.zone-stat span { font-size: 0.82rem; color: var(--taupe-fonce); }

/* ── FAQ Accordion ──────────────────────────────────────────── */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--anthracite);
  cursor: pointer;
  transition: background var(--transition);
  gap: 12px;
}
.faq-question:hover { background: var(--gris-perle); }
.faq-question.active { color: var(--prune); background: rgba(140, 106, 120, 0.05); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--creme-vanille);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--prune);
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-question.active .faq-icon {
  background: var(--prune);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open { max-height: 300px; }
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--taupe-fonce);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ── Témoignages ────────────────────────────────────────────── */
.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.temoignage-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  position: relative;
}
.temoignage-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--rose-poudre);
  line-height: 1;
  position: absolute;
  top: 16px;
  left: 24px;
  opacity: 0.7;
}
.stars { color: #D8A44A; font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 16px; }
.temoignage-text {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--taupe-fonce);
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.temoignage-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--prune);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.author-name { font-size: 0.88rem; font-weight: 700; margin-bottom: 2px; }
.author-loc  { font-size: 0.78rem; color: var(--taupe-chaud); display: flex; align-items: center; gap: 4px; }

/* ── CTA Band ───────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--prune) 0%, var(--prune-dark) 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p  { color: rgba(255,255,255,0.78); max-width: 560px; margin: 0 auto 32px; font-size: 1.05rem; }
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--anthracite);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-top: 16px;
  margin-bottom: 20px;
  max-width: 280px;
}
.footer-logo { height: 160px; width: auto; filter: drop-shadow(0 2px 5px rgba(160, 100, 110, 0.18)); }
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--prune); color: var(--white); transform: translateY(-2px); }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--rose-poudre); }
.footer-contact p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact p i { color: var(--rose-poudre); flex-shrink: 0; margin-top: 4px; font-size: 0.8rem; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--rose-poudre); }

/* ── Page Heroes (sous-pages) ───────────────────────────────── */
.page-hero {
  background: var(--creme-vanille);
  padding: 60px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,201,210,0.4) 0%, transparent 70%);
  pointer-events: none;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--taupe-chaud);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--prune); font-weight: 600; }
.breadcrumb i { font-size: 0.65rem; }
.page-hero h1 { margin-bottom: 12px; font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.page-hero p  { max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

/* ── Services page ──────────────────────────────────────────── */
.services-list { display: flex; flex-direction: column; gap: 40px; }
.service-full {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1fr 1.8fr;
}
.service-full.reverse { direction: rtl; }
.service-full.reverse > * { direction: ltr; }
.service-full-img {
  min-height: 300px;
  overflow: hidden;
  position: relative;
}
.service-full-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-slow);
}
.service-full:hover .service-full-img img { transform: scale(1.04); }
.service-full-body {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-full-body .service-icon { margin-bottom: 16px; }
.service-full-body h3 { font-size: 1.5rem; margin-bottom: 14px; }
.service-full-body p { margin-bottom: 20px; }
.service-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.service-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--taupe-fonce);
}
.service-detail i { color: var(--prune); font-size: 0.8rem; flex-shrink: 0; }

/* Tarifs */
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.tarif-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  position: relative;
  transition: all var(--transition);
}
.tarif-card.featured {
  border-color: var(--prune);
  box-shadow: 0 8px 40px rgba(140, 106, 120, 0.2);
}
.tarif-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--prune);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.tarif-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--creme-vanille);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--prune);
  font-size: 1.3rem;
  margin: 0 auto 16px;
}
.tarif-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.tarif-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--prune);
  line-height: 1;
  margin: 12px 0 4px;
}
.tarif-price span { font-size: 1rem; font-weight: 400; }
.tarif-note { font-size: 0.8rem; color: var(--taupe-chaud); margin-bottom: 20px; }
.tarif-features { list-style: none; text-align: left; }
.tarif-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--taupe-fonce);
  margin-bottom: 10px;
}
.tarif-features li i { color: var(--prune); font-size: 0.75rem; flex-shrink: 0; }

/* ── À propos ────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-photo {
  position: relative;
}
.about-photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  aspect-ratio: 4/5;
}
.about-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.about-photo-deco {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-poudre), var(--dore-doux));
  z-index: -1;
}
.about-photo-badge {
  position: absolute;
  top: 20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-hover);
  font-size: 0.82rem;
}
.about-photo-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--prune);
}
.about-photo-badge span { color: var(--taupe-chaud); }
.about-content .section-label { margin-bottom: 10px; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { margin-bottom: 16px; }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.about-value {
  background: var(--creme-vanille);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  border-left: 3px solid var(--prune);
}
.about-value h4 { font-size: 0.9rem; margin-bottom: 4px; color: var(--prune); }
.about-value p  { font-size: 0.83rem; margin: 0; }

/* ── Contact ────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form-wrap { background: var(--white); border-radius: var(--radius-md); padding: 48px; box-shadow: var(--shadow-soft); border: 1px solid var(--border); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--anthracite);
  letter-spacing: 0.3px;
}
.form-group label .req { color: var(--prune); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--anthracite);
  background: var(--white);
  transition: all var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--prune);
  box-shadow: 0 0 0 3px rgba(140, 106, 120, 0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--taupe-chaud); }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238C6A78' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; padding-right: 40px; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note {
  font-size: 0.78rem;
  color: var(--taupe-chaud);
  margin-top: 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  background: rgba(140, 106, 120, 0.08);
  border-radius: var(--radius-md);
  border: 1px solid var(--rose-poudre);
}
.form-success i { font-size: 2.5rem; color: var(--prune); margin-bottom: 12px; display: block; }
.form-success h3 { margin-bottom: 8px; color: var(--prune); }
.form-success p { font-size: 0.9rem; }

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  background: var(--creme-vanille);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  border: 1px solid var(--border);
}
.contact-info-card h3 { font-size: 1.1rem; margin-bottom: 16px; color: var(--prune); }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}
.contact-info-item:last-child { margin-bottom: 0; }
.ci-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--rose-poudre);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--prune);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.ci-text strong { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 2px; }
.ci-text span   { font-size: 0.85rem; color: var(--taupe-fonce); }
.ci-text a { color: var(--prune); font-weight: 600; }

/* ── Mentions légales ───────────────────────────────────────── */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-section { margin-bottom: 48px; }
.legal-section h2 { font-size: 1.5rem; color: var(--prune); border-bottom: 2px solid var(--rose-poudre); padding-bottom: 12px; margin-bottom: 20px; }
.legal-section h3 { font-size: 1.1rem; margin: 20px 0 10px; }
.legal-section p  { margin-bottom: 12px; font-size: 0.92rem; }
.legal-section ul { list-style: disc; padding-left: 20px; }
.legal-section ul li { font-size: 0.92rem; color: var(--taupe-fonce); margin-bottom: 8px; }
.legal-placeholder {
  background: var(--creme-vanille);
  border: 2px dashed var(--rose-poudre);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-size: 0.88rem;
  color: var(--prune);
  font-style: italic;
  display: inline-block;
  margin: 4px 0;
}

/* ── Espaces grid ───────────────────────────────────────────── */
.espaces-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .espaces-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Animations ─────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ── Media Queries ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .temoignages-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero .container { grid-template-columns: 1fr 380px; gap: 40px; }
  .hero-photo-circle { width: 360px; height: 400px; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-full { grid-template-columns: 1fr; }
  .service-full.reverse { direction: ltr; }
  .tarifs-grid { grid-template-columns: 1fr; max-width: 420px; }
  .about-grid { gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-py: 60px; }
  .top-bar { display: none; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(247, 239, 231, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    gap: 4px;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: 10px 16px; display: block; border-radius: var(--radius-sm); font-size: 0.95rem; }
  .nav-links li { width: 100%; }
  .nav-cta { display: block; text-align: center; }
  .hamburger { display: flex; }
  .has-dropdown:hover .dropdown-menu { display: none; }
  .has-dropdown.open .dropdown-menu {
    display: block;
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--rose-poudre);
    border-radius: 0;
    margin-left: 20px;
    padding: 4px 0;
    background: transparent;
  }
  .dropdown-menu::before { display: none; }
  .dropdown-toggle { width: 100%; border-radius: var(--radius-sm); font-size: 0.95rem; padding: 10px 16px; }
  .dropdown-menu li a { font-size: 0.9rem; }

  .hero .container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero { padding: 50px 0 60px; }
  .hero-content { order: 2; }
  .hero-visual  { order: 1; display: flex; justify-content: center; }
  .hero-photo-circle { width: 280px; height: 320px; }
  .hero-badge { left: 50%; transform: translateX(-50%); }
  .hero-badge-2 { top: -16px; right: 0; }
  .hero-sub { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-features { align-items: flex-start; }

  .services-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .zone-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .temoignages-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-badge { left: 10px; }
  .about-photo-deco { display: none; }
  .about-values { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .contact-form-wrap { padding: 28px 20px; }
  .hero-badge-2 { display: none; }
  .hero-badge   { display: none; }
  .top-bar-left { display: none; }
  .container { padding: 0 20px; }
  .fab { bottom: 16px; right: 16px; }
  .service-full-body { padding: 28px 24px; }
  .zone-stat-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  .hero-photo-circle { width: 240px; height: 280px; }
  .process-steps { grid-template-columns: 1fr; }
  .btn-lg { padding: 14px 26px; font-size: 0.9rem; }
  .hero-actions { flex-direction: column; align-items: stretch; text-align: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}
