/* ═══════════════════════════════════════════
   CLEAN DÉBARRAS OCCITANIE — styles.css
   ═══════════════════════════════════════════ */

:root {
  --bg: #FAF8F4;
  --bg-tint: #F3EADD;
  --ink: #0B1B33;
  --ink-soft: #4A5A75;
  --primary: #17335F;
  --primary-deep: #0C2247;
  --accent: #E9D6B4;
  --accent-soft: #F6EDDF;
  --white: #FFFFFF;
  --line: rgba(11, 27, 51, 0.1);
  --line-light: rgba(255, 255, 255, 0.12);
  --radius: 22px;
  --radius-lg: 32px;
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
  --font-ui: 'Inter', 'Helvetica Neue', sans-serif;
  --font-script: 'Petit Formal Script', 'Snell Roundhand', cursive;
  --font-serif: 'Petit Formal Script', 'Snell Roundhand', cursive;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-family: var(--font-script); font-style: normal; font-weight: 400; font-size: 0.86em; line-height: 1.3; padding-left: 0.06em; }

.container {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}
.container--narrow { width: min(860px, calc(100% - 48px)); }

.section { padding: clamp(90px, 12vw, 150px) 0; position: relative; }
.section--dark {
  background: var(--ink);
  color: #E6ECF6;
}
.section--tint { background: var(--bg-tint); }

/* ─── Typographie ─── */
.section__head { max-width: 720px; margin-bottom: clamp(48px, 6vw, 80px); }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5.2vw, 4.1rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.005em;
  margin: 18px 0 20px;
}
.section__title em { color: var(--primary); }
.section--dark .section__title em { color: var(--accent); }
.section__sub { color: var(--ink-soft); font-size: 1.08rem; max-width: 600px; }
.section--dark .section__sub, .section--dark p { color: rgba(230, 236, 246, 0.75); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary);
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--white);
}
.eyebrow--light { color: var(--accent); background: rgba(255,255,255,0.05); border-color: var(--line-light); }

/* ─── Préloader ─── */
.preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--ink);
  display: grid; place-items: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader__inner { text-align: center; }
.preloader__word {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6.4vw, 3.7rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 24px;
  animation: preloaderPulse 1.2s var(--ease) infinite alternate;
}
@keyframes preloaderPulse { from { opacity: 0.55; } to { opacity: 1; } }
.preloader__bar {
  display: block; width: 180px; height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px; overflow: hidden;
  margin-inline: auto;
}
.preloader__progress {
  display: block; height: 100%; width: 0;
  background: var(--accent);
  border-radius: 3px;
  transition: width 0.3s ease;
}

/* ─── Curseur custom ─── */
.cursor, .cursor-follower {
  position: fixed; top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999;
  transform: translate(-50%, -50%);
}
.cursor {
  width: 8px; height: 8px;
  background: var(--primary);
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(14, 122, 95, 0.4);
  transition: width 0.3s, height 0.3s, border-color 0.3s, background 0.3s;
}
.cursor-follower.hovering {
  width: 60px; height: 60px;
  background: rgba(233, 214, 180, 0.18);
  border-color: var(--accent);
}
@media (hover: none), (max-width: 900px) {
  .cursor, .cursor-follower { display: none; }
}

