@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Outfit:wght@200;300;400;500;600&display=swap');

/* ─── Design Tokens ────────────────────────────────────────── */
:root {
  /* Sage palette */
  --sage-100:    #F0F2ED;
  --sage-200:    #D8DDD1;
  --sage-300:    #B5BFA9;
  --sage-400:    #8B9A7E;
  --sage-500:    #6B7D5E;
  --sage-600:    #536348;
  --sage-700:    #3D4A35;
  --sage-800:    #2A3325;

  /* Warm neutrals */
  --cream:       #FAF8F5;
  --cream-2:     #F2EFE9;
  --cream-3:     #E8E4DB;
  --warm-white:  #FDFCFA;

  /* Ink system */
  --ink:         #1B1C19;
  --ink-90:      rgba(27,28,25,0.90);
  --ink-70:      rgba(27,28,25,0.70);
  --ink-50:      rgba(27,28,25,0.50);
  --ink-30:      rgba(27,28,25,0.30);
  --ink-15:      rgba(27,28,25,0.15);
  --ink-08:      rgba(27,28,25,0.08);
  --ink-04:      rgba(27,28,25,0.04);

  --white:       #FFFFFF;

  /* Typography */
  --serif:    'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:     'Outfit', -apple-system, sans-serif;

  /* Motion */
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:   cubic-bezier(0.33, 1, 0.68, 1);
  --ease-smooth: cubic-bezier(0.45, 0, 0.55, 1);

  /* Spacing */
  --nav-h: 88px;
  --banner-h: 40px;
  --section-y: 140px;
  --container-w: 1320px;
  --gutter: 56px;
}

/* ─── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  /* Account for fixed banner + nav on inner pages */
  padding-top: calc(var(--banner-h) + var(--nav-h));
}
/* Hero page: no padding-top since the hero handles its own spacing */
body:has(.hero) {
  padding-top: 0;
}
body.page-home {
  padding-top: 0;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }

/* ─── Container ────────────────────────────────────────────── */
.container { max-width: var(--container-w); margin: 0 auto; padding: 0 var(--gutter); }

@media (max-width: 768px) {
  :root { --section-y: 96px; --gutter: 28px; }
}

/* ─── Section ──────────────────────────────────────────────── */
.section { padding: var(--section-y) 0; }
.section--dark { background: var(--ink); color: var(--white); }
.section--cream { background: var(--cream-2); }
.section--sage { background: var(--sage-700); color: var(--white); }

/* ─── Typography ───────────────────────────────────────────── */
.t-label {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-500);
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--sage-400);
}

.section--dark .t-label,
.section--sage .t-label { color: var(--sage-300); }
.section--dark .t-label::before,
.section--sage .t-label::before { background: var(--sage-400); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-top: 18px;
}

.section-title em {
  font-style: italic;
  font-weight: 300;
}

.section-header { margin-bottom: 80px; }
.section-header--center { text-align: center; }
.section-header--center .t-label { justify-content: center; }

/* ─── Urgence Banner ──────────────────────────────────────── */
.urgence-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 102;
  background: var(--sage-700);
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-align: center;
  height: var(--banner-h);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.urgence-banner a {
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  transition: border-color 0.3s;
}

.urgence-banner a:hover { border-color: rgba(255,255,255,0.7); }

/* ─── Navigation ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: var(--banner-h);
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  height: var(--nav-h);
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 var(--ink-08);
  transition: height 0.4s var(--ease), top 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

/* Force container to fill nav full width */
.nav > .container {
  width: 100%;
  display: flex;
  align-items: center;
}

.nav.scrolled {
  height: 68px;
  box-shadow: 0 2px 16px rgba(27,28,25,0.07);
}
.nav.scrolled .nav__logo-img {
  height: 50px;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: height 0.4s var(--ease);
}

@media (max-width: 960px) {
  .nav__logo-img { height: 58px; }
}
@media (max-width: 640px) {
  .nav__logo-img { height: 50px; }
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.8vw, 56px);
}

