/* ============================================================
   Conciergerie de la Côte d'Émeraude
   Identité : marque de service premium, côtière & contemporaine
   Typo : Bricolage Grotesque (titres) + Hanken Grotesk (texte)
   Formes arrondies · porcelaine / bleu émeraude / terracotta
   ============================================================ */

:root {
  /* Couleurs */
  --porcelain: #F1EFE8;      /* fond général, blanc cassé frais */
  --paper: #FBFAF6;          /* surfaces / cartes */
  --ink: #14211F;            /* texte principal, vert-noir */
  --muted: #576B66;          /* texte secondaire */
  --emerald: #0B5A54;        /* bleu émeraude — couleur maîtresse */
  --emerald-700: #084440;
  --emerald-900: #06322F;
  --emerald-100: #DCEAE5;    /* teinte claire */
  --emerald-050: #EAF2EF;
  --clay: #C56A45;           /* terracotta — accent chaud */
  --clay-600: #A8542F;
  --sand: #E7DBC4;           /* sable */
  --line: rgba(20, 33, 31, 0.10);
  --line-strong: rgba(20, 33, 31, 0.16);
  --white: #FFFFFF;
  --whatsapp: #25A65A;
  --whatsapp-dark: #1C8548;

  /* Typo */
  --font-display: "Bricolage Grotesque", "Hanken Grotesk", sans-serif;
  --font-body: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Rayons */
  --r-xl: 30px;
  --r-lg: 22px;
  --r-md: 15px;
  --r-sm: 10px;

  /* Ombres */
  --shadow-sm: 0 2px 10px rgba(20, 33, 31, 0.06);
  --shadow-md: 0 14px 40px rgba(20, 33, 31, 0.10);
  --shadow-lg: 0 30px 70px rgba(6, 50, 47, 0.20);
  --shadow-emerald: 0 18px 44px rgba(11, 90, 84, 0.28);

  --section-pad: clamp(4.5rem, 9vw, 8rem);
}

/* ===== Reset & base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 110px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--porcelain);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  width: min(1200px, 100% - 2.5rem);
  margin-inline: auto;
}

/* ===== Typographie ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.h-xl { font-size: clamp(2.6rem, 6vw, 4.5rem); font-weight: 700; }
.h-lg { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
.h-md { font-size: clamp(1.7rem, 3vw, 2.4rem); }

em { font-style: normal; color: var(--clay); }
.on-emerald em { color: var(--sand); }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--muted);
  line-height: 1.6;
}

/* Pastille eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.95rem;
  background: var(--emerald-050);
  color: var(--emerald);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--clay);
}
.eyebrow--light { background: rgba(255,255,255,0.12); color: var(--sand); }
.eyebrow--clay { background: rgba(197,106,69,0.12); color: var(--clay-600); }

/* En-tête de section */
.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1.7rem; }
.section-head p { margin-top: 1.1rem; }

