/* ============================================================
   ESPRIT DE FAMILLE — Design System & Styles
   ============================================================ */

/* 1. DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand colors */
  --c-terracotta:    #C75B2A;
  --c-saumon:        #E8845A;
  --c-peche:         #F2C4A8;
  --c-creme:         #F9F6F2;
  --c-bleu-ardoise:  #2A5490;
  --c-bleu-clair:    #6898CC;
  --c-bleu-ciel:     #6898CC;
  --c-violet:        #7A5AAA;
  --c-dore:          #E8A030;
  --c-brun:          #4A3728;
  --c-blanc-casse:   #F9F6F2;
  --c-white:         #FFFFFF;

  /* Semantic aliases */
  --c-primary:       var(--c-terracotta);
  --c-secondary:     var(--c-saumon);
  --c-bg:            var(--c-creme);
  --c-bg-alt:        var(--c-blanc-casse);
  --c-text:          var(--c-brun);
  --c-text-sub:      #6B4830;
  --c-accent:        var(--c-bleu-ardoise);
  --c-accent-light:  var(--c-bleu-ciel);
  --c-muted:         var(--c-peche);

  /* Typography */
  --f-title:    'Playfair Display', Georgia, serif;
  --f-subtitle: 'Playfair Display', Georgia, serif;
  --f-body:     'Poppins', system-ui, sans-serif;

  /* Type scale */
  --t-xs:   0.75rem;
  --t-sm:   0.875rem;
  --t-base: 1rem;
  --t-lg:   1.125rem;
  --t-xl:   1.25rem;
  --t-2xl:  1.5rem;
  --t-3xl:  1.875rem;
  --t-4xl:  2.25rem;
  --t-5xl:  3rem;
  --t-6xl:  3.75rem;
  --t-7xl:  4.5rem;

  /* Spacing (8px grid) */
  --s-1:  0.25rem;
  --s-2:  0.5rem;
  --s-3:  0.75rem;
  --s-4:  1rem;
  --s-5:  1.25rem;
  --s-6:  1.5rem;
  --s-8:  2rem;
  --s-10: 2.5rem;
  --s-12: 3rem;
  --s-16: 4rem;
  --s-20: 5rem;
  --s-24: 6rem;
  --s-32: 8rem;

  /* Border radius */
  --r-sm:   0.25rem;
  --r-md:   0.5rem;
  --r-lg:   1rem;
  --r-xl:   1.5rem;
  --r-2xl:  2rem;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(30,42,60,0.07),  0 1px 2px rgba(30,42,60,0.05);
  --shadow-md: 0 4px 14px rgba(30,42,60,0.10),  0 2px 6px  rgba(30,42,60,0.06);
  --shadow-lg: 0 8px 28px rgba(30,42,60,0.13),  0 4px 12px rgba(30,42,60,0.06);

  /* Transitions */
  --tr-fast:   150ms ease-out;
  --tr-mid:    250ms ease-out;
  --tr-slow:   400ms ease-out;

  /* Layout */
  --max-w:     1200px;
  --pad-x:     1.5rem;
  --nav-h:     130px;
}

/* 2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

html {
  font-size: 18px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--f-body);
  font-size: var(--t-base);
  line-height: 1.6;
  color: var(--c-text);
  background: #EDD5BB;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Aurora canvas — couche GPU dédiée, ne repeint pas au scroll */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -10;
  background:
    radial-gradient(ellipse 52% 50% at 84% 10%,  rgba(205,78,28,0.62) 0%, rgba(205,78,28,0.42) 22%, rgba(205,78,28,0.16) 44%, transparent 56%),
    radial-gradient(ellipse 50% 48% at 12% 88%,  rgba(80,152,218,0.58) 0%, rgba(80,152,218,0.38) 22%, rgba(80,152,218,0.14) 44%, transparent 56%),
    radial-gradient(ellipse 42% 38% at 50% 52%,  rgba(228,145,58,0.34) 0%, rgba(228,145,58,0.14) 38%, transparent 54%),
    #EDD5BB;
  will-change: transform;
  transform: translateZ(0);
  pointer-events: none;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--s-4);
  padding: var(--s-2) var(--s-4);
  background: var(--c-primary);
  color: var(--c-white);
  font-weight: 600;
  border-radius: var(--r-md);
  z-index: 9999;
  transition: top var(--tr-fast);
}
.skip-link:focus { top: var(--s-4); }

/* 3. LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.section { padding-block: var(--s-20); }

/* 4. TYPOGRAPHY HELPERS
   ============================================================ */
.section-label {
  font-family: var(--f-body);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-secondary);
  margin-bottom: var(--s-3);
}

.section-title {
  font-family: var(--f-title);
  font-size: clamp(var(--t-3xl), 4.5vw, var(--t-5xl));
  font-weight: 500;
  color: var(--c-brun);
  line-height: 1.12;
  margin-bottom: var(--s-4);
  letter-spacing: -0.015em;
}

.section-intro {
  font-size: var(--t-lg);
  color: var(--c-text-sub);
  max-width: 52ch;
  line-height: 1.72;
  margin-inline: auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--s-12);
}

.section-footer {
  margin-top: var(--s-12);
  text-align: center;
}

/* 5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 0.75rem 2rem;
  font-family: var(--f-body);
  font-size: var(--t-base);
  font-weight: 500;
  border-radius: var(--r-full);
  cursor: pointer;
  transition:
    transform var(--tr-fast),
    box-shadow var(--tr-fast),
    background-color var(--tr-mid),
    color var(--tr-mid),
    border-color var(--tr-mid);
  min-height: 48px;
  white-space: nowrap;
  border: 2px solid transparent;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.btn:focus-visible {
  outline: 3px solid var(--c-primary);
  outline-offset: 3px;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary);
}
.btn--primary:hover {
  background: #b0501f;
  border-color: #b0501f;
  box-shadow: var(--shadow-md);
}
.btn--primary:disabled {
  background: rgba(199,91,42,0.36);
  border-color: rgba(199,91,42,0.36);
  color: rgba(255,255,255,0.5);
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
  transform: none !important;
}
.btn.is-loading {
  pointer-events: none;
  opacity: 0.72;
}

.btn--outline {
  background: transparent;
  color: var(--c-primary);
  border-color: var(--c-primary);
}
.btn--outline:hover {
  background: var(--c-primary);
  color: var(--c-white);
}

.btn--outline-dark {
  background: transparent;
  color: var(--c-brun);
  border-color: rgba(74,55,40,0.5);
}
.btn--outline-dark:hover {
  background: var(--c-brun);
  color: var(--c-white);
  border-color: var(--c-brun);
}

.btn--white {
  background: var(--c-white);
  color: var(--c-primary);
  border-color: var(--c-white);
}
.btn--white:hover {
  background: var(--c-creme);
  border-color: var(--c-creme);
  box-shadow: var(--shadow-md);
}

/* 6. NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 40% 80% at 88% 50%, rgba(199,91,42,0.16) 0%, transparent 60%),
    linear-gradient(160deg, #2A4E6B 0%, #3A6B8A 50%, #243E58 100%);
  border-bottom: 1px solid rgba(199,91,42,0.32);
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  width: 100%;
  padding-left: clamp(0.75rem, 1.5vw, 1.25rem);
  padding-right: clamp(0.75rem, 2vw, 1.5rem);
}

/* Logo zone */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  text-decoration: none;
  flex-shrink: 0;
}

/* Crop : on n'affiche que la partie cœur du PNG (haut de l'image) */
.nav-logo-img-crop {
  width: clamp(56px, 7vw, 84px);
  height: clamp(56px, 7vw, 84px);
  overflow: hidden;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top center;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.25));
  transition: opacity var(--tr-fast);
}
.nav-logo:hover .nav-logo-img { opacity: 0.88; }

/* Texte à droite — Option A */
.nav-logo-brand {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nav-logo-name {
  font-family: var(--f-title);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.3rem, 2vw, 1.95rem);
  color: var(--c-white);
  line-height: 1.05;
  white-space: nowrap;
}

.nav-logo-tagline {
  font-family: var(--f-body);
  font-size: clamp(0.58rem, 0.72vw, 0.66rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242,196,168,0.62);
  white-space: nowrap;
}

/* Nav links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem clamp(0.5rem, 1.2vw, 1rem);
  font-family: var(--f-body);
  font-size: clamp(0.70rem, 0.84vw, 0.78rem);
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--tr-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: clamp(0.5rem, 1.2vw, 1rem);
  right: clamp(0.5rem, 1.2vw, 1rem);
  height: 1.5px;
  background: var(--c-terracotta);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--tr-mid);
}
.nav-link:hover {
  color: var(--c-white);
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}
.nav-link.active {
  color: var(--c-white);
}

/* "Nous contacter" CTA */
.nav-link--cta {
  color: var(--c-white) !important;
  background: var(--c-terracotta);
  border: 1.5px solid var(--c-terracotta);
  border-radius: var(--r-full) !important;
  padding: 0.6rem 1.5rem !important;
  margin-left: var(--s-4);
  font-size: clamp(0.85rem, 0.98vw, 0.93rem) !important;
  letter-spacing: 0.10em;
  font-weight: 600;
  box-shadow: 0 3px 16px rgba(199,91,42,0.32);
  transition: background var(--tr-mid), border-color var(--tr-mid), box-shadow var(--tr-mid), transform var(--tr-fast);
  text-shadow: none !important;
}
.nav-link--cta::after { display: none; }
.nav-link--cta:hover {
  background: #A84820 !important;
  border-color: #A84820 !important;
  box-shadow: 0 5px 22px rgba(168,72,32,0.42);
  transform: translateY(-1px);
}

/* Hamburger — pill chaleureux */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 56px;
  height: 42px;
  padding: var(--s-2) var(--s-3);
  border-radius: var(--r-full);
  background: var(--c-terracotta);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--tr-fast), box-shadow var(--tr-fast), transform var(--tr-fast);
  box-shadow: 0 2px 10px rgba(199,91,42,0.32);
}
.nav-toggle:hover {
  background: var(--c-terracotta);
  box-shadow: 0 4px 16px rgba(199,91,42,0.45);
  transform: scale(1.05);
}
.nav-toggle[aria-expanded="true"] {
  background: var(--c-terracotta);
  box-shadow: 0 2px 10px rgba(199,91,42,0.4);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
  transform-origin: center;
}
.nav-toggle span:nth-child(2) { width: 14px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Overlay + drawer — desktop : overlay caché, drawer transparent au layout */
.nav-overlay       { display: none; }
.nav-drawer        { display: contents; }
.nav-drawer-close  { display: none; }
.nav-drawer-brand  { display: none; }
.nav-drawer-rating { display: none; }

/* ≤ 1400px : réduction niveau 1 — iPad 13" paysage (~1366px) + grands laptops */
@media (max-width: 1400px) {
  :root { --nav-h: 112px; }
  .nav-logo-img-crop { width: clamp(52px, 5.2vw, 70px); height: clamp(52px, 5.2vw, 70px); }
  .nav-logo-name     { font-size: clamp(1.2rem, 1.65vw, 1.6rem); }
  .nav-logo-tagline  { display: none; }
  .nav-link          { padding: 0.5rem clamp(0.32rem, 0.7vw, 0.65rem);
                       font-size: clamp(0.68rem, 0.8vw, 0.76rem); }
  .nav-link--cta     { padding: 0.55rem 1.0rem !important;
                       margin-left: var(--s-2);
                       font-size: clamp(0.82rem, 0.9vw, 0.88rem) !important; }
}

/* ≤ 1150px : réduction niveau 2 — iPad 11" paysage (~1194px) + laptops 13" */
@media (max-width: 1150px) {
  :root { --nav-h: 100px; }
  .nav-logo-img-crop { width: clamp(46px, 5vw, 62px); height: clamp(46px, 5vw, 62px); }
  .nav-logo-name     { font-size: clamp(1.05rem, 1.5vw, 1.35rem); }
  .nav-link          { font-size: clamp(0.64rem, 0.82vw, 0.74rem);
                       padding: 0.5rem clamp(0.28rem, 0.6vw, 0.55rem); }
  .nav-link--cta     { padding: 0.5rem 0.85rem !important;
                       margin-left: var(--s-2);
                       font-size: clamp(0.78rem, 0.86vw, 0.84rem) !important; }
}

/* ≤ 1024px : hamburger + drawer latéral (tablette + téléphone) */
@media (max-width: 1024px) {
  :root { --nav-h: 80px; }

  .nav-toggle { display: flex; }

  /* Overlay flouté */
  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(28, 44, 60, 0.58);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 98;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  /* Drawer wrapper — recouvre tout, glisse depuis la droite */
  .nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 88vw);
    display: flex;
    flex-direction: column;
    background: linear-gradient(160deg, #2A4E6B 0%, #3A6B8A 50%, #243E58 100%);
    box-shadow: -16px 0 56px rgba(0,0,0,0.28);
    border-left: 1px solid rgba(255,255,255,0.1);
    transform: translateX(110%);
    transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 101;
    padding: var(--s-5);
    padding-top: var(--nav-h);
  }
  .nav-drawer.open { transform: translateX(0); }

  /* Croix de fermeture — centrée dans la zone header */
  .nav-drawer-close {
    position: absolute;
    top: calc((var(--nav-h) - 38px) / 2);
    right: var(--s-4);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--r-full);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--c-white);
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--tr-fast), transform 0.22s ease;
  }
  .nav-drawer-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg) scale(1.08);
  }

  /* Logo + nom du drawer */
  .nav-drawer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--s-2);
    padding-top: var(--s-3);
    padding-bottom: var(--s-5);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    margin-bottom: var(--s-3);
  }
  .nav-drawer-logo-crop {
    width: 68px;
    height: 68px;
    flex-shrink: 0;
  }
  .nav-drawer-logo-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
  }
  .nav-drawer-brand-name {
    font-family: var(--f-title);
    font-style: italic;
    font-weight: 500;
    font-size: 1.35rem;
    color: var(--c-white);
    text-align: center;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  }

  /* Liste des liens */
  .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
  }

  /* Liens du drawer */
  .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--s-4) var(--s-3);
    font-family: var(--f-subtitle);
    font-size: 1.2rem;
    color: rgba(255,255,255,0.88);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--r-md);
    white-space: normal;
    transition: background 0.15s ease, color 0.15s ease;
  }
  .nav-link:hover, .nav-link.active {
    background: rgba(255,255,255,0.09);
    color: var(--c-peche);
  }
  .nav-link::after { display: none; }

  .nav-link--cta {
    display: flex;
    justify-content: center;
    margin-top: var(--s-5);
    margin-left: 0 !important;
    padding: var(--s-4) var(--s-8) !important;
    font-size: 1.1rem !important;
    font-weight: 600;
    border-radius: var(--r-full) !important;
    border-bottom: none !important;
    background: var(--c-saumon) !important;
    box-shadow: 0 4px 18px rgba(232,132,90,0.4);
    transition: background var(--tr-mid), box-shadow var(--tr-mid), transform var(--tr-fast);
  }
  .nav-link--cta:hover {
    background: var(--c-terracotta) !important;
    box-shadow: 0 6px 22px rgba(199,91,42,0.5) !important;
    transform: translateY(-1px);
    color: var(--c-white) !important;
  }

  /* Note Google */
  .nav-drawer-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--s-2);
    margin-top: var(--s-8);
    padding-top: var(--s-5);
    border-top: 1px solid rgba(255,255,255,0.12);
    text-align: center;
  }
  .nav-drawer-rating-label {
    font-family: var(--f-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
  }
  .nav-drawer-stars {
    display: flex;
    gap: 3px;
    align-items: center;
  }
  .nav-drawer-stars svg {
    width: 26px;
    height: 26px;
    fill: #FBB928;
    filter: drop-shadow(0 1px 3px rgba(251,185,40,0.5));
  }
  .nav-drawer-rating-score {
    font-family: var(--f-body);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.48);
    letter-spacing: 0.04em;
  }

  .nav-logo-img-crop { width: 52px; height: 52px; }
  .nav-logo-name     { font-size: 1.15rem; }
  .nav-logo-tagline  { display: none; }
}

/* ≤ 480px : téléphone */
@media (max-width: 480px) {
  :root { --nav-h: 72px; }

  .nav { padding-inline: var(--s-3); }

  .nav-drawer {
    width: 100%;
    border-left: none;
    box-shadow: none;
  }

  .nav-logo-img-crop { width: 46px; height: 46px; }
  .nav-logo-name     { font-size: 1rem; }
}

/* 7. HERO COVER — Section pleine page d'accueil
   ============================================================ */
.hero-cover {
  position: relative;
  height: 100vh;
  min-height: 600px;
  margin-top: calc(-1 * var(--nav-h));
  background-color: var(--c-bleu-ardoise);
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-cover__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}

.hero-cover__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    /* Fondu bas vers l'aurora — efface la coupure hero→services */
    linear-gradient(to bottom, transparent 60%, rgba(237,213,187,0.88) 100%),
    /* Ambiance couleur */
    linear-gradient(175deg,
      rgba(199, 91, 42, 0.06) 0%,
      rgba(30, 60, 100, 0.14) 45%,
      rgba(15, 30, 60, 0.38) 80%,
      transparent 100%
    );
  pointer-events: none;
}

.hero-cover__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding-top: calc(var(--nav-h) + clamp(2.5rem, 8vh, 5rem));
  padding-bottom: clamp(2.5rem, 7vh, 4.5rem);
  padding-inline: var(--pad-x);
}

.hero-cover__text {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-cover__text::before {
  content: '';
  position: absolute;
  inset: -4rem -8rem;
  background: radial-gradient(ellipse 100% 100% at center, rgba(0,0,0,0.10) 0%, transparent 45%);
  pointer-events: none;
  z-index: -1;
}

.hero-cover__title {
  font-family: var(--f-title);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(3.5rem, 9vw, 7rem);
  color: var(--c-white);
  line-height: 1;
  letter-spacing: -0.01em;
  text-shadow:
    0 1px 2px rgba(0,0,0,0.98),
    0 2px 6px rgba(0,0,0,0.90),
    0 6px 18px rgba(0,0,0,0.72),
    0 14px 40px rgba(0,0,0,0.50),
    0 0 80px rgba(242,196,168,0.55),
    0 0 160px rgba(242,196,168,0.30);
}

.hero-cover__ornament {
  display: block;
  width: 56px;
  height: 1.5px;
  background: var(--c-saumon);
  border-radius: 2px;
  opacity: 0.85;
}

.hero-cover__tagline {
  font-family: var(--f-subtitle);
  font-style: italic;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  color: var(--c-white);
  line-height: 1.45;
  max-width: 30ch;
  text-shadow:
    0 1px 4px rgba(0,0,0,0.90),
    0 3px 14px rgba(0,0,0,0.70),
    0 0 40px rgba(199,91,42,0.60),
    0 0 80px rgba(199,91,42,0.30);
}

.hero-cover__zone {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.55em 1.3em;
  border-radius: 999px;
  background: rgba(199,91,42,0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(242,196,168,0.45);
  font-family: var(--f-body);
  font-size: clamp(0.82rem, 1.5vw, 0.97rem);
  font-weight: 600;
  color: var(--c-peche);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow:
    0 1px 3px rgba(0,0,0,0.55),
    0 2px 10px rgba(0,0,0,0.35);
  box-shadow:
    0 4px 20px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.12);
  animation: hero-rise 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.92s backwards;
}

.hero-cover__foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-cover__ctas {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  flex-wrap: wrap;
}

.hero-cover__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 3rem;
  font-family: var(--f-body);
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-white);
  background: var(--c-saumon);
  border: 2px solid rgba(255,255,255,0.22);
  border-radius: var(--r-full);
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(0,0,0,0.22), 0 2px 8px rgba(232,132,90,0.3);
  transition:
    background var(--tr-mid),
    transform var(--tr-fast),
    box-shadow var(--tr-mid),
    border-color var(--tr-mid);
  white-space: nowrap;
}
.hero-cover__cta:hover {
  background: var(--c-terracotta);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.28), 0 4px 16px rgba(199,91,42,0.45);
  border-color: rgba(255,255,255,0.35);
}
.hero-cover__cta:focus-visible {
  outline: 3px solid var(--c-peche);
  outline-offset: 3px;
}

.hero-cover__cta--outline {
  background: rgba(242,196,168,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-color: rgba(242,196,168,0.85);
  color: var(--c-white);
  box-shadow: 0 8px 28px rgba(0,0,0,0.24);
}
.hero-cover__cta--outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(242,196,168,0.55);
  color: var(--c-peche);
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}

.hero-cover__scroll {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.42);
  animation: hero-scroll-bounce 2.4s ease-in-out infinite;
}

@keyframes hero-scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ── Animations d'entrée page d'accueil ── */
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-cover__title {
  animation: hero-rise 1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.15s backwards;
}
.hero-cover__ornament {
  animation: hero-fade 0.8s ease-out 0.6s backwards;
}
.hero-cover__tagline {
  animation: hero-rise 1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.75s backwards;
}
.hero-cover__foot {
  animation: hero-rise 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) 1.05s backwards;
}

@media (prefers-reduced-motion: reduce) {
  .hero-cover__title,
  .hero-cover__ornament,
  .hero-cover__tagline,
  .hero-cover__zone,
  .hero-cover__foot {
    animation: none;
  }
}

@media (max-width: 768px) {
  .hero-cover {
    height: 100dvh;
  }

  .hero-cover__bg {
    object-position: 43% top;
  }
}

@media (max-width: 480px) {
  .hero-cover__title   { font-size: clamp(2.8rem, 11vw, 3.8rem); }
  .hero-cover__tagline { font-size: 1.22rem; max-width: 26ch; }
  .hero-cover__cta     { padding: 0.9rem 2.2rem; font-size: 1rem; }
  .hero-cover__zone    { font-size: 0.78rem; padding: 0.5em 1.1em; }
  .hero-cover__ctas    { flex-direction: column; gap: 0.75rem; width: 100%; }
  .hero-cover__cta     { width: 100%; max-width: 280px; }
}

/* 8. HERO (ancienne structure — conservée pour les autres pages)
   ============================================================ */
.hero {
  padding-block: var(--s-24) var(--s-20);
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -15%;
  right: -8%;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(42,84,144,0.14) 0%, transparent 68%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transform: translateZ(0);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--s-16);
  min-height: 58vh;
}

.hero__label {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--f-body);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-secondary);
  margin-bottom: var(--s-5);
}
.hero__label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--c-secondary);
  border-radius: 2px;
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--f-title);
  font-size: clamp(var(--t-4xl), 5.5vw, var(--t-7xl));
  font-weight: 400;
  line-height: 1.08;
  color: var(--c-brun);
  margin-bottom: var(--s-6);
  letter-spacing: -0.025em;
}
.hero__title em {
  font-style: italic;
  color: var(--c-primary);
}

.hero__text {
  font-size: var(--t-lg);
  line-height: 1.78;
  color: var(--c-brun);
  opacity: 0.82;
  max-width: 46ch;
  margin-bottom: var(--s-8);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  align-items: center;
}

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__blob {
  position: relative;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(135deg, var(--c-peche) 0%, rgba(255,240,232,0.5) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__blob::before {
  content: '';
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,132,90,0.13) 0%, transparent 70%);
}
.hero__logo-icon {
  position: relative;
  z-index: 1;
  width: 230px;
  height: 230px;
  filter: drop-shadow(0 10px 28px rgba(199,91,42,0.22));
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* 8. INTRO BAND
   ============================================================ */
.intro-band {
  background: var(--c-primary);
  padding-block: var(--s-10);
}
.intro-band__inner { text-align: center; }
.intro-band__quote {
  font-family: var(--f-subtitle);
  font-size: clamp(var(--t-xl), 3vw, var(--t-3xl));
  font-style: italic;
  color: var(--c-white);
  line-height: 1.5;
  max-width: 68ch;
  margin-inline: auto;
  opacity: 0.96;
}

/* 9. SERVICES
   ============================================================ */
.services { background: transparent; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}

.card {
  background: var(--c-white);
  border-radius: var(--r-2xl);
  padding: var(--s-8);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(42,84,144,0.10);
  transition: transform var(--tr-mid), box-shadow var(--tr-mid);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-lg);
  background: var(--c-peche);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  margin-bottom: var(--s-5);
}

.card__title {
  font-family: var(--f-subtitle);
  font-size: var(--t-xl);
  color: var(--c-brun);
  margin-bottom: var(--s-3);
  line-height: 1.28;
}