/* ─── Boutons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  padding: 15px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s, color 0.3s;
  will-change: transform;
}
.btn--lg { padding: 18px 32px; font-size: 1rem; }
.btn--primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(14, 122, 95, 0.28);
}
.btn--primary:hover {
  background: var(--primary-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(14, 122, 95, 0.38);
}
.btn--accent {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(233, 214, 180, 0.25);
}
.btn--accent:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(233, 214, 180, 0.4); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn svg { transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: padding 0.4s var(--ease), background 0.4s, box-shadow 0.4s;
}
.header.scrolled {
  padding: 12px 0;
  background: rgba(246, 245, 240, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}
.header__inner {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo__mark {
  width: 46px; height: 42px;
  display: grid; place-items: center;
  color: var(--primary);
  transition: transform 0.5s var(--ease);
}
.logo__mark svg { width: 100%; height: auto; }
.logo:hover .logo__mark { transform: translateY(-3px) rotate(-4deg); }
.logo__text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  color: var(--ink);
}
.logo__text small {
  display: block;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.5rem;
  letter-spacing: 0.42em;
  color: var(--ink-soft);
  margin-top: 3px;
}
.section--dark .logo__mark, .footer .logo__mark { color: var(--accent); }
.section--dark .logo__text, .footer .logo__text { color: var(--white); }
.footer .logo__text small { color: rgba(255,255,255,0.55); }

.nav { display: flex; align-items: center; gap: 34px; }
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
  transition: opacity 0.25s;
}
.nav__phone svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.nav__phone:hover { opacity: 0.7; }
.nav__link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.25s;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.35s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { width: 100%; }
.nav__cta { padding: 12px 22px; font-size: 0.9rem; }

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none; border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 102;
}
.burger span {
  width: 26px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.burger.open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* ─── Hero ─── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  animation: blobFloat 14s ease-in-out infinite alternate;
}
.hero__blob--1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(233, 214, 180, 0.65), transparent 65%);
  top: -140px; right: -80px;
}
.hero__blob--2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(14, 122, 95, 0.28), transparent 65%);
  bottom: -160px; left: -120px;
  animation-delay: -6s;
}
.hero__blob--contact {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(233, 214, 180, 0.16), transparent 65%);
  top: -180px; right: -100px;
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: blobFloat 14s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes blobFloat {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-40px, 40px) scale(1.12); }
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 20%, transparent 75%);
  opacity: 0.5;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  position: relative;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 9px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  box-shadow: 0 4px 16px rgba(12, 31, 25, 0.05);
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  position: relative;
}
.pulse-dot::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1.5px solid var(--primary);
  animation: ping 1.8s ease-out infinite;
}
@keyframes ping {
  from { transform: scale(0.6); opacity: 1; }
  to { transform: scale(1.8); opacity: 0; }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 6.6vw, 5.4rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.005em;
  margin-bottom: 26px;
}
.hero__title em { color: var(--primary); }
.hero__accent { font-style: italic; color: var(--primary); }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line span {
  display: block;
  transform: translateY(110%);
  animation: lineUp 1s var(--ease) forwards;
}
.hero__title .line:nth-child(2) span { animation-delay: 0.12s; }
.hero__title .line:nth-child(3) span { animation-delay: 0.24s; }
@keyframes lineUp { to { transform: translateY(0); } }

.hero__script {
  font-family: var(--font-script);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.5;
  color: var(--primary);
  margin-bottom: 22px;
}
.hero__sub {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero__pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.hero__pills li {
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--primary);
  background: var(--accent-soft);
  border: 1px solid rgba(23, 51, 95, 0.12);
  padding: 6px 14px;
  border-radius: 100px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}
.hero__trust { display: block; }
.hero__trust p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.5; }
.hero__trust strong { color: var(--ink); }
.avatars { display: flex; }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 3px solid var(--bg);
  background-size: cover;
  background-position: center;
  margin-left: -12px;
}
.avatar:first-child { margin-left: 0; }
.avatar--more {
  background: var(--accent);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
}

.hero__visual { position: relative; height: clamp(420px, 46vw, 620px); }
.hero__card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(12, 31, 25, 0.22);
}
.hero__card img { width: 100%; height: 100%; object-fit: cover; }
.hero__card--main {
  top: 0; right: 0;
  width: 82%; height: 84%;
  animation: floatY 7s ease-in-out infinite alternate;
}
.hero__card--float1 {
  bottom: 0; left: 0;
  width: 44%; height: 40%;
  border: 6px solid var(--bg);
  animation: floatY 7s ease-in-out infinite alternate-reverse;
}
@keyframes floatY {
  from { transform: translateY(0); }
  to { transform: translateY(-16px); }
}
.hero__chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 18px;
  padding: 12px 18px;
  box-shadow: 0 16px 40px rgba(12, 31, 25, 0.14);
  animation: floatY 6s ease-in-out infinite alternate;
}
.hero__chip strong { display: block; font-family: var(--font-display); font-size: 0.9rem; }
.hero__chip span { font-size: 0.78rem; color: var(--ink-soft); }
.hero__chip-icon {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  flex: none;
}
.hero__chip-icon svg { width: 19px; height: 19px; }
.hero__chip--1 { top: 8%; left: -4%; animation-delay: -2s; }
.hero__chip--2 { bottom: 26%; right: -3%; animation-delay: -4s; }

.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero__scroll-line {
  width: 1.5px; height: 42px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 50%;
  background: var(--primary);
  animation: scrollLine 1.8s var(--ease) infinite;
}
@keyframes scrollLine {
  from { transform: translateY(-100%); }
  to { transform: translateY(220%); }
}

/* ─── Marquee ─── */
.marquee {
  background: var(--ink);
  color: var(--accent);
  padding: 20px 0;
  overflow: hidden;
  transform: rotate(-1.2deg) scale(1.02);
  position: relative;
  z-index: 2;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.marquee__track i { font-style: normal; opacity: 0.6; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── Stats ─── */
.stats { padding: clamp(70px, 9vw, 110px) 0 clamp(30px, 4vw, 50px); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(11, 27, 51, 0.1);
}
.stat__number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
  display: block;
  line-height: 1.1;
}
.stat__label {
  display: block;
  font-weight: 600;
  margin-top: 10px;
  font-size: 0.98rem;
}
.stat__hint { display: block; font-size: 0.82rem; color: var(--ink-soft); margin-top: 2px; }

/* ─── Services ─── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  will-change: transform;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(12, 31, 25, 0.14);
}
.service-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}
.service-card--wide .service-card__img {
  height: 100%;
  min-height: 260px;
}
.service-card--wide .service-card__body {
  padding: 40px 44px;
  align-self: center;
}
.service-card--wide .service-card__num {
  top: 32px;
  right: 32px;
}
.service-card--wide h3 { padding-right: 84px; }
.service-card__opt {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  background: var(--accent-soft);
  border: 1px solid rgba(23, 51, 95, 0.14);
  border-radius: 100px;
  padding: 3px 9px;
}
.service-card--alt { direction: rtl; }
.service-card--alt > * { direction: ltr; }
.service-card--wide p { max-width: 560px; }
.service-card__img {
  height: 210px;
  overflow: hidden;
  position: relative;
}
.service-card__img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12, 31, 25, 0.25), transparent 55%);
}
.service-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.service-card:hover .service-card__img img { transform: scale(1.07); }
.service-card__body { padding: 28px; position: relative; }
.service-card__num {
  position: absolute;
  top: -26px; right: 24px;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--accent);
  border-radius: 16px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  box-shadow: 0 10px 24px rgba(23, 51, 95, 0.18);
  transition: transform 0.4s var(--ease);
}
.service-card:hover .service-card__num { transform: rotate(-8deg) scale(1.08); }
.service-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.service-card__body p { color: var(--ink-soft); font-size: 0.94rem; margin-bottom: 16px; }
.service-card__tag {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--bg-tint);
  padding: 6px 14px;
  border-radius: 100px;
}

/* ─── Méthode ─── */
.method__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
  margin-bottom: clamp(60px, 8vw, 100px);
}
.method__num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.6rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent);
  line-height: 1;
  display: block;
}
.method__line {
  height: 1px;
  background: var(--line-light);
  margin: 22px 0;
  position: relative;
  overflow: hidden;
}
.method__line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s var(--ease) 0.3s;
}
.method__step.visible .method__line::after { transform: scaleX(1); }
.method__step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--white);
}
.method__step p { font-size: 0.95rem; }

