/* ═══════════════════════════════════════════════════════════
   AUDIT & DIAGNOSTICS — style.css
   Charte : #E0BD2F (or) | #3C7C86 (bleu-vert) | blanc | gris
══════════════════════════════════════════════════════════════ */

/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold:       #E0BD2F;
  --gold-dark:  #c9a91e;
  --teal:       #3C7C86;
  --teal-dark:  #2d5f68;
  --teal-light: #e8f4f6;
  --white:      #ffffff;
  --off-white:  #f8f9fa;
  --cream:      #fdf9ee;
  --text-dark:  #1a2e32;
  --text-mid:   #2d4a50;
  --text-light: #5a7a82;
  --border:     rgba(60, 124, 134, 0.18);
  --shadow-sm:  0 2px 12px rgba(28, 60, 68, 0.08);
  --shadow-md:  0 6px 32px rgba(28, 60, 68, 0.13);
  --shadow-lg:  0 16px 64px rgba(28, 60, 68, 0.16);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
.serif { font-family: 'Playfair Display', Georgia, serif; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

/* ─── CONTAINER ─────────────────────────────────────────────── */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
}

.btn--primary {
  background: var(--gold);
  color: var(--text-dark);
  box-shadow: 0 4px 20px rgba(224, 189, 47, 0.35);
}

.btn--primary:hover,
.btn--primary:focus {
  background: var(--gold-dark);
  box-shadow: 0 6px 28px rgba(224, 189, 47, 0.5);
  transform: translateY(-2px);
  outline: none;
}

.btn--outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}

.btn--outline:hover {
  background: var(--teal);
  color: var(--white);
}

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

/* ─── SECTION HEADERS ───────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--teal-dark);
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════
   PRELOADER
═════════════════════════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  text-align: center;
  width: 320px;
}

.preloader__logo-img {
  height: 100px;
  width: auto;
  display: block;
  margin: 0 auto 2.5rem;
}

.preloader__bar-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1rem;
}

.preloader__bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  overflow: hidden;
}

.preloader__bar-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.2s ease;
}

.preloader__percent {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  min-width: 38px;
  text-align: right;
}

.preloader__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════
   NAVIGATION
═════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 0;
}

.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  transition: color var(--transition);
  position: relative;
}

.site-header.scrolled .nav__link {
  color: var(--text-mid);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__link:hover::after { width: 100%; }
.nav__link:hover { color: var(--gold); }
.site-header.scrolled .nav__link:hover { color: var(--teal); }

.nav__link--cta {
  background: var(--gold);
  color: var(--text-dark) !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
}

.nav__link--cta::after { display: none; }
.nav__link--cta:hover {
  background: var(--gold-dark);
  color: var(--text-dark) !important;
  transform: translateY(-1px);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background var(--transition);
}

.site-header.scrolled .nav__burger span { background: var(--teal-dark); }

.nav__mobile {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 0;
  box-shadow: var(--shadow-md);
}

.nav__mobile.open { display: block; }

.nav__mobile ul { padding: 0 1.5rem; }
.nav__mobile li { border-bottom: 1px solid var(--border); }
.nav__mobile a {
  display: block;
  padding: 0.9rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: color var(--transition);
}
.nav__mobile a:hover { color: var(--teal); }

/* ════════════════════════════════════════════════════════════
   HERO SECTION
═════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background: url('../../2025-09-13.webp') center / cover no-repeat;
  overflow: hidden;
}

/* Teal overlay #3C7C86 at 55% */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(60, 124, 134, 0.55);
  z-index: 1;
}

/* Two-column content area */
.hero__content {
  position: relative;
  z-index: 2;
  height: calc(100% - 56px); /* subtract bottom bar height */
  padding-top: 80px;         /* clear fixed nav */
  display: flex;
  align-items: center;
  gap: 3.5rem;
}

/* ── Left column (60%) ── */
.hero__left {
  flex: 0 0 58%;
  max-width: 58%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Location badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  align-self: flex-start;
}

/* H1 */
.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  text-align: left;
}

/* Services subtitle */
.hero__subtitle {
  color: #D4A843;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
  text-align: right;
}

/* CTA buttons row */
.hero__cta-wrap {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero__btn--outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #ffffff;
  font-weight: 600;
}

.hero__btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hero__btn--gold {
  background: #D4A843;
  color: #0d2630;
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.4);
}

.hero__btn--gold:hover {
  background: #c49a30;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212, 168, 67, 0.55);
}

.hero__cta-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  padding-left: 4px;
}

/* ── Right column (40%) ── */
.hero__right {
  flex: 1;
  min-width: 0;
}

/* Glassmorphic Typeform card */
.hero__tf-card {
  background: rgba(13, 38, 48, 0.62);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 1.5rem;
}

.hero__tf-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
  text-align: center;
  margin-bottom: 1rem;
}

.hero__tf-embed {
  min-height: 400px;
}

.hero__tf-embed > div {
  height: 100%;
  min-height: 400px;
}