.nav__links a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--ink-70);
  position: relative;
  transition: color 0.25s;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--sage-500);
  transition: width 0.35s var(--ease);
}

.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }
.nav__links a.active { color: var(--ink); font-weight: 500; }

.nav__phone {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--ink);
}

.nav__cta {
  background: var(--sage-600);
  color: var(--white) !important;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 6px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease) !important;
}

.nav__cta::after { display: none !important; }
.nav__cta:hover { background: var(--sage-800) !important; transform: translateY(-1px); }

/* Hamburger */
.nav__hamburger { display: none; flex-direction: column; gap: 6px; padding: 8px; z-index: 101; }
.nav__hamburger span { display: block; width: 26px; height: 1.5px; background: var(--ink); transition: transform 0.35s var(--ease), opacity 0.35s; transform-origin: center; }
.nav__hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 98;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.nav__mobile.open { display: flex; opacity: 1; pointer-events: all; }
.nav__mobile a {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.nav__mobile a:hover { color: var(--sage-600); }
.nav__mobile-phone {
  font-family: var(--sans) !important;
  font-size: 0.875rem !important;
  color: var(--ink-50) !important;
  font-weight: 400 !important;
  letter-spacing: 0.06em !important;
}

@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
}

/* ─── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn svg { width: 14px; height: 14px; transition: transform 0.35s var(--ease); flex-shrink: 0; }
.btn:hover svg { transform: translateX(4px); }

.btn--primary {
  background: var(--sage-600);
  color: var(--white);
  padding: 18px 36px;
  border-radius: 6px;
}
.btn--primary:hover { background: var(--sage-800); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(83,99,72,0.25); }

.btn--dark { background: var(--ink); color: var(--white); padding: 18px 36px; border-radius: 6px; }
.btn--dark:hover { background: var(--sage-700); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(27,28,25,0.2); }

.btn--outline { background: transparent; color: var(--ink); padding: 17px 35px; border: 1px solid var(--ink-30); border-radius: 6px; }
.btn--outline:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

.btn--outline-light { background: transparent; color: var(--white); padding: 17px 35px; border: 1px solid rgba(255,255,255,0.3); border-radius: 6px; }
.btn--outline-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

.btn--sage { background: var(--sage-500); color: var(--white); padding: 18px 36px; border-radius: 6px; }
.btn--sage:hover { background: var(--sage-700); transform: translateY(-2px); }

/* ─── Stats Bar ────────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--ink-08);
}

.stat {
  padding: 52px 24px;
  text-align: center;
  border-right: 1px solid var(--ink-08);
  position: relative;
}
.stat:last-child { border-right: none; }

.stat__value {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--sage-700);
}

.stat__label {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-top: 10px;
}

@media (max-width: 600px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid var(--ink-08); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
}

/* ─── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--white);
  padding: 48px 44px 44px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  border: 1px solid var(--ink-08);
  border-radius: 10px;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(27,28,25,0.07);
}

.card__eyebrow {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-500);
  margin-bottom: 20px;
}

.card__title {
  font-family: var(--serif);
  font-size: 1.625rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.card__text {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--ink-70);
  font-weight: 300;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-600);
  transition: gap 0.35s var(--ease);
}
.card__link:hover { gap: 16px; }

/* ─── Accordion ────────────────────────────────────────────── */
.accordion-item { border-bottom: 1px solid var(--ink-08); }

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  text-align: left;
  gap: 24px;
  transition: color 0.2s;
}

.accordion-trigger:hover { color: var(--sage-600); }

.accordion-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--sage-500);
  transition: transform 0.4s var(--ease);
}
.accordion-item.open .accordion-icon { transform: rotate(45deg); }

.accordion-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s var(--ease);
}
.accordion-item.open .accordion-body { max-height: 600px; }

.accordion-content {
  padding: 0 0 28px;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--ink-70);
  font-weight: 300;
  max-width: 700px;
}

