﻿
:root {
  --bg-sable-image: url("images/bg-sable.png");
  --bg-sable-blur-desktop: 14px;
  --bg-sable-blur-mobile: 7px;
  --bg-sable-scale-desktop: 1.08;
  --bg-sable-scale-mobile: 1.04;
  --c-green: #3d6b4f;
  --c-green-hover: #6a9e7a;
  --c-gold: #b8975a;
  --c-bg: #e2d5bc;
  --c-zone-light: #f2e8d5;
  --c-zone-shadow: #cfc3a8;
  --c-card: #f2e8d5;
  --c-footer: #cfc3a8;
  --c-text: #2c3628;
  --c-text-soft: #5a5248;
  --c-text-pale: #8a8070;
  --c-warm-white: #f4efe4;
  --c-divider: rgba(100, 82, 56, 0.34);
  --c-sand-shadow: 139, 115, 75;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Jost", system-ui, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-portee: 0 4px 16px rgba(139, 115, 75, 0.12), 0 1px 3px rgba(139, 115, 75, 0.08);
  --shadow-card-hover: 0 8px 32px rgba(139, 115, 75, 0.18), 0 2px 8px rgba(139, 115, 75, 0.1),
    inset 0 1px 0 rgba(255, 248, 225, 0.9);
  --shadow-plaque-hero: 0 24px 64px rgba(139, 115, 75, 0.25), 0 4px 16px rgba(139, 115, 75, 0.15),
    0 0 0 1px rgba(184, 151, 90, 0.35), inset 0 1px 0 rgba(255, 248, 225, 0.5);
  --header-h-desktop: 96px;
  --header-h-mobile: 84px;
  /* Densité : moins de scroll vertical, tokens maîtrisés (barre d’exigence : mesures, pas volumes au hasard). */
  --space-gutter: clamp(0.85rem, 2.4vw, 1.2rem);
  --space-section-y: clamp(0.7rem, 1.6vw, 1.05rem);
  --radius-card: 12px;
  --radius-control: 10px;
  --dur-hover: 220ms;
  --shadow-zone-lumiere: 0 3px 16px rgba(139, 115, 75, 0.1), 0 1px 3px rgba(139, 115, 75, 0.06),
    inset 0 1px 0 rgba(255, 252, 247, 0.98);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

html {
  scroll-behavior: auto;
  /* overflow-x sur html seul casse le scroll momentum iOS — géré sur body */
  background-color: var(--c-bg);
  scroll-padding-top: calc(var(--header-h-mobile) + env(safe-area-inset-top, 0px) + 8px);
}

@media (min-width: 768px) {
  html {
    scroll-padding-top: calc(var(--header-h-desktop) + env(safe-area-inset-top, 0px) + 8px);
  }
}

#contenu-principal {
  scroll-margin-top: calc(var(--header-h-mobile) + env(safe-area-inset-top, 0px) + 8px);
}

@media (min-width: 768px) {
  #contenu-principal {
    scroll-margin-top: calc(var(--header-h-desktop) + env(safe-area-inset-top, 0px) + 8px);
  }
}

#parcours-delais,
#process-title,
#delais-title {
  scroll-margin-top: calc(var(--header-h-mobile) + env(safe-area-inset-top, 0px) + 12px);
}

@media (min-width: 768px) {
  #parcours-delais,
  #process-title,
  #delais-title {
    scroll-margin-top: calc(var(--header-h-desktop) + env(safe-area-inset-top, 0px) + 12px);
  }
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch; /* momentum scroll iOS */
  overscroll-behavior-y: none;       /* supprime le rubber-band Android */
  background-color: transparent;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.62;
  color: var(--c-text-soft);
  position: relative;
  overflow-wrap: break-word;
}


/* Scroll fluide sur ancres — respecte les préférences utilisateur */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Supprime le délai tactile 300ms sur tous les éléments interactifs */
a, button, [role="button"], label, summary {
  touch-action: manipulation;
}

/* GPU sur les éléments animés par AOS pour éviter les repaints */
[data-aos] {
  will-change: transform, opacity;
}
[data-aos].aos-animate {
  will-change: auto; /* libère après animation */
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  background-color: var(--c-bg);
  background-image: var(--bg-sable-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(var(--bg-sable-scale-mobile));
  transform-origin: center center;
  filter: blur(var(--bg-sable-blur-mobile)) saturate(0.82) brightness(1.04) contrast(0.96);
}

@media (min-width: 768px) {
  body::before {
    position: fixed;
    top: -64px;
    left: -64px;
    right: -64px;
    bottom: -64px;
    width: auto;
    height: auto;
    transform: scale(var(--bg-sable-scale-desktop));
    filter: blur(var(--bg-sable-blur-desktop)) saturate(0.8) brightness(1.05) contrast(0.95);
  }
}

@supports not (filter: blur(1px)) {
  body::before {
    filter: none;
    opacity: 0.32;
    transform: scale(1.03);
  }
}

body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  background-color: rgba(241, 234, 220, 0.28);
  background-image:
    linear-gradient(
      168deg,
      rgba(252, 250, 246, 0.42) 0%,
      rgba(236, 228, 212, 0.36) 38%,
      rgba(222, 212, 194, 0.32) 72%,
      rgba(216, 206, 188, 0.28) 100%
    ),
    radial-gradient(ellipse 90% 55% at 50% 0%, rgba(255, 252, 246, 0.22) 0%, transparent 52%);
  background-size: auto, auto;
  background-repeat: no-repeat, no-repeat;
}