/* ── Bottom info bar ── */
.hero__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(13, 38, 48, 0.85);
  padding: 1rem 2rem;
  z-index: 3;
  text-align: center;
}

.hero__bar p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ════════════════════════════════════════════════════════════
   TYPEFORM MODAL
═════════════════════════════════════════════════════════════ */
.tf-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.tf-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.tf-modal__card {
  position: relative;
  background: #0d2630;
  width: min(700px, 95vw);
  height: 80vh;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.tf-modal.open .tf-modal__card {
  transform: scale(1);
}

.tf-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.tf-modal__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.tf-modal__embed {
  flex: 1;
  overflow: hidden;
}

.tf-modal__embed > div {
  width: 100%;
  height: 100%;
}

/* ════════════════════════════════════════════════════════════
   SECTION WHY
═════════════════════════════════════════════════════════════ */
.section-why {
  padding: 7rem 0;
  background: var(--cream);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.why-card__icon {
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
}

.why-card__title {
  font-size: 1.2rem;
  color: var(--teal-dark);
  margin-bottom: 0.75rem;
}

.why-card__text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════
   SECTION DIAGNOSTICS
═════════════════════════════════════════════════════════════ */
.section-diagnostics {
  padding: 7rem 0;
  background: var(--white);
}

.diag-track-wrap {
  position: relative;
}

.diag-nav,
.diag-dots {
  display: none;
}

.diag-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.diag-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.diag-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.diag-card:hover::before { transform: scaleX(1); }

.diag-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(60, 124, 134, 0.3);
}

.diag-card__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  align-self: flex-start;
}

.diag-card__badge--both {
  background: rgba(224, 189, 47, 0.18);
  color: #8a7010;
  border: 1px solid rgba(224, 189, 47, 0.4);
}

.diag-card__badge--vente {
  background: rgba(60, 124, 134, 0.12);
  color: var(--teal-dark);
  border: 1px solid var(--border);
}

.diag-card__badge--location {
  background: rgba(28, 60, 68, 0.08);
  color: var(--text-mid);
  border: 1px solid rgba(28, 60, 68, 0.15);
}

.diag-card__title {
  font-size: 1.15rem;
  color: var(--teal-dark);
  margin-bottom: 0.3rem;
}

.diag-card__sub {
  font-size: 0.78rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 0.9rem;
}

.diag-card__text {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.2rem;
}

.diag-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  transition: color var(--transition);
  margin-top: auto;
}

.diag-card__link:hover { color: var(--gold-dark); }

/* ════════════════════════════════════════════════════════════
   SECTION PROCESS — Scroll Storytelling
═════════════════════════════════════════════════════════════ */
.section-process {
  /* anchor wrapper only — layout handled by .process-story */
}

.process-story {
  position: relative;
  height: 400vh;
  background: #0d2630;
}

.process-story__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem;
  background: #0d2630;
}

/* ── Large decorative background number ── */
.process-story__bg-num {
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: clamp(18rem, 40vw, 36rem);
  font-weight: 700;
  color: rgba(212, 168, 67, 0.042);
  line-height: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -0.05em;
  transition: opacity 0.4s ease;
}

/* ── Vertical progress indicator ── */
.process-story__progress {
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 10;
}

.process-story__progress-track {
  width: 2px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.process-story__progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: #D4A843;
  border-radius: 2px;
  transition: height 0.35s ease;
}

.process-story__progress-labels {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: center;
}

.process-story__progress-labels span {
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.05em;
  transition: color 0.3s ease, transform 0.3s ease;
}

.process-story__progress-labels span.ps-label-active {
  color: #D4A843;
  transform: scale(1.2);
}

/* ── Section header ── */
.process-story__header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.process-story__header .section-eyebrow {
  background: rgba(212, 168, 67, 0.12);
  color: #D4A843;
  border: 1px solid rgba(212, 168, 67, 0.28);
}

.process-story__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #ffffff;
  line-height: 1.2;
}

/* ── Steps wrapper ── */
.process-story__steps {
  position: relative;
  width: 100%;
  max-width: 860px;
  height: 240px;
  z-index: 2;
}

/* ── Individual step ── */
.process-story__step {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.ps--left  { transform: translateX(-50px); }
.ps--right { transform: translateX(50px); }

.ps--active {
  opacity: 1;
  transform: translateX(0) !important;
  pointer-events: auto;
}

/* ── Step inner layout ── */
.ps__inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: 100%;
}

/* ── Large step number ── */
.ps__num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 9vw, 8rem);
  font-weight: 700;
  color: #D4A843;
  line-height: 1;
  flex-shrink: 0;
  min-width: 130px;
  text-align: center;
  text-shadow: 0 0 40px rgba(212, 168, 67, 0.22);
}

/* ── Step content ── */
.ps__content {
  flex: 1;
}

.ps__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.ps__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.78;
  max-width: 460px;
}

.process-story__step.ps--right .ps__text {
  margin-left: auto;
}