.card__text {
  font-size: var(--t-base);
  color: var(--c-text-sub);
  line-height: 1.72;
  margin-bottom: var(--s-5);
}

.card__link {
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--c-primary);
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  transition: gap var(--tr-fast);
}
.card__link:hover { gap: var(--s-2); text-decoration: underline; }

/* 10. VALUES
   ============================================================ */
.values { background: var(--c-bg); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-12);
}

.value-item__num {
  font-family: var(--f-title);
  font-size: var(--t-5xl);
  font-weight: 300;
  color: var(--c-peche);
  line-height: 1;
  margin-bottom: var(--s-4);
}

.value-item__title {
  font-family: var(--f-subtitle);
  font-size: var(--t-2xl);
  color: var(--c-brun);
  margin-bottom: var(--s-3);
  line-height: 1.22;
}

.value-item__text {
  font-size: var(--t-base);
  color: var(--c-text-sub);
  line-height: 1.76;
}

/* 11. HOW IT WORKS
   ============================================================ */
.how-it-works { background: var(--c-peche); }

.steps {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  max-width: 780px;
  margin-inline: auto;
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--s-6);
  align-items: start;
  padding: var(--s-6) var(--s-8);
  background: rgba(255,240,232,0.65);
  border-radius: var(--r-xl);
  border: 1px solid rgba(199,91,42,0.1);
  transition: background var(--tr-mid), transform var(--tr-mid);
}
.step:hover {
  background: rgba(255,240,232,0.95);
  transform: translateX(6px);
}

.step__badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--c-primary);
  color: var(--c-white);
  font-family: var(--f-title);
  font-size: var(--t-2xl);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(199,91,42,0.3);
}

.step__title {
  font-family: var(--f-subtitle);
  font-size: var(--t-xl);
  color: var(--c-brun);
  margin-bottom: var(--s-2);
}

.step__text {
  font-size: var(--t-base);
  color: var(--c-text-sub);
  line-height: 1.7;
}

/* 12. CTA BAND
   ============================================================ */
.cta-band {
  /* 1er layer : fondu haut→bas pour transition douce avec les sections adjacentes */
  background:
    linear-gradient(to bottom,
      transparent 0%,
      rgba(26,50,90,0.95) 12%,
      rgba(26,50,90,0.98) 88%,
      transparent 100%
    ),
    radial-gradient(ellipse 50% 80% at 78% 60%, rgba(122,90,170,0.28) 0%, transparent 58%),
    radial-gradient(ellipse 40% 70% at 10% 40%, rgba(199,91,42,0.18) 0%, transparent 55%),
    linear-gradient(135deg, #1E3C6E 0%, #2A5490 60%, #1A3258 100%);
  padding-block: var(--s-20);
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-8);
  flex-wrap: wrap;
}
.cta-band__title {
  font-family: var(--f-title);
  font-size: clamp(var(--t-3xl), 4vw, var(--t-5xl));
  color: var(--c-white);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: var(--s-2);
}
.cta-band__subtitle {
  font-size: var(--t-lg);
  color: rgba(255,255,255,0.78);
}

/* Fondu bas pour les sections sombres → clair */
.ctact-form-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #F9F6F2);
  pointer-events: none;
  z-index: 0;
}

.recru-form-section::after,
.ctact-form-section::after { display: none; }

/* 13. FOOTER
   ============================================================ */
.site-footer {
  background: var(--c-brun);
  color: rgba(255,240,232,0.78);
  padding-block: var(--s-16) var(--s-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--s-12);
  padding-bottom: var(--s-12);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  margin-bottom: var(--s-6);
}

.footer__logo-link {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  text-decoration: none;
  color: var(--c-white);
  margin-bottom: var(--s-4);
}
.footer__logo-link span {
  font-family: var(--f-title);
  font-size: var(--t-xl);
  font-weight: 500;
}
.footer__tagline {
  font-size: var(--t-sm);
  line-height: 1.65;
  color: rgba(255,255,255,0.90);
  max-width: 30ch;
}

.footer__nav-title {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: var(--s-4);
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.footer__nav a {
  font-size: var(--t-sm);
  color: #ffffff;
  transition: color var(--tr-fast);
}
.footer__nav a:hover { color: var(--c-peche); }

.footer__contact p {
  font-size: var(--t-sm);
  color: #ffffff;
  margin-bottom: var(--s-1);
  line-height: 1.6;
}

.footer__bottom {
  text-align: center;
  font-size: var(--t-xs);
  color: rgba(255,255,255,0.80);
}

/* 14. SCROLL ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
.fade-in-delay-1 { transition-delay: 0.10s; }
.fade-in-delay-2 { transition-delay: 0.20s; }
.fade-in-delay-3 { transition-delay: 0.30s; }
.fade-in-delay-4 { transition-delay: 0.40s; }
.fade-in-delay-5 { transition-delay: 0.50s; }

/* ── SYSTÈME AURORA — Orbes de couleur diffus ──────────────────
   Décoration de fond : grands cercles floutés sur fond clair,
   reproduisant l'esthétique des supports marketing de la marque.
   Technique : z-index:-1 dans un contexte isolation:isolate.
   ============================================================ */
.aurora-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: visible;
}
.orb {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
  transform: translateZ(0);
}

/* ── Couleurs des orbes ── */
.orb--blue   { background: rgba(80, 152, 218, 0.78); }
.orb--orange { background: rgba(205, 78, 28, 0.80); }
.orb--violet { background: rgba(80, 152, 218, 0.56); }
.orb--dore   { background: rgba(228, 145, 55, 0.78); }
.orb--peche  { background: rgba(215, 118, 45, 0.74); }

/* ── Tailles des orbes ── */
.orb--xl {
  width:  clamp(400px, 58vw, 760px);
  height: clamp(400px, 58vw, 760px);
  filter: blur(110px);
}
.orb--lg {
  width:  clamp(300px, 46vw, 620px);
  height: clamp(300px, 46vw, 620px);
  filter: blur(95px);
}
.orb--md {
  width:  clamp(200px, 34vw, 460px);
  height: clamp(200px, 34vw, 460px);
  filter: blur(80px);
}

/* ── Positions des orbes ── */
.orb--top-right    { top: -18%;   right: -10%;  }
.orb--top-left     { top: -14%;   left: -8%;    }
.orb--bottom-right { bottom: -18%; right: -8%;  }
.orb--bottom-left  { bottom: -18%; left: -10%;  }
.orb--center-right { top: 15%;    right: -12%;  }
.orb--center-left  { top: 20%;    left: -10%;   }
.orb--center       { top: 30%;    left: 30%;    }

/* ─── SECTIONS TRANSPARENTES — toutes les pages ────────────────
   Le fond du body (aurora fixed) transparaît à travers toutes les
   sections claires. Pas de démarcation : une seule surface continue.
   ============================================================ */
.services, .reviews, .fiscal, .values,
.fonct-intro, .fonct-garanties, .fonct-fiscal, .fonct-parcours, .fonct-simu,
.qsn-vals, .qsn-team,
.recru-promise, .recru-perks, .recru-reviews, .recru-profile, .recru-process,
.ctact-info,
.svc-chapters, .svc-reviews,
.etapes-intro,
.page-hero, .qsn-hero, .recru-hero { background: transparent; }

/* .about : transparent aussi, sauf mobile (layout magazine avec photo) */
.about { background: transparent; }
@media (max-width: 580px) {
  .about { background: var(--c-brun); }
}



/* 15. RESPONSIVE — Tablet (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --pad-x: 1.25rem; }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--s-12);
    min-height: auto;
  }
  .hero__label { justify-content: center; }
  .hero__text { max-width: 100%; margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__blob { width: 280px; height: 280px; }
  .hero__logo-icon { width: 160px; height: 160px; }

  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-8); }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

/* 16. RESPONSIVE — Mobile (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --pad-x: 1rem; }

  .section { padding-block: var(--s-12); }

  .hero { padding-block: var(--s-12) var(--s-10); }
  .hero__blob { width: 220px; height: 220px; }
  .hero__logo-icon { width: 140px; height: 140px; }

  .cards-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; gap: var(--s-8); }

  .step {
    grid-template-columns: 1fr;
    gap: var(--s-4);
  }

  .cta-band__inner { flex-direction: column; text-align: center; }

  .footer__grid { grid-template-columns: 1fr; gap: var(--s-8); }
}

/* Small mobile (≤375px) */
@media (max-width: 375px) {
  .hero__actions { flex-direction: column; width: 100%; }
  .btn { width: 100%; justify-content: center; }
}

/* ── SECTION 2 — NOS SERVICES ─────────────────────────────────
   ============================================================ */
.services {
  padding-top: clamp(var(--s-16), 8vw, var(--s-24));
  padding-bottom: clamp(var(--s-8), 4vw, var(--s-12));
  background: transparent;
  position: relative;
  isolation: isolate;
  overflow: visible;
}

.services__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s-6);
  margin-bottom: var(--s-10);
  flex-wrap: wrap;
}

.services__title {
  font-family: var(--f-title);
  font-size: clamp(var(--t-3xl), 4vw, var(--t-5xl));
  font-weight: 500;
  color: var(--c-brun);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: var(--s-2);
}

.services__subtitle {
  font-family: var(--f-body);
  font-size: var(--t-base);
  color: var(--c-text-sub);
  line-height: 1.6;
  max-width: 44ch;
}

.services__all-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--f-body);
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--c-white);
  background: var(--c-terracotta);
  text-decoration: none;
  white-space: nowrap;
  border-radius: 9999px;
  padding: var(--s-3) var(--s-6);
  box-shadow: 0 3px 14px rgba(199,91,42,0.25);
  align-self: center;
  transition: background 0.2s ease, transform 0.18s ease, box-shadow 0.2s ease;
}
.services__all-link svg {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.services__all-link:hover {
  background: #A84820;
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(168,72,32,0.28);
}
.services__all-link:hover svg {
  transform: translateX(4px);
}

/* Grid bento 4 colonnes */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(var(--s-3), 1.2vw, var(--s-5));
}

/* ── Carte de base ── */
.service-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: clamp(var(--s-6), 2.5vw, var(--s-8));
  box-shadow:
    0 2px 10px rgba(30,42,60,0.07),
    0 1px 3px  rgba(30,42,60,0.04);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  transition: box-shadow var(--tr-mid), transform var(--tr-fast);
  position: relative;
  cursor: pointer;
}

/* Stretched link — toute la carte est cliquable */
.service-card__link {
  color: inherit;
  text-decoration: none;
}
.service-card__link::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
}
.service-card:hover {
  box-shadow:
    0 8px 28px rgba(30,42,60,0.13),
    0 2px 8px  rgba(30,42,60,0.06);
  transform: translateY(-3px);
}

/* Large : occupe 2 colonnes */
.service-card--large { grid-column: span 2; }

/* ── Carte vedette (terracotta) ── */
.service-card--featured {
  background: var(--c-terracotta);
}
.service-card--featured:hover {
  box-shadow:
    0 8px 28px rgba(199,91,42,0.35),
    0 2px 8px  rgba(199,91,42,0.18);
}

/* Icône */
.service-card__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--c-saumon);
}
.service-card--featured .service-card__icon {
  color: rgba(255,255,255,0.82);
  width: 130px;
  height: 73px;
  overflow: hidden;
}

.service-card--featured .service-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
}

/* Titre de carte */
.service-card__title {
  font-family: var(--f-subtitle);
  font-size: clamp(var(--t-base), 1.3vw, var(--t-lg));
  font-weight: 700;
  color: var(--c-brun);
  line-height: 1.25;
}
.service-card--featured .service-card__title {
  color: var(--c-white);
}

/* Description */
.service-card__desc {
  font-family: var(--f-body);
  font-size: var(--t-sm);
  color: var(--c-text-sub);
  line-height: 1.65;
}
.service-card--featured .service-card__desc {
  color: var(--c-white);
  opacity: 0.88;
}

/* ── Responsive services ── */
@media (max-width: 960px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card--large {
    grid-column: span 2;
  }
}

@media (max-width: 540px) {
  .services__grid {
    grid-template-columns: 1fr;
    gap: var(--s-3);
  }
  .service-card--large {
    grid-column: span 1;
  }
  .services__header {
    flex-direction: column;
    gap: var(--s-3);
  }
}

/* ── SECTION 3 — AVIS GOOGLE ───────────────────────────────────
   ============================================================ */
.reviews {
  padding-top: clamp(var(--s-8), 4vw, var(--s-12));
  padding-bottom: clamp(var(--s-16), 8vw, var(--s-24));
  background: transparent;
  position: relative;
  isolation: isolate;
  overflow: visible;
}

/* En-tête centré */
.reviews__head {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s-4);
  margin-bottom: clamp(var(--s-8), 4vw, var(--s-12));
}

.reviews__title {
  font-family: var(--f-title);
  font-size: clamp(var(--t-3xl), 4vw, var(--t-5xl));
  font-weight: 500;
  color: var(--c-brun);
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.reviews__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
}

.reviews__rating-stars {
  display: flex;
  gap: 4px;
}

.reviews__rating-label {
  font-family: var(--f-body);
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--c-brun);
  opacity: 0.60;
}

/* Carousel — pleine largeur, masque sur les bords */
.reviews__carousel {
  padding-block: var(--s-3) var(--s-4);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 7%,
    black 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 7%,
    black 88%,
    transparent 100%
  );
  cursor: default;
}

/* Track : défilement infini de droite à gauche */
.reviews__track {
  display: flex;
  gap: clamp(var(--s-4), 2vw, var(--s-6));
  width: max-content;
  padding-inline: clamp(var(--s-6), 4vw, var(--s-12));
  padding-block: var(--s-4);
  animation: reviews-scroll 220s linear infinite;
  pointer-events: none;
}

.review-card {
  pointer-events: auto;
}

@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .reviews__track { animation: none; }
}

/* Carte avis */
.review-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: clamp(var(--s-6), 2.5vw, var(--s-8));
  width: clamp(300px, 44vw, 500px);
  flex-shrink: 0;
  box-shadow:
    0 2px 12px rgba(30,42,60,0.08),
    0 1px 4px  rgba(30,42,60,0.04);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.review-card__name {
  font-family: var(--f-subtitle);
  font-size: var(--t-lg);
  font-weight: 400;
  color: var(--c-brun);
  line-height: 1.2;
}

.review-card__stars {
  display: flex;
  gap: 3px;
}

.review-card__text {
  font-family: var(--f-body);
  font-size: var(--t-sm);
  color: var(--c-text-sub);
  line-height: 1.72;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Responsive avis ── */
@media (max-width: 768px) {
  .review-card {
    width: clamp(260px, 78vw, 380px);
  }
}

@media (max-width: 480px) {
  .review-card {
    width: clamp(240px, 84vw, 340px);
    padding: var(--s-5);
  }
  .reviews__rating-stars svg { width: 15px; height: 15px; }
}

/* ── SECTION 4 — QUI SOMMES-NOUS ──────────────────────────────
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: clamp(420px, 55vw, 640px);
  background: transparent;
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: visible;
}

/* ── Côté photo ── */
.about__photo-side {
  position: relative;
  z-index: 1;
  border-radius: clamp(0.5rem, 1.5vw, 1.5rem) clamp(1.5rem, 3vw, 3rem) clamp(1.5rem, 3vw, 3rem) 0;
  overflow: hidden;
  background: var(--c-bleu-ciel);
}

/* Fondu haut — dissout la démarcation reviews→about */
.about__photo-side::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: clamp(80px, 14vw, 150px);
  background: linear-gradient(to bottom, #EDD5BB 0%, rgba(237,213,187,0.45) 55%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

.about__photo {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(199,91,42,0.07) 0%,
    transparent 55%
  );
  pointer-events: none;
}

/* ── Côté texte ── */
.about__text-side {
  display: flex;
  align-items: center;
  padding: clamp(var(--s-10), 5vw, var(--s-20)) clamp(var(--s-8), 5vw, var(--s-16));
}

.about__text-inner {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  max-width: 34ch;
}

.about__eyebrow {
  font-family: var(--f-body);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-saumon);
}

.about__title {
  font-family: var(--f-title);
  font-size: clamp(var(--t-4xl), 4.5vw, var(--t-6xl));
  font-weight: 500;
  color: var(--c-brun);
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.about__ornament {
  display: block;
  width: 48px;
  height: 1.5px;
  background: var(--c-saumon);
  border-radius: 2px;
  opacity: 0.8;
}

.about__desc {
  font-family: var(--f-body);
  font-size: var(--t-base);
  color: var(--c-text-sub);
  line-height: 1.72;
}

.about__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  align-self: flex-start;
  margin-top: var(--s-2);
  background: var(--c-terracotta);
  color: var(--c-white);
  font-family: var(--f-body);
  font-size: var(--t-sm);
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: var(--s-3) var(--s-6);
  border-radius: var(--r-full);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(199,91,42,0.28);
  transition: background var(--tr-fast), transform var(--tr-fast), box-shadow var(--tr-fast);
}
.about__cta:hover {
  background: #A84820;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(168,72,32,0.30);
}
.about__cta:focus-visible {
  outline: 3px solid var(--c-peche);
  outline-offset: 3px;
}

/* ── Responsive about ── */

/* Tablette (≤ 900px) : split conservé, proportions resserrées */
@media (max-width: 900px) {
  .about {
    grid-template-columns: 1fr 1fr;
    min-height: clamp(340px, 50vw, 500px);
  }
  .about__text-inner { max-width: 26ch; }
  .about__title { font-size: clamp(var(--t-3xl), 4.8vw, var(--t-4xl)); }
  .about__text-side {
    padding: clamp(var(--s-8), 4vw, var(--s-12)) clamp(var(--s-5), 3.5vw, var(--s-10));
  }
}

/* Mobile (≤ 580px) : photo plein fond + texte en overlay magazine */
@media (max-width: 580px) {
  .about {
    display: block;
    position: relative;
    min-height: 75dvh;
    background: var(--c-brun);
  }

  /* Photo : couvre toute la section */
  .about__photo-side {
    position: absolute;
    inset: 0;
    border-radius: 0;
    z-index: 0;
  }

  /* Dégradé sombre — couvre 80 % de la photo pour garantir le contraste */
  .about__photo-overlay {
    background: linear-gradient(
      to top,
      rgba(22,12,5,0.97) 0%,
      rgba(22,12,5,0.88) 20%,
      rgba(22,12,5,0.70) 40%,
      rgba(22,12,5,0.42) 60%,
      rgba(22,12,5,0.14) 78%,
      transparent 100%
    );
  }

  /* Texte : collé en bas de la section */
  .about__text-side {
    position: relative;
    z-index: 1;
    min-height: 75dvh;
    display: flex;
    align-items: flex-end;
    padding: 0 var(--s-6) clamp(var(--s-8), 8vw, var(--s-12));
    background: none;
  }

  .about__text-inner {
    max-width: 100%;
    gap: var(--s-4);
    background: rgba(10,5,2,0.42);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 1.5rem;
    padding: 1.5rem 1.25rem;
  }

  /* Overrides couleurs + lisibilité sur fond photo */
  .about__eyebrow {
    color: var(--c-peche);
    text-shadow: 0 1px 8px rgba(0,0,0,0.8);
  }
  .about__title {
    color: var(--c-white);
    font-size: clamp(1.25rem, 6vw, 1.75rem);
    text-shadow: 0 2px 14px rgba(0,0,0,0.7), 0 1px 4px rgba(0,0,0,0.5);
  }
  .about__ornament  { background: var(--c-peche); opacity: 0.9; }
  .about__desc {
    color: var(--c-white);
    opacity: 1;
    text-shadow: 0 1px 8px rgba(0,0,0,0.7);
  }
}


/* ═══════════════════════════════════════════════════════════════
   ACCENTS TITRES — SVG tracés à main levée
   Couleur commune : #E07A2E  (orange terracotta clair)
   ═══════════════════════════════════════════════════════════════ */

/* Base commune à tous les accents */
.title-accent {
  display: inline-block;
  position: relative;
}

/* ── Underline (Nos services) ── */
.title-accent--line {
  padding-bottom: 0.28em;
}

.title-accent--line .title-accent__svg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.22em;
  overflow: visible;
  pointer-events: none;
}

/* ── Arc / sourire (Ce qu'ils disent de nous) ── */
.title-accent--arc {
  padding-bottom: 0.32em;
}

.title-accent--arc .title-accent__svg {
  position: absolute;
  left: -2%;
  bottom: 0;
  width: 104%;
  height: 0.3em;
  overflow: visible;
  pointer-events: none;
}

/* ── Oval / encerclement (Qui sommes-nous) ── */
.title-accent--oval {
  padding: 0.32em 0.85em;
  border: 2.5px solid #E07A2E;
  border-radius: 100vw;
}

/* SVG désactivé — remplacé par bordure CSS responsive */
.title-accent__svg--oval {
  display: none;
}


/* ═══════════════════════════════════════════════════════════════
   SECTION 5 — AVANTAGES FISCAUX (Crédit d'impôt / Avance immédiate)
   ═══════════════════════════════════════════════════════════════ */
.fiscal {
  padding-block: clamp(var(--s-16), 8vw, var(--s-24));
  background: transparent;
  position: relative;
  isolation: isolate;
  overflow: visible;
}

/* En-tête centré */
.fiscal__header {
  text-align: center;
  max-width: 50ch;
  margin-inline: auto;
  margin-bottom: clamp(var(--s-16), 8vw, var(--s-24));
}

.fiscal__title {
  font-family: var(--f-title);
  font-size: clamp(var(--t-3xl), 4.2vw, var(--t-5xl));
  font-weight: 500;
  color: var(--c-brun);
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin-bottom: var(--s-4);
}

.fiscal__title-hl {
  display: inline-block;
  position: relative;
  padding-bottom: 0.28em;
}

.fiscal__title-stroke {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.22em;
  overflow: visible;
  pointer-events: none;
}

.fiscal__intro {
  font-family: var(--f-body);
  font-size: var(--t-lg);
  color: var(--c-text-sub);
  line-height: 1.65;
}

/* ─── Bloc visuel prix ─────────────────────────────────────── */
.fiscal__price {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(var(--s-8), 6vw, var(--s-16));
  background: var(--c-white);
  border-radius: clamp(1.25rem, 3vw, 2rem);
  padding: clamp(var(--s-10), 5vw, var(--s-14)) clamp(var(--s-10), 8vw, var(--s-24));
  box-shadow:
    0 4px 24px rgba(74,55,40,0.08),
    0 1px 4px rgba(74,55,40,0.05);
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: clamp(var(--s-6), 3vw, var(--s-10));
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.fiscal__price:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 52px rgba(74,55,40,0.12),
    0 4px 12px rgba(74,55,40,0.06);
}

.fiscal__price-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: var(--s-3);
}

.fiscal__price-tag {
  font-family: var(--f-body);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--c-brun);
  opacity: 0.45;
}

.fiscal__price-num {
  font-family: var(--f-subtitle);
  font-weight: 400;
  line-height: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fiscal__price-num--before {
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  color: var(--c-brun);
  opacity: 0.28;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.fiscal__price-num--after {
  font-size: clamp(3.6rem, 7.5vw, 5.5rem);
  color: var(--c-terracotta);
}

.fiscal__price-num small {
  font-size: 0.48em;
  font-family: var(--f-body);
  font-weight: 400;
  opacity: 0.75;
}

/* Badge central -50% */
.fiscal__price-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--c-terracotta);
  color: var(--c-white);
  border-radius: 9999px;
  width: clamp(90px, 12vw, 118px);
  height: clamp(90px, 12vw, 118px);
  flex-shrink: 0;
  align-self: center;
  box-shadow: 0 6px 22px rgba(199,91,42,0.30);
  gap: 2px;
}

.fiscal__price-badge-pct {
  font-family: var(--f-body);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
}

.fiscal__price-badge-sub {
  font-family: var(--f-body);
  font-size: clamp(0.75rem, 1vw, 0.84rem);
  font-weight: 500;
  opacity: 0.88;
  letter-spacing: 0.035em;
  line-height: 1.35;
  text-transform: uppercase;
}

/* ─── Cartes explicatives ──────────────────────────────────── */
.fiscal__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(var(--s-5), 2.5vw, var(--s-8));
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: clamp(var(--s-12), 6vw, var(--s-16));
}

