/* ============================================================
   RETOUCHERIE MISHA — FEUILLE DE STYLE GLOBALE
   Version : 1.0
   Auteur  : Retoucherie Misha
   Couvre  : Homepage, pages services, pages villes
   ============================================================ */

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: 'Manrope', sans-serif;
  background-color: #FAF8FC;
  color: #2C2733;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --bg-primary:   #FAF8FC;
  --bg-secondary: #FFFDFC;
  --text-main:    #2C2733;
  --text-muted:   #6B6473;
  --cta-primary:  #7B61C8;
  --cta-hover:    #6A52B5;
  --accent:       #A9D6B5;
  --border:       #E8E2F1;
  --white:        #FFFFFF;
  --dark:         #282235;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Manrope', system-ui, sans-serif;
  --radius:       12px;
  --shadow-sm:    0 1px 3px rgba(44,39,51,0.06), 0 1px 2px rgba(44,39,51,0.04);
  --shadow-md:    0 4px 16px rgba(44,39,51,0.08), 0 2px 6px rgba(44,39,51,0.05);
  --transition:   0.25s ease;
}

/* ============================================================
   TYPOGRAPHIE
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-main);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
p  { color: var(--text-muted); font-size: 0.95rem; }

/* ============================================================
   LAYOUT UTILITAIRES
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 80px 0;
}
.section--alt {
  background-color: var(--bg-secondary);
}
.section--dark {
  background-color: var(--dark);
  color: var(--white);
}
.section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cta-primary);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 48px;
}
.divider {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 20px 0 40px;
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ============================================================
   BOUTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--cta-primary);
  color: var(--white);
  border-color: var(--cta-primary);
}
.btn-primary:hover {
  background: var(--cta-hover);
  border-color: var(--cta-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(123,97,200,0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border-color: var(--border);
}
.btn-secondary:hover {
  border-color: var(--text-main);
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  border-color: #1ebe5a;
  transform: translateY(-1px);
}
.btn-sm {
  padding: 10px 20px;
  font-size: 0.8rem;
}
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ============================================================
   BADGES
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  color: var(--text-muted);
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cta-primary);
}
.badge-dark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
}
.badge-dark-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247,243,238,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled {
  box-shadow: 0 2px 20px rgba(44,39,51,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--cta-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mark svg { width: 20px; height: 20px; fill: white; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-main);
}
.logo-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 10px;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav a:hover,
.nav a.active {
  color: var(--text-main);
  background: rgba(44,39,51,0.05);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 7px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.header-phone:hover { border-color: var(--text-main); }
.header-phone svg { width: 14px; height: 14px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: none;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Navigation mobile */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 24px rgba(44,39,51,0.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
  padding: 12px 16px;
  border-radius: 8px;
  transition: background var(--transition);
}
.mobile-nav a:hover { background: rgba(44,39,51,0.05); }
.mobile-nav-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.mobile-nav-actions .btn { flex: 1; justify-content: center; }

/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */
.hero {
  padding: 80px 0 60px;
  background: var(--bg-primary);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(169,214,181,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(123,97,200,0.08);
  border: 1px solid rgba(123,97,200,0.2);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cta-primary);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cta-primary);
  animation: pulse 2s infinite;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--cta-primary); }
.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.75;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.hero-right { position: relative; }
.hero-image-wrap {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--border);
  position: relative;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(40,34,53,0.3) 100%);
}
.hero-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.hero-card-form {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.hero-card-title {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--text-main);
}
.hero-card-sub {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.5;
  margin-top: 2px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.form-field {
  margin-bottom: 10px;
}
.form-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.form-field select,
.form-field input {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--text-main);
  background: var(--bg-primary);
  transition: border-color var(--transition);
  appearance: none;
}
.form-field select:focus,
.form-field input:focus {
  outline: none;
  border-color: var(--cta-primary);
}
.upload-btn {
  width: 100%;
  padding: 9px 12px;
  border: 1px dashed var(--border);
  border-radius: 8px;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.upload-btn:hover {
  border-color: var(--cta-primary);
  color: var(--cta-primary);
  background: rgba(123,97,200,0.04);
}
.upload-btn svg { width: 14px; height: 14px; }
.hero-card-form .btn { width: 100%; justify-content: center; }

/* ============================================================
   RÉASSURANCE
   ============================================================ */
.reassurance {
  padding: 60px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.reassurance-item {
  background: var(--bg-secondary);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background var(--transition);
}
.reassurance-item:hover { background: var(--bg-primary); }
.reassurance-icon {
  width: 44px;
  height: 44px;
  background: rgba(123,97,200,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reassurance-icon svg { width: 20px; height: 20px; stroke: var(--cta-primary); fill: none; stroke-width: 1.5; }
.reassurance-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-main);
}
.reassurance-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   PRÉSENTATION ATELIER (homepage)
   ============================================================ */
.atelier-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.atelier-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--border);
  position: relative;
}
.atelier-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.atelier-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.atelier-value-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}
.atelier-value-card h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.atelier-value-card p { font-size: 0.78rem; }
.atelier-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--cta-primary);
  color: var(--white);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 28px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}