/* ════════════════════════════════════════════════════════════
   SECTION TESTIMONIALS
═════════════════════════════════════════════════════════════ */
.section-testimonials {
  padding: 7rem 0;
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: box-shadow var(--transition);
}

.testimonial-card:hover { box-shadow: var(--shadow-md); }

.testimonial-card__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.testimonial-card__quote {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--teal-dark);
  font-style: normal;
  font-weight: 600;
}

.testimonial-card__author span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ════════════════════════════════════════════════════════════
   SECTION CONTACT
═════════════════════════════════════════════════════════════ */
.section-contact {
  padding: 7rem 0;
  background: var(--white);
}

/* ════════════════════════════════════════════
   FAQ
════════════════════════════════════════════ */
.section-faq {
  padding: 7rem 0;
  background: var(--off-white);
}

.faq__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.faq__accordion {
  max-width: 780px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item:first-child {
  border-top: 1px solid var(--border);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.2s;
}

.faq__question:hover {
  color: var(--teal);
}

.faq__question[aria-expanded="true"] {
  color: var(--teal);
}

.faq__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  color: var(--teal);
  font-size: 1.3rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.2s, color 0.2s;
  font-style: normal;
}

.faq__question[aria-expanded="true"] .faq__icon {
  background: var(--teal);
  color: #fff;
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__answer p {
  padding-bottom: 1.4rem;
  color: var(--text-light);
  line-height: 1.75;
  font-size: 0.95rem;
}

/* ── FAQ bottom block ── */
.faq__bottom {
  max-width: 780px;
  margin: 4rem auto 0;
}


.faq__bottom p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ════════════════════════════════════════════
   VILLES
════════════════════════════════════════════ */
.section-villes {
  /* pas de padding global — les deux sous-blocs gèrent leur propre espacement */
}

/* ── Partie 1 : hero image ── */
.villes__hero {
  position: relative;
  background: url('../../2025-09-13.webp') center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.villes__hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 35, 38, 0.72);
}

.villes__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4rem 2rem;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}

.villes__hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}

.villes__links-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  border-left: 3px solid var(--gold);
  padding-left: 0.75rem;
  text-align: left;
  margin-bottom: 1rem;
}

.villes__links-list {
  line-height: 2.1;
  font-size: 0.88rem;
  text-align: left;
}

.villes__links-list a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.villes__links-list a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.villes__sep {
  color: rgba(255, 255, 255, 0.35);
  user-select: none;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info .section-eyebrow { margin-bottom: 1rem; }
.contact-info .section-title {
  text-align: left;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1.2rem;
}

.contact-info__text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact-info__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.contact-info__list li {
  font-size: 0.95rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.contact-info__list a {
  color: var(--teal);
  font-weight: 500;
  transition: color var(--transition);
}

.contact-info__list a:hover { color: var(--teal-dark); }

.contact-info__badges {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--teal-light);
  color: var(--teal-dark);
  border: 1px solid var(--border);
}

.contact-form-wrap {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: flex;
  gap: 1.2rem;
}

.form-row--half > * { flex: 1; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}

.form-label span { color: var(--teal); }

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(60, 124, 134, 0.15);
}

.form-input::placeholder { color: #aab5b8; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%233C7C86' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 1rem;
  margin-top: 0.3rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-mid);
  transition: color var(--transition);
}

.checkbox-label:hover { color: var(--teal); }

.checkbox-label input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--teal);
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-label--consent {
  align-items: flex-start;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-light);
}

.checkbox-label--consent a {
  color: var(--teal);
  text-decoration: underline;
}

.form-group--check { margin-top: 0.3rem; }

.form-success {
  display: none;
  background: rgba(60, 124, 134, 0.1);
  border: 1px solid rgba(60, 124, 134, 0.3);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  font-size: 0.9rem;
  color: var(--teal-dark);
  font-weight: 500;
  text-align: center;
}

.form-success.visible { display: block; }

/* ════════════════════════════════════════════════════════════
   SECTION CTA FINAL
═════════════════════════════════════════════════════════════ */
.section-cta-final {
  position: relative;
  padding: 8rem 0;
  background: var(--teal);
  text-align: center;
  overflow: hidden;
}

.section-cta-final__noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-final__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1.2rem;
  position: relative;
}

.cta-final__sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
  position: relative;
}

.cta-final__tf-embed {
  max-width: 640px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  min-height: 420px;
  position: relative;
}

.cta-final__tf-embed > div {
  min-height: 420px;
}

/* ════════════════════════════════════════════════════════════
   REVIEWS — Avis Google
═════════════════════════════════════════════════════════════ */
.reviews {
  padding: 6rem 0;
  background: #f8f9fa;
  overflow: hidden;
}

.reviews__header {
  text-align: center;
  margin-bottom: 3rem;
}

.reviews__google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  padding: 0.6rem 1.2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.reviews__google-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.reviews__google-text {
  font-size: 0.78rem;
  color: #666;
  letter-spacing: 0.05em;
}

.reviews__global-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.reviews__global-score {
  font-weight: 700;
  font-size: 1.1rem;
  color: #1a1a1a;
}