.fiscal__card {
  background: var(--c-white);
  border-radius: clamp(1.25rem, 2vw, 1.75rem);
  padding: clamp(var(--s-8), 4vw, var(--s-12));
  box-shadow:
    0 2px 12px rgba(30,42,60,0.07),
    0 1px 4px rgba(30,42,60,0.04);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  border-top: 3px solid var(--c-bleu-ardoise);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.fiscal__card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 16px 44px rgba(30,42,60,0.12),
    0 4px 10px rgba(30,42,60,0.06);
}

.fiscal__card-icon {
  width: 48px;
  height: 48px;
  background: rgba(42, 84, 144, 0.10);
  border-radius: clamp(10px, 1.5vw, 14px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-bleu-ardoise);
  flex-shrink: 0;
}

.fiscal__card-icon svg {
  width: 22px;
  height: 22px;
}

.fiscal__card-title {
  font-family: var(--f-subtitle);
  font-size: var(--t-lg);
  font-weight: 400;
  color: var(--c-brun);
  line-height: 1.2;
}

.fiscal__card-desc {
  font-family: var(--f-body);
  font-size: var(--t-base);
  color: var(--c-text-sub);
  line-height: 1.70;
}

/* ─── Vidéo YouTube ────────────────────────────────────────── */
.fiscal__video {
  width: 100%;
  margin-top: clamp(var(--s-6), 3vw, var(--s-8));
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 8px 32px rgba(74,55,40,0.14);
}

.fiscal__video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ─── Footer CTA ───────────────────────────────────────────── */
.fiscal__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-4);
}

.fiscal__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--f-body);
  font-size: var(--t-base);
  font-weight: 500;
  color: var(--c-white);
  background: var(--c-terracotta);
  border-radius: 9999px;
  padding: var(--s-4) clamp(var(--s-8), 5vw, var(--s-12));
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(199,91,42,0.22);
}

.fiscal__cta:hover {
  background: #A84820;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168,72,32,0.30);
}

.fiscal__cta svg {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.fiscal__cta:hover svg {
  transform: translateX(3px);
}

.fiscal__note {
  font-family: var(--f-body);
  font-size: var(--t-xs);
  color: var(--c-brun);
  opacity: 0.42;
  text-align: center;
  line-height: 1.55;
}

/* ─── Responsive ───────────────────────────────────────────── */
@media (max-width: 600px) {
  .fiscal__price {
    flex-direction: column;
    gap: var(--s-6);
    padding: var(--s-8) var(--s-6);
  }

  .fiscal__price-badge {
    order: -1;
    width: 106px;
    height: 106px;
    padding: 8px 10px;
    overflow: hidden;
    gap: 3px;
  }

  .fiscal__price-badge-pct {
    font-size: 1.15rem;
  }

  .fiscal__price-badge-sub {
    font-size: 0.58rem;
    letter-spacing: 0.02em;
    line-height: 1.3;
  }

  .fiscal__cards {
    grid-template-columns: 1fr;
    gap: var(--s-4);
  }

  .fiscal__card {
    padding: var(--s-6);
    gap: var(--s-4);
  }

}


/* ═══════════════════════════════════════════════════════════════
   FOOTER — Version 3 : Éditorial & Premium
   ═══════════════════════════════════════════════════════════════ */

/* ── Logos certifications (section fiscal) ── */
.fiscal__logos {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(var(--s-12), 6vw, var(--s-16));
  margin-top: clamp(var(--s-8), 4vw, var(--s-12));
  padding: clamp(var(--s-6), 3vw, var(--s-8)) clamp(var(--s-10), 6vw, var(--s-16));
  background: #FFFFFF;
  border-radius: var(--r-2xl);
  border: 1px solid rgba(199,91,42,0.12);
  box-shadow:
    0 4px 24px rgba(74,55,40,0.07),
    0 1px 4px rgba(74,55,40,0.05);
}

.fiscal__logo-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
}

.fiscal__logo-name {
  font-family: var(--f-title);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(0.85rem, 1.2vw, 1.05rem);
  color: var(--c-brun);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.fiscal__logo-img {
  width: clamp(90px, 11vw, 140px);
  height: clamp(90px, 11vw, 140px);
  object-fit: contain;
  display: block;
  transition: transform 0.22s;
}

.fiscal__logo-link {
  display: block;
  border-radius: var(--r-md);
  outline-offset: 4px;
}
.fiscal__logo-link .fiscal__logo-img {
  width: clamp(150px, 18vw, 220px);
  height: clamp(150px, 18vw, 220px);
}

.fiscal__logo-link:hover .fiscal__logo-img,
.fiscal__logo-link:focus-visible .fiscal__logo-img {
  transform: translateY(-3px);
}

.fiscal__logo-sep {
  display: block;
  width: 1px;
  height: 64px;
  background: rgba(74,55,40,0.12);
  border-radius: 1px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .fiscal__logos {
    width: 100%;
    box-sizing: border-box;
    padding: var(--s-5) var(--s-5);
    gap: var(--s-5);
  }

  .fiscal__logo-img,
  .fiscal__logo-link .fiscal__logo-img {
    width: clamp(80px, 22vw, 100px);
    height: clamp(80px, 22vw, 100px);
  }

  .fiscal__logo-sep {
    height: 48px;
  }
}

.site-footer {
  background:
    linear-gradient(to bottom, transparent 0%, rgba(27,59,80,0.60) 12%, rgba(27,59,80,0.96) 28%, rgba(27,59,80,1) 100%),
    linear-gradient(180deg, #1B3B50 0%, #264F6A 35%, #3A6B8A 100%);
  color: var(--c-white);
  border-top: none;
  padding-top: 0;
  padding-bottom: clamp(var(--s-8), 4vw, var(--s-12));
}

/* ── Bande éditoriale ── */
.footer__editorial {
  padding-block: clamp(var(--s-12), 7vw, var(--s-24));
  position: relative;
  overflow: hidden;
}

.footer__editorial::before {
  content: '\201C';
  position: absolute;
  top: -0.15em;
  left: -0.04em;
  font-family: var(--f-title);
  font-size: clamp(14rem, 25vw, 22rem);
  color: rgba(242,196,168,0.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.footer__editorial-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(var(--s-8), 6vw, var(--s-20));
  flex-wrap: wrap;
}

.footer__editorial-quote {
  font-family: var(--f-title);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(var(--t-3xl), 5.5vw, 3.8rem);
  color: var(--c-white);
  line-height: 1.18;
  letter-spacing: -0.025em;
  flex: 1;
  min-width: 240px;
}

.footer__editorial-quote em {
  color: var(--c-peche);
  font-style: italic;
}

.footer__editorial-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  flex-shrink: 0;
  font-family: var(--f-body);
  font-size: var(--t-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.90);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 9999px;
  padding: var(--s-3) var(--s-6);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.18s ease;
}
.footer__editorial-cta:hover {
  background: var(--c-saumon);
  border-color: var(--c-saumon);
  color: var(--c-white);
  transform: translateY(-2px);
}
.footer__editorial-cta svg {
  transition: transform 0.2s ease;
}
.footer__editorial-cta:hover svg {
  transform: translateX(3px);
}

/* ── Séparateur logo centré ── */
.footer__sep {
  display: flex;
  align-items: center;
  gap: clamp(var(--s-4), 2vw, var(--s-8));
  padding-inline: clamp(var(--s-6), 5vw, var(--s-20));
  margin-bottom: clamp(var(--s-10), 5vw, var(--s-16));
}

.footer__sep-rule {
  flex: 1;
  height: 1px;
  background: rgba(242,196,168,0.20);
}

.footer__sep-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  object-position: top center;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.30));
  opacity: 0.85;
  flex-shrink: 0;
}

/* ── Corps : grille 3 colonnes ── */
.footer__body {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: clamp(var(--s-8), 4vw, var(--s-16));
  align-items: start;
  margin-bottom: clamp(var(--s-12), 5vw, var(--s-16));
}

/* ── Colonne marque ── */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
}

.footer__brand-name {
  font-family: var(--f-title);
  font-style: italic;
  font-size: clamp(var(--t-xl), 2.2vw, var(--t-3xl));
  font-weight: 500;
  color: var(--c-white);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.footer__brand-sub {
  font-family: var(--f-body);
  font-size: var(--t-xs);
  color: rgba(255,255,255,0.48);
  line-height: 1.65;
  margin-top: var(--s-1);
}

.footer__rating {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.footer__rating-stars {
  display: flex;
  gap: 3px;
}

.footer__rating-stars svg {
  width: 16px;
  height: 16px;
}

.footer__rating-text {
  font-family: var(--f-body);
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.50);
}

.footer__rating-score {
  color: var(--c-white);
  font-weight: 600;
}

.footer__social {
  display: flex;
  gap: var(--s-3);
  margin-top: var(--s-5);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.22s, border-color 0.22s, background 0.22s;
}

.footer__social-link:hover {
  color: var(--c-white);
  border-color: rgba(242,196,168,0.55);
  background: rgba(255,255,255,0.07);
}

/* ── Colonnes contact / navigation ── */
.footer__col {
  padding-top: var(--s-1);
}

.footer__col-title {
  font-family: var(--f-body);
  font-size: 0.66rem;
  font-weight: 700;
  color: rgba(242,196,168,0.95);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--s-5);
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.footer__item {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--f-body);
  font-size: var(--t-sm);
  color: #ffffff;
}

.footer__item svg {
  flex-shrink: 0;
  color: rgba(232,132,90,1);
}

/* Links avec underline slide-in */
.footer__link {
  display: inline-block;
  position: relative;
  font-family: var(--f-body);
  font-size: var(--t-sm);
  color: #ffffff;
  text-decoration: none;
  transition: color 0.22s ease;
}
.footer__link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c-saumon);
  transition: width 0.25s ease;
}
.footer__link:hover {
  color: var(--c-peche);
}
.footer__link:hover::after {
  width: 100%;
}

/* ── Zone basse ── */
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-4);
}

.footer__divider {
  width: 50%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.12), transparent);
}

.footer__legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  flex-wrap: wrap;
}

.footer__copy {
  font-family: var(--f-body);
  font-size: var(--t-xs);
  color: rgba(255,255,255,0.28);
}

.footer__legal-link {
  font-family: var(--f-body);
  font-size: var(--t-xs);
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color var(--tr-fast);
}
.footer__legal-link:hover {
  color: var(--c-peche);
}

.footer__legal-sep {
  color: rgba(255,255,255,0.18);
  font-size: var(--t-xs);
  user-select: none;
}

/* ── Responsive tablette (≤ 900px) ── */
@media (max-width: 900px) {
  .footer__editorial-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s-6);
  }

  .footer__body {
    grid-template-columns: 1fr 1fr;
    gap: clamp(var(--s-8), 5vw, var(--s-12));
  }

  .footer__brand {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--s-8);
    align-items: flex-start;
  }
}

/* ── Responsive mobile (≤ 560px) ── */
@media (max-width: 560px) {
  .footer__sep { padding-inline: var(--s-4); }

  .footer__body {
    grid-template-columns: 1fr;
    gap: var(--s-8);
  }

  .footer__brand {
    flex-direction: column;
    gap: var(--s-5);
  }

  .footer__divider { width: 72%; }

  .footer__legal {
    flex-direction: column;
    gap: var(--s-2);
    text-align: center;
  }
}


/* ============================================================
   PAGE — NOS SERVICES
   ============================================================ */

/* Lien actif identique au survol des autres liens — pas d'override */

/* ══════════════════════════════════════════════════════════════
   HERO — titre seul, couleurs du site, photo organique droite
   ══════════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: 54% 46%;
  min-height: clamp(480px, 58vw, 620px);
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 75% at 92% 20%, rgba(42,84,144,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 45% 65% at 5% 80%, rgba(122,90,170,0.14) 0%, transparent 52%),
    radial-gradient(ellipse 60% 70% at 48% 50%, rgba(199,91,42,0.06) 0%, transparent 58%),
    linear-gradient(148deg, #F9F6F2 0%, #F9F6F2 40%, #F3EFE9 100%);
}

/* Motif tacheté très discret en fond */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(42,84,144,0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  mask-image: linear-gradient(to right, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,0.15) 100%);
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,0.15) 100%);
}

/* Cœurs décoratifs discrets */
.page-hero::after {
  content: '♥  ♥  ♥';
  position: absolute;
  bottom: 7%;
  left: 3%;
  font-size: 9px;
  letter-spacing: 8px;
  color: var(--c-terracotta);
  opacity: 0.09;
  pointer-events: none;
  font-family: var(--f-body);
  transform: rotate(-8deg);
}

/* ── Colonne texte gauche ── */
.page-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-inline: clamp(2.5rem, 6vw, 7rem);
  padding-block: clamp(4.5rem, 9vw, 7rem);
}

.page-hero__content::before { display: none; }

/* Eyebrow masqué — bandeau épuré */
.page-hero__eyebrow { display: none; }
.page-hero__eyebrow::before { display: none; }

/* Titre "Nos services" — un seul bloc, même style */
.page-hero__title {
  font-family: var(--f-title);
  font-size: clamp(5rem, 10.5vw, 11rem);
  font-weight: 600;
  color: var(--c-brun);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: clamp(var(--s-7), 3.5vw, var(--s-10));
}

/* Sous-éléments hérités du HTML précédent — réinitialisés */
.page-hero__title-nos,
.page-hero__title-svc {
  display: inline;
  font-style: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  opacity: 1;
  margin: 0;
  padding: 0;
}

/* Filet terracotta de séparation titre / sous-titre */
.page-hero__ornament {
  display: block;
  width: clamp(52px, 6.5vw, 80px);
  height: 2.5px;
  background: linear-gradient(to right, var(--c-terracotta), var(--c-saumon), rgba(242,196,168,0.3));
  border-radius: 3px;
  margin-bottom: clamp(var(--s-6), 3vw, var(--s-8));
}

/* Sous-titre court — seul texte après le titre */
.page-hero__sub {
  font-family: var(--f-body);
  font-size: clamp(1.08rem, 1.28vw, 1.16rem);
  color: var(--c-text-sub);
  max-width: 40ch;
  line-height: 1.88;
}

/* Éléments retirés du bandeau */
.page-hero__quote,
.page-hero__trust,
.page-hero__cta { display: none; }

/* ── Colonne photo droite ── */
.page-hero__photo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 5rem);
}

/* Rectangle décoratif décalé derrière la photo */
.page-hero__photo-deco {
  position: absolute;
  top: 10%;
  right: 8%;
  width: 80%;
  height: 84%;
  border: 1.5px solid rgba(199,91,42,0.15);
  border-radius: 3rem 5rem 4rem 6rem;
  transform: rotate(3deg);
  pointer-events: none;
}

/* Cadre photo organique */
.page-hero__photo-frame {
  position: relative;
  z-index: 1;
  width: 82%;
  height: clamp(380px, 52vw, 560px);
  border-radius: 4rem 6rem 5rem 7rem;
  overflow: hidden;
  box-shadow:
    0 24px 72px rgba(74,55,40,0.16),
    0 6px 18px rgba(74,55,40,0.09),
    0 0 0 4px rgba(255,255,255,0.92);
}

.page-hero__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: brightness(0.92) saturate(0.85);
}

/* Badge non utilisé */
.page-hero__photo-badge,
.page-hero__photo-badge-stars,
.page-hero__photo-badge-score,
.page-hero__photo-badge-label { display: none; }

/* ── Animations d'entrée page nos-services ── */
.page-services .page-hero__title {
  animation: hero-rise 1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.15s backwards;
}
.page-services .page-hero__photo {
  animation: hero-rise 1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.35s backwards;
}
.page-services .page-hero__ornament {
  animation: hero-fade 0.8s ease-out 0.6s backwards;
}
.page-services .page-hero__sub {
  animation: hero-rise 1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.75s backwards;
}

@media (prefers-reduced-motion: reduce) {
  .page-services .page-hero__title,
  .page-services .page-hero__ornament,
  .page-services .page-hero__sub,
  .page-services .page-hero__photo {
    animation: none;
  }
}

/* ══════════════════════════════════════════════════════════════
   SECTION SERVICES — Chapitres alternés, fluides
   ══════════════════════════════════════════════════════════════ */
.svc-chapters {
  position: relative;
  overflow: visible;
  isolation: isolate;
  background: transparent;
}

/* En-tête de section */
.svc-chapters__head {
  text-align: center;
  padding-inline: var(--pad-x);
  padding-block: clamp(var(--s-16), 8vw, var(--s-24));
  max-width: 100%;
  position: relative;
  background: transparent;
}
.svc-chapters__head-inner {
  max-width: var(--max-w);
  margin-inline: auto;
}

.svc-chapters__eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: clamp(0.82rem, 0.96vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-saumon);
  margin-bottom: var(--s-3);
}

.svc-chapters__title {
  font-family: var(--f-title);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 500;
  color: var(--c-brun);
  line-height: 1.08;
  letter-spacing: -0.022em;
  margin-bottom: var(--s-6);
}
.svc-chapters__title em {
  display: block;
  font-style: italic;
  color: var(--c-terracotta);
  font-weight: 400;
}
.svc-chapters__title::after {
  content: '';
  display: block;
  width: 52px;
  height: 2.5px;
  background: linear-gradient(to right, var(--c-saumon), var(--c-terracotta));
  border-radius: 99px;
  margin: var(--s-5) auto 0;
  opacity: 0.75;
}

.svc-chapters__intro {
  font-family: var(--f-body);
  font-size: clamp(1.02rem, 1.2vw, 1.1rem);
  color: var(--c-text-sub);
  max-width: 54ch;
  margin-inline: auto;
  line-height: 1.82;
}

.svc-chapters__zone {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  margin-top: var(--s-5);
  padding: 0.45em 1.1em;
  border-radius: 999px;
  background: rgba(199,91,42,0.10);
  border: 1px solid rgba(199,91,42,0.28);
  font-family: var(--f-body);
  font-size: clamp(0.75rem, 0.9vw, 0.84rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-terracotta);
}

/* ── Chapitre ── */
.svc-ch {
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  scroll-margin-top: calc(var(--nav-h) + 1.5rem);
}

/* Séparateur discret — léger fond alterné sur les pairs */
.svc-ch:nth-of-type(even) {
  background: rgba(255,250,246,0.6);
}

.svc-ch:not(:last-of-type)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14%;
  right: 14%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(199,91,42,0.08) 35%, rgba(199,91,42,0.08) 65%, transparent);
  pointer-events: none;
}

.svc-ch--rev {
  flex-direction: row-reverse;
}

/* ── Panneau illustration ── */
.svc-ch__visual {
  width: 44%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5.5rem);
  position: relative;
  min-height: clamp(340px, 42vw, 500px);
  /* Fondu organique vers le contenu — efface le bord dur */
  -webkit-mask-image: linear-gradient(to right, black 52%, rgba(0,0,0,0.65) 74%, rgba(0,0,0,0.08) 92%, transparent 100%);
  mask-image: linear-gradient(to right, black 52%, rgba(0,0,0,0.65) 74%, rgba(0,0,0,0.08) 92%, transparent 100%);
}
.svc-ch--rev .svc-ch__visual {
  -webkit-mask-image: linear-gradient(to left, black 52%, rgba(0,0,0,0.65) 74%, rgba(0,0,0,0.08) 92%, transparent 100%);
  mask-image: linear-gradient(to left, black 52%, rgba(0,0,0,0.65) 74%, rgba(0,0,0,0.08) 92%, transparent 100%);
}

/* Fonds terracotta/beige pour les services avec photos */
.svc-ch:nth-of-type(1) .svc-ch__visual,
.svc-ch:nth-of-type(2) .svc-ch__visual,
.svc-ch:nth-of-type(3) .svc-ch__visual,
.svc-ch:nth-of-type(4) .svc-ch__visual,
.svc-ch:nth-of-type(5) .svc-ch__visual {
  background: linear-gradient(148deg, #F5E0CC 0%, #E8C9A8 100%);
}
.svc-ch:nth-of-type(6) .svc-ch__visual {
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(255,215,170,0.92) 0%, rgba(242,168,88,0.38) 50%, transparent 72%),
    rgba(255,240,218,0.25);
}

/* Éléments décoratifs dans le panneau visuel — variés par service */
.svc-ch:nth-of-type(1) .svc-ch__visual::before {
  content: '✦';
  position: absolute;
  bottom: 19%;
  left: 13%;
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--c-terracotta);
  opacity: 0.3;
  pointer-events: none;
}
.svc-ch:nth-of-type(2) .svc-ch__visual::before {
  content: '· · ·';
  position: absolute;
  top: 15%;
  right: 15%;
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--c-saumon);
  opacity: 0.4;
  pointer-events: none;
}
.svc-ch:nth-of-type(3) .svc-ch__visual::before {
  content: '∿';
  position: absolute;
  top: 18%;
  left: 16%;
  font-family: var(--f-body);
  font-size: 26px;
  color: var(--c-terracotta);
  opacity: 0.2;
  pointer-events: none;
}
.svc-ch:nth-of-type(4) .svc-ch__visual::before {
  content: '✦  ✦';
  position: absolute;
  bottom: 18%;
  right: 11%;
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: 8px;
  color: var(--c-terracotta);
  opacity: 0.22;
  pointer-events: none;
}
.svc-ch:nth-of-type(5) .svc-ch__visual::before {
  content: '◦ ◦ ◦';
  position: absolute;
  top: 14%;
  left: 18%;
  font-family: var(--f-body);
  font-size: 9px;
  letter-spacing: 7px;
  color: var(--c-saumon);
  opacity: 0.45;
  pointer-events: none;
}
.svc-ch:nth-of-type(6) .svc-ch__visual::before {
  content: '—';
  position: absolute;
  bottom: 20%;
  left: 14%;
  font-family: var(--f-body);
  font-size: 20px;
  color: var(--c-terracotta);
  opacity: 0.22;
  pointer-events: none;
  letter-spacing: -2px;
}

/* Cadre illustration — formes organiques */
.svc-ch__illus-frame {
  width: clamp(200px, 24vw, 320px);
  height: clamp(200px, 24vw, 320px);
  background: rgba(255,255,255,0.74);
  border: 2px solid rgba(255,255,255,0.94);
  box-shadow:
    0 16px 58px rgba(74,55,40,0.14),
    0 4px 14px rgba(74,55,40,0.08),
    inset 0 1px 0 rgba(255,255,255,0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform var(--tr-mid), box-shadow var(--tr-mid);
  flex-shrink: 0;
}

.svc-ch__illus-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.svc-ch__visual:hover .svc-ch__illus-frame {
  transform: translateY(-5px) scale(1.025) rotate(1deg);
  box-shadow: 0 20px 58px rgba(74,55,40,0.16), inset 0 1px 0 rgba(255,255,255,0.95);
}

.svc-ch:nth-of-type(1) .svc-ch__illus-frame { border-radius: 42% 58% 52% 48% / 48% 46% 54% 52%; }
.svc-ch:nth-of-type(2) .svc-ch__illus-frame { border-radius: 58% 42% 38% 62% / 52% 56% 44% 48%; }
.svc-ch:nth-of-type(3) .svc-ch__illus-frame { border-radius: 36% 64% 56% 44% / 44% 52% 48% 56%; }
.svc-ch:nth-of-type(4) .svc-ch__illus-frame { border-radius: 62% 38% 44% 56% / 56% 44% 56% 44%; }
.svc-ch:nth-of-type(5) .svc-ch__illus-frame { border-radius: 48% 52% 62% 38% / 40% 60% 40% 60%; }
.svc-ch:nth-of-type(6) .svc-ch__illus-frame { border-radius: 56% 44% 48% 52% / 60% 40% 60% 40%; }

.svc-ch__illus-frame svg {
  color: var(--c-terracotta);
  width: 76%;
  height: 76%;
  opacity: 0.88;
}

.svc-ch__ghost { display: none; }

/* ── Panneau texte — fond transparent, laisse le dégradé de section apparaître ── */
.svc-ch__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-inline: clamp(3rem, 6vw, 6rem);
  padding-block: clamp(3.5rem, 7vw, 6rem);
  background: none;
  position: relative;
}

/* Pas d'accent vertical — le fondu du panneau visuel suffit */
.svc-ch__body::before { display: none; }
.svc-ch--rev .svc-ch__body::before { display: none; }