@media (min-width: 768px) {
  body::after {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before {
    filter: saturate(0.78) brightness(1.03) contrast(0.97);
    transform: scale(1.02);
  }

  body::after {
    background-color: rgba(241, 234, 220, 0.55);
  }
}

/* Exclure <header> et #nav-principale (menu mobile peut être en fin de <body>) : éviter que
   position:relative + z-index:1 ne cassent position:fixed / l’empilement (Safari, Chrome mobile). */
body > *:not(script):not(header):not(#nav-principale) {
  position: relative;
  z-index: 1;
}

::selection {
  background: rgba(139, 115, 75, 0.22);
  color: var(--c-text);
}

h1,
h2,
h3,
.h1,
.h2 {
  font-family: var(--font-display);
  color: var(--c-text);
  font-weight: 600;
}

h1,
.page-title {
  font-size: clamp(2.15rem, 6.5vw, 3.15rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--c-text);
  text-shadow: 0 1px 2px rgba(139, 115, 75, 0.15);
}

h2,
.page-section h2:not(.visually-hidden),
.form-section__title {
  font-size: clamp(1.55rem, 4.8vw, 2.25rem);
  font-weight: 600;
  line-height: 1.15;
}

h3 {
  font-size: clamp(1.2rem, 3.2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.2;
}

p,
li,
.page-intro,
.page-section p,
.form-section__intro,
.contact-block__text {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.62;
  color: var(--c-text-soft);
}

strong {
  color: var(--c-text);
  font-weight: 500;
}

a {
  color: var(--c-green);
  transition: color 150ms var(--ease), border-color 150ms var(--ease);
}

a:hover {
  color: var(--c-green-hover);
}

a:focus-visible {
  outline: 2px solid rgba(61, 107, 79, 0.38);
  outline-offset: 3px;
  border-radius: 2px;
}

.btn:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(61, 107, 79, 0.42);
  outline-offset: 2px;
}

.eyebrow,
.hero__kicker,
.hero-eyebrow,
.site-footer__label,
.form-label {
  font-family: var(--font-body);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #3d6b4f;
}

.eyebrow::before,
.hero__kicker::before,
.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 2px;
  margin-right: 0.65rem;
  vertical-align: middle;
  border-radius: 1px;
  background: linear-gradient(90deg, rgba(184, 151, 90, 0.95), rgba(184, 151, 90, 0.45));
}

.hero__kicker,
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 0.75rem 1.25rem;
  background: var(--c-text);
  color: var(--c-zone-light);
  text-decoration: none;
  font-family: var(--font-body);
}