.reviews__stars-global span {
  color: #FBBC05;
  font-size: 1rem;
  letter-spacing: 2px;
}

.reviews__count {
  font-size: 0.78rem;
  color: #888;
}

.reviews__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.reviews__subtitle {
  color: #666;
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.reviews__track-wrap {
  position: relative;
  overflow: hidden;
  padding: 0 0 1rem;
}

.reviews__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  padding: 1rem 0.5rem 1.5rem;
}

.review-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 280px;
  background: #ffffff;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}

.review-card__avatar--G { background: #4285F4; }
.review-card__avatar--L { background: #9E9E9E; }
.review-card__avatar--E { background: #34A853; }
.review-card__avatar--T { background: #3C7C86; }
.review-card__avatar--A { background: #E0BD2F; color: #1a1a1a; }

.review-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.review-card__name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1a1a1a;
}

.review-card__source {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: #888;
}

.review-card__stars {
  color: #FBBC05;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-card__text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #444;
  flex: 1;
  font-style: italic;
}

.review-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid #f0f0f0;
}

.review-card__date {
  font-size: 0.75rem;
  color: #aaa;
}

.review-card__score {
  font-size: 0.8rem;
  font-weight: 700;
  color: #3C7C86;
  background: rgba(60,124,134,0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}

.reviews__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #3C7C86;
  background: #fff;
  color: #3C7C86;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
  line-height: 1;
}

.reviews__nav:hover {
  background: #3C7C86;
  color: #fff;
}

.reviews__nav--prev { left: 0; }
.reviews__nav--next { right: 0; }

.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.reviews__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #d0d0d0;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.reviews__dot--active {
  background: #3C7C86;
  width: 24px;
  border-radius: 4px;
}

.reviews__cta {
  text-align: center;
  margin-top: 2.5rem;
}

.reviews__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  color: #444;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  background: #fff;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.reviews__cta-btn:hover {
  border-color: #4285F4;
  color: #4285F4;
  box-shadow: 0 4px 16px rgba(66,133,244,0.15);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .review-card { flex: 0 0 calc(50% - 0.75rem); }
}

@media (max-width: 580px) {
  .review-card { flex: 0 0 85vw; }
  .reviews__nav { display: none; }
}

/* ════════════════════════════════════════════════════════════
   FOOTER
═════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand__logo {
  height: 80px;
  width: auto;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
}

.footer-nav h4,
.footer-contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-nav a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.58);
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--white); }

.footer-contact p {
  font-size: 0.88rem;
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.58);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
═════════════════════════════════════════════════════════════ */
/* ── Tablette : hero colonnes rééquilibrées + Typeform hauteur forcée ── */
@media (min-width: 769px) and (max-width: 1100px) {
  .hero__left {
    flex: 0 0 52%;
    max-width: 52%;
  }

  .hero__tf-embed,
  .hero__tf-embed > div {
    min-height: 460px;
  }
}

@media (max-width: 1100px) {
  .diag-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

}

@media (max-width: 768px) {

  /* ── Hero height — auto pour accueillir la card Typeform ── */
  .hero {
    height: auto;
    min-height: 100vh;
  }

  /* ── Navbar mobile ── */
  .nav {
    height: 58px;
  }

  .nav__logo-img {
    height: 38px;
  }

  .nav__burger {
    padding: 6px;
  }

  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .nav__mobile ul {
    padding: 0 1.2rem;
  }

  .nav__mobile li:last-child {
    border-bottom: none;
    padding: 0.8rem 0;
  }

  .nav__mobile li:last-child a {
    display: inline-block;
    background: var(--gold);
    color: var(--text-dark) !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    width: 100%;
    text-align: center;
  }

  /* ── Hero mobile — text at bottom, white, shadow ── */
  .hero__content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 80px;
    padding-bottom: 3rem;
    gap: 1.5rem;
    height: auto;
  }

  .hero__right {
    display: block;
    width: 100%;
    flex: none;
  }

  .hero__left {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .hero__badge {
    font-size: 0.75rem;
    margin-bottom: 1rem;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  }

  .hero__title {
    color: #ffffff !important;
    font-size: clamp(1.35rem, 5.5vw, 1.9rem) !important;
    text-align: left !important;
    text-shadow: 0 2px 20px rgba(0,0,0,0.8), 0 1px 6px rgba(0,0,0,0.55);
    margin-bottom: 0.8rem;
  }

  .hero__subtitle {
    color: #ffffff !important;
    font-size: 0.82rem !important;
    text-align: left !important;
    text-shadow: 0 1px 10px rgba(0,0,0,0.7);
    margin-bottom: 1.8rem;
  }

  .hero__cta-wrap {
    flex-direction: column;
    gap: 1rem;
  }

  .hero__btn--outline,
  .hero__btn--gold {
    width: 100%;
    display: block;
    text-align: center;
  }

  .hero__cta-group {
    width: 100%;
  }

  .hero__tf-embed {
    min-height: 350px;
  }

  .hero__tf-embed > div {
    min-height: 350px;
  }

  /* Modal — mobile */
  .tf-modal__card {
    height: 90vh;
  }

  .contact-form-wrap {
    padding: 1.5rem;
  }

  .form-row--half {
    flex-direction: column;
  }

  .section-cta-final {
    padding: 5rem 0;
  }

  .section-why,
  .section-diagnostics,
  .section-testimonials,
  .section-contact {
    padding: 5rem 0;
  }

  /* Process story — mobile: sticky conservé, layout vertical centré */
  .process-story {
    height: 350vh;
  }

  .process-story__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    padding: 4rem 1.5rem 3rem;
  }

  .process-story__bg-num {
    font-size: 16rem;
  }

  .process-story__progress {
    right: 1rem;
  }

  .process-story__header {
    margin-bottom: 1.5rem;
  }

  .process-story__steps {
    position: relative;
    height: 250px;
    max-width: 100%;
  }

  .ps--left,
  .ps--right {
    transform: translateY(40px);
  }

  .ps__inner,
  .process-story__step.ps--right .ps__inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    align-items: center;
  }

  .ps__num {
    min-width: auto;
    font-size: 3.5rem;
  }

  .ps__text,
  .process-story__step.ps--right .ps__text {
    max-width: 100%;
    margin: 0;
  }

  /* ── Diag carousel mobile ── */
  .diag-track-wrap {
    overflow: hidden;
    padding-bottom: 1rem;
  }

  .diag-grid {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0.5rem 0.25rem;
    will-change: transform;
  }

  .diag-card {
    flex: 0 0 82vw;
    min-width: 0;
  }

  .diag-nav {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--teal);
    background: #fff;
    color: var(--teal);
    font-size: 1.4rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
    line-height: 1;
    padding: 0;
  }

  .diag-nav:hover {
    background: var(--teal);
    color: #fff;
  }

  .diag-nav--prev { left: 0; }
  .diag-nav--next { right: 0; }

  .diag-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }

  .diag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
  }

  .diag-dot--active {
    background: var(--teal);
    width: 24px;
    border-radius: 4px;
  }
}