/* Éléments décoratifs dans le panneau texte — variés, pas tous identiques */
.svc-ch:nth-of-type(1) .svc-ch__body::after {
  content: '♥';
  position: absolute;
  top: var(--s-6);
  right: var(--s-8);
  font-family: var(--f-body);
  font-size: 34px;
  color: var(--c-terracotta);
  opacity: 0.065;
  pointer-events: none;
  line-height: 1;
}
.svc-ch:nth-of-type(2) .svc-ch__body::after {
  content: '✦';
  position: absolute;
  bottom: var(--s-8);
  left: var(--s-8);
  font-family: var(--f-body);
  font-size: 22px;
  color: var(--c-terracotta);
  opacity: 0.14;
  pointer-events: none;
}
.svc-ch:nth-of-type(3) .svc-ch__body::after {
  content: '· · ·';
  position: absolute;
  bottom: var(--s-6);
  right: var(--s-8);
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: 7px;
  color: var(--c-saumon);
  opacity: 0.3;
  pointer-events: none;
}
.svc-ch:nth-of-type(4) .svc-ch__body::after {
  content: '♥';
  position: absolute;
  bottom: var(--s-8);
  right: var(--s-8);
  font-family: var(--f-body);
  font-size: 26px;
  color: var(--c-terracotta);
  opacity: 0.065;
  pointer-events: none;
}
.svc-ch:nth-of-type(5) .svc-ch__body::after {
  content: '∿';
  position: absolute;
  top: var(--s-5);
  left: var(--s-10);
  font-family: var(--f-body);
  font-size: 30px;
  color: var(--c-saumon);
  opacity: 0.12;
  pointer-events: none;
}
.svc-ch:nth-of-type(6) .svc-ch__body::after {
  content: '✦';
  position: absolute;
  top: var(--s-8);
  right: var(--s-8);
  font-family: var(--f-body);
  font-size: 17px;
  color: var(--c-terracotta);
  opacity: 0.13;
  pointer-events: none;
}

.svc-ch__num { display: none; }

/* ── Titres — traitement distinct par service, pas de répétition ── */
/* ── Titres — surlignement vrai, couvre les corps des lettres, ne dépasse pas le texte ── */
.svc-ch__title {
  font-family: var(--f-title);
  font-size: clamp(2.3rem, 3.8vw, 3.4rem);
  font-weight: 500;
  color: var(--c-brun);
  line-height: 1.14;
  letter-spacing: -0.022em;
  margin-bottom: clamp(var(--s-5), 2.5vw, var(--s-7));
  text-decoration: none;
  position: relative;
}

/* Surlignement ligne par ligne — box-decoration-break: clone répète le fond sur chaque ligne */
.svc-ch__title > span {
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background: linear-gradient(
    to bottom,
    transparent          28%,
    rgba(232,132,90,0.16) 36%,
    rgba(232,132,90,0.22) 54%,
    rgba(232,132,90,0.19) 78%,
    rgba(232,132,90,0.06) 90%,
    transparent          100%
  );
  padding-inline: 0.05em;
}

.svc-ch__title::before { display: none; }
.svc-ch__title::after  { display: none; }

/* ── Séparateur éditorial "Notre engagement de cœur" ── */
.svc-featured-intro {
  display: flex;
  align-items: center;
  gap: clamp(var(--s-4), 3vw, var(--s-8));
  padding-inline: clamp(var(--s-8), 5vw, var(--s-20));
  padding-block: clamp(var(--s-10), 5vw, var(--s-16));
}
.svc-featured-intro span:first-child,
.svc-featured-intro span:last-child {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(199,91,42,0.25), transparent);
  display: block;
}
.svc-featured-intro span:nth-child(2) {
  font-family: var(--f-body);
  font-size: clamp(0.73rem, 0.86vw, 0.80rem);
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--c-saumon);
  white-space: nowrap;
  opacity: 0.72;
}

/* ── Service 6 — Carte spécialité : warm parchment card, sort du flux pleine-largeur ── */
.svc-ch--featured {
  margin-inline: clamp(var(--s-4), 5vw, var(--s-20));
  margin-block-end: clamp(var(--s-8), 5vw, var(--s-16));
  border-radius: clamp(1rem, 1.8vw, 1.6rem);
  background: linear-gradient(155deg, #FEF4EA 0%, #FDE9D4 50%, #F8E0C5 100%);
  box-shadow:
    0 30px 80px rgba(199,91,42,0.13),
    0 8px 22px rgba(199,91,42,0.08),
    inset 0 1px 0 rgba(255,255,255,0.92);
  border: 1px solid rgba(199,91,42,0.16);
  overflow: hidden;
  position: relative;
}

/* Panneau visuel : halo doré plus généreux sur fond parcheminé */
.svc-ch--featured .svc-ch__visual {
  background:
    radial-gradient(ellipse 82% 82% at 50% 50%, rgba(255,215,170,0.92) 0%, rgba(242,168,88,0.38) 50%, transparent 72%),
    rgba(255,240,218,0.25);
  -webkit-mask-image: linear-gradient(to right, black 50%, rgba(0,0,0,0.62) 76%, rgba(0,0,0,0.08) 94%, transparent 100%);
  mask-image: linear-gradient(to right, black 50%, rgba(0,0,0,0.62) 76%, rgba(0,0,0,0.08) 94%, transparent 100%);
}

/* Cadre illustration plus grand sur la carte spécialité */
.svc-ch--featured .svc-ch__illus-frame {
  width: clamp(240px, 28vw, 360px);
  height: clamp(240px, 28vw, 360px);
  box-shadow:
    0 22px 64px rgba(199,91,42,0.18),
    0 5px 16px rgba(199,91,42,0.10),
    inset 0 1px 0 rgba(255,255,255,0.98);
}

/* Titre service 6 : brun chaud, légèrement plus grand, marge basse réduite */
@media (min-width: 1025px) {
  .svc-ch__title { margin-bottom: clamp(var(--s-8), 3vw, var(--s-10)); }
}

.svc-ch--featured .svc-ch__title {
  font-size: clamp(2.6rem, 4.2vw, 3.8rem);
  color: var(--c-brun);
  margin-bottom: clamp(var(--s-3), 1.5vw, var(--s-4));
}

/* Surlignement : soulignement doré fin — distingué des 5 autres qui ont un background highlight */
.svc-ch--featured .svc-ch__title > span {
  background: none;
  padding-inline: 0;
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(228,145,58,0.62);
  text-decoration-thickness: 2.5px;
  text-underline-offset: 10px;
  text-decoration-skip-ink: none;
}

/* Panneau texte : titre en haut, CTA collé en bas, espacement aéré */
.svc-ch--featured .svc-ch__body {
  justify-content: flex-start;
  padding-block: clamp(3rem, 5vw, 5rem);
  padding-inline: clamp(3rem, 5vw, 5rem);
  gap: clamp(var(--s-4), 2vw, var(--s-6));
}

/* Hauteur minimale accrue pour plus d'air */
.svc-ch--featured .svc-ch__visual {
  min-height: clamp(420px, 50vw, 580px);
}

/* Description : couleur normale, ligne plus aérée */
.svc-ch--featured .svc-ch__desc {
  color: var(--c-brun);
  opacity: 0.72;
  line-height: 2.1;
  max-width: 56ch;
}

/* Badge "Notre spécialité" */
.svc-ch__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.42em;
  font-family: var(--f-body);
  font-size: clamp(0.76rem, 0.88vw, 0.84rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-terracotta);
  background: rgba(199,91,42,0.09);
  border: 1px solid rgba(199,91,42,0.22);
  border-radius: 99px;
  padding: 0.36em 1.1em;
  margin-bottom: var(--s-4);
}
.svc-ch__badge::before {
  content: '✦';
  font-size: 9px;
  opacity: 0.7;
}

/* Citation/promesse éditoriale */
.svc-ch__promise {
  margin: var(--s-6) 0 var(--s-5);
  padding-left: var(--s-5);
  border-left: 2.5px solid rgba(199,91,42,0.38);
}
.svc-ch__promise p {
  font-family: var(--f-title);
  font-style: italic;
  font-size: clamp(1.05rem, 1.26vw, 1.14rem);
  color: var(--c-terracotta);
  line-height: 1.62;
  margin: 0;
}

/* Lien CTA — sans soulignement, positionné en bas à droite de la carte */
.svc-ch__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.46em;
  font-family: var(--f-body);
  font-size: clamp(0.90rem, 1.02vw, 0.98rem);
  font-weight: 600;
  color: var(--c-terracotta);
  text-decoration: none;
  margin-top: auto;
  align-self: flex-end;
  transition: color var(--tr-fast), gap var(--tr-fast);
}
.svc-ch__cta-link:hover {
  color: var(--c-brun);
  gap: 0.72em;
}

.svc-ch__desc {
  font-family: var(--f-body);
  font-size: clamp(1rem, 1.18vw, 1.08rem);
  color: var(--c-brun);
  opacity: 0.7;
  line-height: 1.94;
  max-width: 52ch;
}

/* Span cœur HTML — masqué, remplacé par les ::after sur .svc-ch__body */
.svc-ch__heart,
.svc-ch--rev .svc-ch__heart { display: none; }

/* ══════════════════════════════════════════════════════════════
   SECTION AVIS GOOGLE
   ══════════════════════════════════════════════════════════════ */
.svc-reviews {
  position: relative;
  isolation: isolate;
  overflow: visible;
  background: transparent;
  padding-block: clamp(var(--s-16), 8vw, var(--s-32));
}

.svc-reviews::before {
  content: '♥  ♥';
  position: absolute;
  bottom: 10%;
  left: 2%;
  font-size: 11px;
  letter-spacing: 9px;
  color: var(--c-terracotta);
  opacity: 0.08;
  pointer-events: none;
  font-family: var(--f-body);
  transform: rotate(12deg);
}

.svc-reviews::after {
  content: '♥';
  position: absolute;
  top: 8%;
  right: 3%;
  font-size: 42px;
  color: var(--c-terracotta);
  opacity: 0.04;
  pointer-events: none;
  font-family: var(--f-body);
}

.svc-reviews__head {
  text-align: center;
  margin-bottom: clamp(var(--s-10), 5.5vw, var(--s-16));
}

.svc-reviews__eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-terracotta);
  margin-bottom: var(--s-4);
}

.svc-reviews__title {
  font-family: var(--f-title);
  font-size: clamp(var(--t-3xl), 4vw, 3.2rem);
  font-weight: 500;
  color: var(--c-brun);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: var(--s-5);
}

.svc-reviews__rating {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  background: rgba(255,255,255,0.55);
  border-radius: var(--r-full);
  padding: var(--s-2) var(--s-5);
  border: 1px solid rgba(199,91,42,0.14);
  backdrop-filter: blur(4px);
}

.svc-reviews__stars { display: flex; gap: 2px; }
.svc-reviews__stars svg { width: 15px; height: 15px; fill: #F5A52A; }

.svc-reviews__rating-label {
  font-family: var(--f-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--c-brun);
  opacity: 0.72;
}

.svc-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(var(--s-5), 2.5vw, var(--s-8));
  align-items: start;
}

.svc-review-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: clamp(var(--s-6), 2.5vw, var(--s-8));
  box-shadow: 0 2px 8px rgba(74,55,40,0.07), 0 10px 38px rgba(74,55,40,0.10);
  border: 1px solid rgba(199,91,42,0.07);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  transition: transform var(--tr-mid), box-shadow var(--tr-mid);
}

.svc-review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(74,55,40,0.09), 0 22px 58px rgba(74,55,40,0.14);
}

.svc-review-card__header {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.svc-review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-white);
  flex-shrink: 0;
  letter-spacing: 0;
}

