/* =============================================================================
   AMENAGEMENT CAILLIARD CONCEPT — Habillage complet (modele 5)
   -----------------------------------------------------------------------------
   Univers : sable chaleureux, bleu profond du logo, touches de vert olive.
   Ecrit en CSS natif (Tailwind n'est pas recompilable ici : pas de node_modules).
   Charge globalement via functions.php (handle acc-design), apres style.css et
   style-tailwind.css : la cascade nous laisse donc surcharger le theme.

   SOMMAIRE
   01. Fontes
   02. Tokens
   03. Reset / neutralisation du theme
   04. Pont Tailwind (harmonise les blocs non refondus : faq, reviews)
   05. Motifs & decors (bois, arche, grain, filets du logo)
   06. Primitives (eyebrow, titres, filets, prose, bouton, liens, icones)
   07. Navigation
   08. Hero & Page title
   09. Texte + photo
   10. Typo
   11. Prestations
   12. Galerie
   13. Carte
   14. CTA
   15. Formulaire
   16. Icones / Partenaires / Equipe / Blog / Avant-apres
   17. Reseaux sociaux
   18. Footer
   19. Modale & divers
   20. Animations & responsive
   ============================================================================= */

/* =============================================================================
   01. FONTES
   Cormorant (titres) + Montserrat (textes) : deux variables deja presentes dans
   /fonts. Tout est servi en local, pas de CDN Google (RGPD).
   ============================================================================= */