.method__quote {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  padding-top: clamp(30px, 4vw, 50px);
  border-top: 1px solid var(--line-light);
}
.method__quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  line-height: 1.35;
  color: var(--white) !important;
  margin-bottom: 18px;
}
.method__quote em { color: var(--accent); }
.method__quote span { font-size: 0.9rem; color: rgba(230, 236, 246, 0.6); }

/* ─── Engagements ─── */
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.3s;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(11, 27, 51, 0.1);
  border-color: transparent;
}
.value-card:hover::before { transform: scaleX(1); }
.value-card__icon {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  background: var(--primary);
  color: var(--accent-soft);
  border-radius: 50%;
  margin-bottom: 22px;
  transition: transform 0.4s var(--ease), background 0.3s;
}
.value-card__icon svg { width: 27px; height: 27px; }
.value-card:hover .value-card__icon { transform: translateY(-3px); background: var(--primary-deep); }
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.value-card p { font-size: 0.92rem; color: var(--ink-soft); }

/* ─── Galerie ─── */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 20px;
}
.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 24px 20px;
  background: linear-gradient(to top, rgba(12, 31, 25, 0.82), transparent);
  color: var(--white);
  transform: translateY(12px);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s;
}
.gallery__item:hover figcaption { transform: translateY(0); opacity: 1; }
.gallery__item figcaption strong { display: block; font-family: var(--font-display); font-size: 1.05rem; }
.gallery__item figcaption span { font-size: 0.82rem; opacity: 0.8; }