/* ===== Boutons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.18s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  touch-action: manipulation;
}
.btn svg { width: 1.2em; height: 1.2em; flex-shrink: 0; }
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--emerald); color: var(--white); box-shadow: var(--shadow-emerald); }
.btn--primary:hover { background: var(--emerald-700); transform: translateY(-2px); }

.btn--dark { background: var(--ink); color: var(--paper); }
.btn--dark:hover { background: #0c1a18; transform: translateY(-2px); }

.btn--whatsapp { background: var(--whatsapp); color: var(--white); }
.btn--whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-2px); }

.btn--light { background: var(--paper); color: var(--emerald); }
.btn--light:hover { background: var(--white); transform: translateY(-2px); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink); background: rgba(20,33,31,0.03); }

.btn--ghost-light { background: transparent; color: var(--paper); border-color: rgba(255,255,255,0.4); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); }

.btn--lg { padding: 1.1rem 2rem; font-size: 1rem; }
.btn--block { width: 100%; }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--emerald);
  transition: gap 0.2s ease, color 0.2s ease;
}
.textlink svg { width: 1.1em; height: 1.1em; transition: transform 0.2s ease; }
.textlink:hover { color: var(--clay-600); }
.textlink:hover svg { transform: translateX(3px); }

:focus-visible { outline: 3px solid var(--clay); outline-offset: 3px; border-radius: 4px; }

/* ===== Header flottant ===== */
.header {
  position: fixed;
  top: clamp(0.7rem, 2vw, 1.4rem);
  left: 0; right: 0;
  z-index: 100;
}
.header__bar {
  width: min(1200px, 100% - 1.5rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.6rem 0.7rem 0.6rem 1.2rem;
  background: rgba(251, 250, 246, 0.82);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}

.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand__mark {
  width: 42px; height: 42px;
  border-radius: 13px;
  background: var(--emerald);
  color: var(--sand);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}
.brand__mark svg { width: 24px; height: 24px; }
.brand__text {
  display: flex; flex-direction: column;
  line-height: 1.05;
}
.brand__text b {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand__text span {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.brand--light b { color: var(--paper); }
.brand--light span { color: rgba(241,239,232,0.6); }

.nav { display: flex; gap: 0.3rem; margin-left: auto; }
.nav a {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease, background 0.2s ease;
}
.nav a:hover { color: var(--ink); background: rgba(20,33,31,0.05); }

.header__cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: none; background: var(--emerald);
  color: var(--paper);
  border-radius: 50%;
  cursor: pointer;
  margin-left: auto;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: currentColor; border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding-top: clamp(8rem, 15vw, 11rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.hero__topo {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.07;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='96'%3E%3Cpath d='M0 24 Q30 6 60 24 T120 24 T180 24 T240 24' fill='none' stroke='%230B5A54' stroke-width='1.4'/%3E%3Cpath d='M0 72 Q30 54 60 72 T120 72 T180 72 T240 72' fill='none' stroke='%230B5A54' stroke-width='1.4'/%3E%3C/svg%3E");
  background-size: 240px 96px;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero__eyebrow { margin-bottom: 1.6rem; }
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 span { color: var(--emerald); }
.hero__sub { max-width: 32rem; margin-bottom: 2.2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 2.4rem; }
.hero__trust {
  display: flex; align-items: center; gap: 1rem;
  flex-wrap: wrap;
}
.hero__trust-stars { display: flex; flex-direction: column; gap: 0.15rem; }
.hero__trust .stars { width: 96px; height: 17px; color: var(--clay); }
.hero__trust-text { font-size: 0.9rem; color: var(--muted); }
.hero__trust-text b { color: var(--ink); font-weight: 700; }
.hero__trust-divider { width: 1px; height: 34px; background: var(--line-strong); }

/* Média hero */
.hero__media { position: relative; }
.hero__media-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 4.6;
}
.hero__media-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__blob {
  position: absolute;
  width: 55%; height: 55%;
  right: -8%; top: -8%;
  background: var(--clay);
  filter: blur(60px);
  opacity: 0.20;
  border-radius: 50%;
  z-index: -1;
}
.hero__card {
  position: absolute;
  left: -1.4rem; bottom: 1.8rem;
  background: var(--paper);
  border-radius: var(--r-md);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 0.85rem;
  max-width: 15rem;
}
.hero__card-badge {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px;
  background: var(--emerald);
  color: var(--sand);
  display: grid; place-items: center;
}
.hero__card-badge svg { width: 20px; height: 20px; }
.hero__card-txt b { display: block; font-family: var(--font-display); font-size: 1.05rem; }
.hero__card-txt span { font-size: 0.82rem; color: var(--muted); }

.stars { display: block; }

/* ===== Bandeau confiance ===== */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust__inner {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 0.8rem 2.2rem;
  padding: 1.4rem 0;
}
.trust__item {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.92rem; font-weight: 500; color: var(--muted);
}
.trust__item svg { width: 20px; height: 20px; color: var(--emerald); flex-shrink: 0; }
.trust__item b { color: var(--ink); font-weight: 700; }

/* ===== À propos ===== */
.about { padding-block: var(--section-pad); }
.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about__media { position: relative; }
.about__media img {
  width: 100%; border-radius: var(--r-lg);
  aspect-ratio: 4/4.4; object-fit: cover;
  box-shadow: var(--shadow-md);
}
.about__stamp {
  position: absolute;
  right: -1rem; bottom: -1rem;
  background: var(--clay);
  color: var(--paper);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about__stamp b { display: block; font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; line-height: 1; }
.about__stamp span { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.85; }
.about__text h2 { margin-bottom: 1.4rem; }
.about__text p { color: var(--muted); margin-bottom: 1.1rem; }
.about__text strong { color: var(--ink); font-weight: 700; }
.about__sign {
  display: flex; align-items: center; gap: 0.9rem;
  margin-top: 1.8rem; padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.about__sign-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--emerald); color: var(--sand);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem;
}
.about__sign b { font-family: var(--font-display); font-size: 1.1rem; }
.about__sign span { display: block; font-size: 0.85rem; color: var(--muted); }

/* ===== Services (bento) ===== */
.services { padding-block: var(--section-pad); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.svc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.8rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc__icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--emerald-050);
  color: var(--emerald);
  display: grid; place-items: center;
  margin-bottom: 1.2rem;
}
.svc__icon svg { width: 26px; height: 26px; stroke-width: 1.7; }
.svc h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.svc p { font-size: 0.95rem; color: var(--muted); line-height: 1.55; }

/* Tuile large (bento feature) */
.svc--wide {
  grid-column: span 2;
  background: var(--emerald);
  color: var(--paper);
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 1.6rem;
}
.svc--wide .svc__icon { background: rgba(255,255,255,0.14); color: var(--sand); }
.svc--wide h3 { color: var(--paper); font-size: 1.5rem; }
.svc--wide p { color: rgba(241,239,232,0.82); font-size: 1rem; max-width: 34rem; }
.svc--wide .svc__foot { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  display: inline-flex; align-items: center;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem; font-weight: 600;
  background: rgba(255,255,255,0.12); color: var(--sand);
}

/* ===== Méthode (stepper émeraude) ===== */
.method {
  background: var(--emerald);
  color: var(--paper);
  padding-block: var(--section-pad);
  position: relative;
  overflow: hidden;
}
.method__topo, .cta__topo {
  position: absolute; inset: 0; opacity: 0.08; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='96'%3E%3Cpath d='M0 24 Q30 6 60 24 T120 24 T180 24 T240 24' fill='none' stroke='%23E7DBC4' stroke-width='1.4'/%3E%3Cpath d='M0 72 Q30 54 60 72 T120 72 T180 72 T240 72' fill='none' stroke='%23E7DBC4' stroke-width='1.4'/%3E%3C/svg%3E");
  background-size: 240px 96px;
}
.method .container { position: relative; z-index: 1; }
.method .eyebrow { background: rgba(255,255,255,0.12); color: var(--sand); }
.method h2 { color: var(--paper); }
.method .section-head p { color: rgba(241,239,232,0.8); }
.method__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  counter-reset: step;
}
.step { position: relative; padding-top: 4rem; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; top: 0; left: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--sand); color: var(--emerald-900);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem;
}
.step::after {
  content: "";
  position: absolute; top: 23px; left: 46px; right: -1.2rem;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.35) 0 6px, transparent 6px 12px);
}
.step:last-child::after { display: none; }
.step h3 { color: var(--paper); font-size: 1.2rem; margin-bottom: 0.45rem; }
.step p { color: rgba(241,239,232,0.78); font-size: 0.92rem; line-height: 1.5; }

