/* ============================================================
   B.LIFTED France — Composants UI v3.0
   Ultra-Moderne · Féminin · Éditorial
   ============================================================ */

/* ══════════════════════════════════════════════════════════
   CURSEUR PERSONNALISÉ (desktop uniquement)
══════════════════════════════════════════════════════════ */
@media (hover: hover) and (pointer: fine) {
  body, a, button, [role="button"], label, select, input, .btn { cursor: none !important; }
  .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 34px; height: 34px;
    border: 1.5px solid rgba(77,92,56,0.65);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    transition: width 0.22s ease, height 0.22s ease, border-color 0.22s ease, opacity 0.25s ease;
    will-change: left, top;
  }
  .cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 5px; height: 5px;
    background: var(--or);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    will-change: left, top;
  }
  .cursor-ring.is-hovering {
    width: 52px; height: 52px;
    border-color: var(--or);
  }
  .cursor-ring.is-out { opacity: 0; }
}



/* ══════════════════════════════════════════════════════════
   BARRE DE SCROLL
══════════════════════════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  width: 0%;
  z-index: calc(var(--z-header) + 10);
  transition: width 0.1s linear;
}


/* ══════════════════════════════════════════════════════════
   BOUTONS
══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  height: var(--btn-h);
  padding-inline: var(--sp-8);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: var(--t-sm);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--dur-fast) var(--ease-spring),
    box-shadow var(--dur) var(--ease),
    background var(--dur-fast) var(--ease),
    color var(--dur-fast) var(--ease);
  cursor: pointer;
  touch-action: manipulation;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease);
}
.btn:hover::before { opacity: 1; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--sm { height: var(--btn-h-sm); padding-inline: var(--sp-6); font-size: var(--t-xs); }

/* Primary — rose chaud */
.btn-primary {
  background: var(--rose);
  color: #fff;
  box-shadow: var(--shadow-rose), var(--shadow-inset);
}
.btn-primary:hover { box-shadow: 0 6px 40px rgba(77,92,56,.30), var(--shadow-inset); }

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-warm);
  box-shadow: none;
}
.btn-outline:hover {
  border-color: var(--rose-light);
  color: var(--rose);
  box-shadow: var(--shadow-sm);
}

/* Ghost — pour fonds sombres */
.btn-ghost {
  background: transparent;
  color: rgba(250,250,248,0.85);
  border: 1.5px solid rgba(250,250,248,0.25);
  box-shadow: none;
}
.btn-ghost:hover {
  border-color: rgba(250,250,248,0.6);
  color: var(--text-inv);
  background: rgba(250,250,248,0.06);
}

/* Sage / vert */
.btn-sage {
  background: var(--sage);
  color: #fff;
  box-shadow: var(--shadow-rose, 0 4px 24px rgba(77,92,56,.20)), var(--shadow-inset);
}

/* Dark (sur fond sombre) */
.btn-dark {
  background: rgba(255,255,255,0.1);
  color: var(--text-inv);
  border: 1px solid var(--border-dark);
  backdrop-filter: blur(8px);
}
.btn-dark:hover { background: rgba(255,255,255,0.18); }

.btn-arrow { transition: transform var(--dur-fast) var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(4px); }


/* ══════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: var(--z-header);
  transition:
    background var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    height var(--dur) var(--ease),
    backdrop-filter var(--dur) var(--ease);
}
.header.is-scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  box-shadow: 0 1px 0 var(--border-soft), var(--shadow-sm);
  height: calc(var(--header-h) - 10px);
}

/* Header sur pages avec hero image sombre */
body:has(.page-hero) .header:not(.is-scrolled) {
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, transparent 100%);
}
body:has(.page-hero) .header:not(.is-scrolled) .header__logo,
body:has(.page-hero) .header:not(.is-scrolled) .header__nav-link,
body:has(.page-hero) .header:not(.is-scrolled) .header__lang-btn {
  color: rgba(255,255,255,0.88);
}
body:has(.page-hero) .header:not(.is-scrolled) .header__lang-btn.is-active {
  color: #fff;
}
body:has(.page-hero) .header:not(.is-scrolled) .header__lang-sep {
  color: rgba(255,255,255,0.35);
}
body:has(.page-hero) .header:not(.is-scrolled) .header__burger span {
  background: rgba(255,255,255,0.88);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  max-height: 36px;
}
.header__logo img {
  height: 28px;
  width: auto;
  max-height: 28px;
  max-width: 160px;
  flex-shrink: 0;
  transition: opacity var(--dur-fast) var(--ease);
}
/* Default (pages without hero = white header): show noir, hide blanc */
.header__logo .logo-blanc { display: none; }
.header__logo .logo-noir  { display: block; }
/* Over dark hero (not scrolled): show blanc, hide noir */
body:has(.page-hero) .header:not(.is-scrolled) .header__logo .logo-blanc { display: block; }
body:has(.page-hero) .header:not(.is-scrolled) .header__logo .logo-noir  { display: none; }
/* Footer: always blanc (dark background) */
.footer__brand-logo img { height: 24px; width: auto; display: block; }

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}
.header__nav-link {
  font-size: var(--t-sm);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--text-soft);
  position: relative;
  transition: color var(--dur-fast) var(--ease);
}

/* ── Langue FR / EN ─ */
.header__lang {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  margin-right: var(--sp-2);
}
.header__lang-btn {
  background: none;
  border: none;
  padding: 2px 5px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease);
  line-height: 1;
}
.header__lang-btn:hover { color: var(--text-soft); }
.header__lang-btn.is-active { color: var(--text); }
.header__lang-sep {
  font-size: 10px;
  color: var(--border-warm);
  pointer-events: none;
  line-height: 1;
}
@media (max-width: 960px) {
  .header__lang { display: flex; }
  .header__lang-btn { cursor: pointer; }
}
.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--rose);
  transition: width var(--dur) var(--ease-out);
}
.header__nav-link:hover,
.header__nav-link.is-active { color: var(--text); }
.header__nav-link:hover::after,
.header__nav-link.is-active::after { width: 100%; }

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-shrink: 0;
}