/* ─── Témoignages ─── */
.slider { max-width: 820px; margin-inline: auto; overflow: hidden; }
.slider__track {
  display: flex;
  transition: transform 0.7s var(--ease);
}
.testimonial {
  min-width: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  text-align: center;
}
.testimonial__stars {
  color: #C9A24C;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  margin-bottom: 22px;
}
.testimonial p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  line-height: 1.45;
  margin-bottom: 26px;
}
.testimonial footer strong { display: block; font-family: var(--font-display); }
.testimonial footer span { font-size: 0.85rem; color: var(--ink-soft); }
.slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 30px;
}
.slider__btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease), border-color 0.3s;
}
.slider__btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: scale(1.08);
}
.slider__dots { display: flex; gap: 8px; }
.slider__dot {
  width: 8px; height: 8px;
  border-radius: 100px;
  background: var(--line);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width 0.35s var(--ease), background 0.3s;
}
.slider__dot.active { width: 26px; background: var(--primary); }

/* ─── Zone ─── */
.zone__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.zone__content > p { margin: 0 0 28px; max-width: 480px; }
.zone__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.zone__cities li {
  font-size: 0.88rem;
  font-weight: 500;
  padding: 9px 18px;
  border: 1px solid var(--line-light);
  border-radius: 100px;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}
.zone__cities li:hover {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.zone__visual { display: grid; place-items: center; }
.zone__circle {
  width: clamp(220px, 24vw, 300px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px solid var(--line-light);
  display: grid;
  place-content: center;
  text-align: center;
  position: relative;
}
.zone__circle strong {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 6vw, 5rem);
  color: var(--accent);
  line-height: 1;
}
.zone__circle > span:not(.zone__ping) { font-size: 0.9rem; color: rgba(230,236,246,0.7); margin-top: 6px; }
.zone__ping {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(233, 214, 180, 0.5);
  animation: zonePing 3.2s var(--ease) infinite;
}
.zone__ping--2 { animation-delay: 1.05s; }
.zone__ping--3 { animation-delay: 2.1s; }
@keyframes zonePing {
  from { transform: scale(1); opacity: 1; }
  to { transform: scale(1.45); opacity: 0; }
}

/* ─── FAQ ─── */
.faq__list { display: grid; gap: 14px; }
.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq__item[open] {
  border-color: rgba(14, 122, 95, 0.35);
  box-shadow: 0 12px 32px rgba(12, 31, 25, 0.07);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  transition: color 0.25s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--primary); }
.faq__icon {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bg-tint);
  position: relative;
  transition: background 0.3s, transform 0.4s var(--ease);
}
.faq__icon::before, .faq__icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.4s var(--ease), background 0.3s;
}
.faq__icon::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.faq__icon::after { width: 2px; height: 12px; transform: translate(-50%, -50%); }
.faq__item[open] .faq__icon { background: var(--accent); transform: rotate(180deg); }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__answer { padding: 0 26px; }
.faq__answer p { color: var(--ink-soft); font-size: 0.95rem; padding-bottom: 24px; max-width: 660px; }

/* ─── Contact ─── */
.contact { overflow: hidden; }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(44px, 6vw, 90px);
  align-items: start;
  position: relative;
}
.contact__content .section__title { margin-bottom: 18px; }
.contact__content > p { margin-bottom: 28px; max-width: 440px; }
.contact__points { display: grid; gap: 12px; margin-bottom: 36px; }
.contact__points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}
.contact__points li::before {
  content: '✓';
  flex: none;
  width: 24px; height: 24px;
  display: grid; place-items: center;
  background: var(--accent);
  color: var(--ink);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}
.contact__phone {
  display: inline-block;
  padding: 20px 28px;
  border: 1.5px solid var(--line-light);
  border-radius: var(--radius);
  transition: border-color 0.3s, background 0.3s, transform 0.35s var(--ease);
}
.contact__phone:hover {
  border-color: var(--accent);
  background: rgba(233, 214, 180, 0.07);
  transform: translateY(-3px);
}
.contact__phone span { display: block; font-size: 0.82rem; color: rgba(230,236,246,0.65); margin-bottom: 4px; }
.contact__phone strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--accent); letter-spacing: 0.01em; }