@font-face {
  font-family: "AccDisplay";
  src: url("../../fonts/Cormorant-VariableFont_wght.ttf") format("truetype");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "AccSans";
  src: url("../../fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

/* =============================================================================
   02. TOKENS
   ============================================================================= */

:root {
  /* --- Sable : le fond du site --- */
  --acc-sand: #f3ede3;
  --acc-sand-soft: #fbf8f3;
  --acc-sand-deep: #e8dfce;
  --acc-line: #ddd3bf;

  /* --- Bleus : toute la famille est calee sur le bleu du logo (#569AA7). --------
     #569AA7 est le bleu de signature (accents, survols, details) ; les grandes
     surfaces sombres utilisent un bleu profond derive du meme ton (meme teinte,
     desaturee et assombrie) : chaud, lisible, premium. */
  --acc-blue: #569aa7; /* bleu exact du logo — signature */
  --acc-blue-soft: #a2cbd2; /* tint clair, pour petits textes sur fond sombre */
  --acc-navy: #173f48; /* bleu profond assorti — grandes surfaces sombres */
  --acc-navy-deep: #0f2c33; /* le plus sombre — voiles, degrades */
  --acc-navy-soft: #205562; /* intermediaire */

  /* --- Verts : l'arbre du logo, le rappel paysager --- */
  --acc-olive: #6e7a3c;
  --acc-olive-soft: #8b9750;

  /* --- Textes --- */
  --acc-ink: #14212a;
  --acc-muted: #5c6b75;
  --acc-on-dark: #efe9de;
  --acc-on-dark-muted: rgba(239, 233, 222, 0.72);

  /* --- Fontes --- */
  --acc-font-display: "AccDisplay", "Cormorant Garamond", Georgia, serif;
  --acc-font-sans:
    "AccSans", "Montserrat", system-ui, -apple-system, sans-serif;

  /* --- Echelle typographique fluide --- */
  --acc-t-hero: clamp(2.6rem, 1.5rem + 4.4vw, 5.25rem);
  --acc-t-h2: clamp(2rem, 1.35rem + 2.4vw, 3.35rem);
  --acc-t-h3: clamp(1.35rem, 1.1rem + 0.9vw, 1.8rem);
  --acc-t-body: clamp(0.975rem, 0.94rem + 0.12vw, 1.05rem);

  /* --- Rythme --- */
  --acc-section: clamp(4.5rem, 3rem + 6vw, 8.5rem);
  --acc-gutter: clamp(1.25rem, 0.5rem + 3vw, 4rem);
  --acc-max: 1340px;
  --acc-max-narrow: 760px;

  /* --- Formes --- */
  --acc-radius: 3px;
  --acc-radius-lg: 10px;
  --acc-arch: 999px 999px var(--acc-radius) var(--acc-radius);

  /* --- Ombres : douces et teintees bleu, jamais du noir pur --- */
  --acc-shadow-sm:
    0 1px 2px rgba(23, 63, 72, 0.05), 0 6px 18px -8px rgba(23, 63, 72, 0.14);
  --acc-shadow:
    0 2px 4px rgba(23, 63, 72, 0.05), 0 18px 46px -18px rgba(23, 63, 72, 0.28);
  --acc-shadow-lg:
    0 3px 6px rgba(23, 63, 72, 0.05), 0 40px 80px -28px rgba(23, 63, 72, 0.36);

  /* --- Transitions --- */
  --acc-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --acc-ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* --- Tasseaux : le bois, et les barres verticales du logo --- */
  --acc-slats: repeating-linear-gradient(
    90deg,
    currentColor 0 2px,
    transparent 2px 11px
  );
}

/* Realignement des variables historiques du theme (utilisees dans quelques
   styles inline PHP : couleur navbar/footer, boutons...) sur la nouvelle
   palette, pour que tout residu reste coherent avec l'identite. */
:root {
  --color-primary: var(--acc-navy);
  --color-secondary: var(--acc-olive);
}

/* =============================================================================
   03. RESET / NEUTRALISATION DU THEME
   style.css est un fourre-tout : on desamorce ici ce qui gene.
   ============================================================================= */

html {
  scroll-behavior: smooth;
}

body {
  background: var(--acc-sand);
  color: var(--acc-ink);
  font-family: var(--acc-font-sans);
  font-size: var(--acc-t-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body,
button,
input,
select,
optgroup,
textarea {
  color: var(--acc-ink);
  font-family: var(--acc-font-sans);
}

/* Le theme force un margin-bottom !important sur tous les <p> */
body p {
  margin-bottom: 0 !important;
}

.acc-prose p,
.acc-prose ul,
.acc-prose ol {
  margin-bottom: 1.15em !important;
}

.acc-prose > *:last-child {
  margin-bottom: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--acc-font-display);
  font-weight: 400;
  color: var(--acc-navy);
  letter-spacing: -0.005em;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

:focus-visible {
  outline: 2px solid var(--acc-olive);
  outline-offset: 3px;
}

/* --- Contenus WYSIWYG --- */
.acc-prose ol {
  margin-left: 0;
  padding-left: 1.35em;
}

.acc-prose ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.acc-prose ul li {
  position: relative;
  padding-left: 1.7em;
  margin-bottom: 0.5em;
}

/* Puce en feuille : le rappel vegetal jusque dans le detail */
.acc-prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.62em;
  height: 0.62em;
  background-color: var(--acc-olive);
  border-radius: 999px 2px 999px 2px;
  transform: rotate(-8deg);
}

.acc-prose ol li {
  margin-bottom: 0.5em;
  padding-left: 0.35em;
}

.acc-prose ol li::marker {
  color: var(--acc-olive);
  font-family: var(--acc-font-display);
  font-size: 1.2em;
}

.acc-prose a:not(.acc-btn) {
  color: var(--acc-navy);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--acc-olive);
  transition: color 0.3s var(--acc-ease);
}

.acc-prose a:not(.acc-btn):hover {
  color: var(--acc-olive);
}

.acc-prose strong,
.acc-prose b {
  font-weight: 600;
  color: var(--acc-navy);
}

/* L'admin peut injecter une image de puce : on neutralise, la feuille suffit. */
.iconListEnabled ul li::before,
.iconListEnabled ol li::before {
  background-image: none !important;
}

/* =============================================================================
   04. PONT TAILWIND
   faq et reviews ne sont pas refondus (gestion cote client) : on remappe les
   utilitaires compiles pour qu'ils heritent malgre tout de la nouvelle identite.
   ============================================================================= */

.font-display {
  font-family: var(--acc-font-display) !important;
}

.text-primary,
.text-primary\/95 {
  color: var(--acc-navy) !important;
}

.text-secondary,
.text-secondary\/95 {
  color: var(--acc-olive) !important;
}

.bg-primary,
.bg-primary\/95 {
  background-color: var(--acc-navy) !important;
}

.bg-primary\/70 {
  background-color: rgba(23, 63, 72, 0.7) !important;
}

.bg-primary\/10 {
  background-color: rgba(23, 63, 72, 0.08) !important;
}

.bg-primary\/5 {
  background-color: rgba(23, 63, 72, 0.05) !important;
}

.bg-secondary,
.bg-secondary\/95 {
  background-color: var(--acc-olive) !important;
}

.hover\:bg-secondary:hover {
  background-color: var(--acc-olive) !important;
}

.hover\:text-secondary:hover {
  color: var(--acc-olive) !important;
}

.text-obsidian-700 {
  color: var(--acc-ink) !important;
}

/* =============================================================================
   05. MOTIFS & DECORS
   ============================================================================= */

/* --- Grain papier : la touche chaleureuse qui evite le rendu trop lisse --- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 400;
  pointer-events: none;
  opacity: 0.038;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --- Sections --- */
.acc-section {
  position: relative;
  padding: var(--acc-section) var(--acc-gutter);
  background: var(--acc-sand);
}

.acc-section--soft {
  background: var(--acc-sand-soft);
}

.acc-section--navy {
  background: var(--acc-navy);
  color: var(--acc-on-dark);
}

.acc-section--navy h1,
.acc-section--navy h2,
.acc-section--navy h3 {
  color: var(--acc-sand-soft);
}

.acc-section--tight {
  padding-top: calc(var(--acc-section) * 0.6);
  padding-bottom: calc(var(--acc-section) * 0.6);
}

.acc-shell {
  width: 100%;
  max-width: var(--acc-max);
  margin: 0 auto;
}

.acc-shell--narrow {
  max-width: var(--acc-max-narrow);
}

/* --- Tasseaux : bardage bois et barres verticales du logo --- */
.acc-slats {
  color: var(--acc-olive);
  background-image: var(--acc-slats);
  opacity: 0.5;
  pointer-events: none;
}

/* --- Arche : la forme paysagere (portail, tonnelle, pool house) --- */
.acc-arch {
  border-radius: var(--acc-arch);
  overflow: hidden;
}

/* --- Feuillage decoratif, en filigrane --- */
.acc-leaf {
  position: absolute;
  height: auto;
  pointer-events: none;
  color: var(--acc-olive);
  fill: none;
  stroke: currentColor;
  stroke-width: 0.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.09;
}

/* =============================================================================
   06. PRIMITIVES
   ============================================================================= */

/* --- Eyebrow : uppercase letterspace, echo direct du lettrage du logo --- */
.acc-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.25rem;
  font-family: var(--acc-font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--acc-olive);
  line-height: 1.4;
}

/* Le filet qui precede : repris des traits horizontaux du logo */
.acc-eyebrow::before {
  content: "";
  flex: 0 0 auto;
  width: 2.25rem;
  height: 1px;
  background: currentColor;
}

.acc-eyebrow--center {
  justify-content: center;
}

.acc-eyebrow--center::after {
  content: "";
  flex: 0 0 auto;
  width: 2.25rem;
  height: 1px;
  background: currentColor;
}

.acc-section--navy .acc-eyebrow,
.acc-hero .acc-eyebrow {
  color: var(--acc-blue-soft);
}

/* --- Titres --- */
.acc-title {
  margin: 0;
  font-family: var(--acc-font-display);
  font-weight: 400;
  color: var(--acc-navy);
  line-height: 1.08;
  letter-spacing: -0.012em;
  text-wrap: balance;
}

.acc-title--hero {
  font-size: var(--acc-t-hero);
  color: var(--acc-sand-soft);
}

.acc-title--section {
  font-size: var(--acc-t-h2);
}

.acc-title--sub {
  font-size: var(--acc-t-h3);
  line-height: 1.2;
}

.acc-section--navy .acc-title {
  color: var(--acc-sand-soft);
}

/* --- Filets : les deux traits du logo (bleu long + olive court) --- */
.acc-rule {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.acc-rule::before {
  content: "";
  width: 4.5rem;
  height: 1px;
  background: var(--acc-navy);
}

.acc-rule::after {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: var(--acc-olive);
}

.acc-rule--center {
  justify-content: center;
}

.acc-section--navy .acc-rule::before,
.acc-hero .acc-rule::before {
  background: var(--acc-sand-deep);
}

.acc-section--navy .acc-rule::after,
.acc-hero .acc-rule::after {
  background: var(--acc-olive-soft);
}

/* --- Corps de texte --- */
.acc-prose {
  color: var(--acc-muted);
  font-size: var(--acc-t-body);
  line-height: 1.78;
}

.acc-section--navy .acc-prose,
.acc-hero .acc-prose {
  color: var(--acc-on-dark-muted);
}

.acc-section--navy .acc-prose strong,
.acc-section--navy .acc-prose a:not(.acc-btn) {
  color: var(--acc-sand-soft);
}

.acc-lead {
  font-size: clamp(1.05rem, 0.98rem + 0.35vw, 1.2rem);
  line-height: 1.7;
  color: var(--acc-muted);
}

/* --- En-tete de bloc --- */
.acc-head {
  max-width: 46rem;
  margin: 0 auto calc(var(--acc-section) * 0.45);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.acc-head--left {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
  align-items: flex-start;
}

.acc-head .acc-prose {
  margin-top: 1.5rem;
}

/* --- BOUTON : un seul et unique style pour tout le site. ---------------------
   Plein, bleu profond, angles quasi droits. Sur fond sombre, --light est le
   meme bouton en sable inverse : meme forme, meme comportement.
   Toute action secondaire est un lien texte (.acc-link), jamais un bouton
   contour. C'est ce qui evite d'empiler les styles.                           */
.acc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1.05rem 2rem;
  border: 0;
  border-radius: var(--acc-radius);
  background: var(--acc-navy);
  color: var(--acc-sand-soft);
  font-family: var(--acc-font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    color 0.4s var(--acc-ease),
    transform 0.4s var(--acc-ease),
    box-shadow 0.4s var(--acc-ease);
}

/* Le remplissage olive qui monte au survol */
.acc-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--acc-olive);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.45s var(--acc-ease-out);
}

.acc-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--acc-shadow-sm);
}

.acc-btn:hover::before {
  transform: scaleY(1);
}

.acc-btn .acc-ico {
  width: 1.05em;
  height: 1.05em;
  transition: transform 0.4s var(--acc-ease);
}

.acc-btn:hover .acc-ico {
  transform: translateX(3px);
}

.acc-btn--light {
  background: var(--acc-sand-soft);
  color: var(--acc-navy);
}

.acc-btn--light:hover {
  color: #fff;
}

.acc-btn--block {
  width: 100%;
}