.svc-review-card__avatar--blue  { background: linear-gradient(135deg, #3A5FA8, #2A4880); }
.svc-review-card__avatar--teal  { background: linear-gradient(135deg, #3A7A8A, #2B5E6A); }
.svc-review-card__avatar--slate { background: linear-gradient(135deg, #5A6A7A, #3A4A58); }

.svc-review-card__meta { flex: 1; min-width: 0; }

.svc-review-card__name {
  font-family: var(--f-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-brun);
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.svc-review-card__date {
  font-family: var(--f-body);
  font-size: 0.74rem;
  color: var(--c-brun);
  opacity: 0.44;
  margin-top: 2px;
}

.svc-review-card__google { flex-shrink: 0; width: 22px; height: 22px; opacity: 0.72; }

.svc-review-card__stars { display: flex; gap: 2px; }
.svc-review-card__stars svg { width: 14px; height: 14px; fill: #F5A52A; }

.svc-review-card__text {
  font-family: var(--f-body);
  font-size: clamp(0.92rem, 1.05vw, 1rem);
  color: var(--c-brun);
  opacity: 0.76;
  line-height: 1.76;
  flex: 1;
}

.svc-review-card__footer {
  padding-top: var(--s-3);
  border-top: 1px solid rgba(74,55,40,0.07);
  font-family: var(--f-body);
  font-size: 0.74rem;
  color: var(--c-brun);
  opacity: 0.42;
  font-style: italic;
}

.svc-reviews__grid .svc-review-card.fade-in-delay-1 { transition-delay: 0.12s; }
.svc-reviews__grid .svc-review-card.fade-in-delay-2 { transition-delay: 0.24s; }

/* ── Carousel avis mobile (boutons + dots masqués sur desktop) ── */
.svc-reviews-carousel__nav,
.svc-reviews-carousel__btn,
.svc-reviews-carousel__dots { display: none; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Hero : empilement vertical */
  .page-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .page-hero::before { display: none; }
  .page-hero__content {
    padding-inline: var(--pad-x);
    padding-block: clamp(3.5rem, 10vw, 6rem);
  }
  .page-hero__photo { padding: clamp(2rem, 6vw, 3.5rem) var(--pad-x); }
  .page-hero__photo-frame {
    width: 100%;
    height: clamp(280px, 58vw, 420px);
    border-radius: 2rem 3rem 2.5rem 3.5rem;
  }
  .page-hero__photo-deco { display: none; }
  .page-hero__title { font-size: clamp(4rem, 14vw, 7.5rem); }
}

@media (max-width: 820px) {
  /* Services : empilement vertical */
  .svc-ch { flex-direction: column; }
  .svc-ch--rev { flex-direction: column; }
  .svc-ch__visual {
    width: 100%;
    min-height: clamp(220px, 48vw, 300px);
    /* Réinitialise le fondu latéral — applique un fondu vers le bas */
    -webkit-mask-image: linear-gradient(to bottom, black 60%, rgba(0,0,0,0.5) 82%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 60%, rgba(0,0,0,0.5) 82%, transparent 100%);
  }
  .svc-ch--rev .svc-ch__visual {
    -webkit-mask-image: linear-gradient(to bottom, black 60%, rgba(0,0,0,0.5) 82%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 60%, rgba(0,0,0,0.5) 82%, transparent 100%);
  }
  .svc-ch__ghost { display: none; }
  .svc-ch__body { padding-inline: var(--pad-x); padding-block: clamp(2rem, 6vw, 3.5rem); }

  /* Featured : marges réduites sur mobile */
  .svc-ch--featured { margin-inline: var(--s-3); margin-block-end: var(--s-6); }
  .svc-ch--featured .svc-ch__visual {
    min-height: clamp(220px, 54vw, 300px);
    -webkit-mask-image: linear-gradient(to bottom, black 55%, rgba(0,0,0,0.45) 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 55%, rgba(0,0,0,0.45) 80%, transparent 100%);
  }
  .svc-ch--featured .svc-ch__illus-frame {
    width: clamp(150px, 44vw, 210px);
    height: clamp(150px, 44vw, 210px);
  }
  .svc-ch--featured .svc-ch__body {
    padding-inline: var(--pad-x);
    padding-block: clamp(1.5rem, 5vw, 2.5rem);
    gap: var(--s-4);
  }
  .svc-ch--featured .svc-ch__promise {
    margin: var(--s-2) 0 var(--s-3);
  }
  .svc-featured-intro { padding-inline: var(--pad-x); padding-block: var(--s-8); }

  /* Avis : 1 colonne */
  .svc-reviews__grid { grid-template-columns: 1fr; }
}

@media (min-width: 540px) and (max-width: 820px) {
  .svc-reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .svc-review-card:last-child { grid-column: 1 / -1; }
}

/* ══════════════════════════════════════════════════════════════
   HOMEPAGE — Décorations & animations au scroll
   ══════════════════════════════════════════════════════════════ */
.services { position: relative; }
.services::before {
  content: '♥';
  position: absolute; top: 6%; right: 2%;
  font-size: 56px; color: var(--c-terracotta);
  opacity: 0.04; pointer-events: none;
  font-family: var(--f-body); transform: rotate(15deg);
}
.services::after {
  content: '♥  ♥';
  position: absolute; bottom: 8%; left: 2%;
  font-size: 11px; letter-spacing: 8px; color: var(--c-terracotta);
  opacity: 0.07; pointer-events: none;
  font-family: var(--f-body); transform: rotate(-12deg);
}

.about { position: relative; }
.about::after {
  content: '♥  ♥  ♥';
  position: absolute; top: 50%; right: 3%;
  transform: translateY(-50%) rotate(20deg);
  font-size: 10px; letter-spacing: 7px; color: var(--c-terracotta);
  opacity: 0.07; pointer-events: none; font-family: var(--f-body);
}

.fiscal { position: relative; }
.fiscal::before {
  content: '♥';
  position: absolute; bottom: 10%; right: 4%;
  font-size: 48px; color: var(--c-terracotta);
  opacity: 0.04; pointer-events: none;
  font-family: var(--f-body); transform: rotate(-10deg);
}
.fiscal::after {
  content: '♥  ♥';
  position: absolute; top: 6%; left: 3%;
  font-size: 10px; letter-spacing: 8px; color: var(--c-terracotta);
  opacity: 0.07; pointer-events: none;
  font-family: var(--f-body); transform: rotate(8deg);
}


/* ============================================================
   PAGE — QUI SOMMES-NOUS
   ============================================================ */

/* ══════════════════════════════════════════════════════════════
   SECTION 1 — HERO
   ══════════════════════════════════════════════════════════════ */
.qsn-hero {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 80% at 2%  48%, rgba(228,145,58,0.52) 0%, transparent 60%),
    radial-gradient(ellipse 55% 75% at 92% 10%, rgba(205,78,28,0.18) 0%, transparent 52%),
    linear-gradient(148deg, #F9F6F2 0%, #F5F2EE 45%, #F0EBE4 100%);
  padding-block-start: clamp(var(--s-3), 2vh, var(--s-6));
  padding-block-end: clamp(var(--s-8), 5vh, var(--s-16));
  padding-inline: var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(var(--s-3), 2.5vh, var(--s-8));
}

/* Motif de fond discret */
.qsn-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(199,91,42,0.045) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Bulles décoratives */
.qsn-hero__bubble {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.qsn-hero__bubble--tl {
  top: -5%;
  left: -3%;
  width: clamp(200px, 24vw, 340px);
  height: clamp(200px, 24vw, 340px);
  background: radial-gradient(circle, var(--c-bleu-ardoise) 0%, transparent 70%);
  filter: blur(60px);
  opacity: 0.22;
  will-change: transform;
  transform: translateZ(0);
}

.qsn-hero__bubble--br {
  bottom: -6%;
  right: -4%;
  width: clamp(260px, 34vw, 460px);
  height: clamp(260px, 34vw, 460px);
  background: radial-gradient(circle, var(--c-violet) 0%, transparent 68%);
  filter: blur(70px);
  opacity: 0.18;
  will-change: transform;
  transform: translateZ(0);
}

/* ── Bandeau titre ── */
.qsn-hero__band {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(var(--s-4), 2.5vw, var(--s-6));
  text-align: center;
}

.qsn-hero__eyebrow {
  font-family: var(--f-body);
  font-size: clamp(0.82rem, 0.98vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--c-saumon);
}

.qsn-hero__title {
  font-family: var(--f-title);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 600;
  color: var(--c-brun);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.qsn-hero__ornament {
  display: block;
  width: clamp(64px, 7vw, 96px);
  height: 2.5px;
  background: linear-gradient(to right, rgba(199,91,42,0.2), var(--c-terracotta), var(--c-saumon), rgba(242,196,168,0.25));
  border-radius: 3px;
}

/* ── Stage : photo centrale + prénoms latéraux + flèches ── */
.qsn-hero__stage {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(var(--s-2), 2vw, var(--s-5));
  width: 100%;
  max-width: 1280px;
}

.qsn-hero__photo-center {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(var(--s-5), 2.5vw, var(--s-8));
}

.qsn-hero__photo-wrap {
  width: clamp(220px, 40vw, 560px);
  height: clamp(200px, 48vh, 480px);
  border-radius: 38% 62% 58% 42% / 44% 52% 48% 56%;
  overflow: hidden;
  box-shadow:
    0 28px 80px rgba(74,55,40,0.18),
    0 8px 24px rgba(74,55,40,0.10);
  transition: transform var(--tr-slow), box-shadow var(--tr-slow);
}

.qsn-hero__photo-wrap:hover {
  transform: scale(1.02);
  box-shadow:
    0 36px 96px rgba(74,55,40,0.20),
    0 10px 28px rgba(74,55,40,0.11);
}

.qsn-hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: brightness(0.93) saturate(0.88);
}

.qsn-hero__caption {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--f-body);
  font-size: clamp(0.78rem, 0.9vw, 0.86rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-saumon);
  opacity: 0.8;
}

.qsn-hero__caption-rule {
  display: block;
  width: clamp(20px, 3vw, 36px);
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.qsn-hero__zone {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  padding: 0.45em 1.1em;
  border-radius: 999px;
  background: rgba(199,91,42,0.10);
  border: 1px solid rgba(199,91,42,0.28);
  font-family: var(--f-body);
  font-size: clamp(0.75rem, 0.9vw, 0.84rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-terracotta);
  margin-bottom: var(--s-5);
}

/* Prénoms latéraux */
.qsn-hero__person {
  flex: 0 0 clamp(72px, 8vw, 108px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  position: relative;
  z-index: 2;
  transition: transform var(--tr-mid);
}

.qsn-hero__person-name {
  font-family: var(--f-title);
  font-size: clamp(1.4rem, 2.2vw, 2.1rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-align: center;

  /* Dégradé chaleureux terracotta → saumon doré */
  background: linear-gradient(135deg, #C75B2A 0%, #D4884C 38%, #E8A46A 68%, #C97840 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  /* État initial : invisible, légèrement décalé vers le bas */
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity  0.72s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Trait ornemental chaleureux sous le prénom */
.qsn-hero__person-name::after {
  content: '';
  display: block;
  height: 1.5px;
  width: 0;
  background: linear-gradient(90deg, var(--c-terracotta), var(--c-saumon));
  border-radius: 2px;
  margin: 7px auto 0;
  transition: width 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Déclenchement — Éric en premier */
.qsn-hero__stage.visible .qsn-hero__person--eric .qsn-hero__person-name {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.32s;
}
.qsn-hero__stage.visible .qsn-hero__person--eric .qsn-hero__person-name::after {
  width: 80%;
  transition-delay: 0.74s;
}

/* Vanessa 0.22s après Éric */
.qsn-hero__stage.visible .qsn-hero__person--vanessa .qsn-hero__person-name {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.54s;
}
.qsn-hero__stage.visible .qsn-hero__person--vanessa .qsn-hero__person-name::after {
  width: 80%;
  transition-delay: 0.96s;
}

.qsn-hero__person-role {
  font-family: var(--f-body);
  font-size: clamp(0.58rem, 0.72vw, 0.65rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-saumon);
  opacity: 0.82;
  text-align: center;
}

/* Flèches dessinées */
.qsn-hero__arrow {
  flex: 0 0 clamp(60px, 8vw, 108px);
  height: clamp(110px, 17vw, 190px);
  overflow: visible;
  align-self: center;
}

.qsn-hero__arrow-path {
  stroke-dasharray: 750;
  stroke-dashoffset: 750;
  transition: stroke-dashoffset 1.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.55s;
}

.qsn-hero__stage.visible .qsn-hero__arrow-path {
  stroke-dashoffset: 0;
}

/* Esperluette — cachée sur desktop, animée sur mobile/tablette */
.qsn-hero__ampersand {
  display: none;
}


/* ══════════════════════════════════════════════════════════════
   SECTION 2 — VALEURS
   ══════════════════════════════════════════════════════════════ */
.qsn-vals {
  position: relative;
  z-index: 1;
  overflow: visible;
  isolation: isolate;
  background: transparent;
  padding-block-start: clamp(var(--s-8), 4vw, var(--s-12));
  padding-block-end: clamp(var(--s-16), 8vw, var(--s-24));
}


/* ── Bloc intro ── */
.qsn-vals__intro {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  margin-bottom: clamp(var(--s-12), 6vw, var(--s-20));
  text-align: center;
}

.qsn-vals__lead {
  font-family: var(--f-title);
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--c-brun);
  line-height: 1.38;
  margin-bottom: var(--s-6);
  letter-spacing: -0.015em;
}

.qsn-vals__lead em {
  color: var(--c-terracotta);
  font-style: italic;
}

.qsn-vals__body {
  font-family: var(--f-body);
  font-size: clamp(1.06rem, 1.2vw, 1.14rem);
  color: var(--c-brun);
  opacity: 0.72;
  line-height: 1.88;
  max-width: 68ch;
  margin-inline: auto;
}

/* ── Bloc histoire ── */
.qsn-story {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  margin-bottom: clamp(var(--s-16), 8vw, var(--s-24));
}

.qsn-story__inner {
  display: flex;
  align-items: center;
  gap: clamp(var(--s-10), 6vw, var(--s-20));
}

.qsn-story__text {
  flex: 1;
}

.qsn-story__title {
  font-family: var(--f-subtitle);
  font-size: clamp(var(--t-3xl), 3.8vw, 3rem);
  font-weight: 400;
  color: var(--c-brun);
  line-height: 1.12;
  letter-spacing: -0.018em;
  margin-bottom: var(--s-5);
}

.qsn-story__ornament {
  display: block;
  width: clamp(44px, 5vw, 64px);
  height: 2px;
  background: linear-gradient(to right, var(--c-terracotta), var(--c-saumon), rgba(242,196,168,0.2));
  border-radius: 2px;
  margin-bottom: var(--s-6);
}

.qsn-story__body {
  font-family: var(--f-body);
  font-size: clamp(0.96rem, 1.08vw, 1.02rem);
  color: var(--c-brun);
  opacity: 0.72;
  line-height: 1.92;
  max-width: 54ch;
}

/* Illustration SVG maison */
.qsn-story__illus {
  flex-shrink: 0;
  width: clamp(120px, 16vw, 200px);
  height: clamp(120px, 16vw, 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.55);
  border-radius: 50%;
  box-shadow:
    0 8px 32px rgba(199,91,42,0.10),
    0 2px 8px rgba(74,55,40,0.06),
    0 0 0 2px rgba(199,91,42,0.09);
  transition: transform var(--tr-mid), box-shadow var(--tr-mid);
}

.qsn-story__illus:hover {
  transform: translateY(-4px) rotate(2deg);
  box-shadow:
    0 16px 44px rgba(199,91,42,0.14),
    0 4px 12px rgba(74,55,40,0.07),
    0 0 0 2px rgba(199,91,42,0.11);
}

.qsn-story__svg {
  width: 62%;
  height: 62%;
}

/* ── Bloc valeurs ── */
.qsn-vals__grid-wrap {
  position: relative;
  z-index: 1;
  padding-inline: var(--pad-x);
  margin-bottom: clamp(var(--s-16), 8vw, var(--s-24));
}

.qsn-vals__title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-4);
  margin-bottom: clamp(var(--s-8), 4vw, var(--s-12));
}

.qsn-vals__eyebrow {
  font-family: var(--f-body);
  font-size: clamp(0.82rem, 0.98vw, 0.92rem);
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--c-saumon);
}

.qsn-vals__title {
  font-family: var(--f-title);
  font-size: clamp(var(--t-3xl), 5vw, 4.2rem);
  font-weight: 500;
  color: var(--c-brun);
  line-height: 1.05;
  letter-spacing: -0.022em;
  text-align: center;
  margin-bottom: 0;
}

.qsn-vals__title em {
  font-style: italic;
  font-weight: 500;
}

.qsn-vals__title-orn {
  display: block;
  width: clamp(52px, 6vw, 76px);
  height: 2.5px;
  background: linear-gradient(to right, rgba(199,91,42,0.15), var(--c-terracotta), var(--c-saumon), rgba(242,196,168,0.2));
  border-radius: 3px;
}

/* ── Mosaïque valeurs : 4 grandes tuiles colorées en 2×2 ── */
.qsn-vals__mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(var(--s-3), 1.5vw, var(--s-5));
  max-width: var(--max-w);
  margin-inline: auto;
}

.qsn-val-tile {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: clamp(var(--s-8), 4vw, var(--s-12));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--s-8);
  min-height: clamp(300px, 28vw, 420px);
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s ease-out,
    transform 0.55s ease-out,
    box-shadow var(--tr-slow);
  cursor: default;
}

/* Cercle décoratif en fond de tuile */
.qsn-val-tile::after {
  content: '';
  position: absolute;
  bottom: -22%;
  right: -12%;
  width: clamp(120px, 22vw, 220px);
  height: clamp(120px, 22vw, 220px);
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
  transition: transform var(--tr-slow);
}
.qsn-val-tile:hover::after {
  transform: scale(1.2);
}

/* Couleurs — progression crème → brun foncé */
.qsn-val-tile--1 { background: linear-gradient(135deg, #FFF3E8 0%, #FDDDB8 100%); color: var(--c-brun); }
.qsn-val-tile--2 { background: linear-gradient(135deg, #F5C09A 0%, #E8845A 100%); color: #FFF6EF; }
.qsn-val-tile--3 { background: linear-gradient(135deg, #E0784E 0%, #C75B2A 100%); color: #FFF6EF; }
.qsn-val-tile--4 { background: linear-gradient(135deg, #C9857C 0%, #9E5060 100%); color: #FFF4F0; }

.qsn-val-tile--1::after { background: rgba(199,91,42,0.06); }
.qsn-val-tile--2::after,
.qsn-val-tile--3::after,
.qsn-val-tile--4::after { background: rgba(255,255,255,0.08); }

/* Hover : légère élévation */
.qsn-val-tile:hover {
  box-shadow:
    0 28px 64px rgba(74,55,40,0.20),
    0 6px 18px rgba(74,55,40,0.10);
}

/* Grand symbole visuel */
.qsn-val-tile__symbol {
  display: block;
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  line-height: 1;
  opacity: 0.88;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.qsn-val-tile:hover .qsn-val-tile__symbol {
  transform: scale(1.12) translateY(-3px);
}

/* Texte */
.qsn-val-tile__body {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.qsn-val-tile__title {
  font-family: var(--f-title);
  font-size: clamp(1.85rem, 2.7vw, 2.7rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.022em;
}
.qsn-val-tile__title em { font-style: italic; font-weight: 500; }

.qsn-val-tile__rule {
  display: block;
  width: 30px;
  height: 2px;
  background: currentColor;
  opacity: 0.32;
  border-radius: 2px;
  flex-shrink: 0;
}

.qsn-val-tile__text {
  font-family: var(--f-body);
  font-size: clamp(1rem, 1.12vw, 1.08rem);
  line-height: 1.76;
  opacity: 0.82;
}

/* ── Décorations SVG de fond ── */
.qsn-val-tile__deco {
  position: absolute;
  top: -6%;
  right: -6%;
  width: clamp(95px, 17vw, 155px);
  height: clamp(95px, 17vw, 155px);
  opacity: 0.11;
  pointer-events: none;
  transition: opacity var(--tr-slow);
}
.qsn-val-tile:hover .qsn-val-tile__deco { opacity: 0.22; }

.qsn-val-tile__deco--br {
  top: auto;
  bottom: -6%;
  right: -6%;
}
.qsn-val-tile__deco--bl {
  top: auto;
  right: auto;
  bottom: -6%;
  left: -6%;
}

/* Apparition en cascade au scroll */
.qsn-vals__grid-wrap.visible .qsn-val-tile            { opacity: 1; transform: translateY(0); }
.qsn-vals__grid-wrap.visible .qsn-val-tile:nth-child(1) { transition-delay: 0.06s; }
.qsn-vals__grid-wrap.visible .qsn-val-tile:nth-child(2) { transition-delay: 0.16s; }
.qsn-vals__grid-wrap.visible .qsn-val-tile:nth-child(3) { transition-delay: 0.26s; }
.qsn-vals__grid-wrap.visible .qsn-val-tile:nth-child(4) { transition-delay: 0.36s; }
.qsn-vals__grid-wrap.visible .qsn-val-tile:hover       { transform: translateY(-4px); }

/* ── Bloc confiance Google ── */
.qsn-trust {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.qsn-trust__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-5);
  background: rgba(255,255,255,0.70);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: clamp(var(--s-10), 5vw, var(--s-14));
  box-shadow:
    0 4px 24px rgba(74,55,40,0.08),
    0 1px 4px rgba(74,55,40,0.04);
  border: 1px solid rgba(199,91,42,0.10);
  text-align: center;
}

.qsn-trust__score {
  display: flex;
  align-items: baseline;
  gap: var(--s-3);
}

.qsn-trust__num {
  font-family: var(--f-title);
  font-size: clamp(4rem, 7vw, 6rem);
  font-weight: 600;
  color: var(--c-terracotta);
  line-height: 1;
  letter-spacing: -0.03em;
}

.qsn-trust__denom {
  font-family: var(--f-body);
  font-size: clamp(0.95rem, 1.1vw, 1.04rem);
  color: var(--c-brun);
  opacity: 0.55;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.qsn-trust__stars {
  display: flex;
  gap: 4px;
}

.qsn-trust__stars svg {
  width: clamp(22px, 3vw, 28px);
  height: clamp(22px, 3vw, 28px);
  filter: drop-shadow(0 1px 3px rgba(245,165,42,0.38));
}

.qsn-trust__text {
  font-family: var(--f-body);
  font-size: clamp(1.02rem, 1.15vw, 1.12rem);
  color: var(--c-brun);
  opacity: 0.65;
  line-height: 1.80;
  max-width: 52ch;
}


/* ══════════════════════════════════════════════════════════════
   SECTION 3 — INTERVENANTS
   ══════════════════════════════════════════════════════════════ */
.qsn-team {
  position: relative;
  overflow: visible;
  isolation: isolate;
  background: transparent;
  padding-block: clamp(var(--s-16), 8vw, var(--s-24));
  padding-inline: var(--pad-x);
}

/* Décoration texturale */
.qsn-team::before {
  content: '♥  ♥  ♥';
  position: absolute;
  top: 6%;
  right: 3%;
  font-size: 11px;
  letter-spacing: 8px;
  color: var(--c-terracotta);
  opacity: 0.07;
  pointer-events: none;
  font-family: var(--f-body);
  transform: rotate(14deg);
}

.qsn-team::after {
  content: '♥';
  position: absolute;
  bottom: 8%;
  left: 2%;
  font-size: 52px;
  color: var(--c-terracotta);
  opacity: 0.04;
  pointer-events: none;
  font-family: var(--f-body);
  transform: rotate(-10deg);
}

/* ── Titre ── */
.qsn-team__title {
  font-family: var(--f-subtitle);
  font-size: clamp(var(--t-3xl), 3.8vw, 3rem);
  font-weight: 400;
  color: var(--c-brun);
  line-height: 1.14;
  letter-spacing: -0.018em;
  text-align: center;
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: clamp(var(--s-12), 6vw, var(--s-20));
}

/* ── Layout asymétrique ── */
.qsn-team__content {
  display: flex;
  align-items: flex-start;
  gap: clamp(var(--s-10), 6vw, var(--s-20));
  max-width: var(--max-w);
  margin-inline: auto;
  margin-bottom: clamp(var(--s-16), 8vw, var(--s-24));
}

/* Photo col — 44% */
.qsn-team__photo-col {
  position: relative;
  flex: 0 0 44%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Halo lumineux derrière la photo */
.qsn-team__photo-halo {
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,240,220,0.90) 0%, transparent 68%);
  pointer-events: none;
}

.qsn-team__photo-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 55% 45% 40% 60% / 50% 42% 58% 50%;
  overflow: hidden;
  box-shadow:
    0 28px 80px rgba(74,55,40,0.18),
    0 6px 20px rgba(74,55,40,0.09);
}

.qsn-team__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: brightness(0.92) saturate(0.85);
}

/* Col texte — 56% */
.qsn-team__text-col {
  flex: 1;
  position: relative;
  padding-top: var(--s-6);
}

.qsn-team__quote-mark {
  position: absolute;
  top: -0.1em;
  left: -0.06em;
  font-family: var(--f-title);
  font-size: clamp(6rem, 10vw, 10rem);
  color: var(--c-terracotta);
  opacity: 0.12;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.qsn-team__lead {
  position: relative;
  z-index: 1;
  font-family: var(--f-title);
  font-style: italic;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  color: var(--c-brun);
  line-height: 1.35;
  letter-spacing: -0.015em;
  margin-bottom: clamp(var(--s-6), 3vw, var(--s-8));
}

.qsn-team__body {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  margin-bottom: var(--s-6);
}

.qsn-team__body p {
  font-family: var(--f-body);
  font-size: clamp(1.04rem, 1.18vw, 1.12rem);
  color: var(--c-brun);
  opacity: 0.72;
  line-height: 1.88;
}

.qsn-team__attribution {
  font-family: var(--f-body);
  font-size: clamp(0.76rem, 0.9vw, 0.82rem);
  font-weight: 500;
  color: var(--c-terracotta);
  letter-spacing: 0.04em;
  opacity: 0.85;
}

/* ── Citation intervenant ── */
.qsn-team__testimony {
  position: relative;
  max-width: 700px;
  margin-inline: auto;
  background: rgba(255,255,255,0.65);
  border: 1.5px solid rgba(199,91,42,0.16);
  border-radius: 32px;
  padding: clamp(var(--s-8), 4vw, var(--s-12)) clamp(var(--s-8), 5vw, var(--s-14));
  text-align: center;
  box-shadow:
    0 4px 20px rgba(74,55,40,0.07),
    0 1px 4px rgba(74,55,40,0.04);
}

.qsn-team__testimony-mark {
  display: block;
  font-family: var(--f-title);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  color: var(--c-terracotta);
  line-height: 1;
  margin-bottom: var(--s-3);
  opacity: 0.55;
}

.qsn-team__testimony-quote {
  font-family: var(--f-title);
  font-style: italic;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  color: var(--c-terracotta);
  line-height: 1.52;
  letter-spacing: -0.01em;
  margin-bottom: var(--s-5);
}

.qsn-team__testimony-attr {
  font-family: var(--f-body);
  font-size: clamp(0.74rem, 0.88vw, 0.8rem);
  color: var(--c-brun);
  opacity: 0.5;
  font-style: normal;
  letter-spacing: 0.04em;
}


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — QUI SOMMES-NOUS (s'ajoute au bloc ≤ 1020px)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1020px) {

  /* Titre "Qui sommes-nous" masqué dans le hero sur tablette/téléphone */
  .qsn-hero__title {
    display: none;
  }

  /* Stage : grille 3 colonnes — photo pleine largeur (ligne 1), Éric & Vanessa (ligne 2) */
  .qsn-hero__stage {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    row-gap: var(--s-5);
    column-gap: var(--s-2);
    max-width: 540px;
    justify-items: center;
  }
  .qsn-hero__arrow {
    display: none;
  }
  .qsn-hero__photo-center {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .qsn-hero__photo-wrap {
    width: clamp(200px, 68vw, 360px);
    height: clamp(180px, 56vw, 320px);
  }
  .qsn-hero__person {
    flex: 0 0 auto;
    width: auto;
    grid-row: 2;
    align-items: center;
  }
  .qsn-hero__person--eric {
    grid-column: 1;
    justify-self: end;
    padding-right: var(--s-2);
  }
  .qsn-hero__person--vanessa {
    grid-column: 3;
    justify-self: start;
    padding-left: var(--s-2);
  }
  .qsn-hero__person--eric::before,
  .qsn-hero__person--vanessa::after {
    content: none;
  }

  /* Esperluette — colonne centrale, ligne 2 */
  .qsn-hero__ampersand {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 2;
    grid-row: 2;
    font-family: Georgia, 'Times New Roman', serif;
    font-style: normal;
    font-weight: 400;
    font-size: clamp(1.5rem, 5.5vw, 2.2rem);
    line-height: 1;
    background: linear-gradient(135deg, #C75B2A 0%, #D4884C 38%, #E8A46A 68%, #C97840 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Etat initial de l'animation */
    opacity: 0;
    transform: scale(0.6) translateY(10px);
    transition:
      opacity  0.65s cubic-bezier(0.22, 0.61, 0.36, 1) 0.43s,
      transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1) 0.43s;
  }
  .qsn-hero__stage.visible .qsn-hero__ampersand {
    opacity: 1;
    transform: scale(1) translateY(0);
  }

  /* Histoire : empilement vertical */
  .qsn-story__inner {
    flex-direction: column;
    gap: var(--s-8);
  }
  .qsn-story__illus {
    width: clamp(100px, 24vw, 140px);
    height: clamp(100px, 24vw, 140px);
    align-self: center;
  }
  .qsn-story__body {
    max-width: 100%;
  }

  /* Mosaïque valeurs : 1 colonne sur mobile */
  .qsn-vals__mosaic {
    grid-template-columns: 1fr;
  }
  .qsn-val-tile {
    min-height: 240px;
  }

  /* Trust : déjà en colonne — rien à faire */

  /* Section intervenants : empilement vertical */
  .qsn-team__content {
    flex-direction: column;
    gap: var(--s-10);
  }
  .qsn-team__photo-col {
    flex: none;
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
  }
  .qsn-team__text-col {
    width: 100%;
  }
}

@media (max-width: 540px) {
  .qsn-hero__title {
    font-size: clamp(3rem, 12vw, 4.5rem);
  }
  .qsn-trust__num {
    font-size: clamp(3.2rem, 14vw, 5rem);
  }
  .qsn-trust__inner {
    padding: var(--s-9) var(--s-9);
    gap: var(--s-6);
    border-radius: 16px;
  }
  .qsn-trust__text {
    font-size: clamp(0.88rem, 3.6vw, 0.96rem);
    opacity: 0.82;
    line-height: 1.78;
  }
  .qsn-team__photo-frame {
    aspect-ratio: 3 / 4;
  }
  .qsn-team__testimony {
    padding: var(--s-6);
    border-radius: 20px;
  }

  /* Prénoms Éric / Vanessa centrés dans leur colonne sur téléphone */
  .qsn-hero__person--eric {
    justify-self: center;
    padding-right: 0;
  }
  .qsn-hero__person--vanessa {
    justify-self: center;
    padding-left: 0;
  }
}


/* ════════════════════════════════════════════════════════════════
   PAGE — DÉROULEMENT (fonctionnement.html)
   ════════════════════════════════════════════════════════════════ */

/* ── Section 1 : Bandeau hero pleine largeur ── */
/* ─── HERO NOS SERVICES — bandeau plein-largeur (même logique que fonct-hero) ── */
.svc-hero {
  position: relative;
  height: clamp(260px, 42vh, 460px);
  background-image: url('../images/equipe.jpg');
  background-size: cover;
  background-position: center 30%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.svc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    130deg,
    rgba(30, 14, 6, 0.86) 0%,
    rgba(130, 55, 20, 0.40) 52%,
    rgba(12, 24, 48, 0.08) 100%
  );
  pointer-events: none;
}

.svc-hero__content {
  position: relative;
  z-index: 1;
  padding-inline: var(--pad-x);
  padding-block-end: clamp(var(--s-8), 6vh, var(--s-16));
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.svc-hero__title {
  font-family: var(--f-title);
  font-weight: 600;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  color: var(--c-white);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-shadow:
    0 1px 2px rgba(0,0,0,0.68),
    0 4px 14px rgba(0,0,0,0.48),
    0 10px 40px rgba(0,0,0,0.30);
}

.svc-hero__rule {
  display: block;
  width: clamp(48px, 7vw, 72px);
  height: 3px;
  background: linear-gradient(to right, var(--c-saumon), rgba(242,196,168,0.50));
  border-radius: 3px;
}

.svc-hero__sub {
  font-family: var(--f-body);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  color: rgba(255,255,255,0.80);
  max-width: 50ch;
  line-height: 1.70;
}

.fonct-hero {
  position: relative;
  height: clamp(240px, 38vh, 400px);
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center 35%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.fonct-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(12, 24, 48, 0.84) 0%,
    rgba(42, 84, 144, 0.42) 50%,
    rgba(12, 24, 48, 0.10) 100%
  );
  pointer-events: none;
}

.fonct-hero__content {
  position: relative;
  z-index: 1;
  padding-inline: var(--pad-x);
  padding-block-end: clamp(var(--s-8), 6vh, var(--s-16));
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.fonct-hero__title {
  font-family: var(--f-title);
  font-weight: 500;
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  color: var(--c-white);
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow:
    0 1px 2px rgba(0,0,0,0.70),
    0 4px 14px rgba(0,0,0,0.50),
    0 10px 40px rgba(0,0,0,0.32);
}

.fonct-hero__title em {
  font-style: italic;
}

.fonct-hero__rule {
  display: block;
  width: clamp(48px, 7vw, 72px);
  height: 3px;
  background: linear-gradient(to right, var(--c-saumon), rgba(242,196,168,0.55));
  border-radius: 3px;
}

/* Entrance animations */
.page-fonct .fonct-hero__title {
  animation: hero-rise 1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.15s backwards;
}
.page-fonct .fonct-hero__rule {
  animation: hero-fade 0.8s ease-out 0.55s backwards;
}

/* ── Section 2 : Parcours client ── */
.fonct-intro {
  position: relative;
  isolation: isolate;
  overflow: visible;
  padding-block-start: clamp(var(--s-6), 3vw, var(--s-10));
  padding-block-end: clamp(var(--s-16), 8vw, var(--s-24));
  padding-inline: var(--pad-x);
  background: transparent;
}

/* En-tête de section */
.fonct-intro__head {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: clamp(var(--s-12), 6vw, var(--s-20));
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  position: relative;
  z-index: 1;
}

.fonct-intro__eyebrow {
  font-family: var(--f-body);
  font-size: clamp(0.82rem, 0.98vw, 0.92rem);
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--c-saumon);
}

.fonct-intro__title {
  font-family: var(--f-title);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 500;
  color: var(--c-brun);
  line-height: 1.1;
  letter-spacing: -0.022em;
  margin-bottom: 0;
}

.fonct-intro__title em {
  font-style: italic;
}

.fonct-intro__lead {
  font-family: var(--f-body);
  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
  color: var(--c-terracotta);
  font-weight: 400;
  line-height: 1.65;
  opacity: 0.88;
}

/* ── Rail visuel 5 étapes (section 2) ── */
.fonct-rail {
  max-width: min(960px, 100%);
  margin-inline: auto;
  margin-top: clamp(var(--s-10), 5vw, var(--s-14));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(var(--s-6), 3vw, var(--s-8));
  position: relative;
  z-index: 1;
}

.fonct-rail__steps {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* Ligne de connexion entre les cercles */
.fonct-rail__line {
  position: absolute;
  top: 38px;
  left: calc(10% + 8px);
  right: calc(10% + 8px);
  height: 1.5px;
  background: linear-gradient(to right, #FFD9BC, #EFA05A, var(--c-saumon), var(--c-terracotta));
  opacity: 0.35;
  z-index: 0;
}

.fonct-rail__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
  flex: 1;
  position: relative;
  z-index: 1;
}

.fonct-rail__step-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow var(--tr-slow);
}

.fonct-rail__step-circle svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.fonct-rail__step:hover .fonct-rail__step-circle {
  transform: translateY(-4px) scale(1.06);
}

/* Couleurs des 5 étapes — cohérentes avec fonct-pi */
.fonct-rs--1 .fonct-rail__step-circle { background: linear-gradient(135deg, #FFF0E4 0%, #FFD9BC 100%); box-shadow: 0 4px 14px rgba(242,196,168,0.5); }
.fonct-rs--1 .fonct-rail__step-circle svg { stroke: var(--c-brun); }
.fonct-rs--2 .fonct-rail__step-circle { background: linear-gradient(135deg, #FFD9BC 0%, #F5C09A 100%); box-shadow: 0 4px 14px rgba(232,132,90,0.28); }
.fonct-rs--2 .fonct-rail__step-circle svg { stroke: #6B3A22; }
.fonct-rs--3 .fonct-rail__step-circle { background: linear-gradient(135deg, #FBCF9E 0%, #EFA05A 100%); box-shadow: 0 4px 14px rgba(239,160,90,0.38); }
.fonct-rs--3 .fonct-rail__step-circle svg { stroke: #6B3A18; }
.fonct-rs--4 .fonct-rail__step-circle { background: linear-gradient(135deg, #F5C09A 0%, var(--c-saumon) 100%); box-shadow: 0 4px 14px rgba(232,132,90,0.38); }
.fonct-rs--4 .fonct-rail__step-circle svg { stroke: #fff6ef; }
.fonct-rs--5 .fonct-rail__step-circle { background: linear-gradient(135deg, var(--c-saumon) 0%, var(--c-terracotta) 100%); box-shadow: 0 4px 14px rgba(199,91,42,0.38); }
.fonct-rs--5 .fonct-rail__step-circle svg { stroke: #FFF0E4; }

.fonct-rail__step-num {
  font-family: var(--f-title);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--c-saumon);
}

.fonct-rail__step-label {
  font-family: var(--f-body);
  font-size: clamp(0.76rem, 0.95vw, 0.88rem);
  font-weight: 500;
  color: var(--c-brun);
  text-align: center;
  line-height: 1.3;
  opacity: 0.78;
}

/* Bouton "Plus de détails" */
.fonct-rail__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--f-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  background: var(--c-terracotta);
  border: 1.5px solid var(--c-terracotta);
  border-radius: 100px;
  padding: var(--s-3) var(--s-6);
  box-shadow: 0 4px 18px rgba(199,91,42,0.30);
  transition: background var(--tr-fast), border-color var(--tr-fast),
              box-shadow var(--tr-fast), gap var(--tr-fast), transform var(--tr-fast);
}

.fonct-rail__cta:hover {
  background: #A84820;
  border-color: #A84820;
  box-shadow: 0 7px 26px rgba(168,72,32,0.44);
  transform: translateY(-2px);
  gap: var(--s-4);
}

.fonct-rail__cta svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: stroke var(--tr-fast);
}

/* Téléphone — étapes empilées verticalement */
@media (max-width: 560px) {
  .fonct-rail { max-width: 100%; }

  /* Bloc centré sur l'écran, largeur fixe pour alignement parfait */
  .fonct-rail__steps {
    flex-direction: column;
    align-items: stretch;
    gap: var(--s-10);
    max-width: 320px;
    margin-inline: auto;
    width: 100%;
  }

  /* Ligne orange verticale entre les cercles */
  .fonct-rail__line {
    top: 39px;
    bottom: 39px;
    left: 39px;
    right: auto;
    width: 2.5px;
    height: auto;
    background: linear-gradient(to bottom, #FFD9BC, #EFA05A, var(--c-saumon), var(--c-terracotta));
    border-radius: 2px;
    opacity: 0.62;
  }

  /* Chaque étape : grille — cercle à gauche, num + label à droite */
  .fonct-rail__step {
    display: grid;
    grid-template-columns: 78px 1fr;
    grid-template-rows: auto auto;
    column-gap: var(--s-5);
    row-gap: var(--s-2);
    align-items: center;
    padding-block: var(--s-2);
  }

  .fonct-rail__step-circle {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 78px;
    height: 78px;
    align-self: center;
  }
  .fonct-rail__step-circle svg {
    width: 30px;
    height: 30px;
  }

  .fonct-rail__step-num {
    display: block;
    grid-column: 2;
    grid-row: 1;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-align: left;
  }
  .fonct-rail__step-label {
    grid-column: 2;
    grid-row: 2;
    font-size: clamp(1.05rem, 4.5vw, 1.22rem);
    font-weight: 600;
    text-align: left;
    line-height: 1.3;
    opacity: 0.9;
  }


  /* ── Apparition en cascade — timing géré par JS (setTimeout 100ms) ── */
  .fonct-rail__step.fade-in {
    transform: translateY(28px);
    transition:
      opacity   0.38s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .fonct-rail__step.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  /* Délai CSS zéro — le stagger est assuré par le JS */
  .fonct-rail__step.fade-in-delay-1,
  .fonct-rail__step.fade-in-delay-2,
  .fonct-rail__step.fade-in-delay-3,
  .fonct-rail__step.fade-in-delay-4,
  .fonct-rail__step.fade-in-delay-5 { transition-delay: 0s; }
}

/* ── Section 3 : 5 étapes détaillées ── */
.fonct-parcours {
  padding-block: clamp(var(--s-16), 8vw, var(--s-24));
  padding-inline: var(--pad-x);
  background: transparent;
  position: relative;
  overflow: visible;
  isolation: isolate;
}

.fonct-parcours__track {
  position: relative;
  max-width: 820px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}

/* Ligne verticale de connexion */
.fonct-parcours__track::before {
  content: '';
  position: absolute;
  left: 39px;
  top: 88px;
  bottom: 88px;
  width: 1.5px;
  background: linear-gradient(
    to bottom,
    rgba(242,196,168,0.6) 0%,
    rgba(232,132,90,0.5) 25%,
    rgba(199,91,42,0.45) 60%,
    rgba(201,133,124,0.5) 100%
  );
  z-index: 0;
}

/* Chaque étape */
.fonct-pi {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: clamp(var(--s-6), 4vw, var(--s-10));
  padding-block: clamp(var(--s-8), 5vw, var(--s-12));
  position: relative;
}

.fonct-pi + .fonct-pi {
  border-top: 1px solid rgba(199,91,42,0.09);
}

.fonct-pi__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.fonct-pi__circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow var(--tr-slow);
}

.fonct-pi__circle svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.fonct-pi--1 .fonct-pi__circle { background: linear-gradient(135deg, #FFF0E4 0%, #FFD9BC 100%); box-shadow: 0 6px 22px rgba(242,196,168,0.45); }
.fonct-pi--1 .fonct-pi__circle svg { stroke: var(--c-brun); }
.fonct-pi--2 .fonct-pi__circle { background: linear-gradient(135deg, #FFD9BC 0%, #F5C09A 100%); box-shadow: 0 6px 22px rgba(232,132,90,0.28); }
.fonct-pi--2 .fonct-pi__circle svg { stroke: #6B3A22; }
.fonct-pi--3 .fonct-pi__circle { background: linear-gradient(135deg, #FBCF9E 0%, #EFA05A 100%); box-shadow: 0 6px 22px rgba(239,160,90,0.38); }
.fonct-pi--3 .fonct-pi__circle svg { stroke: #6B3A18; }
.fonct-pi--4 .fonct-pi__circle { background: linear-gradient(135deg, #F5C09A 0%, var(--c-saumon) 100%); box-shadow: 0 6px 22px rgba(232,132,90,0.38); }
.fonct-pi--4 .fonct-pi__circle svg { stroke: #fff6ef; }
.fonct-pi--5 .fonct-pi__circle { background: linear-gradient(135deg, var(--c-saumon) 0%, var(--c-terracotta) 100%); box-shadow: 0 6px 22px rgba(199,91,42,0.38); }
.fonct-pi--5 .fonct-pi__circle svg { stroke: #FFF0E4; }

.fonct-pi:hover .fonct-pi__circle {
  transform: scale(1.1) translateY(-2px);
}

/* Contenu — ouvert, sans boîte */
.fonct-pi__card {
  position: relative;
  align-self: center;
  overflow: hidden;
  padding-block: var(--s-2);
}

/* Grand numéro décoratif en arrière-plan */
.fonct-pi__card::before {
  content: attr(data-step);
  position: absolute;
  top: -0.25em;
  right: -0.05em;
  font-family: var(--f-title);
  font-size: clamp(5.5rem, 10vw, 8.5rem);
  font-weight: 700;
  color: rgba(199,91,42,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.fonct-pi__tag {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-saumon);
  margin-bottom: var(--s-2);
  position: relative;
  z-index: 1;
}

.fonct-pi--3 .fonct-pi__tag { color: #C97840; }
.fonct-pi--4 .fonct-pi__tag { color: var(--c-saumon); }
.fonct-pi--5 .fonct-pi__tag { color: var(--c-terracotta); }

.fonct-pi__title {
  font-family: var(--f-title);
  font-size: clamp(1.65rem, 2.6vw, 2.3rem);
  font-weight: 600;
  color: var(--c-brun);
  line-height: 1.08;
  letter-spacing: -0.022em;
  margin-bottom: var(--s-3);
  position: relative;
  z-index: 1;
}

.fonct-pi__rule {
  display: block;
  width: 32px;
  height: 2.5px;
  border-radius: 2px;
  margin-bottom: var(--s-4);
  position: relative;
  z-index: 1;
}

.fonct-pi--1 .fonct-pi__rule { background: rgba(242,196,168,0.9); }
.fonct-pi--2 .fonct-pi__rule { background: rgba(232,132,90,0.75); }
.fonct-pi--3 .fonct-pi__rule { background: #EFA05A; }
.fonct-pi--4 .fonct-pi__rule { background: var(--c-saumon); }
.fonct-pi--5 .fonct-pi__rule { background: var(--c-terracotta); }

.fonct-pi__body {
  font-family: var(--f-body);
  font-size: clamp(0.88rem, 1vw, 0.96rem);
  color: rgba(74,55,40,0.68);
  line-height: 1.78;
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.fonct-pi__body strong {
  color: var(--c-terracotta);
  font-weight: 600;
}

/* ── Mobile ── */
@media (max-width: 640px) {
  .fonct-hero { height: clamp(200px, 36vw, 280px); }
  .fonct-hero__title { font-size: clamp(2.2rem, 9vw, 3rem); }
  .fonct-rail { max-width: 100%; }
  .fonct-rail__label { font-size: 0.65rem; }
  .fonct-parcours__track::before { left: 31px; }
  .fonct-pi {
    grid-template-columns: 64px 1fr;
    gap: var(--s-4);
    padding-block: var(--s-6);
  }
  .fonct-pi__circle { width: 64px; height: 64px; }
  .fonct-pi__circle svg { width: 22px; height: 22px; }
  .fonct-pi__title { font-size: clamp(1.35rem, 5.5vw, 1.75rem); }
  .fonct-pi__card::before { font-size: clamp(4rem, 18vw, 6rem); }
}


/* ════════════════════════════════════════════════════════════════
   SECTION 4 — GARANTIES & CHARTE DE CONFIANCE
   ════════════════════════════════════════════════════════════════ */

.fonct-garanties {
  position: relative;
  isolation: isolate;
  overflow: visible;
  z-index: 1;
  padding-block: clamp(var(--s-16), 8vw, var(--s-24));
  padding-inline: var(--pad-x);
  background: transparent;
}

.fonct-garanties__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: clamp(var(--s-10), 6vw, var(--s-16));
}

.fonct-garanties__head {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

.fonct-garanties__eyebrow {
  font-family: var(--f-body);
  font-size: clamp(0.82rem, 0.98vw, 0.92rem);
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--c-saumon);
}

.fonct-garanties__title {
  font-family: var(--f-title);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 500;
  color: var(--c-brun);
  line-height: 1.1;
  letter-spacing: -0.022em;
  margin-bottom: 0;
}

.fonct-garanties__lead {
  font-family: var(--f-title);
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.32rem);
  color: rgba(74,55,40,0.72);
  line-height: 1.55;
  max-width: 640px;
}

.fonct-garanties__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(var(--s-6), 3vw, var(--s-10));
}

.fonct-garanties__point {
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
  padding: clamp(var(--s-8), 4vw, var(--s-10));
  background: linear-gradient(145deg, #FFF8F4 0%, #FFF0E6 100%);
  border-radius: 20px;
  border-top: 3px solid var(--c-saumon);
  transition: transform var(--tr-slow), box-shadow var(--tr-slow);
}

.fonct-garanties__point:nth-child(2) { border-top-color: #D97340; }
.fonct-garanties__point:nth-child(3) { border-top-color: var(--c-terracotta); }

.fonct-garanties__point:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(199,91,42,0.12);
}

.fonct-garanties__point-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(232,132,90,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-terracotta);
}

.fonct-garanties__point:nth-child(2) .fonct-garanties__point-icon { background: rgba(217,115,64,0.1); color: #D97340; }
.fonct-garanties__point:nth-child(3) .fonct-garanties__point-icon { background: rgba(199,91,42,0.1); color: var(--c-terracotta); }

.fonct-garanties__point-icon svg {
  width: 20px;
  height: 20px;
}

.fonct-garanties__point-title {
  font-family: var(--f-subtitle);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  font-weight: 400;
  color: var(--c-brun);
  line-height: 1.2;
}

.fonct-garanties__point-text {
  font-family: var(--f-body);
  font-size: clamp(0.85rem, 1vw, 0.92rem);
  color: rgba(74,55,40,0.68);
  line-height: 1.7;
  margin-top: var(--s-2);
}

@media (max-width: 760px) {
  .fonct-garanties__points { grid-template-columns: 1fr; }
  .fonct-garanties__point { flex-direction: row; border-top: none; border-left: 3px solid var(--c-saumon); border-radius: 16px; }
  .fonct-garanties__point:nth-child(2) { border-left-color: #D97340; }
  .fonct-garanties__point:nth-child(3) { border-left-color: var(--c-terracotta); }
}


/* ════════════════════════════════════════════════════════════════
   SECTION 5 — CRÉDIT D'IMPÔT & AVANCE IMMÉDIATE
   ════════════════════════════════════════════════════════════════ */

.fonct-fiscal {
  padding-block-start: clamp(var(--s-16), 8vw, var(--s-24));
  padding-block-end: clamp(var(--s-8), 4vw, var(--s-12));
  padding-inline: var(--pad-x);
  background: transparent;
  position: relative;
  overflow: visible;
  isolation: isolate;
}

.fonct-fiscal__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(var(--s-10), 6vw, var(--s-16));
  position: relative;
}

.fonct-fiscal__main-title {
  font-family: var(--f-subtitle);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--c-brun);
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.01em;
  position: relative;
}

.fonct-fiscal__main-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--c-saumon);
  border-radius: 2px;
  margin: var(--s-4) auto 0;
}

.fonct-fiscal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--s-8), 4vw, var(--s-12));
  width: 100%;
}

.fonct-fiscal__block {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  padding: clamp(var(--s-6), 3vw, var(--s-8));
  background: #F9F6F2;
  border-radius: 20px;
  border-top: 4px solid var(--c-saumon);
  box-shadow: 0 4px 20px rgba(199,91,42,0.08), 0 1px 4px rgba(74,55,40,0.06);
  transition: transform var(--tr-slow), box-shadow var(--tr-slow);
}

.fonct-fiscal__block:nth-child(2) {
  border-top-color: var(--c-terracotta);
}

.fonct-fiscal__block:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(199,91,42,0.12), 0 2px 8px rgba(74,55,40,0.07);
}

.fonct-fiscal__block-title {
  font-family: var(--f-subtitle);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  font-weight: 400;
  color: var(--c-brun);
  line-height: 1.2;
}

.fonct-fiscal__block-sub {
  font-family: var(--f-title);
  font-style: italic;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--c-terracotta);
  margin-top: calc(-1 * var(--s-2));
}

.fonct-fiscal__block-body {
  font-family: var(--f-body);
  font-size: clamp(0.86rem, 1vw, 0.94rem);
  color: rgba(74,55,40,0.68);
  line-height: 1.8;
}

.fonct-fiscal__highlight {
  display: flex;
  gap: var(--s-3);
  align-items: flex-start;
  background: rgba(42, 84, 144, 0.06);
  border-radius: 12px;
  padding: var(--s-4) var(--s-5);
  margin-top: var(--s-2);
}

.fonct-fiscal__highlight svg {
  width: 16px;
  height: 16px;
  stroke: var(--c-terracotta);
  flex-shrink: 0;
  margin-top: 2px;
}

.fonct-fiscal__highlight-text {
  font-family: var(--f-body);
  font-size: clamp(0.83rem, 0.95vw, 0.9rem);
  color: rgba(74,55,40,0.75);
  line-height: 1.7;
}

.fonct-fiscal__highlight-text strong {
  color: var(--c-brun);
  font-weight: 700;
}

.fonct-fiscal__sap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  padding-top: clamp(var(--s-6), 3vw, var(--s-8));
  border-top: 1px solid rgba(74,55,40,0.10);
  width: 100%;
  text-align: center;
}

.fonct-fiscal__sap-label {
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(74,55,40,0.38);
}

.fonct-fiscal__sap-num {
  font-family: var(--f-body);
  font-size: clamp(0.82rem, 1vw, 0.9rem);
  color: rgba(74,55,40,0.52);
  letter-spacing: 0.06em;
}

.fonct-fiscal__sap-num strong {
  color: var(--c-saumon);
  font-weight: 500;
}

@media (max-width: 760px) {
  .fonct-fiscal__grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════
   SECTION — SIMULATEUR DE COÛT (fonctionnement.html)
   ════════════════════════════════════════════════════════ */

.fonct-simu {
  position: relative;
  isolation: isolate;
  overflow: visible;
  padding-block-start: clamp(var(--s-16), 9vw, var(--s-24));
  padding-block-end: clamp(var(--s-16), 9vw, var(--s-24));
  padding-inline: var(--pad-x);
  background: transparent;
}

.fonct-simu__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: clamp(var(--s-6), 3vw, var(--s-8));
}

.fonct-simu__title {
  font-family: var(--f-subtitle);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 400;
  color: var(--c-brun);
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.fonct-simu__rate-fixed {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-3) var(--s-4);
  background: #F9F6F2;
  border: 1.5px solid rgba(42,84,144,0.15);
  border-radius: 10px;
}

.fonct-simu__rate-value {
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-brun);
}

.fonct-simu__rate-note {
  font-family: var(--f-body);
  font-size: 0.74rem;
  color: rgba(74,55,40,0.42);
  font-style: italic;
}

/* Grille 2 colonnes */
.fonct-simu__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(var(--s-5), 3vw, var(--s-7));
  align-items: stretch;
}

/* ── Zone gauche : paramètres ── */
.fonct-simu__params {
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
  background: #F9F6F2;
  border-radius: 20px;
  padding: clamp(var(--s-6), 3vw, var(--s-8));
  box-shadow: 0 2px 12px rgba(74,55,40,0.06);
}

.fonct-simu__params-head {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.fonct-simu__params-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(42, 84, 144, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-terracotta);
  flex-shrink: 0;
}

.fonct-simu__params-icon svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.6;
}

.fonct-simu__params-title {
  font-family: var(--f-subtitle);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 400;
  color: var(--c-brun);
  line-height: 1.2;
}

.fonct-simu__params-sub {
  font-family: var(--f-body);
  font-size: 0.86rem;
  color: rgba(74,55,40,0.55);
  line-height: 1.5;
  margin-top: calc(-1 * var(--s-3));
}

/* Champ générique */
.fonct-simu__field {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.fonct-simu__field-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.fonct-simu__label {
  font-family: var(--f-body);
  font-size: clamp(0.86rem, 1vw, 0.92rem);
  font-weight: 500;
  color: var(--c-brun);
}

.fonct-simu__slider-val {
  font-family: var(--f-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-terracotta);
}

/* Slider */
.fonct-simu__slider {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  background: linear-gradient(
    to right,
    var(--c-saumon) var(--slider-pct, 27%),
    rgba(42,84,144,0.15) var(--slider-pct, 27%)
  );
}

.fonct-simu__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-brun);
  border: 3px solid #FFFFFF;
  box-shadow: 0 2px 8px rgba(74,55,40,0.28);
  cursor: pointer;
  transition: transform 0.15s;
}

.fonct-simu__slider::-webkit-slider-thumb:hover {
  transform: scale(1.12);
}

.fonct-simu__slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-brun);
  border: 3px solid #FFFFFF;
  box-shadow: 0 2px 8px rgba(74,55,40,0.28);
  cursor: pointer;
}

.fonct-simu__slider::-moz-range-progress { background: var(--c-saumon); height: 4px; border-radius: 4px; }
.fonct-simu__slider::-moz-range-track { background: rgba(42,84,144,0.15); height: 4px; border-radius: 4px; }

/* Input tarif */
.fonct-simu__input-wrap {
  position: relative;
}

.fonct-simu__input {
  width: 100%;
  padding: var(--s-3) var(--s-4);
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-brun);
  background: #F9F6F2;
  border: 1.5px solid rgba(42,84,144,0.15);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s;
  -moz-appearance: textfield;
}

.fonct-simu__input:focus {
  border-color: var(--c-saumon);
}

.fonct-simu__input::-webkit-outer-spin-button,
.fonct-simu__input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* Toggle avance immédiate */
.fonct-simu__toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  background: #F9F6F2;
  border: 1.5px solid rgba(42,84,144,0.15);
  border-radius: 12px;
  padding: var(--s-4) var(--s-5);
  cursor: pointer;
}

.fonct-simu__toggle-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fonct-simu__toggle-name {
  font-family: var(--f-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-brun);
}

.fonct-simu__toggle-desc {
  font-family: var(--f-body);
  font-size: 0.78rem;
  color: rgba(74,55,40,0.55);
}

.fonct-simu__switch {
  flex-shrink: 0;
  position: relative;
}

.fonct-simu__switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.fonct-simu__switch-track {
  display: block;
  width: 44px;
  height: 24px;
  border-radius: 12px;
  background: #C9BCB2;
  position: relative;
  transition: background 0.22s;
  cursor: pointer;
}

.fonct-simu__switch-track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #F9F6F2;
  box-shadow: 0 1px 4px rgba(0,0,0,0.18);
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1);
}

.fonct-simu__switch input:checked + .fonct-simu__switch-track {
  background: var(--c-brun);
}

.fonct-simu__switch input:checked + .fonct-simu__switch-track::after {
  transform: translateX(20px);
}

/* Note info */
.fonct-simu__note {
  display: flex;
  gap: var(--s-2);
  align-items: flex-start;
  font-family: var(--f-body);
  font-size: 0.78rem;
  color: rgba(74,55,40,0.50);
  line-height: 1.6;
}

.fonct-simu__note svg {
  width: 14px;
  height: 14px;
  stroke: rgba(74,55,40,0.40);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Zone droite : résultat ── */
.fonct-simu__result {
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
  background:
    radial-gradient(ellipse 55% 70% at 10% 50%, rgba(199,91,42,0.22) 0%, transparent 52%),
    linear-gradient(150deg, #1B3B50 0%, #264F6A 55%, #2A5490 100%);
  border-radius: 20px;
  padding-block: clamp(var(--s-8), 4vw, var(--s-12));
  padding-inline: clamp(var(--s-8), 5vw, var(--s-12));
  position: relative;
  overflow: hidden;
}

.fonct-simu__result::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 55%;
  height: 130%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,132,90,0.12) 0%, transparent 65%);
  pointer-events: none;
}

/* Partie haute : montant principal */
.fonct-simu__result-main {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  position: relative;
}

.fonct-simu__result-label {
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
  line-height: 1.5;
}

.fonct-simu__result-amount {
  font-family: var(--f-body);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: -0.02em;
  transition: opacity 0.18s;
}

.fonct-simu__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  background: var(--c-saumon);
  border-radius: 100px;
  padding: var(--s-2) var(--s-4);
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  align-self: flex-start;
}

.fonct-simu__badge svg {
  width: 13px;
  height: 13px;
  stroke: #FFFFFF;
  stroke-width: 2.2;
  flex-shrink: 0;
}

/* Partie basse : récapitulatif */
.fonct-simu__breakdown {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(255,255,255,0.12);
  position: relative;
}

.fonct-simu__breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-body);
  font-size: clamp(0.84rem, 1vw, 0.9rem);
  color: rgba(255,255,255,0.65);
}

.fonct-simu__breakdown-row span:last-child {
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

.fonct-simu__breakdown-row--saving span:last-child {
  color: var(--c-saumon);
  font-weight: 600;
}

.fonct-simu__avance-note {
  font-family: var(--f-body);
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(255,255,255,0.52);
  line-height: 1.55;
  margin-top: var(--s-2);
  transition: opacity 0.22s;
}

.fonct-simu__avance-note strong {
  color: rgba(255,255,255,0.75);
  font-style: normal;
}

.fonct-simu__avance-note.is-hidden {
  opacity: 0;
  pointer-events: none;
}

/* Mention légale */
.fonct-simu__legal {
  font-family: var(--f-body);
  font-size: 0.75rem;
  color: rgba(74,55,40,0.40);
  line-height: 1.6;
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  padding-block-end: var(--s-2);
}

/* Responsive */
@media (max-width: 760px) {
  .fonct-simu__grid { grid-template-columns: 1fr; }
  .fonct-simu__result { order: -1; }
}

/* ════════════════════════════════════════════════════════
   PAGE — ÉTAPES (etapes.html)
   ════════════════════════════════════════════════════════ */
.etapes-intro {
  position: relative;
  isolation: isolate;
  overflow: visible;
  padding-block: clamp(var(--s-12), 6vw, var(--s-20));
  padding-inline: var(--pad-x);
  background: transparent;
  text-align: center;
}
.etapes-intro__inner {
  max-width: 640px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-5);
}
.etapes-intro__back {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--f-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--c-saumon);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--tr-fast), gap var(--tr-fast);
}
.etapes-intro__back:hover { color: var(--c-terracotta); gap: var(--s-3); }
.etapes-intro__back svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.etapes-intro__title {
  font-family: var(--f-title);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
  color: var(--c-brun);
  line-height: 1.1;
  letter-spacing: -0.022em;
}
.etapes-intro__title em { font-style: italic; }
.etapes-intro__sub {
  font-family: var(--f-body);
  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
  color: var(--c-terracotta);
  line-height: 1.65;
  opacity: 0.88;
}


/* ══════════════════════════════════════════════════════════════
   PAGE RECRUTEMENT
   ══════════════════════════════════════════════════════════════ */

/* ─── Section 1 : Intro équipe ─────────────────────────────── */
.recru-intro {
  padding-block: clamp(var(--s-16), 10vw, var(--s-24));
  padding-inline: var(--pad-x);
  background:
    radial-gradient(ellipse 55% 70% at 92% 20%, rgba(42,84,144,0.16) 0%, transparent 55%),
    radial-gradient(ellipse 45% 60% at 5% 80%, rgba(199,91,42,0.12) 0%, transparent 52%),
    #F9F6F2;
}

.recru-intro__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--s-10), 6vw, var(--s-16));
  align-items: center;
}

.recru-intro__visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(74,55,40,0.16), 0 2px 8px rgba(74,55,40,0.08);
}

.recru-intro__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 420px;
}

.recru-intro__eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-saumon);
  margin-bottom: var(--s-4);
}

.recru-intro__title {
  font-family: var(--f-title);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 500;
  color: var(--c-brun);
  line-height: 1.1;
  letter-spacing: -0.022em;
  margin-bottom: var(--s-5);
}

.recru-intro__title em {
  font-style: italic;
  color: var(--c-terracotta);
}

.recru-intro__rule {
  width: 48px;
  height: 3px;
  border-radius: 2px;
  background: var(--c-saumon);
  margin-bottom: var(--s-6);
}

.recru-intro__text {
  font-family: var(--f-body);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: rgba(74,55,40,0.78);
  line-height: 1.75;
  margin-bottom: var(--s-4);
}

.recru-intro__text:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
  .recru-intro__inner {
    grid-template-columns: 1fr;
  }
  .recru-intro__img {
    min-height: 280px;
  }
}


/* ══════════════════════════════════════════════════════════════
   PAGE RECRUTEMENT — Styles spécifiques
   ══════════════════════════════════════════════════════════════ */

/* ── Utilitaires partagés entre sections ── */
.recru-eyebrow {
  display: block;
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-saumon);
}

.recru-rule {
  display: block;
  width: 48px;
  height: 3px;
  border-radius: 2px;
  background: var(--c-saumon);
  flex-shrink: 0;
}

.recru-section-head {
  text-align: center;
  margin-bottom: clamp(var(--s-10), 5vw, var(--s-16));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-4);
}

.recru-section-title {
  font-family: var(--f-title);
  font-size: clamp(var(--t-3xl), 3.8vw, var(--t-5xl));
  font-weight: 500;
  color: var(--c-brun);
  line-height: 1.1;
  letter-spacing: -0.022em;
}

/* ── SECTION 1 : HERO ──────────────────────────────────────── */
.recru-hero {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: clamp(480px, 60vw, 680px);
  background:
    radial-gradient(ellipse 55% 80% at 95% 15%, rgba(42,84,144,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 45% 65% at 5% 85%, rgba(122,90,170,0.14) 0%, transparent 52%),
    linear-gradient(160deg, #F9F6F2 0%, #F5F2EE 50%, #F0EBE4 100%);
  overflow: hidden;
}

.recru-hero__visual {
  position: relative;
  overflow: hidden;
}

.recru-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.recru-hero__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(250,250,248,0.35) 100%);
  pointer-events: none;
}

.recru-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--s-5);
  padding: clamp(var(--s-10), 6vw, var(--s-20)) clamp(var(--s-8), 5vw, var(--s-16));
}

.recru-hero__title {
  font-family: var(--f-title);
  font-size: clamp(var(--t-4xl), 4.5vw, var(--t-6xl));
  font-weight: 500;
  color: var(--c-brun);
  line-height: 1.06;
  letter-spacing: -0.022em;
}

.recru-hero__title em {
  font-style: italic;
  color: var(--c-terracotta);
}

.recru-hero__body {
  font-family: var(--f-body);
  font-size: clamp(var(--t-base), 1.2vw, var(--t-lg));
  color: var(--c-brun);
  opacity: 0.75;
  line-height: 1.75;
}

.recru-hero__cta {
  align-self: flex-start;
  margin-top: var(--s-2);
}

@media (max-width: 768px) {
  .recru-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .recru-hero__visual { min-height: 280px; }
  .recru-hero__img-overlay { background: none; }
}

/* ── SECTION 2 : PROMESSE ──────────────────────────────────── */
.recru-promise {
  position: relative;
  isolation: isolate;
  overflow: visible;
  padding-block: clamp(var(--s-16), 8vw, var(--s-24));
  padding-inline: var(--pad-x);
  background: transparent;
}

.recru-promise__inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-6);
}

.recru-promise__picto {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recru-promise__title {
  font-family: var(--f-title);
  font-size: clamp(var(--t-3xl), 4vw, var(--t-5xl));
  font-weight: 500;
  color: var(--c-brun);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-shadow:
    0 0 24px rgba(237,213,187,0.95),
    0 0 48px rgba(237,213,187,0.80);
}

.recru-promise__text {
  font-family: var(--f-body);
  font-size: clamp(var(--t-base), 1.3vw, var(--t-lg));
  color: rgba(74,55,40,0.90);
  line-height: 1.8;
  text-shadow:
    0 0 20px rgba(237,213,187,0.95),
    0 0 40px rgba(237,213,187,0.75);
}

.recru-promise__text strong {
  color: var(--c-terracotta);
  font-weight: 600;
}

/* ── SECTION 3 : PERKS (bento) ─────────────────────────────── */
.recru-perks {
  position: relative;
  isolation: isolate;
  overflow: visible;
  padding-block: clamp(var(--s-16), 8vw, var(--s-24));
  padding-inline: var(--pad-x);
  background: transparent;
}

.recru-perks__inner {
  max-width: var(--max-w);
  margin-inline: auto;
}

.recru-perks__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(var(--s-4), 2vw, var(--s-5));
}

/* Bento : 2+1 / 1+1+1 / 1+2 */
.recru-perk:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
.recru-perk:nth-child(2) { grid-column: 3;     grid-row: 1; }
.recru-perk:nth-child(3) { grid-column: 1;     grid-row: 2; }
.recru-perk:nth-child(4) { grid-column: 2;     grid-row: 2; }
.recru-perk:nth-child(5) { grid-column: 3;     grid-row: 2; }
.recru-perk:nth-child(6) { grid-column: 1;     grid-row: 3; }
.recru-perk:nth-child(7) { grid-column: 2 / 4; grid-row: 3; }

.recru-perk {
  background: var(--c-white);
  border-radius: var(--r-2xl);
  padding: clamp(var(--s-6), 3vw, var(--s-8));
  border: 1px solid rgba(242,196,168,0.4);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-5);
  transition: transform var(--tr-mid), box-shadow var(--tr-mid);
}

.recru-perk:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.recru-perk__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-lg);
  background: rgba(242,196,168,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-terracotta);
  flex-shrink: 0;
}