.service-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--border);
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 20px; }
.service-card-icon {
  width: 36px;
  height: 36px;
  background: rgba(123,97,200,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.service-card-icon svg { width: 16px; height: 16px; stroke: var(--cta-primary); fill: none; stroke-width: 1.5; }
.service-card-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-main);
}
.service-card-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-card-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cta-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.service-card-link:hover { gap: 8px; }
.service-card-link svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Compatibilite pages villes : cartes sans .service-card-body */
.service-card > .service-card-icon:first-child {
  margin: 20px 20px 12px;
}
.service-card > h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-main);
  margin: 0 20px 8px;
}
.service-card > p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 20px 16px;
}
.service-card > .service-card-link {
  margin: 0 20px 20px;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(10% + 20px);
  right: calc(10% + 20px);
  height: 1px;
  background: linear-gradient(to right, var(--border), var(--accent), var(--border));
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
}
.process-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cta-primary);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}
.process-step:hover .process-num {
  background: var(--cta-primary);
  color: var(--white);
  border-color: var(--cta-primary);
  transform: scale(1.1);
}
.process-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-main);
}
.process-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   TARIFS
   ============================================================ */
.tarifs-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-secondary);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.tarifs-table thead tr {
  background: var(--text-main);
  color: var(--white);
}
.tarifs-table thead th {
  padding: 14px 20px;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tarifs-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.tarifs-table tbody tr:last-child { border-bottom: none; }
.tarifs-table tbody tr:hover { background: var(--bg-primary); }
.tarifs-table td {
  padding: 14px 20px;
  font-size: 0.88rem;
  color: var(--text-main);
}
.tarifs-table td:last-child {
  font-weight: 600;
  color: var(--cta-primary);
  white-space: nowrap;
}
.tarifs-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.tarif-tab {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  color: var(--text-muted);
  transition: all var(--transition);
}
.tarif-tab.active,
.tarif-tab:hover {
  background: var(--text-main);
  color: var(--white);
  border-color: var(--text-main);
}
.tarif-panel { display: none; }
.tarif-panel.active { display: block; }
.tarifs-panels-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  margin-top: 8px;
}
.tarifs-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.tarifs-table--center {
  max-width: 640px;
  margin: 0 auto;
}
.tarifs-mariage-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(123,97,200,0.1) 0%, rgba(123,97,200,0.04) 100%);
  border: 1px solid rgba(123,97,200,0.25);
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cta-primary);
  margin-bottom: 24px;
}
.tarifs-devis-bloc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  margin-top: 32px;
}
.tarifs-devis-left { flex: 1; }
.tarifs-devis-right { flex-shrink: 0; min-width: 280px; }
.tarifs-note {
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(123,97,200,0.06);
  border-left: 3px solid var(--cta-primary);
  border-radius: 0 8px 8px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   MARIAGE — HOMEPAGE (section dark)
   ============================================================ */
.mariage-section {
  background: linear-gradient(135deg, #2C2733 0%, #282235 100%);
  color: var(--white);
}
.mariage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mariage-left .section-label { color: var(--accent); }
.mariage-left h2 { color: var(--white); }
.mariage-left p { color: rgba(255,255,255,0.65); }
.mariage-list {
  margin: 24px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mariage-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
}
.mariage-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(169,214,181,0.2);
  border: 1px solid var(--accent);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23A9D6B5' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.mariage-right { position: relative; }
.mariage-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: rgba(255,255,255,0.05);
}
.mariage-img-wrap img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.mariage-price-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--cta-primary);
  color: var(--white);
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
}
.mariage-price-card-label {
  font-size: 0.72rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.mariage-price-card-price {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
}
.mariage-price-card-sub {
  font-size: 0.72rem;
  opacity: 0.75;
  margin-top: 4px;
}

/* ============================================================
   PAGE HERO — PAGES SERVICES & VILLES
   ============================================================ */
.page-hero {
  padding: 72px 0 60px;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(169,214,181,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--cta-primary); }
.breadcrumb-sep { color: var(--accent); }
.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(123,97,200,0.08);
  border: 1px solid rgba(123,97,200,0.2);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cta-primary);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.page-hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cta-primary);
  animation: pulse 2s infinite;
}
.page-hero h1 { margin-bottom: 20px; font-weight: 400; }
.page-hero h1 em { font-style: italic; color: var(--cta-primary); }
.page-hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.75;
}
.page-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.page-hero-img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--border);
  position: relative;
}
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(40,34,53,0.35) 100%);
}
.price-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--cta-primary);
  color: white;
  border-radius: 12px;
  padding: 14px 20px;
}
.price-badge-from {
  font-size: 0.7rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.price-badge-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

/* ============================================================
   PAGE HERO MARIAGE — VERSION DARK PREMIUM
   ============================================================ */
.page-hero-mariage {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #2C2733 0%, #282235 100%);
  position: relative;
  overflow: hidden;
}
.page-hero-mariage::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(169,214,181,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-mariage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.page-hero-mariage .section-label { color: var(--accent); }
.page-hero-mariage h1 {
  margin-bottom: 20px;
  font-weight: 300;
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}
.page-hero-mariage h1 em { font-style: italic; color: var(--accent); }
.page-hero-mariage-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.75;
}
.page-hero-mariage-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.hero-price-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 36px;
  backdrop-filter: blur(8px);
}
.hero-price-card-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-price-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-price-item:last-child { border-bottom: none; }
.hero-price-item span:first-child { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.hero-price-item span:last-child {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--accent);
}
.hero-price-cta {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-price-cta .btn { flex: 1; justify-content: center; }

/* ============================================================
   CONTENU INTRO — PAGES SERVICES & VILLES
   ============================================================ */
.content-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.check-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(123,97,200,0.1);
  border: 1px solid rgba(123,97,200,0.3);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%237B61C8' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}
.info-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.info-card-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--text-main);
}