/* Burger */
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 6px;
  cursor: pointer;
  transition: opacity var(--dur-fast) var(--ease);
}
.header__burger span {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--text);
  border-radius: var(--r-full);
  transition:
    transform var(--dur) var(--ease-out),
    opacity var(--dur-fast) var(--ease),
    width var(--dur) var(--ease-out);
  transform-origin: center;
}
.header__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.header__burger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.header__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 960px) {
  .header__nav { display: none; }
  .header__burger { display: flex; }
  .header__actions .btn { display: none; }
}


/* ══════════════════════════════════════════════════════════
   MENU MOBILE
══════════════════════════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: calc(var(--z-header) - 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-20) var(--gutter);
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-out);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }

.mobile-menu::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--rose), var(--gold));
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.mobile-menu__link {
  font-family: var(--font-serif);
  font-size: var(--t-4xl);
  font-weight: 300;
  letter-spacing: var(--ls-tight);
  color: var(--text);
  line-height: 1.15;
  padding-block: var(--sp-3);
  border-bottom: 1px solid var(--border-soft);
  transition: color var(--dur-fast) var(--ease), padding-left var(--dur) var(--ease-out);
  display: block;
}
.mobile-menu__link:hover { color: var(--rose); padding-left: var(--sp-4); }

.mobile-menu__foot {
  margin-top: auto;
  padding-top: var(--sp-12);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.mobile-menu__cta { padding: var(--sp-6) 0; }
.mobile-menu__cta .btn { width: 100%; }
.mobile-menu__info {
  font-size: var(--t-sm);
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}


/* ══════════════════════════════════════════════════════════
   PAGE HERO — pages intérieures (services, territoires…)
══════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero__bg img,
.page-hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(8,6,4,0.75) 0%, rgba(8,6,4,0.30) 65%, transparent 100%),
    linear-gradient(to top,   rgba(8,6,4,0.60) 0%, transparent 55%);
}
.page-hero__content,
.page-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  color: var(--text-inv);
  padding-top: calc(var(--header-h) + 5rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}
.page-hero__content h1,
.page-hero__content h2,
.page-hero__content h3,
.page-hero__content p {
  color: inherit;
}
/* Eyebrow sur fond sombre : override la couleur olive en blanc cassé */
.page-hero__content .eyebrow,
.page-hero__inner .eyebrow {
  color: rgba(255, 255, 255, 0.60);
}

@media (max-width: 768px) {
  .page-hero { min-height: 60vh; }
  .page-hero__overlay {
    background: linear-gradient(to top, rgba(8,6,4,0.80) 0%, rgba(8,6,4,0.45) 60%, rgba(8,6,4,0.25) 100%);
  }
}


/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
/* ── Hero — Plein écran cinématique ── */
.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--bg-darker);
}

/* Fond image plein écran */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  animation: heroZoom 2s var(--ease-out) forwards;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(8,6,4,0.65) 0%, rgba(8,6,4,0.35) 60%, rgba(8,6,4,0.10) 100%),
    linear-gradient(to top, rgba(8,6,4,0.58) 0%, rgba(8,6,4,0.18) 55%, transparent 100%);
}

/* Grain subtil pour texture */
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}

/* Inner */
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-top: calc(var(--header-h) + clamp(5rem, 12vw, 10rem));
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 4vw, 3.5rem);
}

/* Contenu texte */
.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
  max-width: 780px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: rgba(250,250,248,0.65);
}
.hero__dot {
  width: 6px; height: 6px;
  background: var(--rose);
  border-radius: 50%;
  flex-shrink: 0;
  animation: dotPulse 2s ease infinite;
}
.hero__eyebrow .eyebrow { color: rgba(250,250,248,0.65); }

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 0.90;
  letter-spacing: -0.035em;
  color: var(--text-inv);
}
.hero__title em {
  display: block;
  color: var(--rose-light);
  font-style: italic;
  font-weight: 300;
}

.hero__sub {
  font-size: var(--t-lg);
  font-weight: 300;
  line-height: var(--lh-relaxed);
  color: var(--text-inv-soft);
  max-width: 55ch;
}

.hero__geo {
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(250,250,248,0.70);
  text-transform: none;
  max-width: 44ch;
}

.hero__phrase {
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  font-weight: 300;
  color: rgba(250,250,248,0.50);
  line-height: 1.65;
  max-width: 48ch;
  margin-top: 0.25rem;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-top: var(--sp-2);
}

/* Barre de stats (inspiré FMR) */
.hero__stats {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
  padding-top: clamp(2rem, 3.5vw, 2.5rem);
  border-top: 1px solid rgba(250,250,248,0.10);
}
.hero__stat {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.45);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.hero__stat-accent {
  color: var(--rose);
  font-size: 14px;
}
.hero__stat-sep {
  width: 1px; height: 18px;
  background: rgba(250,250,248,0.12);
  flex-shrink: 0;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--sp-10);
  right: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  z-index: 3;
  opacity: 0.35;
  transition: opacity var(--dur-fast) var(--ease);
}
.hero-scroll:hover { opacity: 0.75; }
.hero-scroll__label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--text-inv);
  writing-mode: vertical-rl;
}
.hero-scroll__line {
  width: 1px; height: 52px;
  background: rgba(250,250,248,0.2);
  position: relative;
  overflow: hidden;
}
.hero-scroll__line::after {
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--rose);
  animation: lineGrowV 1.5s ease-in-out infinite;
}

@media (max-width: 900px) {
  .hero__stats { gap: var(--sp-5); }
  .hero-scroll { display: none; }
}
@media (max-width: 640px) {
  .hero__title { line-height: 0.93; }
  .hero__stat-sep { display: none; }
  .hero__stats { gap: var(--sp-4); }
}


/* ══════════════════════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════════════════════ */
.marquee-band {
  overflow: hidden;
  background: var(--bg-dark);
  padding-block: var(--sp-5);
  cursor: default;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-band:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  padding-right: var(--sp-8);
}
.marquee-item span {
  font-size: var(--t-sm);
  font-weight: 500;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--text-inv-soft);
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease);
}
.marquee-item span:hover { color: var(--rose-light); }
.marquee-item .dot {
  width: 4px; height: 4px;
  background: var(--rose);
  border-radius: 50%;
  flex-shrink: 0;
}