/* ===== Bandeau propriétaires / valeur ===== */
.value { padding-block: var(--section-pad); }
.value__panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.value__text h2 { margin-bottom: 1.2rem; }
.value__text p { color: var(--muted); margin-bottom: 1.8rem; max-width: 32rem; }
.value__list { display: grid; gap: 0.7rem; }
.value__list li {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 0.9rem 1.1rem;
  background: var(--emerald-050);
  border-radius: var(--r-md);
  font-weight: 600; color: var(--ink);
}
.value__list svg { width: 22px; height: 22px; color: var(--emerald); flex-shrink: 0; }

/* ===== Portfolio (rail horizontal) ===== */
.fleet { padding-block: var(--section-pad); }
.fleet__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.fleet__head .section-head { margin-bottom: 0; }
.fleet__rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(340px, 82vw);
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: max((100vw - 1200px) / 2, 1.25rem);
  padding-bottom: 1.2rem;
  margin-inline: calc(-1 * max((100vw - 1200px) / 2, 1.25rem));
  padding-inline: max((100vw - 1200px) / 2, 1.25rem);
  scrollbar-width: none;
}
.fleet__rail::-webkit-scrollbar { display: none; }
.estate {
  scroll-snap-align: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.estate:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.estate__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.estate__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.estate:hover .estate__media img { transform: scale(1.04); }
.estate__loc {
  position: absolute; top: 0.8rem; left: 0.8rem;
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  background: rgba(251,250,246,0.92);
  border-radius: 999px;
  font-size: 0.72rem; font-weight: 700; color: var(--ink);
  backdrop-filter: blur(6px);
}
.estate__loc svg { width: 13px; height: 13px; color: var(--clay); }
.estate__rating {
  position: absolute; top: 0.8rem; right: 0.8rem;
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.35rem 0.65rem;
  background: var(--ink); color: var(--paper);
  border-radius: 999px;
  font-size: 0.76rem; font-weight: 700;
}
.estate__rating svg { width: 12px; height: 12px; color: var(--sand); }
.estate__body { padding: 1.3rem 1.3rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.estate__body h3 { font-size: 1.22rem; margin-bottom: 0.4rem; }
.estate__body p { font-size: 0.92rem; color: var(--muted); margin-bottom: 1.1rem; flex: 1; }
.estate__foot { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; }
.estate__tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.estate__tags span {
  padding: 0.25rem 0.6rem; border-radius: 999px;
  font-size: 0.7rem; font-weight: 600;
  background: var(--emerald-050); color: var(--emerald);
}
.fleet__hint { font-size: 0.85rem; color: var(--muted); display: inline-flex; align-items: center; gap: 0.4rem; }
.fleet__hint svg { width: 18px; height: 18px; }

/* ===== Avis ===== */
.reviews { padding-block: var(--section-pad); background: var(--emerald-050); }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.rev {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.rev__quote { font-family: var(--font-display); font-size: 2.6rem; line-height: 0.6; color: var(--emerald-100); margin-bottom: 0.6rem; }
.rev__stars { width: 92px; height: 16px; color: var(--clay); margin-bottom: 1rem; }
.rev p { font-size: 1.02rem; color: var(--ink); line-height: 1.55; margin-bottom: 1.4rem; flex: 1; }
.rev__author { display: flex; align-items: center; gap: 0.7rem; }
.rev__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--emerald); color: var(--sand);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700;
}
.rev__author b { font-size: 0.95rem; font-weight: 700; }
.rev__author span { display: block; font-size: 0.82rem; color: var(--muted); }

/* ===== Lieux / côte d'émeraude ===== */
.places { padding-block: var(--section-pad); }
.places__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.place {
  border-radius: var(--r-lg);
  padding: 1.6rem;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.place:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.place__tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--clay-600); }