.recru-perk__icon--featured {
  width: 56px;
  height: 56px;
  background: rgba(199,91,42,0.12);
}

.recru-perk__title {
  font-family: var(--f-subtitle);
  font-size: clamp(var(--t-lg), 1.5vw, var(--t-xl));
  font-weight: 700;
  color: var(--c-brun);
  line-height: 1.2;
}

.recru-perk--featured .recru-perk__title {
  font-size: clamp(var(--t-xl), 2vw, var(--t-2xl));
  color: var(--c-white);
}

.recru-perk__content {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  flex: 1;
  align-self: stretch;
}

.recru-perk__body {
  font-family: var(--f-body);
  font-size: var(--t-base);
  color: var(--c-brun);
  opacity: 0.72;
  line-height: 1.7;
}

.recru-perk__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-top: var(--s-2);
}

.recru-perk__item {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--f-body);
  font-size: var(--t-sm);
  color: var(--c-brun);
  font-weight: 500;
}

.recru-perk__item svg {
  color: var(--c-terracotta);
  flex-shrink: 0;
}

/* Cartes larges (Formation + Trajets) : layout horizontal */
.recru-perk--featured,
.recru-perk:nth-child(7) {
  flex-direction: row;
  align-items: center;
  gap: clamp(var(--s-8), 4vw, var(--s-12));
}