.skip-link:focus {
  left: max(1rem, env(safe-area-inset-left, 0px));
  top: max(1rem, env(safe-area-inset-top, 0px));
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-main {
  opacity: 0;
  min-width: 0;
  max-width: 100%;
}

.site-main.site-main--ready {
  animation: mainFadeIn 200ms ease-out forwards;
}

@keyframes mainFadeIn {
  to {
    opacity: 1;
  }
}

.page-home .site-main {
  opacity: 1;
}

.page-home .site-main.site-main--ready {
  animation: none;
}

.fade-in-section {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease);
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-home .home-fold .fade-in-section {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (max-width: 767px) {
  .site-main {
    opacity: 1;
  }

  .site-main.site-main--ready {
    animation: none;
  }

  .fade-in-section {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-main {
    opacity: 1;
  }

  .site-main.site-main--ready {
    animation: none;
  }

  .fade-in-section {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-stagger-1,
  .hero-stagger-2,
  .hero-stagger-3,
  .hero-stagger-4,
  .hero-stagger-5 {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .site-nav.is-open .site-nav__list > li {
    animation: none !important;
  }

  .nav-toggle:active {
    transform: none;
  }

  .btn:active,
  .btn--premium:active,
  .btn--premium-ghost:active,
  .btn-call:active {
    transform: none;
  }
}

@media (max-width: 767px) and (prefers-reduced-motion: reduce) {
  .site-nav {
    transition-duration: 0.01ms !important;
  }
}

@keyframes fadeUpHero {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInHero {
  to {
    opacity: 1;
  }
}

.hero-stagger-1 {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUpHero 0.9s var(--ease) forwards;
  animation-delay: 0.2s;
}

.hero-stagger-2 {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUpHero 0.9s var(--ease) forwards;
  animation-delay: 0.4s;
}

.hero-stagger-3 {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUpHero 0.9s var(--ease) forwards;
  animation-delay: 0.55s;
}

.hero-stagger-4 {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUpHero 0.9s var(--ease) forwards;
  animation-delay: 0.6s;
}

.hero-stagger-5 {
  opacity: 0;
  animation: fadeInHero 1s var(--ease) forwards;
  animation-delay: 0.8s;
}

.hero-plaque {
  opacity: 0;
  animation:
    fadeInHero 1s var(--ease) 0.8s forwards,
    plaqueFloat 8s ease-in-out 2.4s infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 110;
  padding-top: env(safe-area-inset-top, 0px);
  background: rgba(220, 210, 190, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--c-divider);
  box-shadow: 0 4px 22px rgba(139, 115, 75, 0.08);
  transition: box-shadow 200ms var(--ease);
  overflow: visible;
  will-change: transform; /* GPU layer — évite repaint sur scroll */
}

/* Évite sticky + menu fixed (enfant) : panneau vide / clipsé (Safari, iOS). Bandeau fixe + décalage du <main>. */
@media (max-width: 767px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    /* Blur réduit sur mobile : backdrop-filter coûteux à 60fps */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(220, 210, 190, 0.96); /* opacité plus haute pour compenser */
  }

  main#contenu-principal {
    margin-top: calc(var(--header-h-mobile) + env(safe-area-inset-top, 0px));
  }
}

.site-header--premium {
  background: linear-gradient(180deg, rgba(252, 249, 242, 0.98) 0%, rgba(232, 222, 204, 0.96) 50%, rgba(218, 208, 190, 0.95) 100%);
  border-bottom-color: rgba(138, 112, 72, 0.45);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.45) inset,
    0 4px 28px rgba(139, 115, 75, 0.09);
}

@media (max-width: 767px) {
  .site-header,
  .site-header--premium {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: max(var(--space-gutter), env(safe-area-inset-left, 0px));
  padding-right: max(var(--space-gutter), env(safe-area-inset-right, 0px));
  min-height: var(--header-h-mobile);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.45rem;
}

@media (max-width: 767px) {
  .site-header__inner {
    justify-content: flex-start;
  }

  /* Burger à gauche, logo au centre, CTA à droite */
  .nav-toggle {
    display: flex !important;
    order: 0;
    flex-shrink: 0;
  }

  .brand-lockup {
    order: 1;
    flex: 1;
    min-width: 0;
    margin-right: 0.35rem;
  }

  .site-header__cta {
    order: 2;
  }
}

@media (min-width: 768px) {
  .site-header__inner {
    min-height: var(--header-h-desktop);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.85rem 1.35rem;
  }

  .brand-lockup {
    grid-column: 1;
    margin-right: 0;
  }

  .site-nav {
    display: contents;
  }

  .site-nav__list {
    grid-column: 2;
    justify-self: center;
    justify-content: center;
  }

  .site-header__cta {
    grid-column: 3;
    justify-self: end;
    align-self: center;
  }
}

.brand-lockup {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
  color: inherit;
}

.brand-lockup__icon {
  display: block;
  height: 40px;
  width: 40px;
  flex-shrink: 0;
  object-fit: contain;
}

@media (min-width: 768px) {
  .brand-lockup__icon {
    height: 46px;
    width: 46px;
  }
}

.brand-wordmark {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.04em;
  color: #2c3e41;
  white-space: nowrap;
  line-height: 1;
}

@media (max-width: 767px) {
  .brand-wordmark {
    font-size: 1rem;
    letter-spacing: 0.03em;
    max-width: min(54vw, 12rem);
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 380px) {
  .brand-wordmark {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .brand-lockup__icon {
    height: 34px;
    width: 34px;
  }

  .btn.btn--header.site-header__cta {
    padding: 8px 10px;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
  }

  .site-header__inner {
    gap: 0.3rem;
    padding-left: max(0.55rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.55rem, env(safe-area-inset-right, 0px));
  }
}

.brand-lockup--integrated::before {
  display: none;
}

/* Logo officiel (fichier image fourni — arbre + typographie + baseline) */
.brand-lockup--reference {
  gap: 0;
  align-items: center;
}

.brand-lockup__logo-officiel {
  display: block;
  height: clamp(52px, 15vw, 72px);
  width: auto;
  max-width: min(300px, 82vw);
  object-fit: contain;
  object-position: left center;
}

@media (min-width: 768px) {
  .brand-lockup__logo-officiel {
    height: clamp(60px, 7.5vw, 84px);
    max-width: 340px;
  }
}

@media (max-width: 380px) {
  .brand-lockup__logo-officiel {
    height: 44px;
    max-width: min(268px, 88vw);
  }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--c-divider);
  border-radius: 11px;
  background: rgba(255, 248, 230, 0.55);
  box-shadow: 0 1px 3px rgba(139, 115, 75, 0.07);
  cursor: pointer;
  color: var(--c-text);
  flex-shrink: 0;
  transition: background 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.nav-toggle:hover {
  background: rgba(255, 248, 230, 0.88);
  border-color: rgba(184, 151, 90, 0.35);
}

.nav-toggle:focus-visible {
  outline: 2px solid rgba(61, 107, 79, 0.45);
  outline-offset: 2px;
}

.nav-toggle[aria-expanded="true"] {
  background: rgba(255, 248, 230, 0.95);
  border-color: rgba(61, 107, 79, 0.35);
  box-shadow: 0 0 0 1px rgba(61, 107, 79, 0.12);
}

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  margin-left: auto;
  margin-right: auto;
  background: currentColor;
  border-radius: 1px;
  transition: transform 200ms var(--ease), opacity 200ms var(--ease);
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

@media (max-width: 767px) {
  .site-header .nav-toggle {
    position: relative;
    z-index: 200;
  }

  .site-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: calc(env(safe-area-inset-top, 0px) + var(--header-h-mobile));
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0.85rem max(1.1rem, env(safe-area-inset-right, 0px)) calc(1rem + env(safe-area-inset-bottom, 0px))
      max(1.1rem, env(safe-area-inset-left, 0px));
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    background: linear-gradient(180deg, rgba(238, 228, 210, 0.995) 0%, rgba(220, 210, 190, 0.995) 100%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform: translate3d(0, -100%, 0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    /* Ne pas animer visibility : sur WebKit mobile le menu reste souvent « vide »
       (liens invisibles) tant que la transition de visibility n’est pas terminée. */
    transition: transform 280ms var(--ease), opacity 280ms var(--ease);
    z-index: 12000;
    -webkit-transform: translate3d(0, -100%, 0);
  }

  .site-nav.is-open {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav.is-open .site-nav__list > li {
    opacity: 1;
    transform: none;
    animation: none;
  }

  /* Ne pas mettre pointer-events:none sur le main : sur mobile ça peut bloquer
     le scroll tactile après fermeture du menu (Safari / WebView). Le verrouillage
     du scroll repose sur script.js (position:fixed + restauration du scrollY). */
}

/* Menu mobile : <nav> et voile sœurs en fin de <body> (voir script.js) */
body > #site-nav-backdrop.site-nav-backdrop,
body > #nav-principale.site-nav {
  margin: 0;
}

.site-nav-backdrop {
  display: none;
}

@media (max-width: 767px) {
  .site-nav-backdrop {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    top: calc(env(safe-area-inset-top, 0px) + var(--header-h-mobile));
    bottom: 0;
    z-index: 11950;
    background: rgba(42, 36, 28, 0.38);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 280ms var(--ease), visibility 0s linear 280ms;
  }

  .site-nav-backdrop.site-nav-backdrop--visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 280ms var(--ease), visibility 0s linear 0s;
  }
}

@media (max-width: 767px) and (prefers-reduced-motion: reduce) {
  .site-nav-backdrop {
    transition-duration: 0.01ms !important;
  }
}

.site-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 767px) {
  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    border-bottom: none;
  }

  .site-nav__list li {
    width: 100%;
    border-bottom: 1px solid var(--c-divider);
  }

  .site-nav__list li.site-nav__group {
    border-bottom: none;
    padding: 0.65rem 0 0.25rem;
    margin: 0;
  }

  .site-nav__list li.site-nav__group:first-child {
    padding-top: 0;
  }

  .site-nav__list li.site-nav__group + li {
    border-top: none;
  }

  .site-nav__group-title {
    display: block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-text-pale);
  }
}

@media (min-width: 768px) {
  .site-nav__group,
  .nav-secondary {
    display: none;
  }
}

.site-nav__list a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-text);
  text-decoration: none;
  position: relative;
  padding: 0.35rem 0.4rem;
  transition: color 200ms var(--ease);
}

@media (max-width: 767px) {
  .site-nav__list a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0.5rem 0;
    font-size: 1.05rem;
  }

  .site-nav__list a[aria-current="page"] {
    color: var(--c-green);
    font-weight: 600;
  }
}

@media (min-width: 768px) {
  .site-nav__list--full {
    row-gap: 0.4rem;
    column-gap: 0.3rem;
    max-width: 52rem;
  }

  .site-nav__list a {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--c-text-soft);
    padding: 0.45rem 0.38rem;
  }

  .site-nav__list a:hover,
  .site-nav__list a:focus-visible {
    color: var(--c-green);
  }

  .site-nav__list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.05rem;
    width: 0;
    height: 1px;
    background: #b8975a;
    transition: width 200ms var(--ease);
  }

  .site-nav__list a:hover::after,
  .site-nav__list a:focus-visible::after,
  .site-nav__list a[aria-current="page"]::after {
    width: 100%;
  }
}

.btn,
button[type="submit"],
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.81rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 50px;
  padding: 13px 26px;
  cursor: pointer;
  transition: transform 150ms var(--ease), background 150ms var(--ease), border-color 150ms var(--ease), color 150ms var(--ease), box-shadow 150ms var(--ease);
  border: none;
}

.btn:hover,
button[type="submit"]:hover {
  transform: scale(1.02);
}