/* ══════════════════════════════════════════════════════════
   STATEMENT
══════════════════════════════════════════════════════════ */
.statement {
  padding-block: clamp(5rem, 10vw, 9rem);
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
}
.statement::before {
  content: '"';
  position: absolute;
  top: -0.3em; left: 0.1em;
  font-family: var(--font-serif);
  font-size: clamp(12rem, 25vw, 22rem);
  color: #CDD8BC;
  opacity: 0.7;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 768px) {
  .statement::before {
    font-size: 8rem;
    opacity: 0.5;
  }
}

.statement__text {
  font-family: var(--font-serif);
  font-size: clamp(var(--t-2xl), 3.5vw, var(--t-5xl));
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 900px;
  position: relative;
}
.statement__text em {
  color: var(--rose);
  font-style: italic;
}

.statement__author {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-10);
}
.statement__line {
  width: 40px; height: 1px;
  background: var(--rose-light);
}
.statement__name {
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--text-muted);
}


/* ══════════════════════════════════════════════════════════
   STATS
══════════════════════════════════════════════════════════ */
.stats {
  padding-block: var(--section-py-sm);
  background: var(--bg);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stats__item {
  background: var(--bg-card);
  padding: var(--sp-10) var(--sp-8);
  text-align: center;
  transition: background var(--dur-fast) var(--ease);
}
.stats__item:hover { background: var(--rose-ultra); }

.stats__number {
  font-family: var(--font-serif);
  font-size: clamp(var(--t-4xl), 5vw, var(--t-6xl));
  font-weight: 300;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
  display: block;
}
.stats__number span {
  color: var(--rose);
}
.stats__label {
  font-size: var(--t-sm);
  font-weight: 500;
  letter-spacing: var(--ls-wide);
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: var(--sp-3);
  display: block;
}

@media (max-width: 768px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stats__grid { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: clamp(var(--sp-8), 4vw, var(--sp-12));
  overflow: hidden;
  transition:
    transform var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease-out);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 52px; height: 52px;
  background: var(--rose-ultra);
  border: 1px solid var(--rose-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-6);
  transition: background var(--dur-fast) var(--ease), transform var(--dur) var(--ease-spring);
}
.service-card:hover .service-card__icon {
  background: var(--rose-pale);
  transform: scale(1.08);
}
.service-card__icon svg {
  width: 24px; height: 24px;
  color: var(--rose);
  stroke-width: 1.5;
}

.service-card__number {
  position: absolute;
  top: var(--sp-6);
  right: var(--sp-8);
  font-family: var(--font-serif);
  font-size: var(--t-5xl);
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  transition: color var(--dur) var(--ease);
  user-select: none;
}
.service-card:hover .service-card__number { color: var(--rose-pale); }

.service-card__title {
  font-family: var(--font-serif);
  font-size: var(--t-2xl);
  font-weight: 400;
  color: var(--text);
  margin-bottom: var(--sp-3);
  transition: color var(--dur-fast) var(--ease);
}
.service-card:hover .service-card__title { color: var(--rose-deep); }

.service-card__desc {
  font-size: var(--t-base);
  color: var(--text-soft);
  line-height: var(--lh-relaxed);
  font-weight: 300;
  margin-bottom: var(--sp-6);
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
}
.service-card__tag {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  color: var(--text-muted);
  background: var(--bg-warm);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--rose);
  transition: gap var(--dur-fast) var(--ease-out);
}
.service-card:hover .service-card__link { gap: var(--sp-4); }
.service-card__link::after { content: '→'; }

@media (max-width: 768px) {
  .services__grid { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════════════════════
   SIMULATEUR
══════════════════════════════════════════════════════════ */
.simulator-section {
  background: var(--bg-blush);
  padding-block: var(--section-py);
  position: relative;
  overflow: hidden;
}
.simulator-section::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, var(--rose-ultra) 0%, transparent 70%);
  pointer-events: none;
}

.simulator {
  background: var(--bg-card);
  border-radius: var(--r-xl);
  padding: clamp(var(--sp-8), 5vw, var(--sp-16));
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
  position: relative;
}

/* Progress */
.simulator__progress {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-12);
}
.simulator__step-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--t-xs);
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all var(--dur) var(--ease-out);
}
.simulator__step-dot.is-active {
  border-color: var(--rose);
  background: var(--rose);
  color: #fff;
}
.simulator__step-dot.is-done {
  border-color: var(--rose);
  background: var(--rose-pale);
  color: var(--rose-deep);
}
.simulator__step-line {
  flex: 1;
  height: 1px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}
.simulator__step-line.is-done::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--rose-light);
  animation: lineGrow 0.4s var(--ease-out) forwards;
}

/* Steps */
.simulator__panel {
  display: none;
}
.simulator__panel.is-active {
  display: block;
  animation: fadeUp 0.4s var(--ease-out);
}

.simulator__question {
  font-family: var(--font-serif);
  font-size: var(--t-3xl);
  font-weight: 300;
  color: var(--text);
  margin-bottom: var(--sp-2);
  letter-spacing: var(--ls-tight);
}
.simulator__hint {
  font-size: var(--t-sm);
  color: var(--text-muted);
  margin-bottom: var(--sp-8);
  font-weight: 300;
}

/* Options grid */
.simulator__options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-10);
}
.simulator__options--3col {
  grid-template-columns: repeat(3, 1fr);
}