/* ─── Marquee ──────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  background: var(--sage-700);
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}
.marquee-dot {
  width: 4px;
  height: 4px;
  background: var(--sage-300);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── Forms ────────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-label {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-50);
}

.form-input,
.form-select,
.form-textarea {
  background: var(--cream);
  border: 1px solid var(--ink-08);
  border-radius: 0;
  padding: 16px 20px;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--ink);
  width: 100%;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--sage-500);
  background: var(--white);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--ink-30); }
.form-textarea { resize: vertical; min-height: 140px; }

/* ─── Image containers ─────────────────────────────────────── */
.img-frame {
  position: relative;
  overflow: hidden;
  background: var(--cream-2);
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.img-frame:hover img { transform: scale(1.04); }

.img-frame--reveal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--sage-600);
  z-index: 2;
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 1s var(--ease);
}

.img-frame--reveal.visible::before {
  transform: scaleX(0);
}

/* ─── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: 80px 0 44px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sage-600), transparent);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__logo-text {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 6px;
}

.footer__logo-sub {
  font-size: 0.5625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-400);
  font-weight: 500;
  margin-bottom: 24px;
}

.footer__tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  font-weight: 300;
  max-width: 320px;
}

.footer__col-title {
  font-size: 0.5625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-400);
  font-weight: 500;
  margin-bottom: 24px;
}

.footer__links { display: flex; flex-direction: column; gap: 14px; }
.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  transition: color 0.25s;
}
.footer__links a:hover { color: var(--white); }

.footer__contact-item { margin-bottom: 18px; }
.footer__contact-label {
  font-size: 0.5625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-400);
  font-weight: 500;
}
.footer__contact-value {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  margin-top: 4px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 36px;
}
.footer__copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); font-weight: 300; }
.footer__urgence { font-size: 0.75rem; color: var(--sage-400); font-weight: 400; }

@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ─── Reveal System ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }
.reveal-d4 { transition-delay: 0.48s; }
.reveal-d5 { transition-delay: 0.60s; }

/* Slide from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* Slide from right */
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ─── Custom scrollbar ─────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--sage-400); border-radius: 3px; }

/* ─── Selection ────────────────────────────────────────────── */
::selection {
  background: var(--sage-300);
  color: var(--ink);
}

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

/* ─── Trust / Logos Section ─────────────────────────────────── */
.trust {
  padding: 72px 0;
  border-top: 1px solid var(--ink-08);
  border-bottom: 1px solid var(--ink-08);
  background: var(--cream-2);
}
.trust__label {
  text-align: center;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-30);
  margin-bottom: 40px;
}
.trust__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.trust__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.45;
  transition: opacity 0.4s var(--ease);
  cursor: default;
}
.trust__logo:hover { opacity: 0.85; }
.trust__logo-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust__logo-icon svg { width: 26px; height: 26px; color: var(--sage-600); }
.trust__logo-text {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink-70);
  text-align: center;
  max-width: 100px;
  line-height: 1.3;
}

@media (max-width: 600px) {
  .trust__logos { gap: 32px; }
  .trust__logo-icon { width: 48px; height: 48px; }
}

/* ─── Testimonials ─────────────────────────────────────────── */
.testimonials { padding: var(--section-y) 0; background: var(--white); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
}
.testimonial {
  background: var(--cream);
  border: 1px solid var(--ink-08);
  border-radius: 12px;
  padding: 40px 36px 36px;
  position: relative;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(27,28,25,0.06);
}
.testimonial__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}
.testimonial__star {
  width: 16px;
  height: 16px;
  color: #D4A843;
}
.testimonial__text {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--ink-70);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--ink-08);
  padding-top: 20px;
}
.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--sage-700);
  flex-shrink: 0;
}
.testimonial__name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
}
.testimonial__role {
  font-size: 0.75rem;
  color: var(--ink-50);
  font-weight: 300;
  margin-top: 2px;
}
.testimonial__badge {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2rem;
  color: var(--sage-200);
  font-family: var(--serif);
  line-height: 1;
}