.btn--primary,
.btn--premium,
button.btn--primary,
button[type="submit"].btn--primary {
  background: #3d6b4f;
  color: var(--c-warm-white);
  border: none;
}

.btn--primary:hover,
.btn--premium:hover {
  background: var(--c-green-hover);
  color: var(--c-warm-white);
}

.btn--ghost,
.btn--secondary,
.btn--premium-ghost {
  background: transparent;
  border: 1.5px solid rgba(139, 115, 75, 0.35);
  color: var(--c-text);
}

.btn--ghost:hover,
.btn--premium-ghost:hover {
  border-color: var(--c-green);
  color: var(--c-green);
}

.btn--header {
  padding: 10px 22px;
  font-size: 0.78rem;
}

.btn.btn--header.site-header__cta {
  flex-shrink: 0;
  padding: 9px 14px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-warm-white) !important;
  background: linear-gradient(165deg, #4a7d62 0%, var(--c-green) 42%, #2f523e 100%);
  border: 1px solid rgba(255, 248, 225, 0.25);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 2px 12px rgba(61, 107, 79, 0.38),
    0 0 0 1px rgba(184, 151, 90, 0.24);
}

.btn.btn--header.site-header__cta:hover {
  background: linear-gradient(165deg, #6a9e7a 0%, var(--c-green-hover) 50%, #4d8568 100%);
  color: var(--c-warm-white) !important;
}

.btn.btn--header.site-header__cta[aria-current="page"] {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 2px 12px rgba(61, 107, 79, 0.42),
    0 0 0 2px rgba(184, 151, 90, 0.5);
}

.site-header__cta-short {
  display: inline;
}

.site-header__cta-full {
  display: none;
}

@media (min-width: 768px) {
  .site-header__cta-short {
    display: none;
  }

  .site-header__cta-full {
    display: inline;
  }

  .btn.btn--header.site-header__cta {
    padding: 11px 22px;
    font-size: 0.76rem;
    letter-spacing: 0.05em;
    text-transform: none;
  }
}

.btn-call {
  background: #b8975a;
  color: var(--c-warm-white);
  border-radius: 50px;
  border: none;
  font-family: var(--font-body);
  font-size: 0.81rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 13px 26px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 150ms var(--ease), filter 150ms var(--ease);
}

.btn-call:hover {
  transform: scale(1.02);
  color: var(--c-warm-white);
  filter: brightness(1.05);
}

.page-inner,
.home-fold__hero-brief,
.home-fold__manifesto,
.home-fold__micro,
.home-fold__col,
.home-fold__details,
.faq-editorial__item,
.form-feedback,
.contact-block__inner,
.editorial-strip__inner,
.proofs,
.trust__inner,
.page-section--cta .page-cta-wrap,
.accompagnement-quote,
.hommage-content__photo,
.hommage-gallery__cell {
  background: var(--c-zone-light);
  border: 1px solid var(--c-divider);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-zone-lumiere);
}

.home-fold__hero-brief,
.home-fold__manifesto,
.home-fold__micro,
.home-fold__col,
.home-fold__details,
.faq-editorial__item,
.form-feedback,
.contact-block__inner,
.editorial-strip__inner,
.proofs,
.trust__inner,
.page-section--cta .page-cta-wrap,
.accompagnement-quote {
  transition: transform var(--dur-hover) var(--ease), box-shadow var(--dur-hover) var(--ease),
    border-color var(--dur-hover) var(--ease);
}

.page-inner,
article.page-inner {
  max-width: 42rem;
  margin: 0 auto;
  padding-top: clamp(0.95rem, 2.8vw, 1.35rem);
  padding-bottom: clamp(0.95rem, 2.8vw, 1.35rem);
  padding-left: max(clamp(0.95rem, 2.8vw, 1.35rem), env(safe-area-inset-left, 0px));
  padding-right: max(clamp(0.95rem, 2.8vw, 1.35rem), env(safe-area-inset-right, 0px));
  box-shadow: var(--shadow-zone-lumiere);
}

.page-inner--wide {
  max-width: 48rem;
}

.page-main {
  padding-top: clamp(0.9rem, 2.5vw, 1.5rem);
  padding-bottom: clamp(1.5rem, 4vw, 2.35rem);
  padding-left: max(var(--space-gutter), env(safe-area-inset-left, 0px));
  padding-right: max(var(--space-gutter), env(safe-area-inset-right, 0px));
}

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

@media (min-width: 768px) {
  .page-inner:hover,
  .home-fold__micro:hover,
  .home-fold__manifesto:hover,
  .home-fold__hero-brief:hover,
  .home-fold__col:hover,
  .faq-editorial__item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card-hover);
  }
}

.page-title {
  margin: 0 0 0.65rem;
}

.page-title::after {
  content: "";
  display: block;
  width: 3rem;
  height: 2px;
  margin-top: 0.45rem;
  background: linear-gradient(90deg, var(--c-green), var(--c-gold));
  border-radius: 1px;
  opacity: 0.85;
}

.page-intro {
  margin: 0 0 1rem;
}

/* Repère immédiat — compréhension en une lecture (objectif ~2 s) */
.ux-instant-scan {
  margin: 0.15rem 0 0.65rem;
  max-width: 36rem;
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 2.2vw, 1.07rem);
  font-weight: 500;
  line-height: 1.48;
  color: var(--c-text);
}

.page-inner--wide .ux-instant-scan {
  max-width: 42rem;
}

.page-main .page-title + .ux-instant-scan {
  margin-top: 0.2rem;
}

.page-main .ux-instant-scan + .page-intro,
.page-main .ux-instant-scan + .brief-lead {
  margin-top: 0;
}

.page-intro.page-intro--scan {
  font-size: clamp(0.98rem, 2.1vw, 1.05rem);
  line-height: 1.5;
  color: var(--c-text);
  max-width: 38rem;
}

.hero__instant-scan {
  margin: 0 0 0.75rem;
  max-width: 36rem;
  font-family: var(--font-body);
  font-size: clamp(0.96rem, 2.3vw, 1.06rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--c-text);
}

.home-guide__micro {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--c-text);
  letter-spacing: 0.02em;
}

.page-section {
  margin-bottom: calc(var(--space-section-y) * 0.85);
  padding-bottom: calc(var(--space-section-y) * 0.75);
  border-bottom: 1px solid var(--c-divider);
  box-shadow: none;
}

.page-section:last-child,
.page-section.page-section--cta {
  border-bottom: none;
}

.page-section h2::after {
  content: "";
  display: block;
  width: 2.75rem;
  height: 2px;
  margin-top: 0.35rem;
  margin-bottom: 0.4rem;
  background: linear-gradient(90deg, var(--c-green), var(--c-gold));
  border-radius: 1px;
  opacity: 0.88;
}

