/* AL Studio — design Pixieset theme 4 (réf. cedemeeus.be) */
:root {
  --bg: #ffffff;
  --ink: #2a3232;          /* titres & textes */
  --detail: #b1bdb9;       /* détails gris-vert */
  --accent-bg: #ecf0ef;    /* fond des sections accent */
  --vert: #748968;         /* survol vert sauge */
  --hairline: #e3e8e6;
  --sans: 'Montserrat', sans-serif;
  --serif: 'Lora', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1rem;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 1.5px solid var(--ink); outline-offset: 3px;
}

/* ---------- Typographie ---------- */
h1, h2, h3 {
  font-family: var(--sans);
  font-weight: 300;
  text-transform: uppercase;
  color: var(--ink);
}
h1 { font-size: clamp(1.6rem, 1rem + 1.67vw, 2.5rem); letter-spacing: 0.1em; line-height: 1.3; }
h2 { font-size: clamp(1.2rem, 1rem + 0.69vw, 1.625rem); letter-spacing: 0.1em; line-height: 1.5; }
h3 { font-size: 1.125rem; font-weight: 400; letter-spacing: 0.11em; line-height: 1.4; }

.eyebrow {
  font-family: var(--sans); font-weight: 400;
  font-size: 0.6875rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--detail); margin-bottom: 1.2rem;
}
.detail {
  font-family: var(--sans); font-weight: 400;
  font-size: 0.8125rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--detail);
}
.lead { color: var(--ink); max-width: 42rem; }

/* titre de section en serif, façon maquette */
.titre-section {
  font-family: var(--serif);
  font-weight: 400; /* seule graisse Lora chargée */
  letter-spacing: 0.1em;
}