.sim-option {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-5);
  cursor: pointer;
  touch-action: manipulation;
  text-align: left;
  background: var(--bg-card);
  transition:
    border-color var(--dur-fast) var(--ease),
    background var(--dur-fast) var(--ease),
    transform var(--dur-fast) var(--ease-spring),
    box-shadow var(--dur-fast) var(--ease);
}
.sim-option:hover {
  border-color: var(--rose-light);
  background: var(--rose-ultra);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.sim-option.is-selected {
  border-color: var(--rose);
  background: var(--rose-ultra);
  box-shadow: var(--shadow-rose);
}
.sim-option.is-selected::after {
  content: '';
  position: absolute;
  top: var(--sp-3); right: var(--sp-3);
  width: 18px; height: 18px;
  background: var(--rose) url("data:image/svg+xml,%3Csvg viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/10px no-repeat;
  border-radius: 50%;
}

.sim-option__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  background: var(--bg-warm);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  transition:
    background var(--dur-fast) var(--ease),
    color var(--dur-fast) var(--ease),
    transform var(--dur-fast) var(--ease-spring);
}
.sim-option__icon svg { width: 18px; height: 18px; }
.sim-option:hover .sim-option__icon,
.sim-option.is-selected .sim-option__icon {
  background: var(--rose-pale);
  transform: scale(1.08);
}

.sim-option__body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  min-width: 0;
}

.sim-option__label {
  font-family: var(--font-serif);
  font-size: var(--t-base);
  font-weight: 400;
  color: var(--text);
  display: block;
  letter-spacing: -0.01em;
}
.sim-option.is-selected .sim-option__label { color: var(--rose-deep); }

.sim-option__sub {
  font-size: var(--t-xs);
  color: var(--rose);
  display: block;
  font-weight: 500;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

.sim-option__desc {
  font-size: var(--t-xs);
  color: var(--text-muted);
  display: block;
  line-height: 1.5;
  margin-top: var(--sp-1);
}

/* Navigation */
.simulator__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-8);
  border-top: 1px solid var(--border-soft);
}

/* Résultat */
.simulator__result {
  text-align: center;
  padding-block: var(--sp-8);
  animation: scaleIn 0.5s var(--ease-spring);
}
.result__label {
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-3);
}
.result__price {
  font-family: var(--font-serif);
  font-size: clamp(var(--t-4xl), 6vw, var(--t-7xl));
  font-weight: 300;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.result__price span { color: var(--rose); }
.result__note {
  font-size: var(--t-sm);
  color: var(--text-muted);
  margin-bottom: var(--sp-10);
  font-weight: 300;
}
.result__ctas {
  display: flex;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* ── Simulator contact form ── */
.sim-contact-form {
  margin-top: var(--sp-8);
  text-align: left;
}
.sim-contact-form__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}
.sim-contact-form__field:last-child {
  grid-column: 1 / -1;
}
.sim-contact-form__field label {
  display: block;
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-2);
}
.sim-contact-form__field input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--or-border);
  border-radius: var(--radius-md);
  background: var(--blanc);
  color: var(--text);
  font-size: var(--t-sm);
  font-family: var(--font-sans);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}
.sim-contact-form__field input:focus {
  border-color: var(--or);
  box-shadow: 0 0 0 3px var(--or-glow);
}
.sim-contact-form__field input::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

@media (max-width: 600px) {
  .sim-contact-form__fields { grid-template-columns: 1fr; }
  .sim-contact-form__field:last-child { grid-column: auto; }
}

@media (max-width: 768px) {
  /* Extra padding so WhatsApp float button doesn't overlap buttons */
  .simulator { padding-bottom: 7rem; }
  .simulator__result { padding-bottom: 5rem; }
  .result__ctas { flex-direction: column; align-items: stretch; }
  .result__ctas .btn { width: 100%; justify-content: center; }
}
@media (max-width: 600px) {
  .simulator__options { grid-template-columns: 1fr; gap: var(--sp-3); }
  .sim-option { padding: var(--sp-4); }
  .sim-option__desc { display: none; }
}
@media (max-width: 400px) {
  .simulator__options { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════════════════════
   TERRITOIRES — Layout éditorial
══════════════════════════════════════════════════════════ */
.territories-section {
  background: var(--ivoire);
  padding-bottom: 0;
  overflow: hidden;
}

/* En-tête 2 colonnes */
.territories__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 4rem;
  padding: 6rem var(--gutter) 3.5rem;
  max-width: var(--container);
  margin-inline: auto;
}
.territories__head-left { flex: 0 0 auto; }
.territories__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin: 0.75rem 0 0;
  color: var(--text);
}
.territories__title em { color: var(--rose); font-style: italic; }
.territories__head-right {
  flex: 0 0 340px;
  padding-bottom: 0.25rem;
}
.territories__head-right p {
  font-size: var(--t-sm);
  color: var(--texte-lt);
  line-height: 1.7;
  margin: 0;
}

/* Bande défilante pleine largeur */
.territories__scroll {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  touch-action: pan-x;
  gap: 3px;
  padding-left: var(--gutter);
  padding-bottom: 1px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.territories__scroll::-webkit-scrollbar { display: none; }

.territory-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  border-radius: 0;
  cursor: pointer;
  display: block;
  text-decoration: none;
  flex: 0 0 22vw;
  scroll-snap-align: start;
}
.territory-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
  display: block;
}
.territory-card:hover .territory-card__img { transform: scale(1.07); }

/* Overlay fumé renforcé */
.territory-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(4,3,2,0.92) 0%, rgba(4,3,2,0.45) 45%, rgba(4,3,2,0.10) 70%, transparent 100%),
    linear-gradient(to bottom, rgba(4,3,2,0.40) 0%, transparent 28%);
  transition: opacity 0.6s var(--ease);
}
.territory-card:hover .territory-card__overlay { opacity: 0.88; }

/* Numéro en haut à droite */
.territory-card__num {
  position: absolute;
  top: 1.6rem; right: 1.8rem;
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: rgba(250,250,248,0.5);
  z-index: 2;
  transition: color 0.4s var(--ease);
}
.territory-card:hover .territory-card__num { color: rgba(250,250,248,0.8); }

.territory-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.2rem 2.4rem 2.8rem;
  z-index: 2;
}