@media (max-width: 900px) { .testimonials__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .testimonials__grid { grid-template-columns: 1fr; } }

/* ─── Avant/Après Showcase ────────────────────────────────── */
.showcase { padding: var(--section-y) 0; background: var(--cream-2); }
.showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 64px;
}
.showcase__card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--ink-08);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.showcase__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(27,28,25,0.08);
}
.showcase__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.showcase__img-wrap {
  position: relative;
  overflow: hidden;
}
.showcase__img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.showcase__card:hover .showcase__img { transform: scale(1.04); }
.showcase__label {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  z-index: 2;
}
.showcase__label--avant {
  background: rgba(27,28,25,0.60);
  color: rgba(255,255,255,0.88);
  backdrop-filter: blur(4px);
}
.showcase__label--apres {
  background: var(--sage-600);
  color: var(--white);
}
.showcase__divider {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage-600);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.showcase__divider svg { width: 18px; height: 18px; color: var(--white); }
.showcase__body { padding: 28px 32px; }
.showcase__tag {
  display: inline-block;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-600);
  background: var(--sage-100);
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.showcase__title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.showcase__desc {
  font-size: 0.8125rem;
  color: var(--ink-50);
  font-weight: 300;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .showcase__grid { grid-template-columns: 1fr; }
  .showcase__img { height: 180px; }
}

/* ─── Service Cards with Images ───────────────────────────── */
.svc-card--img {
  padding: 0;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--ink-08);
}
.svc-card--img .svc-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.svc-card--img:hover .svc-card__image { transform: scale(1.05); }
.svc-card--img .svc-card__body { padding: 32px 28px 28px; }

/* ─── Engagement / Newsletter CTA ─────────────────────────── */
.engage {
  background: linear-gradient(135deg, var(--sage-700) 0%, var(--sage-800) 100%);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.engage::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}
.engage::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
}
.engage__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.engage__title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.engage__title em { font-style: italic; font-weight: 300; }
.engage__desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  line-height: 1.8;
  margin-top: 16px;
}
.engage__form {
  display: flex;
  gap: 12px;
}
.engage__input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 16px 20px;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--white);
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}
.engage__input::placeholder { color: rgba(255,255,255,0.35); }
.engage__input:focus {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.12);
}
.engage__submit {
  background: var(--white);
  color: var(--sage-700);
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 28px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  white-space: nowrap;
}
.engage__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.engage__note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  margin-top: 12px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .engage__inner { grid-template-columns: 1fr; gap: 36px; }
  .engage__form { flex-direction: column; }
}

/* ─── Zones d'intervention ────────────────────────────────── */
.zones { padding: var(--section-y) 0; background: var(--cream-2); }
.zones__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 64px;
}
.zones__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.zones__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--cream);
  border: 1px solid var(--ink-08);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--ink-70);
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}
.zones__item:hover {
  background: var(--white);
  border-color: var(--sage-300);
  transform: translateX(4px);
}
.zones__item-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage-400);
  flex-shrink: 0;
}
.zones__map {
  background: var(--cream-2);
  border-radius: 16px;
  border: 1px solid var(--ink-08);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}
.zones__map-pin {
  position: absolute;
  width: 14px; height: 14px;
  background: var(--sage-500);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(83,99,72,0.3);
  animation: pinPulse 2s ease-in-out infinite;
}
@keyframes pinPulse {
  0%, 100% { box-shadow: 0 2px 8px rgba(83,99,72,0.3); }
  50% { box-shadow: 0 2px 20px rgba(83,99,72,0.5); }
}
.zones__map-label {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--sage-300);
  letter-spacing: -0.02em;
  text-align: center;
}
.zones__map-sub {
  font-size: 0.8125rem;
  color: var(--ink-30);
  margin-top: 8px;
  text-align: center;
}

@media (max-width: 768px) {
  .zones__grid { grid-template-columns: 1fr; }
  .zones__map { min-height: 260px; }
}

.text-sage { color: var(--sage-600); }
.bg-sage { background: var(--sage-700); }