/* --- Lien texte : l'action secondaire. Ce n'est pas un bouton. --- */
.acc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--acc-font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--acc-navy);
  transition: color 0.3s var(--acc-ease);
}

.acc-link::after {
  content: "";
  flex: 0 0 auto;
  width: 1.6rem;
  height: 1px;
  background: currentColor;
  transition: width 0.35s var(--acc-ease);
}

.acc-link:hover {
  color: var(--acc-olive);
}

.acc-link:hover::after {
  width: 2.4rem;
}

.acc-section--navy .acc-link,
.acc-hero .acc-link {
  color: var(--acc-sand-soft);
}

.acc-section--navy .acc-link:hover,
.acc-hero .acc-link:hover {
  color: var(--acc-blue-soft);
}

/* --- Icones : un seul systeme, trait fin, herite de currentColor --- */
.acc-ico {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
}

.acc-ico--lg {
  width: 1.75rem;
  height: 1.75rem;
  stroke-width: 1.3;
}

/* Le theme force width:60px + fill sur .svg--icon : on realigne. */
.svg--icon {
  width: 1.75rem;
  height: 1.75rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =============================================================================
   07. NAVIGATION
   Burger a tous les ecrans : le menu porte trop de liens pour une barre
   horizontale, et le plein ecran sert le cote epure.
   ============================================================================= */

.acc-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
}

.acc-nav__bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 var(--acc-gutter);
  height: 92px;
  transition:
    height 0.45s var(--acc-ease),
    color 0.45s var(--acc-ease);
}

/* Fond translucide sable, une fois la page defilee */
.acc-nav__bar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(243, 237, 227, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--acc-line);
  opacity: 0;
  transition: opacity 0.45s var(--acc-ease);
}

/* En superposition du hero : contenu clair sur l'image */
.acc-nav--overlay .acc-nav__bar {
  color: var(--acc-sand-soft);
}

/* Sur une page sans hero, la barre est pleine des le chargement */
.acc-nav--solid .acc-nav__bar {
  color: var(--acc-navy);
}

.acc-nav--solid .acc-nav__bar::before {
  opacity: 1;
}

.acc-nav.is-scrolled .acc-nav__bar {
  height: 74px;
  color: var(--acc-navy);
}

.acc-nav.is-scrolled .acc-nav__bar::before {
  opacity: 1;
}

/* --- Logo --- */
.acc-nav__logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  z-index: 2;
}

.acc-nav__logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition:
    height 0.45s var(--acc-ease),
    filter 0.45s var(--acc-ease);
}

.acc-nav.is-scrolled .acc-nav__logo img {
  height: 48px;
}

/* Le logo est bleu fonce : sur l'image du hero on le passe en clair. */
.acc-nav--overlay:not(.is-scrolled) .acc-nav__logo img {
  filter: brightness(0) invert(1);
}

.acc-nav__logo-text {
  margin: 0;
  font-family: var(--acc-font-display);
  font-size: 1.5rem;
  color: currentColor;
}

/* --- Actions --- */
.acc-nav__actions {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  z-index: 2;
}

.acc-nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: currentColor;
  transition: opacity 0.3s var(--acc-ease);
}

.acc-nav__phone:hover {
  opacity: 0.62;
}

.acc-nav__phone .acc-ico {
  width: 1.05rem;
  height: 1.05rem;
}

/* --- Burger --- */
.acc-burger {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: currentColor;
}

.acc-burger__lines {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 26px;
}

.acc-burger__lines span {
  display: block;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: width 0.4s var(--acc-ease);
}

.acc-burger__lines span:nth-child(1) {
  width: 26px;
}

.acc-burger__lines span:nth-child(2) {
  width: 18px;
  margin-left: auto;
}

.acc-burger:hover .acc-burger__lines span:nth-child(2) {
  width: 26px;
}

.acc-burger__label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* --- Panneau plein ecran --- */
.acc-nav-panel {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: flex;
  background: var(--acc-sand);
  opacity: 1;
  visibility: visible;
  overflow-y: auto;
  transition:
    opacity 0.5s var(--acc-ease),
    visibility 0.5s var(--acc-ease);
}

/* offArea = etat ferme (classe pilotee par le JS existant du theme) */
.acc-nav-panel.offArea {
  opacity: 0;
  visibility: hidden;
}

/* Neutralise le glissement lateral herite de style.css */
.acc-nav-panel.navbar-menu,
.acc-nav-panel.navbar-menu.offArea {
  left: 0;
  padding-top: 0;
}

/* Tasseaux en fond de panneau */
.acc-nav-panel::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: min(38vw, 420px);
  color: var(--acc-olive);
  background-image: var(--acc-slats);
  opacity: 0.07;
  pointer-events: none;
}

.acc-nav-panel__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  min-height: 100%;
  max-width: var(--acc-max);
  margin: 0 auto;
  padding: 7rem var(--acc-gutter) 3rem;
}

.acc-nav-panel__close {
  position: fixed;
  top: 22px;
  right: var(--acc-gutter);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0;
  border: 0;
  background: transparent;
  color: var(--acc-navy);
  cursor: pointer;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.3s var(--acc-ease);
}

.acc-nav-panel__close:hover {
  color: var(--acc-olive);
}

.acc-nav-panel__close .acc-ico {
  transition: transform 0.45s var(--acc-ease);
}

.acc-nav-panel__close:hover .acc-ico {
  transform: rotate(90deg);
}

.acc-nav-panel__logo img {
  height: 74px;
  width: auto;
  object-fit: contain;
}

/* --- Liens du menu --- */
.acc-nav-panel .menu,
.acc-nav-panel ul.mobile {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  width: 100%;
}

.acc-nav-panel ul.mobile > li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.55s var(--acc-ease-out),
    transform 0.55s var(--acc-ease-out);
}

.acc-nav-panel:not(.offArea) ul.mobile > li {
  opacity: 1;
  transform: none;
}

/* Cascade d'apparition */
.acc-nav-panel ul.mobile > li:nth-child(1) {
  transition-delay: 0.08s;
}
.acc-nav-panel ul.mobile > li:nth-child(2) {
  transition-delay: 0.13s;
}
.acc-nav-panel ul.mobile > li:nth-child(3) {
  transition-delay: 0.18s;
}
.acc-nav-panel ul.mobile > li:nth-child(4) {
  transition-delay: 0.23s;
}
.acc-nav-panel ul.mobile > li:nth-child(5) {
  transition-delay: 0.28s;
}
.acc-nav-panel ul.mobile > li:nth-child(6) {
  transition-delay: 0.33s;
}
.acc-nav-panel ul.mobile > li:nth-child(7) {
  transition-delay: 0.38s;
}
.acc-nav-panel ul.mobile > li:nth-child(8) {
  transition-delay: 0.43s;
}
.acc-nav-panel ul.mobile > li:nth-child(9) {
  transition-delay: 0.48s;
}
.acc-nav-panel ul.mobile > li:nth-child(10) {
  transition-delay: 0.53s;
}

/* Le walker du theme colle ses propres utilitaires sur les <a> : on recouvre. */
.acc-nav-panel ul.mobile > li > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 !important;
  padding: 0.32em 0;
  font-family: var(--acc-font-display) !important;
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.9rem) !important;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--acc-navy) !important;
  text-align: center;
  transition: color 0.35s var(--acc-ease);
}

/* Le soulignement olive qui se deploie */
.acc-nav-panel ul.mobile > li > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.18em;
  width: 0;
  height: 1px;
  background: var(--acc-olive);
  transform: translateX(-50%);
  transition: width 0.4s var(--acc-ease);
}