.place h3 { font-size: 1.25rem; margin: 0.7rem 0 0.5rem; }
.place p { font-size: 0.92rem; color: var(--muted); line-height: 1.5; }

/* ===== CTA estimation ===== */
.cta { padding-block: var(--section-pad); }
.cta__panel {
  position: relative;
  overflow: hidden;
  background: var(--emerald);
  color: var(--paper);
  border-radius: var(--r-xl);
  padding: clamp(2.6rem, 6vw, 5rem) clamp(1.6rem, 5vw, 4rem);
  text-align: center;
  box-shadow: var(--shadow-emerald);
}
.cta__inner { position: relative; z-index: 1; max-width: 42rem; margin-inline: auto; }
.cta .eyebrow { background: rgba(255,255,255,0.12); color: var(--sand); margin-bottom: 1.4rem; }
.cta h2 { color: var(--paper); margin-bottom: 1.1rem; }
.cta p { color: rgba(241,239,232,0.85); margin-bottom: 2rem; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }

/* ===== FAQ ===== */
.faq { padding-block: var(--section-pad); }
.faq__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.faq__aside h2 { margin-bottom: 1rem; }
.faq__aside p { color: var(--muted); margin-bottom: 1.6rem; }
.faq__list { display: grid; gap: 0.8rem; }
.qa {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.qa[open] { border-color: transparent; box-shadow: var(--shadow-sm); }
.qa summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.3rem;
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 600;
  cursor: pointer;
}
.qa summary::-webkit-details-marker { display: none; }
.qa__plus { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.qa__plus::before, .qa__plus::after {
  content: ""; position: absolute; background: var(--emerald);
  border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.qa__plus::before { width: 16px; height: 2px; }
.qa__plus::after { width: 2px; height: 16px; transition: transform 0.25s ease; }
.qa[open] .qa__plus::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.qa p { padding: 0 1.3rem 1.3rem; color: var(--muted); font-size: 0.96rem; }

/* ===== Contact ===== */
.contact { padding-block: var(--section-pad); background: var(--emerald-050); }
.contact__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact__info h2 { margin-bottom: 1rem; }
.contact__info > p { color: var(--muted); margin-bottom: 2rem; }
.contact__channels { display: grid; gap: 0.7rem; }
.contact__channels li {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 1rem 1.1rem;
  background: var(--paper);
  border-radius: var(--r-md);
  font-weight: 600;
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}
.contact__channels li:hover { transform: translateX(3px); box-shadow: var(--shadow-sm); }
.contact__channels .ico {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 12px;
  background: var(--emerald-050); color: var(--emerald);
  display: grid; place-items: center;
}
.contact__channels .ico svg { width: 20px; height: 20px; }
.contact__channels b { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); }
.contact__channels span { color: var(--ink); font-weight: 600; }

.contact__form {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.82rem; font-weight: 700; margin-bottom: 0.4rem; }
.field label span { color: var(--clay); }
.field label small { color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px;
  padding: 0.75rem 0.95rem;
  font-family: var(--font-body); font-size: 1rem;
  color: var(--ink); background: var(--porcelain);
  border: 1.5px solid transparent;
  border-radius: var(--r-sm);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--emerald); background: var(--white);
}
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { margin-top: 1rem; padding: 0.9rem 1.1rem; border-radius: var(--r-sm); font-weight: 600; font-size: 0.94rem; }
.form-error { background: #F6E1D8; color: #9A3D1E; }
.form-success { background: var(--emerald-100); color: var(--emerald-700); }

/* ===== Footer ===== */
.footer { background: var(--emerald-900); color: rgba(241,239,232,0.82); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
}
.footer__brand p { margin-top: 1.2rem; font-size: 0.94rem; line-height: 1.6; max-width: 30rem; }
.footer h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sand); margin-bottom: 1.1rem; }
.footer__col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col a { font-size: 0.95rem; transition: color 0.2s ease; }
.footer__col a:hover { color: var(--sand); }
.footer__col p { font-size: 0.9rem; opacity: 0.7; margin-top: 0.3rem; }
.footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.6rem 2rem;
  padding-block: 1.6rem;
  border-top: 1px solid rgba(241,239,232,0.14);
  font-size: 0.84rem; opacity: 0.7;
}
.footer__bottom a:hover { color: var(--sand); }