/* ============================================================
   ENGAGEMENTS — PAGE MARIAGE
   ============================================================ */
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.engagement-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
}
.engagement-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(123,97,200,0.08);
  border: 1px solid rgba(123,97,200,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.engagement-icon svg { width: 22px; height: 22px; stroke: var(--cta-primary); fill: none; stroke-width: 1.5; }
.engagement-card h3 { font-size: 0.95rem; margin-bottom: 8px; }
.engagement-card p { font-size: 0.82rem; }

/* ============================================================
   ACCÈS — PAGES VILLES
   ============================================================ */
.acces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.acces-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.acces-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(123,97,200,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.acces-card-icon svg { width: 18px; height: 18px; stroke: var(--cta-primary); fill: none; stroke-width: 1.5; }
.acces-card h3 { font-size: 0.9rem; margin-bottom: 6px; }
.acces-card p { font-size: 0.82rem; }

/* ============================================================
   AVIS CLIENTS
   ============================================================ */
.avis-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.avis-score {
  display: flex;
  align-items: center;
  gap: 16px;
}
.avis-score-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--text-main);
  line-height: 1;
}
.avis-score-details { display: flex; flex-direction: column; gap: 4px; }
.avis-stars {
  display: flex;
  gap: 3px;
}
.avis-stars span { color: #F59E0B; font-size: 0.9rem; }
.avis-score-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.avis-google-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}
.avis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.avis-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: all var(--transition);
}
.avis-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.avis-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.avis-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.avis-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  flex-shrink: 0;
}
.avis-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
}
.avis-date {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.avis-author-info strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
}
.avis-author-info span { font-size: 0.75rem; color: var(--text-muted); }
.avis-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-style: italic;
}
.avis-text::before { content: '\201C'; }
.avis-text::after  { content: '\201D'; }

/* ============================================================
   ZONES DESSERVIES
   ============================================================ */