@media (max-width: 540px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .contact-info__badges {
    gap: 0.4rem;
  }
}

/* ── Breadcrumb / Fil d'Ariane ──────────────────────────── */
.breadcrumb {
  padding: 0.75rem 0;
  margin-bottom: 1.5rem;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  color: var(--text-light);
}

.breadcrumb__item {
  display: flex;
  align-items: center;
}

.breadcrumb__link {
  color: var(--teal);
  text-decoration: none;
  transition: color var(--transition);
}

.breadcrumb__link:hover {
  color: var(--teal-dark);
  text-decoration: underline;
}

.breadcrumb__current {
  color: var(--text-mid);
  font-weight: 500;
}

.breadcrumb__sep {
  color: var(--text-light);
  margin: 0 0.3rem;
  user-select: none;
}

@media (max-width: 600px) {
  .breadcrumb__list {
    font-size: 0.8rem;
  }
}

/* ── Single article ─────────────────────────────────────── */

/* Bannière hero */
.single-hero {
  position: relative;
  min-height: 420px;
  padding-top: 72px; /* compense le header fixe */
  display: flex;
  align-items: flex-end;
  background: var(--teal-dark) center/cover no-repeat;
}

.single-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,46,50,0.85) 0%, rgba(26,46,50,0.3) 100%);
}

.single-hero__content {
  position: relative;
  z-index: 1;
  padding-bottom: 3rem;
  padding-top: 6rem;
}

.single-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 0 0 0.75rem;
  max-width: 800px;
}

.single-hero__meta {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* Contenu article */
.single-content {
  padding: 4rem 0;
  background: var(--white);
}

.single-content__inner {
  max-width: 780px;
}

.wysiwyg {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.wysiwyg h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 2.5rem 0 1rem;
}

.wysiwyg h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-mid);
  margin: 2rem 0 0.75rem;
}

.wysiwyg p {
  margin: 0 0 1.25rem;
}

.wysiwyg ul,
.wysiwyg ol {
  padding-left: 1.5rem;
  margin: 0 0 1.25rem;
}

.wysiwyg li {
  margin-bottom: 0.4rem;
}

.wysiwyg a {
  color: var(--teal);
  text-decoration: underline;
}

.wysiwyg a:hover {
  color: var(--teal-dark);
}

.wysiwyg img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 1.5rem 0;
}

.wysiwyg blockquote {
  border-left: 4px solid var(--gold);
  margin: 1.5rem 0;
  padding: 0.75rem 1.25rem;
  background: var(--cream);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-mid);
}

/* Bannière CTA */
.single-cta {
  background: var(--teal);
  padding: 3rem 0;
}

.single-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.single-cta__text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
  flex: 1;
}

.single-cta__btn {
  white-space: nowrap;
  flex-shrink: 0;
}