.territory-card__eyebrow {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 0.55rem;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.territory-card:hover .territory-card__eyebrow { opacity: 1; transform: translateY(0); }

.territory-card__name {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 2.4vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  color: #FAFAF8;
  line-height: 1.1;
  margin: 0;
}

.territory-card__desc {
  font-size: var(--t-sm);
  color: rgba(250,250,248,0.70);
  font-weight: 300;
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 0.5s var(--ease-out), margin-top 0.4s var(--ease-out);
}
.territory-card:hover .territory-card__desc {
  max-height: 80px;
  margin-top: 0.8rem;
}

.territory-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-top: 1.1rem;
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 0.35s var(--ease-out) 0.06s,
    transform 0.35s var(--ease-out) 0.06s;
}
.territory-card:hover .territory-card__link { opacity: 1; transform: translateY(0); }
.territory-card__link::after { content: '→'; margin-left: 2px; }

/* ── Other territories cards (Dubai style) ── */
.other-territories { padding: 5rem 0; background: var(--ivoire); }
.other-territories__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
@media (max-width: 900px) { .other-territories__grid { grid-template-columns: 1fr; } }
.other-territory-card { display: block; padding: 2rem; text-decoration: none; border: 1px solid rgba(0,0,0,.1); border-radius: 4px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); background: #fff; }
.other-territory-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.1); border-color: var(--or); }
.other-territory-card__name { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; color: var(--noir); margin-bottom: .4rem; }
.other-territory-card__desc { font-family: var(--font-sans); font-size: .8rem; color: var(--texte-lt); }
.other-territory-card__arrow { display: inline-block; margin-top: 1rem; font-size: .8rem; color: var(--or); letter-spacing: .08em; text-transform: uppercase; }

/* Fallback bg si photo manquante */
.territory-card--provence { background: #C4A896; }
.territory-card--riviera  { background: #96B8C4; }
.territory-card--megeve   { background: #A8BCA0; }
.territory-card--dubai    { background: #C4B496; }
.territory-card--paris    { background: #8A96A8; }

/* Responsive */
@media (max-width: 1100px) {
  .territory-card { flex: 0 0 30vw; }
  .territories__head { gap: 2.5rem; }
  .territories__head-right { flex: 0 0 260px; }
}
@media (max-width: 760px) {
  .territory-card { flex: 0 0 50vw; }
  .territories__head { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 4rem var(--gutter) 2.5rem; }
  .territories__head-right { flex: 0 0 auto; }
}
@media (max-width: 480px) {
  .territory-card { flex: 0 0 78vw; height: 90vw; }
  .territory-card__eyebrow,
  .territory-card__link { opacity: 1; transform: none; }
  .territory-card__desc { max-height: 60px; margin-top: 0.75rem; }
  .territories__title { font-size: 2.2rem; }
}


/* ══════════════════════════════════════════════════════════
   FLEET TEASER
══════════════════════════════════════════════════════════ */
.fleet-teaser {
  background:
    linear-gradient(rgba(17,19,17,0.84), rgba(17,19,17,0.84)),
    url('../assets/images/fleet.jpg') center/cover no-repeat;
  background-color: var(--bg-dark);
  padding-block: var(--section-py);
  position: relative;
  overflow: hidden;
}
.fleet-teaser::before {
  content: '';
  position: absolute;
  top: -40%; left: -20%;
  width: 70vw; height: 70vw;
  background: radial-gradient(circle, rgba(77,92,56,.08) 0%, transparent 70%);
  pointer-events: none;
}

.fleet-teaser__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.fleet-teaser__content .eyebrow { color: var(--rose-light); }
.fleet-teaser__content .section-title { color: var(--text-inv); }
.fleet-teaser__content .section-title em { color: var(--rose-light); }
.fleet-teaser__content .section-sub { color: var(--text-inv-soft); }
.fleet-teaser__content .divider { background: var(--rose-mid); }

.fleet-teaser__vehicles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
}
.fleet-mini {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-md);
  padding: var(--sp-5);
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
  cursor: pointer;
}
.fleet-mini:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(250,250,248,0.2);
}
.fleet-mini__name {
  font-family: var(--font-serif);
  font-size: var(--t-lg);
  font-weight: 300;
  color: var(--text-inv);
  margin-bottom: var(--sp-1);
}
.fleet-mini__type {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--text-inv-soft);
}

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


/* ══════════════════════════════════════════════════════════
   MARIAGES HIGHLIGHT
══════════════════════════════════════════════════════════ */
.wedding-section {
  padding-block: var(--section-py);
  background: var(--bg);
}
.wedding__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.wedding__img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.wedding__img {
  width: 100%; height: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: url('../assets/images/v%20paris.png') center/cover no-repeat;
  transition: transform 0.8s var(--ease-out);
}
.wedding__img-wrap:hover .wedding__img { transform: scale(1.04); }

.wedding__img-badge {
  position: absolute;
  top: var(--sp-6);
  right: var(--sp-6);
  background: var(--rose);
  color: #fff;
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-6);
  font-size: var(--t-sm);
  font-weight: 600;
  box-shadow: var(--shadow-rose);
  animation: float 4s ease-in-out 0.5s infinite;
}

.wedding__features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-block: var(--sp-8);
}
.wedding__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}
.wedding__feature-icon {
  width: 40px; height: 40px;
  background: var(--rose-ultra);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.wedding__feature-text strong {
  display: block;
  font-size: var(--t-base);
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--sp-1);
}
.wedding__feature-text span {
  font-size: var(--t-sm);
  color: var(--text-soft);
  font-weight: 300;
}

@media (max-width: 900px) {
  .wedding__inner { grid-template-columns: 1fr; }
  .wedding__img-wrap { aspect-ratio: 16/9; }
  .wedding__img-badge { right: var(--sp-4); }
}


/* ══════════════════════════════════════════════════════════
   PARTNERS MARQUEE (shared — homepage + mariages)
══════════════════════════════════════════════════════════ */
.partners-marquee {
  background: var(--blanc);
  padding-block: 2.5rem;
  overflow: hidden;
  border-top: 1px solid var(--or-border);
  border-bottom: 1px solid var(--or-border);
}
.partners-marquee__label {
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--texte-lt);
  margin-bottom: 1.5rem;
}
.partners-marquee__track { overflow: hidden; }
.partners-marquee__inner {
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  width: max-content;
  animation: marquee 14s linear infinite;
}
.partners-marquee__inner img {
  height: 3rem;
  width: auto;
  object-fit: contain;
  opacity: 0.5;
  filter: grayscale(1);
  flex-shrink: 0;
  transition: opacity 0.3s, filter 0.3s;
}
.partners-marquee__inner img:hover {
  opacity: 0.9;
  filter: grayscale(0);
}
@media (max-width: 640px) {
  .partners-marquee__inner { gap: 2rem; }
  .partners-marquee__inner img { height: 2.25rem; }
}