/* bloc de titre composé — titre serif encadré de deux filets dorés */
.titre-compose {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(1rem, 3vw, 2.2rem); margin-bottom: 3.6rem;
}
.titre-compose .tc-line { height: 1px; flex: 0 1 clamp(40px, 12vw, 160px); }
.titre-compose .tc-line:first-child { background: linear-gradient(90deg, transparent, #c99b3f); }
.titre-compose .tc-line:last-child  { background: linear-gradient(90deg, #c99b3f, transparent); }
.titre-compose h2 {
  font-family: var(--serif); font-weight: 400; text-transform: none;
  font-size: clamp(1.8rem, 1.2rem + 2.2vw, 2.9rem);
  line-height: 1.1; letter-spacing: 0.02em; color: var(--ink); white-space: nowrap;
}
.titre-compose h2 em { font-style: italic; }

/* ---------- Navigation (transparente, posée sur le hero) ---------- */
.nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center; gap: 2rem;
  padding: 2.4rem 3.2rem;
  color: #fff;
}
/* ---------- Logo statique — grandit seulement au survol / clic ---------- */
.nav-logo {
  position: relative; display: inline-block; line-height: 0;
  transition: transform .35s cubic-bezier(.2, .7, .2, 1);
}
.nav-logo img {
  display: block; height: 96px; width: auto;
  /* logo noir rendu blanc pur + ombre discrète */
  filter: brightness(0) invert(1)
          drop-shadow(0 1px 2px rgba(0,0,0,0.28))
          drop-shadow(0 2px 8px rgba(0,0,0,0.18));
}
/* survol / clic : le logo grandit légèrement (aucun autre effet) */
.nav-logo:hover, .nav-logo:focus-visible, .nav-logo:active { transform: scale(1.025); }

.nav ul { display: flex; gap: 2.6rem; list-style: none; align-items: center; }
.nav ul a {
  position: relative;
  font-family: var(--sans); font-weight: 600;
  font-size: 0.88rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: #fff; text-decoration: none;
  /* ombre plus marquée : titres bien lisibles sur les photos */
  text-shadow: 0 1px 2px rgba(0,0,0,0.6), 0 1px 10px rgba(0,0,0,0.4);
  padding: 0.4rem 0;
  transition: opacity 0.3s ease;
}
.nav ul a:hover, .nav ul a.active { opacity: 1; }

/* trait fin qui se déploie au survol, persistant sur la page active */
.nav ul a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav ul a:hover::after, .nav ul a.active::after {
  transform: scaleX(1); transform-origin: left;
}

/* burger / menu plein écran mobile */
.burger { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; z-index: 70; }
.burger span { display: block; width: 24px; height: 1.5px; background: #fff; margin: 6px 0; transition: 0.35s; }

@media (max-width: 920px) {
  .nav { padding: 1.6rem 1.6rem; }
  .nav-logo img { height: 64px; }
  .burger { display: block; }
  .nav ul {
    position: fixed; inset: 0; z-index: 60;
    flex-direction: column; justify-content: center; gap: 2.2rem;
    background: var(--bg);
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }
  .nav ul.open { opacity: 1; visibility: visible; }
  .nav ul a { color: var(--ink); font-size: 0.85rem; text-shadow: none; }
  .nav ul a:hover, .nav ul a.active { color: var(--vert); }
  body.menu-ouvert .burger span { background: var(--ink); }
  body.menu-ouvert .burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  body.menu-ouvert .burger span:nth-child(2) { opacity: 0; }
  body.menu-ouvert .burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

/* ---------- Hero plein écran (slider) ---------- */
.hero {
  position: relative; height: 100svh; min-height: 560px;
  overflow: hidden;
  display: grid; place-items: center;
}
/* même slider, mais à hauteur de bandeau pour les pages intérieures */
.hero--banner { height: 64vh; min-height: 420px; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease; }
.hero-slide.actif { opacity: 1; }
.hero-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-slide::after { content: ""; position: absolute; inset: 0; background: rgba(20,24,24,0.28); }

/* voile dégradé en haut pour la lisibilité de la nav */
.hero::before, .banner::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 190px;
  background: linear-gradient(rgba(15,18,18,0.55), transparent);
  z-index: 2; pointer-events: none;
}
/* bandeaux intérieurs : photos souvent plus claires en haut (ciel),
   on fonce davantage pour retrouver exactement le rendu de l'accueil */
.banner::before {
  height: 230px;
  background: linear-gradient(rgba(15,18,18,0.68), rgba(15,18,18,0.25) 60%, transparent);
}

/* flèches fines façon Pixieset */
.fleche {
  position: relative; display: inline-block;
  width: 64px; height: 1px; background: currentColor;
  vertical-align: middle;
}
.fleche::after {
  content: ""; position: absolute; right: -1px; top: -4.5px;
  width: 9px; height: 9px;
  border-top: 1px solid currentColor; border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.fleche--gauche { transform: scaleX(-1); }

.hero-prev, .hero-next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  background: none; border: none; color: rgba(255,255,255,0.85);
  cursor: pointer; padding: 1rem;
  transition: opacity 0.5s ease, color 0.3s ease;
}
.hero-prev:hover, .hero-next:hover { color: #fff; }
.hero-prev { left: 2.4rem; }
.hero-next { right: 2.4rem; }
.hero-prev.cache { opacity: 0; pointer-events: none; }

/* compteur éditorial : 01 — trait — 03 */
.hero-compteur {
  position: absolute; right: 3.4rem; bottom: 3rem; z-index: 3;
  display: flex; flex-direction: column; gap: 0.9rem; align-items: center;
  font-family: var(--sans); font-weight: 300;
}
.hero-compteur .hc-actuel {
  font-size: 1.05rem; letter-spacing: 0.18em; color: #fff;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.hero-compteur .hc-actuel.change { opacity: 0; transform: translateY(-6px); }
.hero-compteur .hc-ligne {
  width: 1px; height: 30px;
  background: rgba(255,255,255,0.45);
}
.hero-compteur .hc-total {
  font-size: 0.7rem; letter-spacing: 0.18em; color: rgba(255,255,255,0.55);
}

@media (max-width: 920px) {
  .hero-prev, .hero-next { display: none; }
  .hero-compteur { right: 1.6rem; bottom: 1.6rem; flex-direction: row; gap: 0.8rem; }
  .hero-compteur .hc-ligne { width: 26px; height: 1px; }
}

/* ---------- Bandeau photo des pages intérieures ---------- */
.banner {
  position: relative; height: 64vh; min-height: 420px;
  overflow: hidden;
  display: grid; place-items: center; text-align: center;
}
.banner > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.banner::after { content: ""; position: absolute; inset: 0; background: rgba(20,24,24,0.3); }
.banner-content { position: relative; z-index: 2; color: #fff; padding: 0 2rem; max-width: 900px; text-align: center; }
.banner-content h1 {
  font-family: var(--sans); font-weight: 400; text-transform: uppercase;
  font-size: clamp(2rem, 1.1rem + 3.2vw, 3.7rem);
  letter-spacing: 0.18em; line-height: 1.12; color: #fff;
  text-shadow: 0 2px 5px rgba(0,0,0,0.40), 0 6px 28px rgba(0,0,0,0.42);
}
.banner-content .sous-titre {
  position: relative;
  font-family: var(--sans); font-weight: 500;
  font-size: clamp(0.95rem, 0.8rem + 0.5vw, 1.15rem); letter-spacing: 0.3em; text-transform: uppercase;
  color: #fff; margin-top: 1.6rem; padding-top: 1.6rem; line-height: 1.6;
  text-shadow: 0 1px 14px rgba(0,0,0,0.5);
}
/* fin trait séparateur entre le titre et le sous-titre */
.banner-content .sous-titre::before {
  content: ""; display: block; width: 48px; height: 1px;
  background: rgba(255,255,255,0.75); margin: 0 auto 1.5rem;
}

/* ---------- Structure ---------- */
.section { max-width: 1200px; margin: 0 auto; padding: 6rem 2rem; }
.section--etroite { max-width: 860px; }
/* pleine largeur, calée sur les marges de la nav */
.section--large { max-width: none; padding-left: 3.2rem; padding-right: 3.2rem; padding-top: 9rem; }
.section--galerie { padding-top: 0; max-width: 1360px; }
@media (max-width: 920px) { .section--large { padding-left: 1.6rem; padding-right: 1.6rem; } }
.bloc-accent { background: var(--accent-bg); }
.center { text-align: center; }
.mt { margin-top: 3rem; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Boutons (outlined, survol vert sauge) ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans); font-weight: 500;
  font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--ink); background: transparent;
  border: 1px solid var(--ink);
  padding: 1rem 2.8rem;
  text-decoration: none; cursor: pointer;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
.btn:hover { background: var(--vert); border-color: var(--vert); color: #fff; }
/* bouton plein vert sauge, façon « Voir plus » du site de référence */
.btn--vert { background: var(--vert); border-color: var(--vert); color: #fff; }
.btn--vert:hover, .btn--vert:active { background: #2a3232; border-color: #2a3232; color: #fff; }

/* ---------- Cartes services (accueil, façon maquette) ---------- */
.services-cartes {
  /* minmax(0,1fr) : colonnes strictement égales, quel que soit le texte */
  display: grid; grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1.4rem; margin-top: 7.2rem;
  align-items: stretch; /* tous les rectangles à la même hauteur */
}
.sc {
  background: #fff;
  border: 1px solid rgba(42,50,50,0.14);
  border-radius: 12px;
  padding: 0.6rem 0.8rem 1.3rem;
  text-align: center;
  box-shadow: 0 14px 34px rgba(42,50,50,0.12);
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.sc h3 { margin: 0; } /* tous les titres démarrent sur la même ligne, sous le trait doré */
/* carte plan : on dézoome pour voir le plan entier, sur fond blanc */
.sc--plan .sc-photo { background: #fff; }
.sc--plan .sc-photo img { object-fit: contain; transform: scale(1.18) translateX(3%); }
/* même intensité de zoom au survol que les autres cartes (+2 %), à partir du zoom de base */
.sc--plan.sc:hover .sc-photo img, .sc--plan.sc:active .sc-photo img { transform: scale(1.206) translateX(3%); }
/* carte home staging : 2 photos côte à côte (avant | après) séparées par un fin trait blanc */
.sc--staging .sc-photo { display: flex; gap: 2px; background: #fff; }
.sc--staging .sc-photo img { flex: 1 1 0; min-width: 0; width: auto; height: 100%; object-fit: cover; }
/* carte mini-magazines : léger zoom pour créer la marge + remontée discrète */
.sc-photo.sc-photo--mag img { transform: scale(1.09) translateY(-4%); }
.sc:hover .sc-photo--mag.sc-photo img, .sc:active .sc-photo--mag.sc-photo img { transform: scale(1.114) translateY(-4%); }
/* flèche « avant → après » centrée sur la séparation */
.sv-arrow {
  position: absolute; z-index: 4; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(3px);
  display: grid; place-items: center;
  box-shadow: 0 4px 12px -4px rgba(42,50,50,0.25), inset 0 0 0 1px rgba(255,255,255,0.5);
}
.sv-arrow svg { width: 16px; height: 16px; stroke: #2a3232; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
/* carte visite 360 : léger zoom + décalage, survol discret comme les autres */
.sc--360 .sc-photo img { transform: scale(1.21) translate(-4.5%, 2%); }
.sc--360.sc:hover .sc-photo img, .sc--360.sc:active .sc-photo img { transform: scale(1.237) translate(-4.5%, 2%); }
.sc-photo {
  position: relative;
  border-radius: 8px; overflow: hidden;
  aspect-ratio: 1 / 1.05;
}
.sc-photo img {
  width: 100%; height: 100%; object-fit: cover;
  /* couche GPU dédiée : le zoom met à l'échelle une texture, sans re-pixellisation ni tremblement */
  transform: translateZ(0); will-change: transform; backface-visibility: hidden;
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
/* léger zoom de la photo au survol / clic (via l'icône ou la carte) */
.sc:hover .sc-photo img, .sc:active .sc-photo img { transform: scale(1.022) translateZ(0); }
/* voile blanchâtre au survol / clic, façon site de référence */
.sc-photo::after {
  content: ""; position: absolute; inset: 0;
  background: #fff; opacity: 0;
  transition: opacity 0.35s ease;
}
.sc:hover .sc-photo::after, .sc:active .sc-photo::after { opacity: 0.45; }
.sc-badge {
  width: 72px; height: 72px; border-radius: 50%;
  background: #1d1c1c; color: #fff;
  display: grid; place-items: center;
  margin: -36px auto 0; position: relative; z-index: 2;
  border: 3px solid #fff;
}
.sc-badge svg { width: 36px; height: 36px; stroke-width: 1.3; }
.sc-badge img {
  width: 42px; height: 42px; object-fit: contain; display: block;
  /* icônes un poil plus blanches (léger renfort des bords, sans modifier les fichiers) */
  filter: brightness(1.08) drop-shadow(0 0 0.6px rgba(255,255,255,0.55));
}
.sc-badge img.ico-large { width: 52px; height: 52px; transform: translateY(2px); } /* drone : dessin large et plat, légèrement descendu */
.sc-ligne {
  display: block; width: 28px; height: 2px;
  background: #c99b3f; /* trait doré */
  margin: 0.8rem auto 0.9rem;
}
.sc h3 {
  font-family: var(--sans); font-weight: 700;
  font-size: 0.88rem; letter-spacing: 0.08em; text-transform: uppercase;
  line-height: 1.4; color: var(--ink);
  min-height: 4.2em; /* réserve ~3 lignes : hauteurs de titres homogènes */
  margin-top: 1.65rem; /* le bloc de titre descend d'un cran */
  display: flex; align-items: flex-start; justify-content: center;
}
@media (max-width: 1100px) { .services-cartes { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 700px) { .services-cartes { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; } }

/* cibles des ancres depuis l'accueil */
.carte-service, #mini-magazines { scroll-margin-top: 2.5rem; }

/* ---------- Cartes services (page services) ---------- */
.cartes-services {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem 4rem; margin-top: 4.5rem;
}
.carte-service { text-align: center; }
.carte-service .photo { position: relative; overflow: hidden; aspect-ratio: 4 / 3; margin-bottom: 1.8rem; }
.carte-service .photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.carte-service:hover .photo img { transform: scale(1.045); }
.carte-service h2 { margin-bottom: 1rem; }
.carte-service p { font-size: 0.95rem; line-height: 2; max-width: 30rem; margin: 0 auto; }
@media (max-width: 700px) { .cartes-services { grid-template-columns: 1fr; gap: 4rem; } }

/* ---------- Galerie & filtres ---------- */
.filtres {
  display: flex; justify-content: center; gap: clamp(1.2rem, 3vw, 2.2rem); flex-wrap: wrap;
  max-width: 1100px; margin: 0 auto clamp(2.6rem, 4vw, 4rem); padding: 0 1.5rem;
}
.filtres button {
  background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-weight: 600;
  font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: #6b746f; padding: 0.55rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.filtres button:hover { color: var(--ink); }
.filtres button.actif { color: var(--ink); border-bottom-color: var(--ink); }

.galerie { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.galerie figure {
  position: relative; overflow: hidden; cursor: zoom-in; margin: 0;
  border: none; border-radius: 0;
  box-shadow: 0 18px 40px -16px rgba(42,50,50,0.22);
}
.galerie img {
  aspect-ratio: 4 / 3; object-fit: cover; width: 100%;
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
/* zoom très léger au survol / clic */
.galerie figure:hover img, .galerie figure:focus-visible img, .galerie figure:active img { transform: scale(1.035); }
.galerie figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 2.2rem 1.2rem 1rem;
  background: linear-gradient(transparent, rgba(20,24,24,0.55));
  color: #fff;
  font-family: var(--sans); font-weight: 400;
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0; transition: opacity 0.4s ease;
}
.galerie figure:hover figcaption, .galerie figure:focus-visible figcaption { opacity: 1; }
.galerie figure.cache { display: none; }
@media (max-width: 920px) { .galerie { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .galerie { grid-template-columns: 1fr; } .galerie figcaption { opacity: 1; } }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  display: none; place-items: center; padding: 2rem;
}
.lightbox.open { display: grid; }
.lightbox img { max-height: 82vh; max-width: 88vw; }
.lightbox p {
  text-align: center; margin-top: 1.2rem; color: var(--detail);
  font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
}
.lightbox .fermer {
  position: absolute; top: 1.4rem; right: 2rem;
  background: none; border: none; color: var(--ink);
  font-size: 2.2rem; font-weight: 200; cursor: pointer; line-height: 1;
}
.lightbox .lb-prev, .lightbox .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--ink); cursor: pointer; padding: 1rem;
}
.lightbox .lb-prev { left: 1.6rem; }
.lightbox .lb-next { right: 1.6rem; }
@media (max-width: 700px) { .lightbox .lb-prev, .lightbox .lb-next { display: none; } }

/* ---------- Formulaire (devis) ---------- */
.form-carte {
  background: var(--bg);
  max-width: 820px; margin: 0 auto;
  padding: 4rem 4.5rem;
}
@media (max-width: 700px) { .form-carte { padding: 2.5rem 1.6rem; } }

.champ { margin-bottom: 1.8rem; text-align: left; }
.deux-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; }
@media (max-width: 640px) { .deux-cols { grid-template-columns: 1fr; gap: 0; } }

label {
  display: block;
  font-family: var(--sans); font-weight: 500;
  font-size: 1rem; letter-spacing: normal; text-transform: none;
  color: var(--ink); margin-bottom: 0.6rem;
}
input:not([type="checkbox"]), select, textarea {
  width: 100%;
  font-family: var(--serif); font-size: 0.97rem; font-weight: 400;
  color: var(--ink); background: transparent;
  border: none; border-bottom: 1px solid #cdd4d1; border-radius: 0;
  padding: 0.7rem 0.1rem;
  transition: border-color 0.3s ease;
}
input:not([type="checkbox"]):focus, select:focus, textarea:focus { border-bottom-color: var(--ink); outline: none; }
textarea {
  resize: vertical; min-height: 140px;
  border: 1px solid #cdd4d1; border-radius: 10px;
  padding: 0.9rem 1.1rem;
}
textarea:focus { border-color: var(--ink); }

fieldset { border: none; margin: 2.2rem 0; text-align: left; }
legend {
  font-family: var(--sans); font-weight: 500;
  font-size: 1rem; letter-spacing: normal; text-transform: none;
  color: var(--ink); margin-bottom: 1.2rem;
}
.services-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
@media (max-width: 640px) { .services-checks { grid-template-columns: 1fr; } }
.check {
  display: flex; align-items: center; gap: 0.7rem;
  border: 1px solid var(--hairline); border-radius: 10px; background: #fff;
  padding: 0.6rem 0.9rem;
  font-size: 0.84rem; cursor: pointer; text-transform: none; letter-spacing: 0;
  font-family: var(--serif); color: var(--ink); margin-bottom: 0;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.check:hover { border-color: var(--detail); }
.check:has(input:checked) { border-color: var(--vert); background: #fbfcfb; }
.check input { width: 15px; height: 15px; accent-color: var(--vert); cursor: pointer; flex: none; }
.note { font-size: 0.82rem; color: var(--detail); margin-top: 1.4rem; line-height: 1.8; }

.coordonnees { display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap; margin: 2.5rem 0 0; }
.coord-item { text-align: center; }
.coord-item span {
  display: block;
  font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--detail); margin-bottom: 0.3rem;
}
.coord-item, .coord-item a { font-size: 0.95rem; color: var(--ink); text-decoration: none; }
.coord-item a:hover { color: var(--vert); }

/* ---------- Page Contact : deux colonnes (infos + formulaire) ---------- */
.contact { max-width: min(1200px, calc(100% - 4rem)); margin: clamp(3rem, 6vw, 5.5rem) auto; }
.contact-grid {
  display: grid; grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(1.6rem, 3vw, 2.6rem); align-items: start;
}
.contact-info {
  background: #f4f1ea; border-radius: 24px;
  padding: 0; align-self: stretch; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 24px 60px rgba(42,50,50,0.07);
}
.ci-top { padding: clamp(2rem, 3vw, 2.8rem); }
.ci-rule { display: block; width: 54px; height: 2px; background: #c99b3f; margin-bottom: 1.7rem; }
.ci-photo { position: relative; flex: none; margin-top: auto; aspect-ratio: 16 / 10; min-height: 0; }
.ci-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* la photo se fond dans la couleur du panneau (dégradé en haut) */
.ci-photo::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to bottom, #f4f1ea 0%, rgba(244,241,234,0) 32%);
}
.contact-lead { font-family: var(--sans); font-size: 1.05rem; line-height: 1.75; color: #5c6763; margin-bottom: 2.3rem; }
.contact-lead strong { color: var(--ink); font-weight: 600; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; padding: 0; margin: 0 -0.9rem; }
.contact-list li {
  display: flex; align-items: center; gap: 1.15rem;
  padding: 0.85rem 0.9rem; border-radius: 16px;
  transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}
.contact-list li:hover {
  background: rgba(255,255,255,0.6);
  box-shadow: 0 14px 30px -20px rgba(42,50,50,0.4);
  transform: translateY(-2px);
}
.ci-ic {
  flex: none; box-sizing: content-box;
  width: 22px; height: 22px; padding: 13px; border-radius: 14px;
  background: var(--ink);
  border: 1px solid var(--ink);
  display: grid; place-items: center;
  box-shadow: 0 8px 18px -10px rgba(42,50,50,0.55);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.contact-list li:hover .ci-ic {
  box-shadow: 0 12px 24px -8px rgba(42,50,50,0.6);
  transform: translateY(-1px);
}
.ci-ic svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.ci-txt { display: flex; flex-direction: column; gap: 3px; }
.ci-txt small { font-family: var(--sans); font-weight: 500; font-size: 0.88rem; letter-spacing: normal; text-transform: none; color: #8a938f; }
.ci-txt a, .ci-txt > span { font-family: var(--sans); font-size: 1.02rem; font-weight: 500; color: var(--ink); text-decoration: none; transition: color 0.3s ease; }
.ci-txt a:hover { color: var(--vert); }
.contact-form {
  background: #fff; border: 1px solid var(--hairline); border-radius: 24px;
  padding: clamp(2rem, 3vw, 3rem);
  box-shadow: 0 24px 60px rgba(42,50,50,0.08);
}
/* bouton d'envoi plein vert sauge */
.contact-form .btn { background: var(--vert); border-color: var(--vert); color: #fff; }
.contact-form .btn:hover { background: #2a3232; border-color: #2a3232; color: #fff; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Animations de révélation ---------- */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }

/* ---------- Pied de page ---------- */
footer {
  border-top: 1px solid var(--hairline);
  margin-top: 7rem;
  padding: 4.5rem 2rem 2.5rem;
  text-align: center;
}
.footer-links { display: flex; gap: 2.2rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.2rem; }
.footer-links a {
  font-family: var(--sans); font-weight: 500;
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink); opacity: 0.7; text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.footer-links a:hover { color: var(--vert); opacity: 1; }
.footer-contact { display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.footer-contact a { font-size: 0.9rem; color: var(--ink); text-decoration: none; }
.footer-contact a:hover { color: var(--vert); }
.footer-base {
  font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--detail); padding-top: 1rem;
}

/* titre d'introduction de la page Services (thème « viseur » doré) */
.svc-intro {
  text-align: center; max-width: 900px; margin: 0 auto;
  padding: clamp(3.6rem, 7vw, 6.5rem) 2rem clamp(2.4rem, 4.5vw, 3.8rem);
}
.svc-intro .mark {
  display: inline-block; position: relative; width: 24px; height: 24px; margin-bottom: 1.5rem;
}
.svc-intro .mark::before, .svc-intro .mark::after { content: ""; position: absolute; background: #c99b3f; }
.svc-intro .mark::before { left: 50%; top: 0; bottom: 0; width: 1.5px; transform: translateX(-50%); }
.svc-intro .mark::after  { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.svc-intro h1 {
  font-family: var(--serif); font-weight: 400; text-transform: none;
  font-size: clamp(2.2rem, 1.4rem + 3vw, 3.9rem);
  line-height: 1.08; letter-spacing: 0.01em; color: var(--ink);
}
.svc-intro h1 em { font-style: italic; }
.svc-intro .sub {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.15rem); color: #8a938f; margin-top: 1.1rem;
}

/* ---------- Sections « split » par service (page Services) ---------- */
/* onglets des services : une seule fiche visible à la fois */
.svc-tabs {
  display: flex; justify-content: center; gap: clamp(1.2rem, 3vw, 2.2rem); flex-wrap: wrap;
  max-width: 1100px; margin: 0 auto clamp(2.6rem, 4vw, 4rem); padding: 0 1.5rem;
}
.svc-tabs button {
  background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-weight: 600;
  font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: #6b746f; padding: 0.55rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.svc-tabs button:hover { color: var(--ink); }
.svc-tabs button.actif { color: var(--ink); border-bottom-color: var(--ink); }
.svc:not(.actif) { display: none; }

/* chaque service = panneau arrondi crème, espacé du suivant (séparation claire) */
.svc {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1.32fr;
  gap: clamp(1.8rem, 3.5vw, 3.4rem);
  align-items: stretch;
  max-width: min(1440px, calc(100% - 3rem));
  margin: clamp(3rem, 4.5vw, 4.4rem) auto clamp(1.4rem, 3vw, 2.4rem);
  padding: clamp(1.8rem, 2.5vw, 2.6rem);
  background: #ffffff;
  border: 1px solid rgba(42,50,50,0.14);
  border-radius: 24px;
  box-shadow: 0 2px 4px rgba(42,50,50,0.05), 0 40px 80px -38px rgba(42,50,50,0.26);
}
/* image en carte arrondie plus grande, ombre douce (plus de crochets) */
.svc-media {
  order: 2;                     /* image toujours à droite */
  position: relative; overflow: hidden;
  border-radius: 14px; min-height: 520px;   /* hauteur commune à toutes les fiches */
  background: var(--accent-bg);
  box-shadow: 0 22px 44px -24px rgba(42,50,50,0.32);
}
.svc-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .6s ease; }
.svc-media img.actif { opacity: 1; }
/* galerie par service : flèches (au survol) + points */
.svc-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 40px; height: 40px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,0.86); color: #2a3232;
  display: grid; place-items: center;
  opacity: 0; transition: opacity .3s ease, background .3s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.20);
}
.svc-media:hover .svc-arrow, .svc-arrow:focus-visible { opacity: 1; }
.svc-arrow:hover { background: #fff; }
.svc-prev { left: 12px; }
.svc-next { right: 12px; }
.svc-arrow::before {
  content: ""; width: 8px; height: 8px;
  border-top: 2px solid currentColor; border-right: 2px solid currentColor;
}
.svc-prev::before { transform: rotate(-135deg); margin-left: 3px; }
.svc-next::before { transform: rotate(45deg); margin-right: 3px; }
.svc-dots {
  position: absolute; left: 0; right: 0; bottom: 12px; z-index: 3;
  display: flex; gap: 7px; justify-content: center;
}
.svc-dot {
  width: 7px; height: 7px; border-radius: 50%; border: none; padding: 0; cursor: pointer;
  background: rgba(255,255,255,0.6); box-shadow: 0 1px 3px rgba(0,0,0,0.35);
  transition: background .3s ease, transform .3s ease;
}
.svc-dot { transition: background .3s ease, width .3s ease; }
.svc-dot.actif { background: #fff; width: 20px; border-radius: 4px; }
/* alternance : image à droite ET colonne large côté image (même taille de photo partout) */
.svc--flip { grid-template-columns: minmax(0, 1fr) 1.32fr; }
.svc--flip .svc-media { order: 2; }
.svc-body {
  display: flex; flex-direction: column;
  padding: 0.3rem 0 1.6rem;
}
.svc-inner { display: flex; flex-direction: column; justify-content: flex-start; flex: 1 1 auto; }
.svc-num { display: none; }                    /* pas de numéro dans cette maquette */
/* titre sur un coup de pinceau noir (bords irréguliers via SVG turbulence) */
.svc-title {
  align-self: center; display: inline-block; text-align: center;
  padding: 1rem 2.3rem; margin-bottom: 3.8rem;
  background: #e7c98f; border-radius: 999px;
  box-shadow: 0 12px 26px -12px rgba(42,50,50,0.28);
  font-family: var(--sans); font-weight: 600; text-transform: uppercase;
  font-size: clamp(0.78rem, 0.58rem + 0.7vw, 1.05rem);
  line-height: 1; letter-spacing: 0.22em; color: var(--ink);
  white-space: nowrap;
}
.svc-gold { display: none; }   /* le titre est maintenant encadré (crochets dorés) */
.svc-eyebrow { display: none; }
.svc-desc {
  font-family: var(--sans); font-weight: 400;
  font-size: 1rem; line-height: 1.9; color: #5c6763; max-width: 34rem;
}
.svc-features { margin-top: auto; padding-top: 2rem; border-top: 1px solid var(--hairline); display: grid; grid-template-columns: 1fr 1fr; column-gap: 0; row-gap: 1.6rem; }
.svc-feature { display: flex; align-items: flex-start; gap: 0.95rem; padding-right: 1.4rem; }
.svc-feature + .svc-feature { border-left: 1px solid var(--hairline); padding-left: 1.4rem; padding-right: 0; }
/* icône dans une tuile claire arrondie (façon maquette) */
.svc-ic {
  flex: none; box-sizing: content-box;
  width: 22px; height: 22px; padding: 13px;
  border-radius: 12px;
  background: #e7c98f;
  box-shadow: 0 6px 14px rgba(42,50,50,0.09), inset 0 0 0 1px rgba(255,255,255,0.5);
  stroke: #2a3232; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
  transition: box-shadow .3s ease;
}
.svc-feature:hover .svc-ic { box-shadow: 0 10px 20px rgba(42,50,50,0.12), inset 0 0 0 1px rgba(255,255,255,0.85); }
.svc-feature h3 {
  font-family: var(--sans); font-weight: 600; text-transform: none;
  font-size: 0.95rem; letter-spacing: 0.01em; color: var(--ink); margin: 0 0 0.25rem;
}
.svc-feature p {
  font-family: var(--sans); font-weight: 400; font-size: 0.86rem;
  line-height: 1.55; color: #6e7873; margin: 0;
}
/* séparation par l'espace (maquette épurée) — plus de réticule */
.svc-sep { display: none; }
/* ===== Variante moderne (test) : image élargie + carte texte flottante qui chevauche ===== */
.svc--v2 { grid-template-columns: 1.6fr 1fr; align-items: center; }
.svc--v2 .svc-media { aspect-ratio: 16 / 10; }
.svc--v2 .svc-body {
  position: relative; z-index: 2;
  margin-left: clamp(-4.5rem, -5vw, -2.5rem);
  background: #ffffff; border-radius: 22px;
  padding: clamp(1.7rem, 2.4vw, 2.6rem);
  box-shadow: 0 30px 70px rgba(42,50,50,0.16), 0 6px 18px rgba(42,50,50,0.07);
}
@media (max-width: 900px) {
  .svc--v2 .svc-body { margin: -2.6rem 1rem 0; }
}

@media (max-width: 900px) {
  .svc {
    grid-template-columns: 1fr; gap: 1.6rem;
    padding: 1.2rem;
  }
  .svc-media, .svc--flip .svc-media { order: 0; min-height: 240px; }
  .svc-arrow { opacity: 1; }
  .svc-features { grid-template-columns: 1fr; }
  .svc-body { padding: 0.8rem 0.8rem 1.2rem; }
}