/* Articles récents */
.single-related {
  padding: 4rem 0;
  background: var(--off-white);
}

.single-related__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 2rem;
}

.single-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.related-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}

.related-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.related-card__img-wrap {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.related-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.related-card:hover .related-card__img {
  transform: scale(1.04);
}

.related-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.related-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.6rem;
  line-height: 1.35;
}

.related-card__title a {
  color: var(--text-dark);
  text-decoration: none;
}

.related-card__title a:hover {
  color: var(--teal);
}

.related-card__excerpt {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0 0 1rem;
  flex: 1;
}

.related-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  align-self: flex-start;
}

.related-card__link:hover {
  color: var(--teal-dark);
  text-decoration: underline;
}

/* Responsive single */
@media (max-width: 900px) {
  .single-related__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .single-hero {
    min-height: 300px;
  }

  .single-cta__inner {
    flex-direction: column;
    text-align: center;
  }

  .single-related__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Page À propos ──────────────────────────────────────────── */

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* Hero */
.about-hero {
  position: relative;
  min-height: 480px;
  padding-top: 72px; /* compense le header fixe */
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--teal-dark) 0%, #1a3a40 60%, #0d2226 100%);
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(224,189,47,0.12) 0%, transparent 65%);
}
.about-hero__overlay {
  display: none;
}
.about-hero__content {
  position: relative;
  z-index: 1;
  padding-top: 7rem;
  padding-bottom: 4rem;
  max-width: 720px;
}
.about-hero__badge {
  display: inline-block;
  background: rgba(224,189,47,0.18);
  color: var(--gold);
  border: 1px solid rgba(224,189,47,0.4);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.35rem 1rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}
.about-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin: 0 0 1rem;
}
.about-hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin: 0;
}

/* Section titles */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 1.5rem;
}
.section-title--center {
  text-align: center;
  margin-bottom: 3rem;
}

/* Introduction */
.about-intro {
  padding: 5rem 0 3rem;
  background: var(--white);
}
.about-intro__text {
  max-width: 760px;
  margin: 0 auto 3.5rem;
  text-align: center;
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.8;
}
.about-intro__text p { margin: 0 0 1rem; }

/* Values cards */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.about-value {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.about-value:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.about-value__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  color: var(--teal);
}
.about-value__icon svg {
  width: 100%;
  height: 100%;
}
.about-value__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.6rem;
}
.about-value__text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}

/* Timeline */
.about-timeline {
  padding: 5rem 0;
  background: var(--cream);
}
.timeline {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  padding-left: 2.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal-light), var(--teal), var(--gold));
  border-radius: 2px;
}
.timeline__item {
  position: relative;
  margin-bottom: 2.75rem;
}
.timeline__item:last-child { margin-bottom: 0; }
.timeline__dot {
  position: absolute;
  left: -2.5rem;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--teal);
  transition: transform var(--transition);
}
.timeline__dot--active {
  background: var(--gold);
  box-shadow: 0 0 0 2px var(--gold);
  transform: scale(1.25);
}
.timeline__item:hover .timeline__dot {
  transform: scale(1.3);
}
.timeline__content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--teal);
}
.timeline__dot--active ~ .timeline__content {
  border-left-color: var(--gold);
}
.timeline__year {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}
.timeline__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.5rem;
}
.timeline__content p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}

/* Expertises */
.about-expertises {
  padding: 5rem 0;
  background: var(--white);
}
.expertises-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
.expertise-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: default;
}
.expertise-card:hover {
  background: var(--teal-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--teal);
}
.expertise-card__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.85rem;
  color: var(--teal);
  transition: color var(--transition);
}
.expertise-card:hover .expertise-card__icon { color: var(--teal-dark); }
.expertise-card__icon svg { width: 100%; height: 100%; }
.expertise-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.4rem;
}
.expertise-card__desc {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.55;
  margin: 0;
}

/* Zone d'intervention */
.about-zone {
  padding: 5rem 0;
  background: var(--off-white);
}
.about-zone__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-zone__text .section-title { margin-bottom: 1rem; }
.about-zone__text p {
  color: var(--text-mid);
  line-height: 1.75;
  margin: 0 0 1.5rem;
}
.about-zone__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.about-zone__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.about-zone__list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--teal);
}
.about-zone__list a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
}
.about-zone__list a:hover { text-decoration: underline; }
.about-zone__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 360px;
  box-shadow: var(--shadow-md);
}
.about-zone__map iframe { display: block; }

/* Chiffres clés */
.about-stats {
  padding: 4.5rem 0;
  background: var(--teal-dark);
}
.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.stat-item__number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-item__label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* CTA about */
.about-cta {
  background: var(--gold);
  padding: 3.5rem 0;
}
.about-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.about-cta__text {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  flex: 1;
}
.about-cta__btn {
  white-space: nowrap;
  flex-shrink: 0;
  background: var(--teal-dark) !important;
  border-color: var(--teal-dark) !important;
}
.about-cta__btn:hover {
  background: var(--teal) !important;
  border-color: var(--teal) !important;
}