.acc-nav-panel ul.mobile > li > a:hover,
.acc-nav-panel ul.mobile > li.current-menu-item > a,
.acc-nav-panel ul.mobile > li.current-menu-ancestor > a {
  color: var(--acc-olive) !important;
  background: transparent !important;
  padding: 0.32em 0 !important;
}

.acc-nav-panel ul.mobile > li > a:hover::after,
.acc-nav-panel ul.mobile > li.current-menu-item > a::after {
  width: 100%;
}

/* Sous-menus : accordeon pilote par customizer.js (.activeMenu) */
.acc-nav-panel ul.mobile li .sub-menu {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  list-style: none !important;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  transition:
    max-height 0.45s var(--acc-ease),
    opacity 0.35s var(--acc-ease),
    padding 0.45s var(--acc-ease);
}

.acc-nav-panel ul.mobile li.activeMenu .sub-menu {
  max-height: 60vh;
  opacity: 1;
  padding: 0.5rem 0 1rem !important;
}

.acc-nav-panel ul.mobile li .sub-menu li {
  display: flex;
  justify-content: center;
  margin: 0 !important;
}

.acc-nav-panel ul.mobile li .sub-menu li a {
  font-family: var(--acc-font-sans) !important;
  font-size: 0.82rem !important;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 2.2;
  color: var(--acc-muted) !important;
  transition: color 0.3s var(--acc-ease);
}

.acc-nav-panel ul.mobile li .sub-menu li a:hover,
.acc-nav-panel ul.mobile li .sub-menu li.current-menu-item > a {
  color: var(--acc-olive) !important;
  background: transparent !important;
  padding: 0 !important;
}

/* Chevron indiquant un sous-menu */
.acc-nav-panel ul.mobile > li.menu-item-has-children > a::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  margin-right: 0.75rem;
  border-right: 1.5px solid var(--acc-olive);
  border-bottom: 1.5px solid var(--acc-olive);
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.75;
  transition: transform 0.4s var(--acc-ease);
}

.acc-nav-panel ul.mobile > li.menu-item-has-children.activeMenu > a::before {
  transform: rotate(225deg) translateY(-2px);
}

/* --- Pied du panneau --- */
.acc-nav-panel__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2.5rem;
  width: 100%;
  padding-top: 2.25rem;
  border-top: 1px solid var(--acc-line);
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.5s var(--acc-ease-out) 0.5s,
    transform 0.5s var(--acc-ease-out) 0.5s;
}

.acc-nav-panel:not(.offArea) .acc-nav-panel__foot {
  opacity: 1;
  transform: none;
}

.acc-nav-panel__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2rem;
}

.acc-nav-panel__contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--acc-navy);
  transition: color 0.3s var(--acc-ease);
}

.acc-nav-panel__contact a:hover {
  color: var(--acc-olive);
}

.acc-nav-panel__contact .acc-ico {
  width: 1rem;
  height: 1rem;
  color: var(--acc-olive);
}

/* =============================================================================
   08. HERO & PAGE TITLE
   ============================================================================= */

.acc-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  overflow: hidden;
  background: var(--acc-navy);
}

.acc-hero .carousel,
.acc-hero .flickity-viewport {
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100% !important;
  background: var(--acc-navy);
}

.acc-hero .carousel-cell {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
  background-color: var(--acc-navy);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  /* Ken Burns : zoom tres lent sur l'image active */
  transform: scale(1);
  transition: transform 9s linear;
}

.acc-hero .carousel-cell.is-selected {
  transform: scale(1.07);
}

.acc-hero .carousel-cell::before,
.acc-pagetitle .carousel-cell::before {
  content: none;
}

/* Voile : degrade bleu profond, garantit la lisibilite du texte */
.acc-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(15, 44, 51, 0.62) 0%,
      rgba(15, 44, 51, 0.24) 32%,
      rgba(15, 44, 51, 0.58) 72%,
      rgba(15, 44, 51, 0.86) 100%
    ),
    radial-gradient(
      ellipse 90% 70% at 50% 55%,
      rgba(15, 44, 51, 0.3) 0%,
      rgba(15, 44, 51, 0.68) 100%
    );
}

.acc-hero__inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 62rem;
  margin: 0 auto;
  padding: 8rem var(--acc-gutter) 7rem;
}

.acc-hero .acc-title--hero {
  margin: 0.5rem 0 0;
}

.acc-hero__baseline {
  margin: 1.75rem 0 0;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--acc-on-dark-muted);
}

.acc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2.25rem;
  margin-top: 2.75rem;
}

/* Indicateur de defilement */
.acc-hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--acc-on-dark-muted);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 0.3s var(--acc-ease);
}

.acc-hero__scroll:hover {
  color: var(--acc-sand-soft);
}

.acc-hero__scroll-line {
  position: relative;
  width: 1px;
  height: 3.5rem;
  background: rgba(239, 233, 222, 0.28);
  overflow: hidden;
}

.acc-hero__scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--acc-sand-soft);
  animation: acc-scroll-run 2.4s var(--acc-ease) infinite;
}

@keyframes acc-scroll-run {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(350%);
  }
}

.acc-hero__social {
  position: absolute;
  z-index: 3;
  bottom: 2.25rem;
  right: var(--acc-gutter);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* --- Page title : meme ADN, plus ramasse --- */
.acc-pagetitle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(360px, 52vh, 560px);
  overflow: hidden;
  background: var(--acc-navy);
}

.acc-pagetitle .carousel,
.acc-pagetitle .flickity-viewport {
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100% !important;
}

.acc-pagetitle .carousel-cell {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.acc-pagetitle__inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 56rem;
  padding: 8rem var(--acc-gutter) 4rem;
}

.acc-pagetitle .acc-title {
  font-size: clamp(2.2rem, 1.4rem + 3vw, 3.9rem);
  color: var(--acc-sand-soft);
}

.acc-pagetitle .acc-eyebrow {
  color: var(--acc-blue-soft);
}

.acc-pagetitle .acc-rule::before {
  background: var(--acc-sand-deep);
}

.acc-pagetitle .acc-rule::after {
  background: var(--acc-olive-soft);
}

/* =============================================================================
   09. TEXTE + PHOTO
   ============================================================================= */

.acc-textphoto__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 1rem + 5vw, 5.5rem);
  align-items: center;
}

.acc-textphoto__media {
  position: relative;
}

/* L'arche : la forme paysagere du bloc */
.acc-textphoto__img {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 4 / 5;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--acc-sand-deep);
  border-radius: var(--acc-arch);
  box-shadow: var(--acc-shadow);
}

/* Filet olive decale : le cadre discret qui signe le bloc */
.acc-textphoto__frame {
  position: absolute;
  z-index: 1;
  inset: 1.5rem -1.5rem -1.5rem 1.5rem;
  border: 1px solid var(--acc-olive);
  border-radius: var(--acc-arch);
  opacity: 0.4;
  pointer-events: none;
}

.acc-textphoto--reverse .acc-textphoto__frame {
  inset: 1.5rem 1.5rem -1.5rem -1.5rem;
}

/* Tasseaux derriere l'image */
.acc-textphoto__slats {
  position: absolute;
  z-index: 0;
  top: -1.75rem;
  right: -1.75rem;
  width: 9rem;
  height: 9rem;
  color: var(--acc-olive);
  background-image: var(--acc-slats);
  opacity: 0.35;
  pointer-events: none;
}

.acc-textphoto--reverse .acc-textphoto__slats {
  right: auto;
  left: -1.75rem;
}