.page-section__sub {
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--c-text);
  line-height: 1.35;
}

.hero--home {
  padding-top: clamp(1.2rem, 3.5vw, 2.75rem);
  padding-bottom: clamp(1.35rem, 3.8vw, 2.85rem);
  padding-left: max(var(--space-gutter), env(safe-area-inset-left, 0px));
  padding-right: max(var(--space-gutter), env(safe-area-inset-right, 0px));
}

.hero__grid--home {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero__grid--home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    padding: 3rem 2rem;
    align-items: center;
  }
}

.hero__title--home {
  font-size: clamp(2.15rem, 6.5vw, 3.15rem);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 0.55rem;
}

.hero__title--home::after {
  display: none;
}

.hero__accroche {
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 2.1vw, 1.22rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  color: var(--c-text-soft);
  margin: 0 0 0.65rem;
}

.hero__lead--home {
  margin: 0 0 0.85rem;
}

.hero__actions--home {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .hero__actions--home {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 36rem;
  }

  .hero__actions--home .btn {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }
}

@media (max-width: 767px) {
  .hero__actions--home {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .hero__actions--home .btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero__visual--showcase .showcase__plaque-frame {
    max-width: min(300px, 86vw);
  }
}

.hero__footnote {
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-pale);
  margin: 0.75rem 0 0;
  padding-top: 0.5rem;
  border-top: 1px solid var(--c-divider);
  max-width: 28rem;
}

.hero__map {
  font-size: 0.78rem;
  line-height: 1.58;
  color: var(--c-text-soft);
  margin: 0.7rem 0 0;
  max-width: 34rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
}
.hero__map a {
  color: var(--c-green);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(61, 107, 79, 0.28);
}
.hero__map a:hover {
  border-bottom-color: var(--c-green);
}

.showcase__plaque-wrap {
  margin: 0;
  background: transparent;
  border: none;
}

.showcase__plaque-frame {
  padding: 0;
  border-radius: 16px;
  max-width: 420px;
  margin: 0 auto;
  background: transparent;
  border: none;
  box-shadow: var(--shadow-plaque-hero);
}

@media (max-width: 767px) {
  .showcase__plaque-frame {
    border-radius: 14px;
  }
}

.showcase__plaque-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
}

.showcase__glow {
  display: none;
}

.showcase__label {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-pale);
}

.home-fold {
  padding-top: clamp(1rem, 2.8vw, 1.65rem);
  padding-bottom: clamp(1rem, 2.8vw, 1.65rem);
  padding-left: max(var(--space-gutter), env(safe-area-inset-left, 0px));
  padding-right: max(var(--space-gutter), env(safe-area-inset-right, 0px));
  border-top: 1px solid var(--c-divider);
  background: transparent;
  box-shadow: none;
}

.page-home .hero--home {
  padding-bottom: clamp(0.65rem, 1.8vw, 1.1rem);
}

.page-home .home-fold {
  border-top: none;
  padding-top: clamp(0.4rem, 1.2vw, 0.85rem);
}

.page-home .hero__footnote {
  border-top: none;
  padding-top: 0.65rem;
}

.page-home .showcase__label {
  margin-top: 0.4rem;
}

@media (max-width: 767px) {
  .page-home .hero__grid--home {
    gap: 1.1rem;
  }
}

.home-fold__inner {
  max-width: 52rem;
  margin: 0 auto;
}

.home-fold__hero-brief,
.home-fold__manifesto,
.home-fold__micro,
.home-fold__col {
  padding: 0.85rem 1rem;
  margin-bottom: 0.75rem;
}

.home-fold__split {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .home-fold__split {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.35rem;
    align-items: start;
    margin-top: 0.75rem;
  }

  .home-fold__split .home-fold__col {
    margin-bottom: 0;
  }
}

.home-fold__manifesto-em {
  font-style: italic;
  font-weight: 600;
  color: var(--c-green);
}

.home-fold__proofs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  margin: 0 0 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--c-divider);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-pale);
  background: transparent;
  border-left: none;
  border-right: none;
  border-top: none;
  border-radius: 0;
}

.home-fold__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--c-gold);
}

.home-fold__h {
  font-family: var(--font-display);
  text-align: center;
  margin: 0 0 0.65rem;
}

.home-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

@media (min-width: 640px) {
  .home-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.home-steps__item {
  padding-top: 0.65rem;
  border-top: 1px solid var(--c-divider);
  font-size: 0.9375rem;
}

.home-steps__n {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--c-green);
  display: block;
  margin-bottom: 0.35rem;
}

.home-fold__details {
  margin-top: 1rem;
  overflow: hidden;
}

.home-fold__details-summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}

.home-fold__details-summary::-webkit-details-marker {
  display: none;
}

.home-fold__details-body {
  padding: 0 1.1rem 1.1rem;
  border-top: 1px solid var(--c-divider);
}


/* Scroll fluide sur ancres — respecte les préférences utilisateur */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Supprime le délai tactile 300ms sur tous les éléments interactifs */
a, button, [role="button"], label, summary {
  touch-action: manipulation;
}

/* GPU sur les éléments animés par AOS pour éviter les repaints */
[data-aos] {
  will-change: transform, opacity;
}
[data-aos].aos-animate {
  will-change: auto; /* libère après animation */
}
.home-fold__p a {
  color: var(--c-green);
}

.home-fold__foot {
  text-align: center;
  padding-top: 1.25rem;
  border-top: 1px solid var(--c-divider);
  margin-top: 0.5rem;
}

.home-fold__cta {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-text);
  text-decoration: none;
  border-bottom: 2px solid rgba(184, 151, 90, 0.45);
  padding-bottom: 0.15rem;
}

.faq-editorial {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-editorial__item {
  overflow: hidden;
  padding: 0;
  border-radius: var(--radius-card);
}

.faq-editorial__item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  padding-right: 3rem;
  position: relative;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
}

.faq-editorial__item summary::-webkit-details-marker {
  display: none;
}

.faq-editorial__chevron {
  position: absolute;
  right: 18px;
  top: 50%;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  transition: transform 300ms var(--ease);
}

.faq-editorial__item[open] .faq-editorial__chevron {
  transform: rotate(180deg);
}

.faq-editorial__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms var(--ease);
}

.faq-editorial__body {
  padding: 0 20px 18px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--c-text-soft);
}


/* Scroll fluide sur ancres — respecte les préférences utilisateur */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Supprime le délai tactile 300ms sur tous les éléments interactifs */
a, button, [role="button"], label, summary {
  touch-action: manipulation;
}