/* Responsive about */
@media (max-width: 1100px) {
  .expertises-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .about-values {
    grid-template-columns: 1fr 1fr;
  }
  .about-zone__inner {
    grid-template-columns: 1fr;
  }
  .about-zone__map {
    height: 280px;
  }
  .about-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .expertises-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .about-hero {
    min-height: 360px;
  }
  .about-values {
    grid-template-columns: 1fr;
  }
  .expertises-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-cta__inner {
    flex-direction: column;
    text-align: center;
  }
  .timeline {
    padding-left: 2rem;
  }
}

/* ── Archive blog ────────────────────────────────────────────── */


/* Hero */
.archive-hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, #1a3a40 100%);
  padding: calc(3.5rem + 72px) 0 3.5rem; /* top compense le header fixe */
  position: relative;
  overflow: hidden;
}
.archive-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(224,189,47,0.1) 0%, transparent 60%);
}
.archive-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.archive-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.5rem;
  line-height: 1.2;
}
.archive-hero__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  margin: 0;
}
.archive-hero__counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 1rem 1.75rem;
  text-align: center;
  flex-shrink: 0;
}
.archive-hero__count {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.archive-hero__count-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Filtres */
.archive-filters {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  background: transparent;
  color: var(--text-mid);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.filter-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-light);
}
.filter-btn.active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}
.filter-btn__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 50px;
  background: rgba(0,0,0,0.1);
  font-size: 0.72rem;
  font-weight: 700;
}
.filter-btn.active .filter-btn__count {
  background: rgba(255,255,255,0.25);
}

/* Grille articles */
.archive-content {
  padding: 3rem 0 4rem;
  background: var(--off-white);
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3rem;
}

/* Carte article */
.article-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.article-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.article-card__image-wrap {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--teal-light);
  flex-shrink: 0;
}
.article-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.article-card:hover .article-card__image {
  transform: scale(1.06);
}
.article-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  opacity: 0.35;
}
.article-card__placeholder svg {
  width: 52px;
  height: 52px;
}

.article-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-card__category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--teal);
  background: var(--teal-light);
  border-radius: 50px;
  padding: 0.2rem 0.7rem;
  margin-bottom: 0.6rem;
  text-decoration: none;
  align-self: flex-start;
  transition: background var(--transition), color var(--transition);
}
.article-card__category:hover {
  background: var(--teal);
  color: var(--white);
}

.article-card__meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 0.6rem;
}
.article-card__meta-sep {
  color: var(--border);
}

.article-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 0.6rem;
  flex: 1;
}
.article-card__title a {
  color: var(--text-dark);
  text-decoration: none;
}
.article-card__title a:hover {
  color: var(--teal);
}

.article-card__excerpt {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0 0 1.25rem;
}

.article-card__cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  align-self: flex-start;
  margin-top: auto;
}
.article-card__cta:hover {
  color: var(--teal-dark);
  text-decoration: underline;
}

/* Aucun article */
.archive-empty {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--text-light);
}
.archive-empty svg {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  opacity: 0.35;
  display: block;
}
.archive-empty h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--text-dark);
  margin: 0 0 0.5rem;
}
.archive-empty p {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
}

/* Pagination */
.archive-pagination {
  display: flex;
  justify-content: center;
}
.archive-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}
.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.75rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.archive-pagination .page-numbers:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-light);
}
.archive-pagination .page-numbers.current {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  pointer-events: none;
}
.archive-pagination .page-numbers.dots {
  border: none;
  background: transparent;
}

/* CTA archive */
.archive-cta {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 4rem 0;
}
.archive-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.archive-cta__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.25rem;
}
.archive-cta__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
}
.archive-cta__btn {
  background: var(--gold) !important;
  color: var(--text-dark) !important;
  border-color: var(--gold) !important;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 1rem;
  transition: background var(--transition), transform var(--transition);
}
.archive-cta__btn:hover {
  background: var(--gold-dark) !important;
  border-color: var(--gold-dark) !important;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .archive-hero__counter {
    display: none;
  }
}
@media (max-width: 600px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }
  .archive-cta__inner {
    flex-direction: column;
    text-align: center;
  }
  .archive-cta__btn {
    width: 100%;
    text-align: center;
  }
  .filter-bar {
    gap: 0.35rem;
  }
}

/* ── Breadcrumb Wrapper ─────────────────────────────────────── */
.breadcrumb-wrapper {
  position: relative;
  z-index: 1;
  background: #f8f9fa;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

/* ── Section Identité ───────────────────────────────────────── */
.about-identity {
  padding: 3rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.about-identity__inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.about-identity__logo-wrap {
  flex-shrink: 0;
}

.about-identity__logo {
  width: 100px;
  height: auto;
  display: block;
}

.about-identity__logo-placeholder {
  width: 80px;
  height: 80px;
}

.about-identity__logo-placeholder svg {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.about-identity__info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about-identity__name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.25rem;
  line-height: 1.2;
}

.about-identity__founder,
.about-identity__location,
.about-identity__siret {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-mid);
  margin: 0;
}

.about-identity__founder svg,
.about-identity__location svg,
.about-identity__siret svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--teal);
}