.acc-textphoto__body .acc-btn,
.acc-textphoto__body .acc-link {
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .acc-textphoto__grid {
    grid-template-columns: 1fr 1fr;
  }

  .acc-textphoto--reverse .acc-textphoto__media {
    order: 2;
  }

  .acc-textphoto--reverse .acc-textphoto__body {
    order: 1;
  }
}

/* --- Tarif : "Sur devis", "A partir de", "Fourchette" ------------------------
   Bloc discret, filet olive a gauche, valeur en serif. Partage par les blocs
   texte-photo et typo. --center pour le contexte centre (typo). */
.acc-price {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  align-items: flex-start;
  margin-top: 2rem;
  padding: 0.9rem 1.6rem;
  background: var(--acc-sand-soft);
  border: 1px solid var(--acc-line);
  border-left: 3px solid var(--acc-olive);
  border-radius: var(--acc-radius);
}

.acc-price__label {
  font-family: var(--acc-font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--acc-olive);
}

.acc-price__value {
  font-family: var(--acc-font-display);
  font-size: 1.55rem;
  line-height: 1.15;
  color: var(--acc-navy);
}

.acc-price__value small {
  font-size: 0.82rem;
  color: var(--acc-muted);
}

.acc-price__note {
  margin-top: 0.1rem;
  font-size: 0.75rem;
  color: var(--acc-muted);
}

.acc-price--center {
  align-items: center;
  text-align: center;
}

/* =============================================================================
   10. TYPO — bloc centre, respiration maximale
   ============================================================================= */

.acc-typo {
  position: relative;
  overflow: hidden;
}

.acc-typo__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 54rem;
  margin: 0 auto;
}

.acc-typo .acc-prose {
  margin-top: 0.5rem;
  text-align: center;
}

.acc-typo .acc-prose ul {
  display: inline-block;
  text-align: left;
}

.acc-typo .acc-btn {
  margin-top: 2.5rem;
}

/* Feuillage en filigrane */
.acc-typo__leaf {
  top: -3rem;
  right: -4rem;
  width: clamp(180px, 26vw, 340px);
  transform: rotate(12deg);
}

.acc-typo__leaf--alt {
  top: auto;
  right: auto;
  bottom: -4rem;
  left: -4rem;
  transform: rotate(-160deg);
}

/* =============================================================================
   11. PRESTATIONS
   ============================================================================= */

/* Flex centre plutot que grille auto-fit : les rangs incomplets (5 items => 3+2)
   se centrent au lieu de s'aligner a gauche. La base 340 / max 400 plafonne a
   3 cartes par rang sur desktop, 2 sur tablette, 1 sur mobile. */
.acc-presta__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 0.5rem + 2vw, 2.25rem);
}

.acc-presta__grid .acc-card {
  flex: 1 1 340px;
  max-width: 400px;
}

.acc-presta__grid--single .acc-card {
  flex-basis: 620px;
  max-width: 620px;
}

.acc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--acc-sand-soft);
  border: 1px solid var(--acc-line);
  border-radius: var(--acc-radius-lg);
  overflow: hidden;
  transition:
    transform 0.5s var(--acc-ease-out),
    box-shadow 0.5s var(--acc-ease-out),
    border-color 0.5s var(--acc-ease);
}

.acc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--acc-shadow);
  border-color: var(--acc-sand-deep);
}

.acc-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3.4;
  margin: 0.6rem 0.6rem 0;
  background: var(--acc-sand-deep);
  /* L'arche, en haut de carte */
  border-radius: 999px 999px 0 0;
}

.acc-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--acc-ease-out);
}

.acc-card:hover .acc-card__media img {
  transform: scale(1.07);
}

.acc-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 44, 51, 0) 45%,
    rgba(15, 44, 51, 0.35) 100%
  );
  opacity: 0;
  transition: opacity 0.5s var(--acc-ease);
}

.acc-card:hover .acc-card__media::after {
  opacity: 1;
}

.acc-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 auto;
  padding: 1.75rem 1.5rem 2rem;
  text-align: center;
}

.acc-card__icon {
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 0.9rem;
  object-fit: contain;
}

.acc-card__title {
  margin: 0;
  font-family: var(--acc-font-display);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--acc-navy);
  transition: color 0.35s var(--acc-ease);
}

.acc-card:hover .acc-card__title {
  color: var(--acc-olive);
}

/* Le filet du logo, en miniature */
.acc-card__rule {
  width: 2.25rem;
  height: 1px;
  margin: 0.9rem 0;
  background: var(--acc-olive);
  transition: width 0.45s var(--acc-ease);
}

.acc-card:hover .acc-card__rule {
  width: 3.5rem;
}

.acc-card__text {
  color: var(--acc-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.acc-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.25rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--acc-navy);
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.4s var(--acc-ease),
    transform 0.4s var(--acc-ease),
    color 0.3s var(--acc-ease);
}

.acc-card:hover .acc-card__more {
  opacity: 1;
  transform: none;
  color: var(--acc-olive);
}

.acc-card__more .acc-ico {
  width: 0.9rem;
  height: 0.9rem;
}

/* =============================================================================
   12. GALERIE
   ============================================================================= */

.acc-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: clamp(0.75rem, 0.3rem + 1vw, 1.15rem);
}

.acc-gallery__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: var(--acc-radius);
  background: var(--acc-sand-deep);
  cursor: pointer;
}

.acc-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--acc-ease-out);
}

.acc-gallery__item:hover img {
  transform: scale(1.06);
}

.acc-gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(23, 63, 72, 0) 40%,
    rgba(23, 63, 72, 0.55) 100%
  );
  opacity: 0;
  transition: opacity 0.5s var(--acc-ease);
}

.acc-gallery__item:hover::after {
  opacity: 1;
}

.acc-gallery__zoom {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(251, 248, 243, 0.94);
  color: var(--acc-navy);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  transition:
    opacity 0.45s var(--acc-ease),
    transform 0.45s var(--acc-ease-out);
}

.acc-gallery__item:hover .acc-gallery__zoom {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* --- Barre de filtres par categorie --- */
.acc-gallery__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin: 0 auto clamp(2.5rem, 1.5rem + 2vw, 3.5rem);
}

.acc-gallery__filter {
  padding: 0.6rem 1.35rem;
  border: 1px solid var(--acc-line);
  border-radius: 999px;
  background: transparent;
  color: var(--acc-muted);
  font-family: var(--acc-font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 0.3s var(--acc-ease),
    border-color 0.3s var(--acc-ease),
    background-color 0.3s var(--acc-ease);
}

.acc-gallery__filter:hover {
  color: var(--acc-navy);
  border-color: var(--acc-navy);
}

.acc-gallery__filter.is-active {
  color: var(--acc-sand-soft);
  background: var(--acc-navy);
  border-color: var(--acc-navy);
}

/* Masquage / reapparition lors du filtrage */
.acc-gallery__item.is-hidden {
  display: none;
}

.acc-gallery__item.acc-anim {
  animation: acc-pop 0.5s var(--acc-ease) both;
}

@keyframes acc-pop {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* --- Avant / Apres (clip-path : aligne, responsive, sans px fixe) --- */
.acc-gallery__item--ba {
  cursor: default;
}

/* Neutralise le zoom-au-survol et le voile de la grille : ils casseraient
   l'alignement du comparateur. */
.acc-gallery__item--ba::after {
  content: none;
}

.acc-gallery__item--ba:hover .acc-ba__img {
  transform: none;
}

.acc-ba {
  position: absolute;
  inset: 0;
  overflow: hidden;
  --pos: 50%;
}

.acc-ba__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

/* La couche AVANT est rognee a droite selon la poignee */
.acc-ba__img--before {
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

.acc-ba__tag {
  position: absolute;
  bottom: 0.9rem;
  z-index: 3;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 44, 51, 0.62);
  backdrop-filter: blur(4px);
  color: var(--acc-sand-soft);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  pointer-events: none;
}

.acc-ba__tag--before {
  left: 0.9rem;
}

.acc-ba__tag--after {
  right: 0.9rem;
}

.acc-ba__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  z-index: 3;
  width: 2px;
  margin-left: -1px;
  background: var(--acc-sand-soft);
  pointer-events: none;
}

.acc-ba__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: var(--acc-sand-soft);
  color: var(--acc-navy);
  box-shadow: var(--acc-shadow-sm);
}