/* GPU sur les éléments animés par AOS pour éviter les repaints */
[data-aos] {
  will-change: transform, opacity;
}
[data-aos].aos-animate {
  will-change: auto; /* libère après animation */
}
.faq-editorial__body p {
  font-size: 0.88rem;
  margin: 0 0 0.65rem;
}

.form-label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text-soft);
}

.form-input,
.form-textarea,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--c-text);
  background: rgba(255, 248, 230, 0.72);
  border: 1px solid var(--c-divider);
  border-radius: var(--radius-control);
  transition: border-color 150ms var(--ease), box-shadow 150ms var(--ease);
}

@media (max-width: 767px) {
  .form-input,
  .form-textarea,
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  input[type="search"],
  input[type="url"],
  select,
  textarea {
    font-size: 1rem;
  }
}

.form-input:focus,
.form-textarea:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(139, 115, 75, 0.45);
  box-shadow: 0 0 0 3px rgba(139, 115, 75, 0.15), 0 2px 8px rgba(139, 115, 75, 0.1);
}

.form-field {
  margin-bottom: 1rem;
}

.form-actions {
  margin-top: 1rem;
}

.site-footer {
  background: var(--c-zone-shadow);
  border-top: 1px solid var(--c-divider);
  padding-top: clamp(1.35rem, 3.2vw, 1.85rem);
  padding-bottom: clamp(1.5rem, 3.5vw, 2.15rem);
  padding-left: max(var(--space-gutter), env(safe-area-inset-left, 0px));
  padding-right: max(var(--space-gutter), env(safe-area-inset-right, 0px));
  box-shadow: var(--shadow-portee);
}

.site-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.site-footer__logo {
  display: block;
  height: 84px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.site-footer__siret:has(.placeholder-inline) {
  display: none;
}

.site-footer__brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--c-text);
  margin: 0 0 0.35rem;
}

.site-footer__tagline {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-style: italic;
  font-weight: 300;
  color: var(--c-text-soft);
  margin: 0 0 1rem;
  line-height: 1.5;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.site-footer__block p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 2.1;
  color: var(--c-text-soft);
  margin: 0 0 0.5rem;
}

.site-footer__label {
  margin-bottom: 0.2rem;
}

.site-footer__link-tel,
.site-footer__block a {
  color: var(--c-green);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--c-divider);
}

/* Raccourcis pied de page — orientation visiteur */
.site-footer__paths {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.1rem;
  justify-content: center;
  align-items: center;
  padding-top: 0.85rem;
  margin-top: 0.35rem;
}
.site-footer__paths a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--c-green);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.site-footer__paths a:hover {
  border-bottom-color: rgba(61, 107, 79, 0.35);
}

/* Fil d’Ariane — pages intérieures */
.site-breadcrumb {
  margin: 0 0 0.85rem;
  max-width: 42rem;
}
.site-breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.45rem;
  align-items: center;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--c-text-pale);
}
.site-breadcrumb__list a {
  color: var(--c-green);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.site-breadcrumb__list a:hover {
  border-bottom-color: rgba(61, 107, 79, 0.35);
}
.site-breadcrumb__list li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.site-breadcrumb__list li:not(:last-child)::after {
  content: "›";
  font-weight: 400;
  opacity: 0.45;
  font-size: 0.85em;
}
.site-breadcrumb__list [aria-current="page"] {
  color: var(--c-text-soft);
  font-weight: 600;
  max-width: 100%;
}

/* Accueil — par où commencer */
.home-guide {
  padding: 2rem 1.25rem 2.25rem;
  background: linear-gradient(180deg, rgba(247, 244, 240, 0.92) 0%, rgba(255, 252, 248, 0.98) 100%);
  border-bottom: 1px solid var(--c-divider);
}
.home-guide__inner {
  max-width: 900px;
  margin: 0 auto;
}
.home-guide__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.45rem);
  font-weight: 600;
  color: var(--c-text);
  text-align: center;
  margin: 0 0 0.35rem;
}
.home-guide__lead {
  text-align: center;
  font-size: 0.9rem;
  color: var(--c-text-soft);
  margin: 0 0 1.35rem;
  line-height: 1.55;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}
.home-guide__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .home-guide__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 1.15rem;
  }
}
.home-guide__card {
  background: rgba(255, 252, 246, 0.85);
  border: 1px solid var(--c-divider);
  border-radius: 12px;
  padding: 1.15rem 1.2rem 1.25rem;
  box-shadow: 0 2px 12px rgba(139, 115, 75, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 100%;
}
.home-guide__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: var(--c-green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.home-guide__card-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.35;
}
.home-guide__card-title a {
  color: var(--c-text);
  text-decoration: none;
  border-bottom: 1px solid rgba(61, 107, 79, 0.25);
}
.home-guide__card-title a:hover {
  color: var(--c-green);
  border-bottom-color: var(--c-green);
}
.home-guide__card-text {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.58;
  color: var(--c-text-soft);
  flex: 1;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--c-divider);
}

.site-footer__legal a {
  font-family: var(--font-body);
  font-size: 0.73rem;
  color: var(--c-text-pale);
  text-decoration: none;
  border-bottom: 1px solid var(--c-divider);
}

.site-footer__meta {
  font-size: 0.68rem;
  color: var(--c-text-pale);
  margin: 0.75rem 0 0;
}

@media (max-width: 767px) {
  .site-footer__logo {
    height: 64px;
    max-width: 200px;
  }
}

.video-shell {
  margin: 0.5rem 0 0;
}

.video-placeholder__poster {
  display: block;
  width: 100%;
  max-height: min(52vh, 420px);
  object-fit: cover;
  border-radius: calc(var(--radius-card) - 2px);
  margin: 0 0 1rem;
  border: 1px solid var(--c-divider);
}

.video-placeholder {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--c-divider);
  background: var(--c-zone-light);
  box-shadow: var(--shadow-zone-lumiere);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.video-placeholder__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-text);
  text-align: center;
}

.video-placeholder__text {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--c-text-soft);
  text-align: center;
}

.video-placeholder__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  justify-content: center;
}

.video-placeholder__actions a {
  font-size: 0.8rem;
  font-weight: 500;
}

/* Galerie exemples plaques (page Plaques & QR) */
.plaque-gallery {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
  margin: 1rem auto 0;
  max-width: 920px;
}

@media (min-width: 720px) {
  .plaque-gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.plaque-gallery__cell {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--c-divider);
  box-shadow: 0 2px 14px rgba(139, 115, 75, 0.08);
  background: var(--c-zone-light);
  aspect-ratio: 1;
}

.plaque-gallery__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-page-block__intro {
  margin-bottom: 0.75rem;
}