/* Carte Formation : accent sombre */
.recru-perk--featured {
  background: var(--c-brun);
  border-color: transparent;
  align-items: flex-start;
  padding: clamp(var(--s-8), 4vw, var(--s-10));
}
.recru-perk--featured .recru-perk__icon {
  background: rgba(255,255,255,0.10);
  color: #F2C4A8;
}
.recru-perk--featured .recru-perk__body {
  color: rgba(255,255,255,0.72);
  opacity: 1;
}
.recru-perk--featured .recru-perk__item {
  color: rgba(255,255,255,0.85);
}
.recru-perk--featured .recru-perk__item svg { color: #F2C4A8; }
.recru-perk--featured:hover {
  box-shadow: 0 20px 50px rgba(74,55,40,0.45);
}

/* Tablette : 2 colonnes, Formation pleine largeur */
@media (max-width: 900px) {
  .recru-perks__grid { grid-template-columns: repeat(2, 1fr); }
  .recru-perk:nth-child(1) { grid-column: 1 / 3; grid-row: auto; }
  .recru-perk:nth-child(2),
  .recru-perk:nth-child(3),
  .recru-perk:nth-child(4),
  .recru-perk:nth-child(5),
  .recru-perk:nth-child(6),
  .recru-perk:nth-child(7) { grid-column: auto; grid-row: auto; }
}

/* Mobile : 1 colonne, toutes les cartes en colonne */
@media (max-width: 560px) {
  .recru-perks__grid { grid-template-columns: 1fr; }
  .recru-perk:nth-child(1) { grid-column: auto; grid-row: auto; }
  .recru-perk,
  .recru-perk--featured,
  .recru-perk:nth-child(7) { flex-direction: column; align-items: flex-start; gap: var(--s-4); }
}

/* ── SECTION 4 : TÉMOIGNAGES ───────────────────────────────── */
.recru-reviews {
  position: relative;
  isolation: isolate;
  overflow: visible;
  padding-block: clamp(var(--s-16), 8vw, var(--s-24));
  padding-inline: var(--pad-x);
  background: transparent;
}

.recru-reviews__inner {
  max-width: var(--max-w);
  margin-inline: auto;
}

.recru-reviews__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--s-6), 3vw, var(--s-8));
}

.recru-review {
  background: var(--c-white);
  border-radius: var(--r-2xl);
  padding: clamp(var(--s-6), 3vw, var(--s-10));
  border: 1px solid rgba(242,196,168,0.4);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  transition: transform var(--tr-mid), box-shadow var(--tr-mid);
}

.recru-review:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.recru-review__head {
  display: flex;
  align-items: center;
  gap: var(--s-4);
}

.recru-review__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-saumon) 0%, var(--c-terracotta) 100%);
  color: var(--c-white);
  font-family: var(--f-title);
  font-size: var(--t-xl);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.recru-review__meta {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
}

.recru-review__name {
  font-family: var(--f-body);
  font-size: var(--t-base);
  font-weight: 600;
  color: var(--c-brun);
}

.recru-review__stars {
  display: flex;
  gap: 2px;
}

.recru-review__stars svg {
  width: 14px;
  height: 14px;
  fill: #F5A52A;
}

.recru-review__text {
  font-family: var(--f-body);
  font-size: var(--t-base);
  color: var(--c-brun);
  opacity: 0.76;
  line-height: 1.75;
  font-style: italic;
}

@media (max-width: 640px) {
  .recru-reviews__grid { grid-template-columns: 1fr; }
}

/* ── SECTION 5 : PROFIL ────────────────────────────────────── */
.recru-profile {
  position: relative;
  isolation: isolate;
  overflow: visible;
  padding-block: clamp(var(--s-16), 8vw, var(--s-24));
  padding-inline: var(--pad-x);
  background: transparent;
}

.recru-profile__inner {
  max-width: 900px;
  margin-inline: auto;
  position: relative;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(2rem, 5vw, 4rem);
  background: linear-gradient(155deg, #FEF4EA 0%, #FDE9D4 55%, #F8E0C5 100%);
  border: 1px solid rgba(199, 91, 42, 0.16);
  border-radius: clamp(1.2rem, 2vw, 1.8rem);
  box-shadow:
    0 32px 80px rgba(199, 91, 42, 0.11),
    0 8px 24px rgba(199, 91, 42, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.recru-profile__inner::before {
  content: '';
  position: absolute;
  inset: 14px;
  pointer-events: none;
  background:
    linear-gradient(rgba(199,91,42,0.38), rgba(199,91,42,0.38)) top    left  / 28px 2px  no-repeat,
    linear-gradient(rgba(199,91,42,0.38), rgba(199,91,42,0.38)) top    left  / 2px  28px no-repeat,
    linear-gradient(rgba(199,91,42,0.38), rgba(199,91,42,0.38)) top    right / 28px 2px  no-repeat,
    linear-gradient(rgba(199,91,42,0.38), rgba(199,91,42,0.38)) top    right / 2px  28px no-repeat,
    linear-gradient(rgba(199,91,42,0.38), rgba(199,91,42,0.38)) bottom left  / 28px 2px  no-repeat,
    linear-gradient(rgba(199,91,42,0.38), rgba(199,91,42,0.38)) bottom left  / 2px  28px no-repeat,
    linear-gradient(rgba(199,91,42,0.38), rgba(199,91,42,0.38)) bottom right / 28px 2px  no-repeat,
    linear-gradient(rgba(199,91,42,0.38), rgba(199,91,42,0.38)) bottom right / 2px  28px no-repeat;
}

.recru-profile__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--s-8), 5vw, var(--s-16));
}

.recru-profile__col {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}

.recru-profile__col-title {
  font-family: var(--f-subtitle);
  font-size: var(--t-lg);
  color: var(--c-brun);
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.recru-profile__col-title svg {
  color: var(--c-saumon);
  flex-shrink: 0;
}

.recru-profile__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

.recru-profile__item {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  font-family: var(--f-body);
  font-size: var(--t-base);
  color: var(--c-brun);
  line-height: 1.6;
}

.recru-profile__item svg {
  color: var(--c-saumon);
  flex-shrink: 0;
  margin-top: 2px;
}

.recru-profile__cta-text {
  text-align: center;
  margin-top: clamp(var(--s-10), 5vw, var(--s-16));
  font-family: var(--f-body);
  font-size: var(--t-lg);
  color: var(--c-brun);
  opacity: 0.82;
  line-height: 1.5;
}

.recru-profile__cta-link {
  color: var(--c-terracotta);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  transition: color var(--tr-fast);
}

.recru-profile__cta-link:hover { color: #A84820; }

@media (max-width: 640px) {
  .recru-profile__grid { grid-template-columns: 1fr; }
}

/* ── SECTION 6 : PARCOURS ──────────────────────────────────── */
.recru-process {
  position: relative;
  isolation: isolate;
  overflow: visible;
  padding-block: clamp(var(--s-16), 8vw, var(--s-24));
  padding-inline: var(--pad-x);
  background: transparent;
}

.recru-process__inner {
  max-width: var(--max-w);
  margin-inline: auto;
}

.recru-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  list-style: none;
  position: relative;
}

.recru-process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding-inline: var(--s-4);
}

.recru-process__num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-saumon) 0%, var(--c-terracotta) 100%);
  color: var(--c-white);
  font-family: var(--f-title);
  font-size: var(--t-2xl);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(199,91,42,0.3);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.recru-process__line {
  position: absolute;
  top: 32px;
  left: calc(50% + 32px);
  right: calc(-50% + 32px);
  height: 2px;
  background: linear-gradient(90deg, var(--c-saumon) 0%, rgba(232,132,90,0.3) 100%);
  z-index: 0;
}

.recru-process__body {
  margin-top: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.recru-process__step-title {
  font-family: var(--f-subtitle);
  font-size: var(--t-lg);
  color: var(--c-brun);
  line-height: 1.2;
}

.recru-process__step-text {
  font-family: var(--f-body);
  font-size: var(--t-sm);
  color: var(--c-brun);
  opacity: 0.68;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .recru-process__steps {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
    gap: var(--s-6);
  }

  .recru-process__step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: var(--s-5);
    padding-inline: 0;
  }

  .recru-process__line {
    top: calc(64px + var(--s-2));
    left: 31px;
    right: unset;
    width: 2px;
    height: calc(100% + var(--s-6));
    background: linear-gradient(180deg, var(--c-saumon) 0%, rgba(232,132,90,0.2) 100%);
  }

  .recru-process__step:last-child .recru-process__line { display: none; }

  .recru-process__body { margin-top: 0; padding-top: var(--s-3); }
}

/* ── SECTION 7 : FORMULAIRE ────────────────────────────────── */
.recru-form-section {
  padding-block: clamp(var(--s-16), 9vw, var(--s-24));
  padding-inline: var(--pad-x);
  background:
    radial-gradient(ellipse 55% 70% at 10% 50%, rgba(199,91,42,0.24) 0%, transparent 52%),
    radial-gradient(ellipse 50% 65% at 90% 80%, rgba(122,90,170,0.20) 0%, transparent 52%),
    linear-gradient(150deg, #1B3B50 0%, #264F6A 55%, #2A5490 100%);
  position: relative;
  overflow: hidden;
}

.recru-form-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 120%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,132,90,0.10) 0%, transparent 65%);
  pointer-events: none;
}

.recru-form-section__inner {
  max-width: 680px;
  margin-inline: auto;
  position: relative;
}

.recru-form-section__head {
  text-align: center;
  margin-bottom: clamp(var(--s-8), 4vw, var(--s-12));
}

.recru-form-section__title {
  font-family: var(--f-title);
  font-size: clamp(var(--t-3xl), 4vw, var(--t-5xl));
  font-weight: 500;
  color: var(--c-white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-3);
}

.recru-form-section__sub {
  font-family: var(--f-body);
  font-size: var(--t-base);
  color: rgba(255,255,255,0.60);
  line-height: 1.6;
}

.recru-form-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  padding: clamp(var(--s-8), 5vw, var(--s-12));
  backdrop-filter: blur(4px);
}

/* Barre de progression */
.recru-progress {
  margin-bottom: clamp(var(--s-8), 4vw, var(--s-10));
}

.recru-progress__bar {
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: var(--s-4);
}

.recru-progress__fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--c-saumon) 0%, var(--c-terracotta) 100%);
  width: 33.33%;
  transition: width 0.45s ease;
}

.recru-progress__labels {
  display: flex;
  justify-content: space-between;
}

.recru-progress__label {
  font-family: var(--f-body);
  font-size: var(--t-xs);
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  transition: color 0.25s ease;
}

.recru-progress__label.is-active {
  color: var(--c-saumon);
}

/* Étapes formulaire */
.recru-form__step {
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}

.recru-form__legend {
  font-family: var(--f-subtitle);
  font-size: var(--t-xl);
  color: var(--c-white);
  margin-bottom: var(--s-2);
}

.recru-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}

@media (max-width: 520px) {
  .recru-form__row { grid-template-columns: 1fr; }
}

/* Champs */
.recru-field {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.recru-field__label {
  font-family: var(--f-body);
  font-size: var(--t-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}

.recru-field__req {
  color: var(--c-saumon);
  margin-left: 2px;
}

.recru-field__input {
  width: 100%;
  padding: var(--s-3) var(--s-4);
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: var(--r-lg);
  font-family: var(--f-body);
  font-size: var(--t-base);
  color: var(--c-white);
  line-height: 1.5;
  transition: border-color var(--tr-fast), background var(--tr-fast), box-shadow var(--tr-fast);
  min-height: 48px;
  -webkit-appearance: none;
  appearance: none;
}

.recru-field__input::placeholder {
  color: rgba(255,255,255,0.30);
}

.recru-field__input:focus {
  outline: none;
  border-color: var(--c-saumon);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(232,132,90,0.20);
}

.recru-field__input:focus-visible {
  border-color: var(--c-saumon);
}

.recru-field__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.5)' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--s-4) center;
  padding-right: var(--s-10);
}

.recru-field__select option {
  background: var(--c-brun);
  color: var(--c-white);
}

.recru-field__textarea {
  resize: vertical;
  min-height: 140px;
}

/* Upload CV */
.recru-field__upload {
  position: relative;
  border: 2px dashed rgba(255,255,255,0.22);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--tr-fast), background var(--tr-fast);
  cursor: pointer;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recru-field__upload:hover {
  border-color: var(--c-saumon);
  background: rgba(232,132,90,0.06);
}

.recru-field__file {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.recru-field__upload-ui {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-6);
  text-align: center;
  color: rgba(255,255,255,0.45);
  pointer-events: none;
}

.recru-field__upload-ui svg { color: rgba(255,255,255,0.35); }

.recru-field__upload-ui span {
  font-family: var(--f-body);
  font-size: var(--t-sm);
  line-height: 1.5;
}

.recru-field__upload-ui strong { color: var(--c-saumon); }

.recru-field__hint {
  font-family: var(--f-body);
  font-size: var(--t-xs);
  color: rgba(255,255,255,0.35);
}

/* Navigation entre étapes */
.recru-form__subtitle {
  font-family: var(--ff-body);
  font-size: clamp(0.875rem, 1.5vw, 0.95rem);
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--s-5);
  margin-top: calc(var(--s-1) * -1);
}

.recru-form__checkboxes {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  margin-bottom: var(--s-6);
}

.recru-check {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  cursor: pointer;
}

.recru-check__input {
  width: 1.2rem;
  height: 1.2rem;
  accent-color: var(--c-dore);
  cursor: pointer;
  flex-shrink: 0;
}

.recru-check__label {
  font-family: var(--ff-body);
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.4;
  user-select: none;
}

.recru-form__nav {
  display: flex;
  justify-content: flex-end;
  margin-top: var(--s-4);
}

.recru-form__nav--dual {
  justify-content: space-between;
}

/* Bouton outline-dark adapté fond sombre */
.recru-form-section .btn--outline-dark {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
}

.recru-form-section .btn--outline-dark:hover {
  background: rgba(255,255,255,0.12);
  color: var(--c-white);
  border-color: rgba(255,255,255,0.5);
}

/* Confirmation */
.recru-confirm {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s-4);
  padding: clamp(var(--s-10), 5vw, var(--s-16)) 0;
}

.recru-confirm__title {
  font-family: var(--f-subtitle);
  font-size: clamp(var(--t-2xl), 3vw, var(--t-3xl));
  color: var(--c-white);
}

.recru-confirm__text {
  font-family: var(--f-body);
  font-size: var(--t-base);
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  max-width: 40ch;
}


/* ══════════════════════════════════════════════════════════════
   PAGE CONTACT
   ══════════════════════════════════════════════════════════════ */

/* ── SECTION 1 : HERO ──────────────────────────────────────── */

/* Overrides page-hero pour la page contact */
.ctact-hero.page-hero {
  min-height: clamp(500px, 62vw, 660px);
}

/* Titre légèrement plus petit pour "Nous contacter" (plus long) */
.ctact-hero .page-hero__title {
  font-size: clamp(3.8rem, 8.5vw, 9.5rem);
}

/* Pills de contact rapide sous le texte */
.ctact-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-4);
}