.acc-ba__handle .acc-ico {
  width: 1.1rem;
  height: 1.1rem;
}

/* Le range transparent en superposition : glisser n'importe ou */
.acc-ba__range {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  cursor: ew-resize;
  opacity: 0;
  -webkit-appearance: none;
  appearance: none;
}

.acc-ba__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 2.5rem;
  height: 100%;
}

.acc-ba__range::-moz-range-thumb {
  width: 2.5rem;
  height: 100%;
  border: 0;
}

/* Legende optionnelle de la realisation */
.acc-gallery__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.5rem 1.25rem 1rem;
  background: linear-gradient(
    180deg,
    rgba(15, 44, 51, 0) 0%,
    rgba(15, 44, 51, 0.72) 100%
  );
  color: var(--acc-sand-soft);
  font-family: var(--acc-font-display);
  font-size: 1.05rem;
  pointer-events: none;
}

.acc-gallery__item--ba .acc-gallery__caption {
  z-index: 3;
}

/* =============================================================================
   13. CARTE
   ============================================================================= */

.acc-map__grid {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border-radius: var(--acc-radius-lg);
  box-shadow: var(--acc-shadow);
}

.acc-map__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 1.5rem + 3vw, 4rem);
  background: var(--acc-navy);
  color: var(--acc-on-dark);
  overflow: hidden;
}

.acc-map__panel::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 6rem;
  color: var(--acc-olive-soft);
  background-image: var(--acc-slats);
  opacity: 0.12;
  pointer-events: none;
}

.acc-map__panel > * {
  position: relative;
  z-index: 2;
}

/* Panneaux bleus isoles (carte, aside formulaire) : texte accorde au fond sombre */
.acc-map__panel .acc-title,
.acc-map__panel .acc-title--sub,
.acc-form__aside .acc-title {
  color: var(--acc-sand-soft);
}

.acc-map__panel .acc-prose,
.acc-form__aside .acc-prose {
  color: var(--acc-on-dark-muted);
}

.acc-map__panel .acc-eyebrow,
.acc-form__aside .acc-eyebrow {
  color: var(--acc-blue-soft);
}

.acc-map__panel .acc-rule::before {
  background: var(--acc-sand-deep);
}

.acc-map__panel .acc-rule::after {
  background: var(--acc-olive-soft);
}

.acc-map__canvas {
  min-height: 460px;
  background: var(--acc-sand-deep);
}

#map {
  width: 100%;
  height: 100%;
  min-height: 460px;
}

/* Les tuiles OSM sont trop saturees pour l'univers : on les accorde au sable. */
#map .leaflet-tile-pane {
  filter: saturate(0.42) contrast(0.94) brightness(1.04) sepia(0.14);
}

.leaflet-container {
  background: var(--acc-sand-deep) !important;
  font-family: var(--acc-font-sans) !important;
}

.leaflet-tooltip {
  border: 1px solid var(--acc-line) !important;
  border-radius: var(--acc-radius) !important;
  background: var(--acc-sand-soft) !important;
  color: var(--acc-ink) !important;
  box-shadow: var(--acc-shadow-sm) !important;
  font-family: var(--acc-font-sans) !important;
  padding: 0 !important;
}

.leaflet-tooltip h3 {
  font-family: var(--acc-font-display) !important;
  color: var(--acc-navy) !important;
}

@media (min-width: 1024px) {
  .acc-map__grid {
    grid-template-columns: minmax(320px, 34%) 1fr;
  }

  .acc-map__canvas,
  #map {
    min-height: 560px;
  }
}

/* =============================================================================
   14. CTA — invitation editoriale sur fond bleu profond
   Nouvelle composition : bandeau bleu, texte a gauche, image en arche a droite
   avec cadre olive decale. Distinct de la carte en debord.
   ============================================================================= */

.acc-cta {
  position: relative;
  padding: var(--acc-section) var(--acc-gutter);
  background: var(--acc-navy);
  color: var(--acc-on-dark);
  overflow: hidden;
}

/* Tasseaux bois en fond, cote gauche */
.acc-cta::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(26vw, 260px);
  color: var(--acc-olive-soft);
  background-image: var(--acc-slats);
  opacity: 0.1;
  pointer-events: none;
}

/* Halo olive diffus, coin bas-droit : profondeur chaleureuse */
.acc-cta::after {
  content: "";
  position: absolute;
  right: -6rem;
  bottom: -6rem;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(110, 122, 60, 0.28) 0%,
    rgba(110, 122, 60, 0) 70%
  );
  pointer-events: none;
}

.acc-cta__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.75rem, 1rem + 6vw, 5.5rem);
  align-items: center;
  max-width: var(--acc-max);
  margin: 0 auto;
}

.acc-cta__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.acc-cta .acc-eyebrow {
  color: var(--acc-blue-soft);
}

.acc-cta__title {
  margin: 0;
  font-family: var(--acc-font-display);
  font-weight: 400;
  font-size: var(--acc-t-h2);
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--acc-sand-soft);
  text-wrap: balance;
}

/* Le mot mis en avant, dans le vert du logo */
.acc-cta__highlight {
  display: block;
  color: var(--acc-olive-soft);
}

.acc-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 2.25rem;
  margin-top: 2.5rem;
}

/* Telephone bien visible sur le fond bleu */
.acc-cta .acc-link {
  color: var(--acc-sand-soft);
}

.acc-cta .acc-link:hover {
  color: var(--acc-blue-soft);
}

/* Image en arche + cadre olive decale */
.acc-cta__media {
  position: relative;
}

.acc-cta__img {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 5 / 4;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--acc-navy-soft);
  border-radius: var(--acc-arch);
  box-shadow: var(--acc-shadow-lg);
}

.acc-cta__frame {
  position: absolute;
  z-index: 1;
  inset: 1.4rem -1.4rem -1.4rem 1.4rem;
  border: 1px solid var(--acc-olive-soft);
  border-radius: var(--acc-arch);
  opacity: 0.55;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .acc-cta__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

@media (max-width: 1023px) {
  .acc-cta__frame {
    display: none;
  }

  .acc-cta__img {
    aspect-ratio: 4 / 3;
  }
}

/* =============================================================================
   15. FORMULAIRE
   ============================================================================= */

.acc-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 1rem + 3vw, 3.5rem);
  align-items: stretch;
}

@media (min-width: 1024px) {
  .acc-form__grid {
    grid-template-columns: minmax(300px, 34%) 1fr;
  }
}

.acc-form__aside {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  padding: clamp(2.25rem, 1.5rem + 2vw, 3rem);
  background: var(--acc-navy);
  border-radius: var(--acc-radius-lg);
  color: var(--acc-on-dark);
  overflow: hidden;
}