/* ══════════════════════════════════════════════════════════
   TÉMOIGNAGES
══════════════════════════════════════════════════════════ */
.testimonials {
  background: var(--bg-warm);
  padding-block: var(--section-py) var(--section-py-sm);
}

.testimonials__carousel {
  position: relative;
  margin-top: var(--sp-10);
}
.testimonials__grid {
  display: flex;
  gap: var(--sp-6);
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}
.testimonials__grid::-webkit-scrollbar { display: none; }

.testimonials__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blanc);
  border: 1px solid var(--or-border);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}
.testimonials__arrow:hover {
  background: var(--or);
  color: var(--blanc);
  border-color: var(--or);
}
.testimonials__arrow--prev { left: -22px; }
.testimonials__arrow--next { right: -22px; }

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease);
  flex: 0 0 auto;
  scroll-snap-align: start;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.testimonial-card__stars {
  display: flex;
  gap: var(--sp-1);
  color: var(--gold);
  font-size: var(--t-sm);
}

.testimonial-card__quote {
  font-family: var(--font-serif);
  font-size: var(--t-lg);
  font-weight: 300;
  line-height: 1.55;
  color: var(--text-soft);
  font-style: italic;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border-soft);
}
.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--rose-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: var(--t-lg);
  color: var(--rose);
  flex-shrink: 0;
}
.testimonial-card__name {
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--text);
  display: block;
}
.testimonial-card__role {
  font-size: var(--t-xs);
  color: var(--text-muted);
  font-weight: 400;
  display: block;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .testimonials__arrow--prev { left: 8px; }
  .testimonials__arrow--next { right: 8px; }
}


/* ══════════════════════════════════════════════════════════
   GALLERY STRIP
══════════════════════════════════════════════════════════ */
.gallery-strip {
  overflow: hidden;
  background: var(--ivoire);
  padding-top: 2rem;
  padding-bottom: 0;
}
.gallery-strip__grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.gallery-strip__grid::-webkit-scrollbar { display: none; }
.gallery-strip__item {
  flex: 0 0 22vw;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ivoire-dk);
}
.gallery-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}
.gallery-strip__item:hover img {
  transform: scale(1.06);
}
@media (max-width: 900px) {
  .gallery-strip__item { flex: 0 0 40vw; }
}
@media (max-width: 760px) {
  .gallery-strip__item { flex: 0 0 72vw; }
  .gallery-strip__grid { gap: 3px; }
}

/* ── Territories scroll hint (mobile) ── */
.territories__scroll-hint {
  display: none;
}
@media (max-width: 760px) {
  .territories__scroll-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--t-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0 var(--gutter) 1.5rem;
    opacity: 0.7;
  }
  .territories__scroll-hint::after {
    content: '›';
    font-size: 1.25rem;
    color: var(--or);
    animation: scrollHintPulse 1.8s ease-in-out infinite;
  }
}
@keyframes scrollHintPulse {
  0%, 100% { transform: translateX(0); opacity: 0.6; }
  50% { transform: translateX(6px); opacity: 1; }
}

/* ══════════════════════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════════════════════ */
.cta-section {
  background: var(--bg-blush);
  padding-block: var(--section-py);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--rose-pale) 1px, transparent 1px),
    linear-gradient(90deg, var(--rose-pale) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.35;
  pointer-events: none;
}

.cta-section__title {
  font-family: var(--font-serif);
  font-size: clamp(var(--t-3xl), 5vw, var(--t-6xl));
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: var(--lh-snug);
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: var(--sp-6);
}
.cta-section__title em { display: block; color: var(--rose); font-style: italic; line-height: 1; }

.cta-section__sub {
  font-size: var(--t-lg);
  color: var(--text-soft);
  font-weight: 300;
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: var(--sp-10);
}

.cta-section__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.cta-section__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  margin-top: var(--sp-8);
  font-size: var(--t-sm);
  color: var(--text-muted);
}
.cta-section__phone a {
  font-weight: 600;
  color: var(--text-soft);
  transition: color var(--dur-fast) var(--ease);
}
.cta-section__phone a:hover { color: var(--rose); }


/* ══════════════════════════════════════════════════════════
   PROCESSUS
══════════════════════════════════════════════════════════ */
.process-section { background: var(--bg-warm); padding-top: 5rem; }

.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  margin-top: var(--sp-16);
  position: relative;
}

.process__step {
  position: relative;
  padding: var(--sp-10) var(--sp-8);
  background: var(--bg-card);
  border-radius: var(--r-lg);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.process__step:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.process__num {
  font-family: var(--font-serif);
  font-size: var(--t-5xl);
  font-weight: 300;
  color: var(--rose-pale);
  line-height: 1;
  margin-bottom: var(--sp-6);
  transition: color var(--dur) var(--ease);
}
.process__step:hover .process__num { color: var(--rose-light); }

.process__line {
  width: 2.5rem;
  height: 2px;
  background: var(--rose);
  margin-bottom: var(--sp-6);
  transition: width var(--dur) var(--ease-out);
}
.process__step:hover .process__line { width: 4rem; }

.process__title {
  font-family: var(--font-serif);
  font-size: var(--t-xl);
  font-weight: 400;
  color: var(--text);
  margin-bottom: var(--sp-4);
  letter-spacing: -0.01em;
}

.process__desc {
  font-size: var(--t-base);
  color: var(--text-soft);
  line-height: var(--lh-relaxed);
}

@media (max-width: 900px) {
  .process__grid { grid-template-columns: 1fr; gap: var(--sp-5); }
}


/* ══════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════ */
.faq-section { background: var(--bg); }

.faq__list {
  margin-top: var(--sp-12);
  border-top: 1px solid var(--border);
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  padding: var(--sp-6) 0;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: var(--t-lg);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.01em;
  transition: color var(--dur-fast) var(--ease);
}
.faq__question:hover { color: var(--rose); }
.faq__question[aria-expanded="true"] { color: var(--rose); }

.faq__icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border: 1.5px solid var(--border-warm);
  border-radius: 50%;
  position: relative;
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), transform var(--dur) var(--ease-spring);
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--rose);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease-spring), opacity var(--dur-fast) var(--ease);
}
.faq__icon::before {
  width: 10px; height: 1.5px;
  transform: translate(-50%, -50%);
}
.faq__icon::after {
  width: 1.5px; height: 10px;
  transform: translate(-50%, -50%);
}
.faq__question[aria-expanded="true"] .faq__icon {
  background: var(--rose-pale);
  border-color: var(--rose-light);
  transform: rotate(45deg);
}