/* ===== Modales légales ===== */
.legal {
  width: min(720px, calc(100% - 2rem));
  max-height: min(86vh, 86dvh);
  margin: auto; padding: 0; border: none;
  border-radius: var(--r-lg);
  background: var(--porcelain); color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.legal::backdrop { background: rgba(6,50,47,0.55); backdrop-filter: blur(3px); }
.legal__head {
  position: sticky; top: 0;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
  padding: 1.6rem clamp(1.4rem,4vw,2.2rem) 1.2rem;
  background: var(--porcelain);
  border-bottom: 1px solid var(--line);
}
.legal__head .eyebrow { margin-bottom: 0.5rem; }
.legal__head h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
.legal__date { font-size: 0.82rem; color: var(--muted); margin-top: 0.3rem; }
.legal__close {
  flex-shrink: 0; width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 12px; color: var(--ink); cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.legal__close:hover { background: var(--emerald); color: var(--paper); }
.legal__close svg { width: 18px; height: 18px; }
.legal__body { padding: 1.4rem clamp(1.4rem,4vw,2.2rem) 2.2rem; font-size: 0.95rem; color: var(--muted); }
.legal__body h3 { font-size: 1.2rem; color: var(--ink); margin: 1.7rem 0 0.6rem; }
.legal__body p { margin-bottom: 0.8rem; }
.legal__body ul { margin: 0 0 0.9rem 1.1rem; list-style: disc; }
.legal__body li { margin-bottom: 0.3rem; }
.legal__body a { color: var(--emerald); font-weight: 600; }
.legal__body strong { color: var(--ink); font-weight: 700; }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

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

/* Réaffirme le style des pastilles d'initiales (sinon écrasé par
   .rev__author span / .about__sign span, plus spécifiques). */
.rev__author .rev__avatar,
.about__sign .about__sign-avatar {
  display: grid;
  place-items: center;
  color: var(--sand);
}
.rev__author .rev__avatar { font-size: 1.05rem; }
.about__sign .about__sign-avatar { font-size: 1.15rem; }

/* ===== Rythme vertical harmonisé =====
   Ces sections claires suivent une autre section claire : on retire
   la marge haute pour ne pas doubler l'espace (gap uniforme partout). */
.services, .fleet, .cta, .faq { padding-top: 0; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .svc--wide { grid-column: span 2; }
  .method__steps { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.2rem; }
  .step::after { display: none; }
  .places__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; }
  .value__panel { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav, .header__cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.is-open {
    display: flex; flex-direction: column; gap: 0.2rem;
    position: absolute; top: calc(100% + 0.6rem); left: 0; right: 0;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 0.7rem;
    box-shadow: var(--shadow-md);
  }
  .nav.is-open a { padding: 0.9rem 1rem; font-size: 1rem; }
  .hero__grid, .about__grid, .contact__grid, .faq__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 460px; margin-inline: auto; }
  .about__text { order: -1; }
  .about__media { max-width: 460px; margin-inline: auto; }
  .faq__grid { gap: 2rem; }
}

@media (max-width: 620px) {
  .services__grid { grid-template-columns: 1fr; }
  .svc--wide { grid-column: span 1; }
  .method__steps { grid-template-columns: 1fr; }
  .places__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions .btn, .cta__actions .btn { width: 100%; }
  .header__bar { padding: 0.55rem 0.6rem 0.55rem 0.9rem; }
  .brand__mark { width: 38px; height: 38px; }
  .hero__card { left: 0.6rem; right: 0.6rem; max-width: none; }
  .about__stamp { right: 0.6rem; }
}