.acc-form__aside::before {
  content: "";
  position: absolute;
  bottom: -3rem;
  left: -3rem;
  width: 12rem;
  height: 12rem;
  color: var(--acc-olive-soft);
  background-image: var(--acc-slats);
  opacity: 0.12;
  pointer-events: none;
}

.acc-form__aside > * {
  position: relative;
  z-index: 2;
}

.acc-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.acc-contact-item__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(239, 233, 222, 0.22);
  color: var(--acc-blue-soft);
}

.acc-contact-item__label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--acc-blue-soft);
}

.acc-contact-item__value {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--acc-on-dark);
}

.acc-contact-item__value a {
  transition: color 0.3s var(--acc-ease);
}

.acc-contact-item__value a:hover {
  color: var(--acc-olive-soft);
}

.acc-form__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.acc-form__img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--acc-radius-lg);
}

/* --- Champs (markup genere par includes/FormBuilder.php) --- */
#contactForm {
  width: 100%;
}

#contactForm fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 220px;
}

#contactForm label {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--acc-font-sans) !important;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--acc-navy) !important;
}

#contactForm .form-field,
#contactForm select,
#contactForm textarea,
#contactForm input[type="text"],
#contactForm input[type="number"],
#contactForm input[type="date"],
#contactForm input[type="email"],
#contactForm input[type="tel"] {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--acc-sand-soft);
  border: 1px solid var(--acc-line);
  border-radius: var(--acc-radius);
  color: var(--acc-ink);
  font-family: var(--acc-font-sans);
  font-size: 0.92rem;
  line-height: 1.5;
  transition:
    border-color 0.3s var(--acc-ease),
    box-shadow 0.3s var(--acc-ease),
    background-color 0.3s var(--acc-ease);
}

#contactForm .form-field:not(textarea) {
  height: 52px;
}

#contactForm textarea.form-field {
  height: auto;
  min-height: 170px;
  resize: vertical;
}

#contactForm .form-field::placeholder {
  color: #9aa5ac;
}

#contactForm .form-field:focus,
#contactForm select:focus,
#contactForm textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--acc-olive);
  box-shadow: 0 0 0 3px rgba(110, 122, 60, 0.12);
}

/* Le bouton d'envoi : exactement le meme style que .acc-btn */
#contactForm .submitButton,
input.submitButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.05rem 2.75rem !important;
  border: 0;
  border-radius: var(--acc-radius) !important;
  background: var(--acc-navy) !important;
  color: var(--acc-sand-soft) !important;
  font-family: var(--acc-font-sans) !important;
  font-size: 0.72rem !important;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 0.4s var(--acc-ease),
    transform 0.4s var(--acc-ease),
    box-shadow 0.4s var(--acc-ease);
}

#contactForm .submitButton:hover,
input.submitButton:hover {
  background: var(--acc-olive) !important;
  transform: translateY(-2px);
  box-shadow: var(--acc-shadow-sm);
}

#contactForm input[type="checkbox"],
#contactForm input[type="radio"] {
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--acc-olive);
}

/* Toasters : le masquage hors-ecran du theme (.hide { left:100% }) ne suffit pas
   dans ce contexte (ils depassent). On les cache de facon robuste par
   opacity/visibility ; le JS bascule .hide <-> .show (exclusifs), donc .show
   seul les revele. left/right restent geres par le theme (.show { right:3rem }). */
.toaster,
.toasterSuccess {
  z-index: 950;
  max-width: calc(100vw - 4rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.4s var(--acc-ease),
    visibility 0.4s var(--acc-ease);
}

.toaster.show,
.toasterSuccess.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.toaster > div,
.toasterSuccess > div {
  min-width: 0 !important;
  max-width: 100%;
  border-radius: var(--acc-radius-lg) !important;
  box-shadow: var(--acc-shadow-lg) !important;
  font-family: var(--acc-font-sans) !important;
}

.toaster .toastTitle,
.toasterSuccess .toastTitle {
  font-family: var(--acc-font-display) !important;
}

/* =============================================================================
   16. ICONES / PARTENAIRES / EQUIPE / BLOG / AVANT-APRES
   ============================================================================= */

/* --- Bloc icones (atouts) --- */
.acc-icons__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(1.5rem, 0.5rem + 2vw, 2.5rem);
}

.acc-icons__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.25rem 1.5rem;
  background: var(--acc-sand-soft);
  border: 1px solid var(--acc-line);
  border-radius: var(--acc-radius-lg);
  text-align: center;
  transition:
    transform 0.5s var(--acc-ease-out),
    box-shadow 0.5s var(--acc-ease-out);
}

.acc-icons__item:hover {
  transform: translateY(-5px);
  box-shadow: var(--acc-shadow-sm);
}

.acc-icons__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  margin-bottom: 1.35rem;
  border-radius: 999px;
  background: rgba(110, 122, 60, 0.09);
  color: var(--acc-olive);
  transition:
    background-color 0.45s var(--acc-ease),
    color 0.45s var(--acc-ease);
}

.acc-icons__item:hover .acc-icons__ico {
  background: var(--acc-olive);
  color: var(--acc-sand-soft);
}

.acc-icons__ico .acc-ico,
.acc-icons__ico .svg--icon {
  width: 1.75rem;
  height: 1.75rem;
}

.acc-icons__title {
  margin: 0 0 0.5rem;
  font-family: var(--acc-font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--acc-navy);
}

.acc-icons__text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--acc-muted);
}

/* --- Partenaires --- */
.acc-partners__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 1rem + 3vw, 4.5rem);
}

.acc-partners__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.acc-partners__item img {
  height: clamp(56px, 7vw, 84px);
  width: auto;
  max-width: 190px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.5;
  transition:
    filter 0.5s var(--acc-ease),
    opacity 0.5s var(--acc-ease),
    transform 0.5s var(--acc-ease);
}

.acc-partners__item:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.04);
}

/* --- Equipe --- */
.acc-team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(1.5rem, 0.5rem + 2vw, 2.5rem);
  justify-content: center;
}

.acc-team__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.acc-team__photo {
  position: relative;
  width: 100%;
  max-width: 240px;
  aspect-ratio: 3 / 4;
  margin-bottom: 1.35rem;
  overflow: hidden;
  /* Arche : coherent avec les cartes prestations */
  border-radius: 999px 999px var(--acc-radius) var(--acc-radius);
  background: var(--acc-sand-deep);
}

.acc-team__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
  transition: transform 0.8s var(--acc-ease-out);
}

.acc-team__item:hover .acc-team__photo img {
  transform: scale(1.05);
}

.acc-team__name {
  margin: 0;
  font-family: var(--acc-font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--acc-navy);
}

.acc-team__role {
  margin-top: 0.4rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--acc-olive);
}

/* --- Blog --- */
.acc-blog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(1.5rem, 0.5rem + 2vw, 2.25rem);
}

.acc-blog__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--acc-sand-deep);
  border-radius: var(--acc-radius-lg) var(--acc-radius-lg) 0 0;
}

.acc-blog__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--acc-ease-out);
}

.acc-card:hover .acc-blog__media img {
  transform: scale(1.06);
}

.acc-blog__date {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--acc-olive);
}

.acc-blog__body {
  align-items: flex-start;
  padding: 1.75rem 1.5rem 2rem;
  text-align: left;
}

/* --- Avant / apres --- */
.acc-befaf__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.25rem, 0.5rem + 2vw, 2rem);
}