.brief-lead,
.contact-block__inner {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
}

.brief-features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.brief-features__item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.55rem 0;
  border-top: 1px solid var(--c-divider);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--c-text-soft);
  min-width: 0;
}

.brief-features__item:first-child {
  border-top: none;
  padding-top: 0;
}

.brief-features__icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.1rem;
  color: var(--c-green);
}

.brief-features__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

@media (min-width: 640px) {
  .brief-features--2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.15rem;
  }

  .brief-features--2 .brief-features__item {
    border-top: 1px solid var(--c-divider);
    padding-top: 0.55rem;
  }

  .brief-features--2 .brief-features__item:nth-child(-n + 2) {
    border-top: none;
    padding-top: 0;
  }
}

.why-quote {
  font-family: var(--font-display);
  text-align: center;
  padding: 1rem;
  margin: 1rem 0;
  border-radius: var(--radius-card);
  border: 1px solid var(--c-divider);
  background: var(--c-zone-light);
  box-shadow: var(--shadow-zone-lumiere);
}

.demo-fictive-card {
  margin: 0.5rem 0 0;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--c-divider);
  background: var(--c-zone-light);
  box-shadow: var(--shadow-zone-lumiere);
}

.demo-fictive-card__label {
  font-family: var(--font-body);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-pale);
  margin: 0.75rem 0 0.2rem;
}

.demo-fictive-card__label:first-child {
  margin-top: 0;
}

.demo-fictive-card__value {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.62;
  color: var(--c-text-soft);
}

.contact-block__title {
  font-family: var(--font-display);
}

.contact-send-actions .btn {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.proofs {
  padding: 1.25rem 1rem;
  margin: 0;
}

.proofs__text {
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-pale);
}

.legal-page .page-inner {
  max-width: 44rem;
}

@media (max-width: 767px) and (prefers-reduced-motion: no-preference) {
  .site-nav {
    transition:
      transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 280ms var(--ease);
  }

  .site-nav__list a {
    transition:
      color 200ms var(--ease),
      background 200ms var(--ease);
  }

  .site-nav__list a:active {
    background: rgba(61, 107, 79, 0.07);
    border-radius: 10px;
  }

  .nav-toggle {
    transition:
      background 180ms var(--ease),
      border-color 180ms var(--ease),
      box-shadow 180ms var(--ease),
      transform 0.2s var(--ease);
  }

  .nav-toggle:active {
    transform: scale(0.94);
  }

  .btn,
  button[type="submit"],
  input[type="submit"],
  .btn-call {
    transition:
      transform 0.22s var(--ease),
      background 180ms var(--ease),
      border-color 180ms var(--ease),
      color 180ms var(--ease),
      box-shadow 180ms var(--ease);
  }

  .btn:active,
  button[type="submit"]:active,
  input[type="submit"]:active,
  .btn--premium:active,
  .btn--premium-ghost:active,
  .btn-call:active {
    transform: scale(0.97);
  }

  .fade-in-section {
    transition:
      opacity 0.58s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
  }
}

@media print {
  body::before,
  body::after,
  .site-header,
  .nav-toggle {
    display: none !important;
  }

  main#contenu-principal {
    margin-top: 0 !important;
  }

  body {
    background: var(--c-zone-light);
  }

/* Scroll fluide sur ancres — respecte les préférences utilisateur */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Supprime le délai tactile 300ms sur tous les éléments interactifs */
a, button, [role="button"], label, summary {
  touch-action: manipulation;
}

/* GPU sur les éléments animés par AOS pour éviter les repaints */
[data-aos] {
  will-change: transform, opacity;
}
[data-aos].aos-animate {
  will-change: auto; /* libère après animation */
}
}

body.hommage-body {
  background-color: transparent;
}


/* Scroll fluide sur ancres — respecte les préférences utilisateur */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Supprime le délai tactile 300ms sur tous les éléments interactifs */
a, button, [role="button"], label, summary {
  touch-action: manipulation;
}

/* GPU sur les éléments animés par AOS pour éviter les repaints */
[data-aos] {
  will-change: transform, opacity;
}
[data-aos].aos-animate {
  will-change: auto; /* libère après animation */
}
.form-section {
  margin-bottom: 1.35rem;
  padding-bottom: 1.05rem;
  border-bottom: 1px solid var(--c-divider);
}

.form-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  margin: 0 0 1rem;
}

.form-section__intro {
  margin: 0 0 1rem;
}

.form-fieldset {
  border: 1px solid var(--c-divider);
  border-radius: var(--radius-card);
  padding: 1rem 1.1rem;
  margin: 0 0 1rem;
  background: var(--c-zone-light);
  box-shadow: var(--shadow-zone-lumiere);
}

.form-fieldset__legend {
  font-family: var(--font-display);
  font-weight: 600;
  padding: 0 0.35rem;
  color: var(--c-text);
}

.form-actions--dual {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero:not(.hero--home) {
  padding-top: clamp(0.95rem, 2.8vw, 1.55rem);
  padding-bottom: clamp(0.95rem, 2.8vw, 1.55rem);
  padding-left: max(var(--space-gutter), env(safe-area-inset-left, 0px));
  padding-right: max(var(--space-gutter), env(safe-area-inset-right, 0px));
  max-width: 72rem;
  margin: 0 auto;
}

.hero:not(.hero--home) .hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.75rem;
}

.hero:not(.hero--home) .hero__title::after {
  display: none;
}

.hero__grid:not(.hero__grid--home) {
  max-width: 48rem;
}

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

.process-list li {
  position: relative;
  margin: 0 0 0.75rem;
  padding-left: 2.75rem;
  counter-increment: step;
  font-size: 0.9375rem;
}

.process-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  background: var(--c-zone-light);
  border: 1px solid var(--c-divider);
  box-shadow: var(--shadow-zone-lumiere);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-green);
}

.placeholder,
.placeholder-inline {
  font-style: italic;
  color: var(--c-text-pale);
}

.faq-editorial__item summary:focus-visible {
  outline: 2px solid rgba(139, 115, 75, 0.45);
  outline-offset: 2px;
}

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

@media (prefers-reduced-motion: reduce) {
  .hero-plaque {
    animation: none !important;
    opacity: 1 !important;
  }
}

.positioning,
.editorial-strip {
  padding: clamp(1.2rem, 3.2vw, 2.1rem) 1.1rem;
}

.positioning__quote,
.editorial-strip__text {
  font-family: var(--font-display);
  color: var(--c-text-soft);
}

.contact-block {
  padding: clamp(1.25rem, 3.5vw, 2.5rem) 1.1rem;
}