.ctact-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-3) var(--s-5);
  background: var(--c-white);
  border: 1.5px solid rgba(199,91,42,0.18);
  border-radius: var(--r-full);
  font-family: var(--f-body);
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--c-brun);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: background var(--tr-fast), border-color var(--tr-fast),
              color var(--tr-fast), transform var(--tr-fast), box-shadow var(--tr-fast);
}

.ctact-hero__pill svg { color: var(--c-terracotta); flex-shrink: 0; }

.ctact-hero__pill:hover {
  background: var(--c-terracotta);
  border-color: var(--c-terracotta);
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.ctact-hero__pill:hover svg { color: var(--c-white); }

/* Colonne photo */
.ctact-hero__photo-col {
  padding: clamp(2rem, 4.5vw, 4.5rem) clamp(1.5rem, 4vw, 4rem);
}

/* Deco rectangulaire — positionné en bas-gauche, rotation inverse vs nos-services */
.ctact-hero__deco {
  position: absolute;
  bottom: 8%;
  left: 6%;
  width: 75%;
  height: 80%;
  border: 1.5px solid rgba(58,107,138,0.16);
  border-radius: 6rem 3rem 6rem 3rem;
  transform: rotate(-4deg);
  pointer-events: none;
}

/* Accent circle discret en haut-droit */
.ctact-hero__deco-dot {
  position: absolute;
  top: 12%;
  right: 10%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199,91,42,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Cadre photo — losange-arrondi vs nos-services blob organique */
.ctact-hero__frame {
  position: relative;
  z-index: 1;
  width: 84%;
  height: clamp(360px, 50vw, 540px);
  border-radius: 6rem 3rem 6rem 3rem;
  overflow: hidden;
  box-shadow:
    0 24px 72px rgba(74,55,40,0.15),
    0 6px 18px rgba(74,55,40,0.08),
    0 0 0 4px rgba(255,255,255,0.92);
}

.ctact-hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  filter: brightness(0.94) saturate(0.88);
}

/* Animations d'entrée */
.page-contact .page-hero__title {
  animation: hero-rise 1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.1s backwards;
}
.page-contact .page-hero__ornament {
  margin-top: var(--s-6);
  animation: hero-fade 0.8s ease-out 0.55s backwards;
}
.page-contact .page-hero__sub {
  animation: hero-rise 1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.7s backwards;
  opacity: 1;
}
.page-contact .ctact-hero__pills {
  animation: hero-rise 1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.85s backwards;
}
.page-contact .ctact-hero__photo-col {
  animation: hero-rise 1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.3s backwards;
}

@media (prefers-reduced-motion: reduce) {
  .page-contact .page-hero__title,
  .page-contact .page-hero__ornament,
  .page-contact .page-hero__sub,
  .page-contact .ctact-hero__pills,
  .page-contact .ctact-hero__photo-col { animation: none; }
}

@media (max-width: 768px) {
  .ctact-hero.page-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .ctact-hero__photo-col { min-height: 300px; }
  .ctact-hero__frame { width: 78%; height: clamp(260px, 60vw, 360px); }
}

/* ── SECTION 2 : COORDONNÉES + CARTE ──────────────────────── */
.ctact-info {
  position: relative;
  isolation: isolate;
  overflow: visible;
  padding-block: clamp(var(--s-16), 8vw, var(--s-24));
  padding-inline: var(--pad-x);
  background: transparent;
}

.ctact-info__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(var(--s-10), 6vw, var(--s-16));
  align-items: start;
}

/* Blocs de coordonnées */
.ctact-info__coords {
  display: flex;
  flex-direction: column;
  gap: clamp(var(--s-4), 2.5vw, var(--s-5));
}

.ctact-block {
  display: flex;
  align-items: flex-start;
  gap: var(--s-5);
  background: var(--c-white);
  border-radius: var(--r-2xl);
  padding: clamp(var(--s-5), 3vw, var(--s-8));
  border: 1px solid rgba(242,196,168,0.4);
  box-shadow: var(--shadow-sm);
  transition: transform var(--tr-mid), box-shadow var(--tr-mid);
}

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

.ctact-block__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-lg);
  background: rgba(242,196,168,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-terracotta);
  flex-shrink: 0;
}

.ctact-block__content {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
}

.ctact-block__label {
  font-family: var(--f-body);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-saumon);
  margin-bottom: var(--s-1);
}

.ctact-block__value {
  font-family: var(--f-subtitle);
  font-size: clamp(var(--t-xl), 2.2vw, var(--t-2xl));
  color: var(--c-brun);
  line-height: 1.2;
  text-decoration: none;
  font-style: normal;
}

.ctact-block__value--phone {
  font-size: clamp(var(--t-2xl), 2.8vw, var(--t-3xl));
  font-family: var(--f-body);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--tr-fast);
}

.ctact-block__value--phone:hover { color: var(--c-terracotta); }

.ctact-block__value--email {
  font-family: var(--f-body);
  font-size: clamp(var(--t-base), 1.4vw, var(--t-lg));
  font-weight: 500;
  word-break: break-all;
  transition: color var(--tr-fast);
}

.ctact-block__value--email:hover { color: var(--c-terracotta); }

.ctact-block__value--address {
  font-family: var(--f-body);
  font-size: clamp(var(--t-base), 1.4vw, var(--t-lg));
  font-weight: 500;
  line-height: 1.5;
}

.ctact-block__detail {
  font-family: var(--f-body);
  font-size: var(--t-sm);
  color: var(--c-brun);
  opacity: 0.58;
  line-height: 1.5;
}

/* Carte SVG Essonne */
.ctact-info__map {
  position: sticky;
  top: calc(var(--nav-h) + var(--s-6));
}

.ctact-map {
  background: var(--c-white);
  border: 1px solid rgba(242,196,168,0.4);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-sm);
  padding: clamp(var(--s-5), 3vw, var(--s-8));
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

.ctact-map__title {
  font-family: var(--f-body);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-saumon);
  text-align: center;
}

.ctact-map__svg-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
}

.ctact-map__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.ctact-map__tagline {
  font-family: var(--f-body);
  font-size: var(--t-sm);
  color: var(--c-brun);
  opacity: 0.55;
  text-align: center;
  line-height: 1.5;
  padding-top: var(--s-1);
}

@media (max-width: 860px) {
  .ctact-info__inner {
    grid-template-columns: 1fr;
  }
  .ctact-info__map {
    position: static;
  }
}

@media (max-width: 560px) {
  /* Trait ornement plus bas sous le titre */
  .page-contact .page-hero__ornament {
    margin-top: var(--s-5);
  }

  /* Téléphone et e-mail sur une seule ligne */
  .ctact-block__value--phone {
    white-space: nowrap;
    font-size: clamp(0.92rem, 4.8vw, 1.35rem);
  }
  .ctact-block__value--email {
    white-space: nowrap;
    word-break: normal;
    font-size: clamp(0.78rem, 3.8vw, 0.95rem);
  }
}

/* ── SECTION 3 : FORMULAIRE ────────────────────────────────── */
.ctact-form-section {
  padding-block: clamp(var(--s-16), 9vw, var(--s-24));
  padding-inline: var(--pad-x);
  background:
    radial-gradient(ellipse 55% 70% at 10% 50%, rgba(199,91,42,0.24) 0%, transparent 52%),
    radial-gradient(ellipse 50% 65% at 90% 80%, rgba(122,90,170,0.20) 0%, transparent 52%),
    linear-gradient(150deg, #1B3B50 0%, #264F6A 55%, #2A5490 100%);
  position: relative;
  overflow: hidden;
}

.ctact-form-section::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 50%;
  height: 120%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,132,90,0.09) 0%, transparent 65%);
  pointer-events: none;
}

.ctact-form-section__inner {
  max-width: 640px;
  margin-inline: auto;
  position: relative;
}

.ctact-form-section__head {
  text-align: center;
  margin-bottom: clamp(var(--s-8), 4vw, var(--s-12));
}

.ctact-form-section__title {
  font-family: var(--f-title);
  font-size: clamp(var(--t-3xl), 5vw, var(--t-5xl));
  font-weight: 500;
  color: var(--c-white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-3);
}

.ctact-form-section__sub {
  font-family: var(--f-body);
  font-size: var(--t-base);
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.ctact-form-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  padding: clamp(var(--s-8), 5vw, var(--s-12));
}

.ctact-form {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}

.ctact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}

.ctact-form__submit {
  display: flex;
  justify-content: flex-end;
  margin-top: var(--s-2);
}

.ctact-form__btn {
  min-width: 160px;
}

/* Sur fond sombre, le btn--outline-dark hérite du style recru */
.ctact-form-section .btn--outline-dark {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
}

@media (max-width: 520px) {
  .ctact-form__row { grid-template-columns: 1fr; }
  .ctact-form__submit { justify-content: stretch; }
  .ctact-form__btn { width: 100%; }
}

/* ═══════════════════════════════════════════════════════════════
   AURORA PAR PAGE — identité visuelle propre à chaque page
   Technique : :has() cible la page sans modifier le HTML.
   Chaque page garde la chaleur terracota/ambre de la marque
   mais accentue une couleur dominante différente.
   ═══════════════════════════════════════════════════════════════ */

/* NOS SERVICES — terracotta + doré, richesse et diversité des soins */
body:has(.svc-chapters)::before {
  background:
    radial-gradient(ellipse 52% 50% at 88% 8%,   rgba(205,78,28,0.76) 0%, rgba(205,78,28,0.54) 22%, rgba(205,78,28,0.22) 44%, transparent 56%),
    radial-gradient(ellipse 50% 48% at 8% 86%,   rgba(228,145,58,0.72) 0%, rgba(228,145,58,0.50) 22%, rgba(228,145,58,0.18) 44%, transparent 56%),
    radial-gradient(ellipse 42% 38% at 52% 50%,  rgba(215,118,45,0.44) 0%, rgba(215,118,45,0.20) 36%, transparent 54%),
    #EDD5BB;
}

/* QUI SOMMES-NOUS — doré haut-gauche + terracotta bas-droit : chaleur, humanisme, confiance */
body:has(.qsn-vals)::before {
  background:
    radial-gradient(ellipse 52% 50% at 14% 10%,  rgba(228,145,58,0.76) 0%, rgba(228,145,58,0.54) 22%, rgba(228,145,58,0.22) 44%, transparent 56%),
    radial-gradient(ellipse 50% 48% at 88% 88%,  rgba(205,78,28,0.72) 0%, rgba(205,78,28,0.50) 22%, rgba(205,78,28,0.18) 44%, transparent 56%),
    radial-gradient(ellipse 40% 36% at 50% 50%,  rgba(215,118,45,0.42) 0%, rgba(215,118,45,0.18) 36%, transparent 54%),
    #EDD5BB;
}

/* FONCTIONNEMENT — bleu haut-gauche (clarté) + doré bas-droit (chaleur) + terracotta centre */
body:has(.fonct-intro)::before {
  background:
    radial-gradient(ellipse 54% 52% at 10% 10%,  rgba(80,152,218,0.74) 0%, rgba(80,152,218,0.52) 22%, rgba(80,152,218,0.20) 44%, transparent 56%),
    radial-gradient(ellipse 50% 48% at 88% 88%,  rgba(228,145,58,0.70) 0%, rgba(228,145,58,0.48) 22%, rgba(228,145,58,0.18) 44%, transparent 56%),
    radial-gradient(ellipse 40% 36% at 50% 48%,  rgba(205,78,28,0.38) 0%, rgba(205,78,28,0.16) 36%, transparent 54%),
    #EDD5BB;
}

/* ÉTAPES — bleu haut-droit + doré bas-gauche : progression, clarté du parcours */
body:has(.etapes-intro)::before {
  background:
    radial-gradient(ellipse 50% 48% at 86% 10%,  rgba(80,152,218,0.74) 0%, rgba(80,152,218,0.52) 22%, rgba(80,152,218,0.20) 44%, transparent 56%),
    radial-gradient(ellipse 52% 50% at 10% 88%,  rgba(228,145,58,0.72) 0%, rgba(228,145,58,0.50) 22%, rgba(228,145,58,0.20) 44%, transparent 56%),
    radial-gradient(ellipse 38% 36% at 50% 50%,  rgba(215,118,45,0.40) 0%, rgba(215,118,45,0.18) 36%, transparent 54%),
    #EDD5BB;
}

/* CONTACT — doré haut-centre (accueil) + terracotta bas-droit + bleu gauche (confiance) */
body:has(.ctact-info)::before {
  background:
    radial-gradient(ellipse 58% 52% at 50% 4%,   rgba(228,145,58,0.76) 0%, rgba(228,145,58,0.52) 22%, rgba(228,145,58,0.20) 46%, transparent 58%),
    radial-gradient(ellipse 46% 44% at 88% 88%,  rgba(205,78,28,0.70) 0%, rgba(205,78,28,0.48) 22%, rgba(205,78,28,0.16) 44%, transparent 56%),
    radial-gradient(ellipse 38% 36% at 8% 56%,   rgba(80,152,218,0.40) 0%, rgba(80,152,218,0.18) 36%, transparent 54%),
    #EDD5BB;
}

/* RECRUTEMENT — bleu haut-gauche (aspiration) + doré bas-droit très atténué */
body:has(.recru-promise)::before {
  background:
    radial-gradient(ellipse 52% 50% at 12% 10%,  rgba(80,152,218,0.20) 0%, rgba(80,152,218,0.10) 30%, rgba(80,152,218,0.03) 52%, transparent 64%),
    radial-gradient(ellipse 40% 36% at 86% 88%,  rgba(228,145,58,0.10) 0%, rgba(228,145,58,0.05) 40%, transparent 62%),
    #EDD5BB;
}

/* recru-perks : fond légèrement opaque — absorbe le body::before dans les interstices
   sans créer de démarcation (même couleur chaude que le fond général) */
.recru-perks {
  background: rgba(237, 213, 187, 0.55);
}



/* Mobile recru-promise : fond chaud sur le conteneur texte (body::before assure la couleur) */
@media (max-width: 660px) {
  .recru-promise__inner {
    background: rgba(237, 213, 187, 0.88);
    border-radius: 1.5rem;
    padding: var(--s-8) var(--s-5);
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════════
   ORBES — REPOSITIONNEMENT TABLETTE & MOBILE (page d'accueil)
   Desktop (> 900px) : AUCUNE modification — ces règles ne s'appliquent
   qu'en dessous de 900px. Seul le placement est changé, pas les couleurs.
   ═══════════════════════════════════════════════════════════════ */

/* ── Tablette (≤ 900px) : ajustements doux ── */
@media (max-width: 900px) {

  /* Section Services : bleu cadre le titre à gauche, orange réchauffe la sortie */
  .services .orb--blue   { top: -12%; left: -20%; right: auto; bottom: auto; }
  .services .orb--orange { bottom: -12%; right: -20%; left: auto; top: auto; }
  .services .orb--violet { top: 45%; right: -18%; left: auto; bottom: auto; }

  /* Section Reviews : pêche haut-droite sur le titre, violet milieu-gauche */
  .reviews .orb--peche  { top: -8%;  right: -22%; left: auto; bottom: auto; }
  .reviews .orb--violet { top: 40%;  left: -18%;  right: auto; bottom: auto; }

  /* Section Fiscal : bleu cadre l'en-tête à gauche, violet + doré apportent chaleur */
  .fiscal .orb--blue   { top: -8%;  left: -22%; right: auto; bottom: auto; }
  .fiscal .orb--violet { bottom: -8%; right: -18%; left: auto; top: auto; }
  .fiscal .orb--dore   { top: 40%;  left: -5%;  right: auto; bottom: auto; }
}

/* ── Mobile (≤ 580px) : repositionnement précis section par section ── */
@media (max-width: 580px) {

  /* — Services —
     Bleu XL : haut-gauche, derrière le titre "Nos services"
     Orange LG : bas-droite, transition chaude vers les avis
     Violet MD : milieu-droite, profondeur atmosphérique               */
  .services .orb--blue   { top: -5%;   left: -30%; right: auto; bottom: auto; }
  .services .orb--orange { bottom: -8%; right: -28%; left: auto; top: auto;   }
  .services .orb--violet { top: 52%;   right: -22%; left: auto; bottom: auto; }

  /* — Reviews —
     Pêche XL : haut-droite, auréole chaude autour du titre
     Violet LG : centre-gauche, rythme visuel alterné                  */
  .reviews .orb--peche  { top: -2%;  right: -26%; left: auto; bottom: auto; }
  .reviews .orb--violet { top: 40%;  left: -24%;  right: auto; bottom: auto; }

  /* — About (photo plein-fond en mobile) —
     Bleu LG : haut-droite, touche fraîche au-dessus du dégradé
     Doré MD : bas-centre, réchauffe le bloc texte en bas              */
  .about .orb--blue { top: 3%;    right: -24%; left: auto; bottom: auto; }
  .about .orb--dore { bottom: 6%; left: 18%;   right: auto; top: auto;  }

  /* — Fiscal —
     Bleu XL : haut-gauche, illumine le titre de la section
     Violet MD : bas-droite, porte le regard vers la suite
     Doré MD : centre-gauche, chaleur autour des cartes crédit         */
  .fiscal .orb--blue   { top: -4%;  left: -30%; right: auto; bottom: auto; }
  .fiscal .orb--violet { bottom: -4%; right: -24%; left: auto; top: auto; }
  .fiscal .orb--dore   { top: 42%;  left: -10%; right: auto; bottom: auto; }

  /* ── Carousel avis — hauteur dynamique (mesurée par JS), texte intégral ── */
  .svc-reviews-carousel {
    display: flex;
    flex-direction: column;
    gap: var(--s-5);
  }

  /* Piste : min-height injectée par JS après mesure de la plus grande carte */
  .svc-reviews__grid {
    display: block !important;
    position: relative;
    overflow: hidden;
  }

  /* Cartes absolues UNIQUEMENT après init JS (classe .carousel-ready sur la grille) */
  .svc-reviews__grid.carousel-ready .svc-review-card {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    transition:
      transform 0.26s cubic-bezier(0.22, 0.61, 0.36, 1),
      opacity   0.22s ease;
    will-change: transform, opacity;
    touch-action: manipulation;
  }

  .svc-reviews__grid.carousel-ready .svc-review-card.is-active {
    transform: translateX(0);
    opacity: 1;
    z-index: 2;
  }

  .svc-reviews__grid.carousel-ready .svc-review-card.is-prev {
    transform: translateX(-106%);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
  }

  .svc-reviews__grid.carousel-ready .svc-review-card.is-next {
    transform: translateX(106%);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
  }

  /* Barre de navigation : flèches + dots sur une ligne */
  .svc-reviews-carousel__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--s-6);
  }

  .svc-reviews-carousel__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--c-terracotta);
    border: none;
    color: #fff;
    cursor: pointer;
    touch-action: manipulation;
    box-shadow: 0 4px 20px rgba(199,91,42,0.34);
    transition: transform 0.16s ease, box-shadow 0.16s ease;
  }

  .svc-reviews-carousel__btn:active {
    transform: scale(0.90);
    box-shadow: 0 2px 8px rgba(199,91,42,0.20);
    transition-duration: 0.08s;
  }

  /* Dots — pastille qui s'étire en pill sur l'actif */
  .svc-reviews-carousel__dots {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .svc-reviews-carousel__dot {
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 4px;
    background: rgba(199,91,42,0.22);
    transition: background 0.24s ease, width 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  .svc-reviews-carousel__dot.is-active {
    background: var(--c-terracotta);
    width: 24px;
  }

  @media (prefers-reduced-motion: reduce) {
    .svc-reviews__grid.carousel-ready .svc-review-card {
      transition: opacity 0.14s ease;
    }
    .svc-reviews__grid.carousel-ready .svc-review-card.is-prev,
    .svc-reviews__grid.carousel-ready .svc-review-card.is-next {
      transform: none;
    }
  }

  /* nos-services — séparateur "NOTRE ENGAGEMENT DE CŒUR" */
  .svc-featured-intro span:nth-child(2) {
    white-space: normal;
    text-align: center;
    letter-spacing: 0.16em;
  }

  /* nos-services — titre carte featured : taille adaptée au mobile */
  .svc-ch--featured .svc-ch__title {
    font-size: clamp(1.45rem, 5.8vw, 2.3rem);
    text-align: center;
    overflow-wrap: break-word;
    line-height: 1.7;
  }

  /* nos-services — contenu featured centré sur très petit écran */
  .svc-ch--featured .svc-ch__body {
    align-items: center;
    text-align: center;
  }
  .svc-ch--featured .svc-ch__desc {
    text-align: left;
  }
  .svc-ch--featured .svc-ch__promise {
    text-align: left;
  }
  .svc-ch--featured .svc-ch__cta-link {
    align-self: center;
  }
}

/* ══════════════════════════════════════════════════════════════
   SCROLL AURORA — index.html, mobile + tablette uniquement
   Layer fixe : 3 blobs colorés pilotés par JS au scroll
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {

  .scroll-aurora {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
  }

  .scroll-aurora__blob {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    will-change: transform;
    transition: background-color 0.9s ease;
  }

  .scroll-aurora__blob[data-blob="1"] {
    width: clamp(260px, 90vw, 480px);
    height: clamp(260px, 90vw, 480px);
    filter: blur(clamp(55px, 16vw, 95px));
    background-color: rgba(199,91,42,0.11);
    transform: translate(2vw, 6vh);
  }

  .scroll-aurora__blob[data-blob="2"] {
    width: clamp(220px, 75vw, 420px);
    height: clamp(220px, 75vw, 420px);
    filter: blur(clamp(48px, 13vw, 85px));
    background-color: rgba(228,145,55,0.09);
    transform: translate(52vw, 52vh);
  }

  .scroll-aurora__blob[data-blob="3"] {
    width: clamp(180px, 60vw, 360px);
    height: clamp(180px, 60vw, 360px);
    filter: blur(clamp(40px, 11vw, 75px));
    background-color: rgba(80,152,218,0.08);
    transform: translate(28vw, 32vh);
  }

  /* Titres h2 — brun foncé + halo crème pour lever au-dessus des couleurs */
  .services__title,
  .reviews__title,
  .about__title,
  .fiscal__title {
    color: var(--c-brun);
    text-shadow:
      0 0 32px rgba(255,248,238,0.92),
      0 0 14px rgba(255,240,220,0.70);
  }
}

/* ══════════════════════════════════════════════════════════════
   NOS-SERVICES — titres et textes mis en avant, mobile + tablette
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 820px) {

  /* Plus d'espace entre le titre et le descriptif */
  .svc-ch__title {
    margin-bottom: clamp(var(--s-6), 5vw, var(--s-9));
  }

  /* Titre : couleur terracotta vibrante sur fond clair/aurora */
  .svc-ch__title {
    color: var(--c-terracotta);
  }

  /* Le surlignement interne adapté à la couleur terracotta */
  .svc-ch__title > span {
    background: linear-gradient(
      to bottom,
      transparent          28%,
      rgba(199,91,42,0.10) 38%,
      rgba(199,91,42,0.14) 58%,
      rgba(199,91,42,0.08) 80%,
      transparent          100%
    );
  }

  /* Description : plus lisible (moins transparent) */
  .svc-ch__desc {
    opacity: 0.88;
    line-height: 1.84;
  }
}

@media (max-width: 580px) {

  /* Titre un peu plus petit sur très petit écran, toujours espacé */
  .svc-ch__title {
    font-size: clamp(1.9rem, 6vw, 2.6rem);
    margin-bottom: var(--s-5);
    line-height: 1.2;
  }

  /* Desc légèrement resserré */
  .svc-ch__desc {
    font-size: clamp(0.93rem, 3.6vw, 1.04rem);
    line-height: 1.78;
  }
}

/* ── Erreurs de formulaire ──────────────────────────────────────────────── */
.recru-field__error {
  display: none;
  font-family: var(--f-body);
  font-size: 0.78rem;
  color: #c0392b;
  margin-top: 0.3rem;
  line-height: 1.4;
}

.form-error {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  padding: var(--s-4) var(--s-5);
  background: rgba(192,57,43,0.08);
  border: 1px solid rgba(192,57,43,0.28);
  border-radius: var(--r-lg);
  margin-top: var(--s-5);
}
.form-error__text {
  font-family: var(--f-body);
  font-size: var(--t-sm);
  color: #c0392b;
  line-height: 1.5;
}