.about-identity__founder {
  font-weight: 500;
  color: var(--text-dark);
}

@media (max-width: 600px) {
  .about-identity__inner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .about-identity__founder,
  .about-identity__location,
  .about-identity__siret {
    justify-content: center;
  }
}

/* ── About History (process-story override pour labels années) ─ */
.about-history .process-story__progress-labels span {
  font-size: 0.75rem;
  letter-spacing: 0;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════
   MENTIONS LÉGALES
════════════════════════════════════════════════════════════════ */

.legal-hero {
  padding: calc(5rem + 72px) 0 3.5rem;
  background: linear-gradient(135deg, var(--teal-dark) 0%, #1a3a40 100%);
}

.legal-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.legal-hero__sub {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
}

.legal-hero__sub a {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
}

.legal-content {
  padding: 4rem 0 5rem;
  background: var(--off-white);
}

.legal-content__inner {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.legal-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.legal-section__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  background: var(--teal);
  padding: 0.85rem 1.5rem;
  margin: 0;
}

.legal-section__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.legal-section__body p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin: 0;
}

.legal-section__body a {
  color: var(--teal);
  text-decoration: underline;
  word-break: break-all;
}

.legal-section__body a:hover {
  color: var(--teal-dark);
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.legal-list li {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
  padding-left: 1.25rem;
  position: relative;
}

.legal-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.legal-list strong {
  color: var(--text-dark);
}

.legal-subsection__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin: 1rem 0 0.4rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 600px) {
  .legal-section__body {
    padding: 1.25rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PAGE 404
════════════════════════════════════════════════════════════════ */

/* Animations */
@keyframes pulse404 {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Section principale */
.error-404 {
  min-height: 70vh;
  padding: 8rem 0 5rem;
  display: flex;
  align-items: center;
  background: var(--off-white);
}

.error-404__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Grand 404 */
.error-404__number {
  display: flex;
  align-items: center;
  gap: 0.1em;
  line-height: 1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease both;
}

.error-404__digit {
  font-size: clamp(6rem, 18vw, 12rem);
  font-weight: 900;
  color: var(--teal);
  letter-spacing: -0.02em;
}

.error-404__digit--icon {
  font-size: clamp(4rem, 12vw, 8rem);
  color: var(--teal);
  display: flex;
  align-items: center;
  animation: floatIcon 4s ease-in-out infinite;
}

.error-404__digit--icon svg {
  width: 0.85em;
  height: 0.85em;
}

/* Textes */
.error-404__title {
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  animation: fadeInUp 0.6s 0.2s ease both;
}

.error-404__subtitle {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.6s 0.4s ease both;
}

/* Barre de recherche */
.error-404__search {
  width: 100%;
  max-width: 480px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.6s 0.5s ease both;
}

.error-404__search .search-form {
  display: flex;
  gap: 0.5rem;
}

.error-404__search .search-field {
  flex: 1;
  padding: 0.7rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}

.error-404__search .search-field:focus {
  border-color: var(--teal);
}

.error-404__search .search-submit {
  padding: 0.7rem 1.25rem;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}

.error-404__search .search-submit:hover {
  background: var(--teal-dark);
}

/* Cards raccourcis */
.error-404__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 640px;
  width: 100%;
  animation: fadeInUp 0.6s 0.6s ease both;
}

.error-404__link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.25rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.error-404__link-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  color: var(--teal);
}

.error-404__link-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-light, #e8f4f4);
  border-radius: 50%;
  color: var(--teal);
}

.error-404__link-icon svg {
  width: 20px;
  height: 20px;
}

/* Articles récents */
.error-404-recent {
  padding: 4rem 0;
  background: var(--white);
}

.error-404-recent__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

.error-404-recent__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.error-404-recent__card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}

.error-404-recent__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.error-404-recent__img-wrap {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.error-404-recent__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.error-404-recent__card:hover .error-404-recent__img {
  transform: scale(1.04);
}

.error-404-recent__body {
  padding: 1rem 1.25rem 1.25rem;
}

.error-404-recent__post-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.error-404-recent__post-title a {
  color: var(--text-dark);
  text-decoration: none;
}

.error-404-recent__post-title a:hover {
  color: var(--teal);
}

.error-404-recent__link {
  font-size: 0.85rem;
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
}

.error-404-recent__link:hover {
  text-decoration: underline;
}

/* CTA */
.error-404-cta {
  background: var(--teal-dark);
  padding: 3rem 0;
}

.error-404-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.error-404-cta__text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

/* Responsive 404 */
@media (max-width: 768px) {
  .error-404__links {
    grid-template-columns: 1fr;
    max-width: 280px;
  }
  .error-404-recent__grid {
    grid-template-columns: 1fr;
  }
  .error-404-cta__inner {
    flex-direction: column;
    text-align: center;
  }
}