.zones-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.zones-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 24px 0 32px;
}
.zone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
  background: var(--bg-secondary);
}
.zone-link:hover {
  border-color: var(--cta-primary);
  color: var(--cta-primary);
  background: rgba(123,97,200,0.04);
}
.zone-link svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; }
.zones-map {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.zones-map-inner {
  text-align: center;
  padding: 40px;
}
.zones-map-icon {
  width: 64px;
  height: 64px;
  background: rgba(123,97,200,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.zones-map-icon svg { width: 28px; height: 28px; stroke: var(--cta-primary); fill: none; stroke-width: 1.5; }
.zones-map-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.zones-map-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.map-svg-wrap {
  width: 100%;
  height: 100%;
  padding: 20px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-secondary);
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--accent); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  gap: 16px;
}
.faq-question-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.4;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { background: var(--cta-primary); border-color: var(--cta-primary); }
.faq-item.open .faq-icon svg { stroke: white; transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer-inner {
  padding: 0 22px 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  background: linear-gradient(135deg, var(--cta-primary) 0%, var(--cta-hover) 100%);
  color: var(--white);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-final::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-final-inner { position: relative; z-index: 1; }
.cta-final h2 { color: var(--white); margin-bottom: 16px; }
.cta-final p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 40px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #282235;
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { margin-bottom: 16px; }
.footer-logo .logo-name  { color: var(--white); }
.footer-logo .logo-tagline { color: rgba(255,255,255,0.4); }
.footer-desc {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
  transition: color var(--transition);
}
.footer-contact-item:hover { color: var(--white); }
.footer-contact-item svg { width: 14px; height: 14px; stroke: var(--accent); fill: none; stroke-width: 1.5; flex-shrink: 0; }
.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-horaires {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-horaire-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.footer-horaire-row span:last-child { color: rgba(255,255,255,0.75); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   BARRE STICKY MOBILE
   ============================================================ */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  gap: 8px;
  box-shadow: 0 -4px 20px rgba(44,39,51,0.1);
}
.sticky-bar .btn {
  flex: 1;
  justify-content: center;
  padding: 12px 8px;
  font-size: 0.78rem;
}

/* ============================================================
   ANIMATIONS AU SCROLL
   ============================================================ */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.8); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .grid-3,
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid  { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .process-grid::before { display: none; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .engagement-grid { grid-template-columns: 1fr 1fr; }
  .acces-grid    { grid-template-columns: 1fr 1fr; }
  .avis-grid     { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: 60px 0; }

  /* Header */
  .nav,
  .header-phone,
  .header-actions .btn:not(.btn-sm) { display: none; }
  .hamburger { display: flex; }

  /* Grilles */
  .hero-inner,
  .grid-2,
  .mariage-inner,
  .atelier-inner,
  .zones-inner,
  .page-hero-inner,
  .page-hero-mariage-inner,
  .content-intro { grid-template-columns: 1fr; gap: 40px; }

  .hero-right { order: -1; }
  .hero-image-wrap {
    aspect-ratio: auto;
    overflow: visible;
    background: transparent;
  }
  .hero-image-wrap img {
    aspect-ratio: 16/9;
    height: auto;
    border-radius: 20px;
  }
  .hero-image-overlay { display: none; }
  .hero-card {
    position: static;
    display: block;
    margin-top: 16px;
  }
  .mariage-right { order: -1; }
  .mariage-price-card { position: static; margin-top: 16px; display: inline-block; }

  .reassurance-grid { grid-template-columns: 1fr; }
  .services-grid    { grid-template-columns: 1fr; }
  .process-grid     { grid-template-columns: 1fr; }
  .avis-grid        { grid-template-columns: 1fr; }
  .acces-grid       { grid-template-columns: 1fr; }
  .engagement-grid  { grid-template-columns: 1fr 1fr; }
  .footer-grid      { grid-template-columns: 1fr; gap: 32px; }

  /* Tarifs */
  .tarifs-two-col   { grid-template-columns: 1fr; gap: 24px; }
  .tarifs-panels-wrap { padding: 24px 16px; }
  .tarifs-devis-bloc { flex-direction: column; gap: 24px; }
  .tarifs-devis-right { min-width: unset; width: 100%; }

  /* Sticky bar */
  .sticky-bar { display: flex; }
  body { padding-bottom: 70px; }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 40px 0; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .tarifs-tabs { gap: 6px; }
  .tarifs-panels-wrap { padding: 20px 12px; }
  .zones-list { grid-template-columns: 1fr; }
  .atelier-values { grid-template-columns: 1fr; }
  .engagement-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CORRECTIFS — STYLES MANQUANTS
   ============================================================ */

/* --- Étoiles de notation (SVG inline .star) --- */
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}
.star {
  width: 16px;
  height: 16px;
  fill: #F59E0B;
  stroke: none;
  flex-shrink: 0;
}

/* Étoiles dans le bloc score avis (grand format) */
.avis-score-detail .stars { margin-bottom: 4px; }
.avis-score-detail .star  { width: 18px; height: 18px; }

/* --- Valeurs atelier (section "L'atelier" homepage) --- */
.atelier-value {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: border-color var(--transition);
}
.atelier-value:hover { border-color: var(--accent); }
.atelier-value-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(123,97,200,0.08);
  border: 1px solid rgba(123,97,200,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.atelier-value-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--cta-primary);
  fill: none;
  stroke-width: 1.5;
}
.atelier-value-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 6px;
}
.atelier-value-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Contrainte globale sur les SVG sans classe explicite --- */
/* Empêche les SVG inline sans width/height de prendre toute la place */
svg:not([width]):not([height]):not(.star) {
  max-width: 100%;
  height: auto;
}

/* SVG dans les icônes de service (pages villes — sans classe icon) */
.service-card-icon svg,
.acces-card-icon svg,
.engagement-icon svg,
.reassurance-icon svg,
.zones-map-icon svg,
.footer-contact-item svg {
  display: block;
  flex-shrink: 0;
}

/* --- Avis score detail (layout flex) --- */
.avis-score-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