.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--dur-slow) var(--ease-out), padding var(--dur) var(--ease);
}
.faq__answer.is-open {
  max-height: 400px;
}
.faq__answer p {
  padding-bottom: var(--sp-6);
  font-size: var(--t-base);
  color: var(--text-soft);
  line-height: var(--lh-relaxed);
  max-width: 680px;
}

@media (max-width: 768px) {
  .faq__question { font-size: var(--t-base); }
}


/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-dark);
  padding-block: var(--sp-20) var(--sp-10);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
}

.footer__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding-bottom: var(--sp-16);
  border-bottom: 1px solid var(--border-dark);
}

.footer__brand-logo {
  font-family: var(--font-serif);
  font-size: var(--t-2xl);
  font-weight: 300;
  letter-spacing: var(--ls-wider);
  color: var(--text-inv);
  margin-bottom: var(--sp-4);
  display: block;
}
.footer__brand-desc {
  font-size: var(--t-sm);
  color: var(--text-inv-soft);
  line-height: var(--lh-relaxed);
  font-weight: 300;
  max-width: 280px;
  margin-bottom: var(--sp-8);
}
.footer__social {
  display: flex;
  gap: var(--sp-3);
}
.footer__social-link {
  width: 40px; height: 40px;
  border: 1px solid var(--border-dark);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-inv-soft);
  font-size: var(--t-sm);
  transition: all var(--dur-fast) var(--ease);
}
.footer__social-link:hover {
  border-color: var(--rose);
  color: var(--rose-light);
  background: rgba(77,92,56,.09);
}

.footer__col-title {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--text-inv);
  margin-bottom: var(--sp-5);
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.footer__nav-link {
  font-size: var(--t-sm);
  color: var(--text-inv-soft);
  font-weight: 300;
  transition: color var(--dur-fast) var(--ease);
}
.footer__nav-link:hover { color: var(--rose-light); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.footer__contact-icon {
  width: 16px; height: 16px;
  color: var(--rose);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer__contact-text {
  font-size: var(--t-sm);
  color: var(--text-inv-soft);
  font-weight: 300;
  line-height: var(--lh-relaxed);
}
.footer__contact-text a { transition: color var(--dur-fast) var(--ease); }
.footer__contact-text a:hover { color: var(--rose-light); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  padding-top: var(--sp-8);
  flex-wrap: wrap;
}
.footer__copy {
  font-size: var(--t-xs);
  color: var(--text-inv-soft);
  opacity: 0.5;
  font-weight: 300;
}
.footer__legal {
  display: flex;
  gap: var(--sp-6);
}
.footer__legal a {
  font-size: var(--t-xs);
  color: var(--text-inv-soft);
  opacity: 0.5;
  font-weight: 300;
  transition: opacity var(--dur-fast) var(--ease);
  padding-block: 0.5rem;
}
.footer__legal a:hover { opacity: 1; }

@media (max-width: 960px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}


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

.bg-warm   { background: var(--bg-warm); }
.bg-blush  { background: var(--bg-blush); }
.bg-dark   { background: var(--bg-dark); }

/* Overlay menu mobile */
#menu-overlay {
  position: fixed; inset: 0;
  background: rgba(26,23,20,0.4);
  z-index: calc(var(--z-header) - 2);
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur) var(--ease), visibility var(--dur);
  backdrop-filter: blur(2px);
}
#menu-overlay.is-active { opacity: 1; visibility: visible; }


/* ══════════════════════════════════════════════════════════
   BOUTON WHATSAPP FLOTTANT
══════════════════════════════════════════════════════════ */
/* ── WhatsApp Widget ─────────────────────────────────────── */
.whatsapp-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: var(--z-overlay);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}
.whatsapp-popup {
  width: 290px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.14), 0 2px 10px rgba(0,0,0,0.07);
  padding: 22px 22px 18px;
  opacity: 0;
  transform: translateY(10px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.whatsapp-popup.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.whatsapp-popup__close {
  float: right;
  margin: -6px -6px 6px 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f0f0f0;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 16px;
  line-height: 1;
  transition: background 0.15s;
}
.whatsapp-popup__close:hover { background: #e0e0e0; }
.whatsapp-popup__title {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  clear: right;
}
.whatsapp-popup__msg {
  font-family: var(--font-sans);
  font-size: 0.83rem;
  color: #777;
  line-height: 1.55;
  margin-bottom: 16px;
}
.whatsapp-popup__cta {
  display: block;
  background: #25D366;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  padding: 12px 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s;
}
.whatsapp-popup__cta:hover { background: #1fc25e; }
.whatsapp-float {
  height: 42px;
  padding: 0 16px 0 12px;
  border-radius: 50px;
  background: rgba(10, 8, 6, 0.80);
  pointer-events: auto;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.10);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(250,250,248,0.88);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(0,0,0,.28), 0 1px 4px rgba(0,0,0,.18);
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease-spring);
  flex-shrink: 0;
  white-space: nowrap;
}
.whatsapp-float__icon {
  display: none;
  width: 20px; height: 20px;
  flex-shrink: 0;
  fill: #25D366;
}
.whatsapp-float__label { flex-shrink: 0; }
.whatsapp-float::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 0 0 rgba(37,211,102,.5);
  animation: wa-pulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  50%       { box-shadow: 0 0 0 5px rgba(37,211,102,.0); }
}
.whatsapp-float:hover {
  background: rgba(20, 16, 12, 0.92);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}