.acc-befaf__grid .containerhere {
  border-radius: var(--acc-radius-lg);
  overflow: hidden;
  border: 1px solid var(--acc-line);
  box-shadow: var(--acc-shadow-sm);
}

.containerhere .slider-button {
  background: var(--acc-sand-soft) !important;
  border: 1px solid var(--acc-line) !important;
  box-shadow: var(--acc-shadow-sm);
}

.containerhere .slider-button:after,
.containerhere .slider-button:before {
  border-color: var(--acc-navy) !important;
}

.acc-befaf__legend {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 1.5rem 1.25rem 1rem;
  background: linear-gradient(
    180deg,
    rgba(15, 44, 51, 0) 0%,
    rgba(15, 44, 51, 0.78) 100%
  );
  color: var(--acc-sand-soft);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
}

/* =============================================================================
   17. RESEAUX SOCIAUX
   Un seul traitement partout : pastille ronde, bordure fine, olive au survol.
   ============================================================================= */

.acc-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.acc-social--center {
  justify-content: center;
}

.acc-social a,
.social a,
.socialFooter,
.navSocial {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 999px !important;
  border: 1px solid var(--acc-line);
  background: transparent !important;
  color: var(--acc-navy) !important;
  box-shadow: none !important;
  transition:
    background-color 0.4s var(--acc-ease),
    border-color 0.4s var(--acc-ease),
    color 0.4s var(--acc-ease),
    transform 0.4s var(--acc-ease);
}

.acc-social a:hover,
.social a:hover,
.socialFooter:hover,
.navSocial:hover {
  background: var(--acc-olive) !important;
  border-color: var(--acc-olive);
  color: var(--acc-sand-soft) !important;
  transform: translateY(-2px);
}

.acc-social a svg,
.social a svg,
.socialFooter svg,
.navSocial svg {
  width: 1.05rem !important;
  height: 1.05rem !important;
  fill: currentColor !important;
  color: currentColor !important;
}

/* Variante sur fond sombre (hero, footer) */
.acc-social--light a,
.acc-hero__social a,
footer .socialFooter {
  border-color: rgba(239, 233, 222, 0.28);
  color: var(--acc-sand-soft) !important;
}

footer .socialFooter svg,
.acc-hero__social a svg {
  fill: currentColor !important;
  color: currentColor !important;
}

footer .socialFooter:hover svg {
  fill: var(--acc-sand-soft) !important;
}

/* =============================================================================
   18. FOOTER
   ============================================================================= */

.v3Footer {
  position: relative;
  background: var(--acc-navy-deep) !important;
  color: var(--acc-on-dark);
  padding-bottom: 0 !important;
  overflow: hidden;
  text-align: left;
}

/* Tasseaux : rappel bois, en haut a droite */
.v3Footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: min(30vw, 300px);
  height: 16rem;
  color: var(--acc-olive-soft);
  background-image: var(--acc-slats);
  opacity: 0.1;
  pointer-events: none;
}

.acc-foot__inner {
  position: relative;
  z-index: 2;
  max-width: var(--acc-max);
  margin: 0 auto;
  padding: clamp(4rem, 2rem + 5vw, 6rem) var(--acc-gutter)
    clamp(2.5rem, 1.5rem + 2vw, 3.5rem);
}

.acc-foot__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(239, 233, 222, 0.14);
  text-align: center;
}

.acc-foot__logo img {
  height: 92px;
  width: auto;
  object-fit: contain;
  /* Le logo est bleu fonce : sur le footer sombre on l'eclaircit. */
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.acc-foot__tagline {
  max-width: 34rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--acc-on-dark-muted);
}

/* Menu du footer */
#footerMenu {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 2.25rem;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

#footerMenu li {
  margin: 0;
}

#footerMenu li > a {
  font-family: var(--acc-font-sans) !important;
  font-size: 0.72rem !important;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--acc-on-dark-muted) !important;
  transition: color 0.3s var(--acc-ease);
}

#footerMenu li > a:hover,
#footerMenu li.current-menu-item > a,
#footerMenu li.current-menu-ancestor > a {
  color: var(--acc-olive-soft) !important;
}

#footerMenu .sub-menu {
  display: none !important;
}

/* Grille de contact */
.acc-foot__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 2.5rem;
  padding: 3rem 0;
}

.acc-foot__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
}

.acc-foot__item-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 1px solid rgba(239, 233, 222, 0.2);
  color: var(--acc-blue-soft);
}

.acc-foot__item-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--acc-blue-soft);
}

.acc-foot__item-value,
.acc-foot__item-value .txtCustom {
  font-family: var(--acc-font-sans) !important;
  font-size: 0.9rem;
  line-height: 1.7;
  letter-spacing: 0 !important;
  color: var(--acc-on-dark) !important;
}

.acc-foot__item-value a {
  transition: color 0.3s var(--acc-ease);
}

.acc-foot__item-value a:hover,
.txtCustom:hover a {
  color: var(--acc-olive-soft) !important;
}

.acc-foot__hours {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.acc-foot__hours span::after {
  content: none !important;
}

.acc-foot__social {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding-top: 0.5rem;
}

/* La section copyright reste intacte : on l'accorde seulement au fond. */
.v3Footer > div:last-child {
  background-color: rgba(6, 17, 22, 1) !important;
  font-family: var(--acc-font-sans);
  font-size: 0.78rem;
  color: var(--acc-on-dark-muted);
}

.v3Footer > div:last-child a {
  color: var(--acc-on-dark-muted);
  transition: color 0.3s var(--acc-ease);
}

.v3Footer > div:last-child a:hover {
  color: var(--acc-sand-soft);
}

/* =============================================================================
   19. MODALE & DIVERS
   ============================================================================= */

#modal {
  background: rgba(9, 25, 33, 0.94) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

#modal img {
  max-width: min(92vw, 1100px) !important;
  max-height: 86vh !important;
  object-fit: contain !important;
  border-radius: var(--acc-radius-lg);
  box-shadow: var(--acc-shadow-lg);
}

#modal > a {
  top: 2rem !important;
  right: 2.5rem !important;
  color: var(--acc-sand-soft) !important;
  font-family: var(--acc-font-sans);
  font-weight: 300 !important;
  transition: opacity 0.3s var(--acc-ease);
}

#modal > a:hover {
  opacity: 0.6;
}

/* Le bloc spacer du theme : le rythme est porte par le padding des sections. */
.spacer {
  display: none !important;
}

/* Flickity : le hero pilote son propre rythme, pas de controles natifs. */
.flickity-button {
  display: none !important;
}

/* =============================================================================
   20. ANIMATIONS & RESPONSIVE
   Sobres : une apparition douce, des transitions courtes. Rien de plus.
   ============================================================================= */

/* Respect des preferences systeme : on coupe tout mouvement si demande. */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .acc-hero .carousel-cell.is-selected {
    transform: none;
  }
}

@media (max-width: 1023px) {
  .acc-nav__phone span {
    display: none;
  }

  .acc-textphoto__frame,
  .acc-textphoto__slats {
    display: none;
  }

  .acc-textphoto__img {
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 767px) {
  .acc-burger__label {
    display: none;
  }

  .acc-nav-panel__close-label {
    display: none;
  }

  .acc-hero__social {
    display: none;
  }

  .acc-gallery__item,
  .acc-gallery__item:nth-child(6n + 1),
  .acc-gallery__item:nth-child(6n + 4) {
    aspect-ratio: 4 / 3;
  }

  .acc-foot__top {
    padding-bottom: 2.25rem;
  }
}