.accompagnement-ref {
  font-size: 0.85rem;
  color: var(--c-text-pale);
}

.page-inner table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  background: var(--c-zone-light);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--c-divider);
  box-shadow: var(--shadow-zone-lumiere);
}

.page-inner th,
.page-inner td {
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--c-divider);
}

@media (max-width: 767px) {
  .page-inner th,
  .page-inner td {
    word-break: break-word;
    hyphens: auto;
  }
}

.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-1-25 {
  margin-bottom: 1.25rem;
}

.mt-1-25 {
  margin-top: 1.25rem;
}

.mt-0-5 {
  margin-top: 0.5rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mb-0-65 {
  margin-bottom: 0.65rem;
}

.form-section__intro--center {
  text-align: center;
}

.page-site main a:not(.btn):not(.btn-call):focus-visible,
.page-site .site-footer a:focus-visible,
.page-site .site-nav a:focus-visible,
.page-site .skip-link:focus-visible,
.page-home main a:not(.btn):not(.btn--premium):not(.btn--premium-ghost):focus-visible,
.page-home .site-footer a:focus-visible,
.page-home .site-nav a:focus-visible,
.page-home .skip-link:focus-visible {
  outline: 2px solid var(--c-green);
  outline-offset: 3px;
  border-radius: 2px;
}

.page-site .btn:focus-visible,
.page-site .btn-call:focus-visible,
.page-site .nav-toggle:focus-visible,
.page-site .form-input:focus-visible,
.page-site .form-textarea:focus-visible,
.page-site summary:focus-visible,
.page-home .btn:focus-visible,
.page-home .nav-toggle:focus-visible,
.page-home .form-input:focus-visible,
.page-home .form-textarea:focus-visible,
.page-home summary:focus-visible {
  outline: 2px solid var(--c-green);
  outline-offset: 3px;
}

.page-site .form-input:focus-visible,
.page-site .form-textarea:focus-visible,
.page-home .form-input:focus-visible,
.page-home .form-textarea:focus-visible {
  box-shadow: 0 0 0 1px rgba(61, 107, 79, 0.35);
}

/* Barre du bas (ancienne version JS) : masquer + annuler le padding réservé. */
body.has-bottom-nav {
  padding-bottom: 0 !important;
}

#bottom-nav,
nav#bottom-nav,
.bottom-nav {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  height: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  border: none !important;
}
/* ── Bouton "Voir un hommage" hero ──────────────────────────────── */
.btn--ghost--exemple {
  font-size: 0.78rem;
  padding: 10px 20px;
  opacity: 0.85;
}
@media (min-width: 768px) {
  .hero__actions--home {
    flex-wrap: wrap;
    max-width: 40rem;
    justify-content: flex-start;
    gap: 0.65rem;
  }
  .hero__actions--home .btn:nth-child(1),
  .hero__actions--home .btn:nth-child(2) {
    flex: 1 1 0;
    min-width: 0;
  }
  .hero__actions--home .btn:nth-child(3) {
    flex: 0 0 auto;
    align-self: center;
  }
}

/* ── CSS home-exemple ────────────────────────────────────────────── */
/* home-guide au-dessus : pas de double bordure haute */
.home-exemple { padding: 2rem 1.5rem; background: #f0ede6; border-bottom: 1px solid var(--c-divider); }
.home-exemple__inner { max-width: 520px; margin: 0 auto; text-align: center; }
.home-exemple__kicker { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: #6e8870; font-weight: 600; margin: 0 0 .5rem; }
.home-exemple__texte { font-family: var(--font-display,Georgia,serif); font-style: italic; font-size: 1rem; color: #4a5568; line-height: 1.55; margin: 0 0 .9rem; }
.home-exemple__lien { font-size: .85rem; color: #3d6b4f; font-weight: 500; text-decoration: none; border-bottom: 1px solid rgba(61,107,79,.3); padding-bottom: 1px; transition: border-color .2s; }
.home-exemple__lien:hover { border-color: #3d6b4f; }

/* ── Page accès démo hommage (acces-hommage-demo.html) ─────────── */
.acces-demo__compare-lead {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--c-text-soft);
  max-width: 44rem;
}
.acces-demo__card-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 5px;
  margin: 0 0 0.55rem;
}
.acces-demo__card-badge--reserved {
  background: rgba(184, 151, 90, 0.22);
  color: #5c4a22;
  border: 1px solid rgba(184, 151, 90, 0.35);
}
.acces-demo__card-badge--libre {
  background: rgba(61, 107, 79, 0.12);
  color: #2d5440;
  border: 1px solid rgba(61, 107, 79, 0.28);
}
.acces-demo__card-code {
  margin: 0.65rem 0 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--c-text-soft);
}
.acces-demo__grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}
@media (min-width: 640px) {
  .acces-demo__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }
}
.acces-demo__card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.25rem 1.35rem;
  background: rgba(255, 252, 246, 0.65);
  border: 1px solid var(--c-divider);
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(139, 115, 75, 0.06);
}
.acces-demo__card-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--c-text);
}
.acces-demo__card-desc,
.acces-demo__card-meta {
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  line-height: 1.62;
  color: var(--c-text-soft);
}
.acces-demo__card-meta {
  margin-bottom: 0;
  font-size: 0.8rem;
  color: var(--c-text-pale);
}
.acces-demo__card-btn {
  margin-top: auto;
  align-self: flex-start;
  padding-top: 0.85rem;
}
.acces-demo--suite p {
  max-width: 42rem;
}
@media (max-width: 767px) {
  .acces-demo__card-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* ── Pages transmission lien hommage ───────────────────────────── */
.transmission-modele {
  margin: 1.25rem 0;
  padding: 1.1rem 1.25rem;
  background: rgba(255, 252, 246, 0.95);
  border: 1px solid var(--c-divider);
  border-radius: 10px;
  font-size: 0.84rem;
  line-height: 1.7;
  overflow-x: auto;
}
.transmission-modele__tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-text-pale);
  margin: 0 0 0.55rem;
  font-weight: 600;
}
.transmission-modele__body {
  margin: 0;
  white-space: pre-wrap;
  font-family: ui-monospace, "Cascadia Mono", "Segoe UI Mono", monospace;
  color: var(--c-text-soft);
}
.transmission-tip {
  border-left: 3px solid rgba(61, 107, 79, 0.45);
  padding: 0.35rem 0 0.35rem 1rem;
  margin: 1rem 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--c-text-soft);
}
.transmission-checklist {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
}
.transmission-checklist li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.5rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--c-text-soft);
}
.transmission-checklist li::before {
  content: "☐";
  position: absolute;
  left: 0;
  opacity: 0.55;
}