@media (max-width: 480px) {
  .whatsapp-widget { bottom: 16px; right: 16px; }
  .whatsapp-float { padding: 0 14px 0 10px; }
  .whatsapp-float__icon { display: block; }
  .whatsapp-float__label { display: none; }
  .whatsapp-float::before { width: 8px; height: 8px; }
  .whatsapp-popup { width: calc(100vw - 32px); }
}


/* ══════════════════════════════════════════════════════════
   COOKIE BANNER RGPD
══════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(17,19,17,.97);
  border-top: 1px solid rgba(77,92,56,.2);
  backdrop-filter: blur(12px);
  z-index: var(--z-modal);
  transform: translateY(100%);
  transition: transform var(--dur) var(--ease-out);
  padding: var(--sp-5) var(--gutter);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
.cookie-banner__text {
  font-size: var(--t-sm);
  color: rgba(250,250,248,.6);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  flex: 1;
  min-width: 200px;
}
.cookie-banner__link {
  color: var(--rose);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__actions {
  display: flex;
  gap: var(--sp-3);
  flex-shrink: 0;
}
.cookie-banner__btn {
  height: 38px;
  padding-inline: var(--sp-6);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--dur-fast) var(--ease);
}
.cookie-banner__btn--accept {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
}
.cookie-banner__btn--accept:hover { background: var(--rose-deep); border-color: var(--rose-deep); }
.cookie-banner__btn--decline {
  background: transparent;
  color: rgba(250,250,248,.45);
  border-color: rgba(250,250,248,.12);
}
.cookie-banner__btn--decline:hover { color: rgba(250,250,248,.8); border-color: rgba(250,250,248,.3); }
@media (max-width: 580px) {
  .cookie-banner__inner { flex-direction: column; align-items: stretch; }
  .cookie-banner__actions { justify-content: stretch; }
  .cookie-banner__btn { flex: 1; }
}


/* ═══════════════════════════════════════════════════════════
   WHAT WE DO SECTION
═══════════════════════════════════════════════════════════ */
.what-we-do-section {
  padding-block: clamp(5rem, 10vw, 8rem);
  background: var(--ivoire);
  overflow: hidden;
}
.what-we-do__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
}
.what-we-do__img-col {
  position: relative;
}
.what-we-do__img {
  width: 100%;
  height: clamp(380px, 55vw, 640px);
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.what-we-do__content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.what-we-do__content .section-title {
  margin-top: 0;
}
.what-we-do__content .body-text {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.75;
  color: var(--texte-lt);
  max-width: 48ch;
}
@media (max-width: 860px) {
  .what-we-do__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .what-we-do__img {
    height: 300px;
  }
}


/* ═══════════════════════════════════════════════════════════
   WHY B.LIFTED SECTION
═══════════════════════════════════════════════════════════ */
.why-section {
  background: var(--bg-dark);
  color: var(--blanc);
}
.why-section .section-title,
.why-section .eyebrow {
  color: var(--blanc);
}
.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 3rem;
  list-style: none;
  margin: 0 auto;
  max-width: 860px;
  padding: 0;
}
.why-list__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.6;
  color: rgba(250,250,248,0.75);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(250,250,248,0.08);
}
.why-list__check {
  color: var(--or);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-weight: 600;
}
@media (max-width: 640px) {
  .why-list {
    grid-template-columns: 1fr;
  }
}


/* ═══════════════════════════════════════════════════════════
   DESIGNED FOR SECTION
═══════════════════════════════════════════════════════════ */
.designed-section {
  background: var(--bg-dark);
}
.designed-section .eyebrow {
  color: var(--or);
}
.designed-section .section-title {
  color: var(--blanc);
}
.designed-section .section-title em {
  color: var(--or-lt);
  font-style: italic;
}
.designed-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
}
.designed-card {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9999px;
  padding: 0.75rem 1.875rem;
  background: rgba(255,255,255,0.03);
  transition: border-color 0.28s ease, background 0.28s ease;
  cursor: default;
}
.designed-card:hover {
  border-color: var(--or);
  background: rgba(77,92,56,0.14);
  box-shadow: 0 0 20px rgba(77,92,56,0.12);
  transform: none;
}
.designed-card__num {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--or);
  text-transform: uppercase;
}
.designed-card__name {
  font-size: clamp(0.78rem, 1.1vw, 0.875rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.82);
  text-transform: uppercase;
  line-height: 1;
}
@media (max-width: 480px) {
  .designed-grid { gap: 0.5rem; }
  .designed-card { padding: 0.625rem 1.25rem; }
  .designed-card__name { font-size: 0.75rem; }
}


/* ═══════════════════════════════════════════════════════════
   BIG QUOTE SECTION
═══════════════════════════════════════════════════════════ */
.big-quote-section {
  background: var(--bg-darker);
  padding-block: clamp(6rem, 12vw, 10rem);
  text-align: center;
}
.big-quote {
  margin: 0 auto;
  max-width: 800px;
}
.big-quote__text {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  color: var(--blanc);
  letter-spacing: -0.01em;
}
.big-quote__text em {
  color: var(--or-lt);
  font-style: italic;
}


/* ═══════════════════════════════════════════════════════════
   EVERY DETAIL MATTERS SECTION
═══════════════════════════════════════════════════════════ */
.every-detail-section {
  background: var(--ivoire);
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
}
.detail-card {
  background: var(--blanc);
  border: 1px solid var(--or-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}
.detail-card:hover {
  border-color: var(--or);
  box-shadow: 0 8px 32px var(--or-glow);
  transform: translateY(-3px);
}
.detail-card__icon {
  width: 40px;
  height: 40px;
  color: var(--or);
}
.detail-card__icon svg {
  width: 100%;
  height: 100%;
}
.detail-card__title {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 600;
  color: var(--texte);
  line-height: 1.35;
  margin: 0;
}
.detail-card__text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--texte-lt);
  margin: 0;
}
@media (max-width: 900px) {
  .detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