.form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  color: var(--ink);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form__field { margin-bottom: 16px; }
.form__field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--ink);
}
.form__field input,
.form__field select,
.form__field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 13px;
  background: var(--bg);
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  resize: vertical;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(14, 122, 95, 0.12);
}
.form__field input::placeholder, .form__field textarea::placeholder { color: #96A3BA; }
.form__submit { width: 100%; justify-content: center; margin-top: 6px; }
.section--dark .form__privacy { color: var(--ink-soft); }
.form__privacy svg { width: 13px; height: 13px; vertical-align: -2px; margin-right: 4px; }
.form__privacy {
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-top: 16px;
}
.form__privacy a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.form__privacy a:hover { color: var(--primary); }
.form__success {
  position: absolute;
  inset: 0;
  background: var(--white);
  display: grid;
  place-content: center;
  text-align: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}
.form.sent .form__success { opacity: 1; visibility: visible; }
.form__success span svg { width: 32px; height: 32px; stroke-width: 1.8; }
.form__success span {
  width: 72px; height: 72px;
  display: grid; place-items: center;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 auto 22px;
  animation: successPop 0.6s var(--ease);
}
@keyframes successPop {
  0% { transform: scale(0); }
  70% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.form__success h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 10px; }
.form__success p { color: var(--ink-soft); max-width: 320px; }

/* ─── Footer ─── */
.footer {
  background: var(--ink);
  color: rgba(230, 236, 246, 0.75);
  padding: clamp(60px, 8vw, 90px) 0 36px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-light);
}
.footer__brand p { font-size: 0.9rem; margin-top: 18px; max-width: 300px; }
.footer__col { display: grid; gap: 12px; align-content: start; }
.footer__col h4 {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 6px;
}
.footer__col a, .footer__col span { font-size: 0.92rem; transition: color 0.25s, transform 0.3s var(--ease); }
.footer__col a:hover { color: var(--white); transform: translateX(3px); }
.footer__bottom a { transition: color 0.25s; }
.footer__bottom a:hover { color: var(--accent); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 28px;
  font-size: 0.8rem;
  color: rgba(230, 236, 246, 0.5);
}


.services__more { display: flex; justify-content: center; margin-top: clamp(34px, 4vw, 52px); }
.service-card__body h3 a { transition: color 0.25s; }
.service-card__body h3 a:hover { color: var(--primary); }

/* ─── Icônes en trait ─── */
.value-card__icon svg,
.hero__chip-icon svg,
.footer__trust svg,
.form__privacy svg,
.form__success span svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 40px;
  padding-bottom: 40px;
  margin-bottom: 44px;
  border-bottom: 1px solid var(--line-light);
}
.footer__trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(230, 236, 246, 0.85);
}
.footer__trust svg { width: 20px; height: 20px; color: var(--accent); flex: none; }

/* ─── Animations reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ─── Responsive ─── */
@media (max-width: 1080px) {
  .services__grid, .values__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { height: 440px; max-width: 560px; }
  .hero { padding-top: 150px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    inset: 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s var(--ease), visibility 0.45s;
    z-index: 101;
  }
  .nav.open { opacity: 1; visibility: visible; }
  .nav__link { font-size: 1.5rem; font-family: var(--font-display); font-weight: 600; color: var(--ink); }
  .nav__phone { font-size: 1.15rem; }
  .burger { display: flex; }
  .method__steps { grid-template-columns: 1fr; }
  .zone__inner, .contact__inner { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .gallery__item--wide { grid-column: span 2; }
}

@media (max-width: 640px) {
  .services__grid, .values__grid, .stats__grid { grid-template-columns: 1fr; }
  .service-card--wide { grid-template-columns: 1fr; }
  .service-card--wide .service-card__img { min-height: 210px; }
  .service-card--wide .service-card__body { padding: 28px; }
  .service-card--wide .service-card__num { top: -26px; right: 24px; }
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery__item--wide { grid-column: span 1; }
  .gallery__item--tall { grid-row: span 1; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .hero__chip--1 { left: 0; }
  .hero__chip--2 { right: 0; }
  .hero__visual { height: 380px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__scroll { display: none; }
}

.gallery__note {
  margin-top: 26px;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--ink-soft);
  opacity: 0.8;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
