/* ═══════════════════════════════════════
   RESET & VARIABLES
   ═══════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green: #3d5a34;
  --green-dark: #2c4226;
  --green-light: #4e7342;
  --gold: #b59a5a;
  --gold-light: #c9b27a;
  --gold-pale: #d4c49a;
  --cream: #f5f0e8;
  --cream-dark: #ebe4d6;
  --white: #fdfcfa;
  --black: #1a1a18;
  --text: #2e2e2c;
  --text-light: #6b6b66;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(181,154,90,0.15);
}

a { text-decoration: none; color: inherit; touch-action: manipulation; }
button { touch-action: manipulation; }
img { max-width: 100%; display: block; height: auto; }
ul { list-style: none; }

/* ═══════════════════════════════════════
   UTILITY
   ═══════════════════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--green-dark);
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* Reveal animations — only activate when JS adds .js-ready to body */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease-out);
}
.js-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.js-ready .reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease-out);
}
.js-ready .reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.js-ready .reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease-out);
}
.js-ready .reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.js-ready .reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease-out);
}
.js-ready .reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}
.js-ready .reveal-delay-1 { transition-delay: 0.1s; }
.js-ready .reveal-delay-2 { transition-delay: 0.2s; }
.js-ready .reveal-delay-3 { transition-delay: 0.3s; }
.js-ready .reveal-delay-4 { transition-delay: 0.4s; }

/* Counter animation for why-card numbers */
.why-card__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.js-ready .why-card__number {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.6s var(--ease), transform 0.8s var(--ease-out);
}
.js-ready .why-card__number.counted {
  opacity: 1;
  transform: scale(1);
  animation: countPop 0.5s var(--ease-out) 0.3s both;
}
.js-ready .why-card__number.counted:not([data-arrow]):not([data-stars]) {
  animation: countPop 0.5s var(--ease-out) 0.3s both, numberPulse 2.5s ease-in-out 1s infinite;
}
@keyframes countPop {
  0% { transform: scale(0.6); opacity: 0; }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes numberPulse {
  0%, 100% { transform: scale(1); text-shadow: 0 0 0 rgba(181,154,90,0); }
  50% { transform: scale(1.08); text-shadow: 0 0 20px rgba(181,154,90,0.4); }
}
.why-card__arrow-bounce {
  display: inline-block;
  animation: arrowBounce 1.5s ease-in-out infinite;
}
@keyframes arrowBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(5deg); }
}
/* Animated stars */
.why-card__stars .star {
  display: inline-block;
  font-size: 2.2rem;
  color: rgba(181,154,90,0.2);
  transition: color 0.4s var(--ease), transform 0.4s var(--ease);
}
.why-card__stars.counted .star {
  color: var(--gold);
  animation: starPop 0.5s var(--ease-out) both, starTwinkle 2s ease-in-out infinite;
  animation-delay: calc(0.15s * var(--i) + 0.3s), calc(0.15s * var(--i) + 1.2s);
}
@keyframes starPop {
  0% { transform: scale(0); color: rgba(181,154,90,0.2); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); color: var(--gold); }
}
@keyframes starTwinkle {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.2); filter: brightness(1.4); }
}

/* ═══════════════════════════════════════
   TOP BAR
   ═══════════════════════════════════════ */
.topbar {
  background: var(--green-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  padding: 0.5rem 0;
  letter-spacing: 0.04em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.topbar a { color: var(--gold-light); transition: color 0.3s; }
.topbar a:hover { color: var(--gold-pale); }
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 1.5rem; }
.topbar__item { display: flex; align-items: center; gap: 0.4rem; }
.topbar__social { display: flex; align-items: center; gap: 0.75rem; margin-left: 0.5rem; padding-left: 1rem; border-left: 1px solid rgba(255,255,255,0.2); }
.topbar__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  transition: all 0.3s;
}
.topbar__social-link:hover { color: #fff; transform: scale(1.2); }

/* ═══════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--cream);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transition: box-shadow 0.3s;
}
.header.scrolled {
  box-shadow: 0 2px 30px rgba(0,0,0,0.06);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
}
.logo img {
  height: 100px;
  width: auto;
}
.nav { display: flex; align-items: center; gap: 0; }
.nav__link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text);
  padding: 0.5rem 1.2rem;
  position: relative;
  transition: color 0.3s;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.3s var(--ease);
}
.nav__link:hover { color: var(--green); }
.nav__link:hover::after { width: 60%; }

.nav__dropdown { position: relative; }
.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  padding: 0.75rem 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: all 0.3s var(--ease);
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav__dropdown-menu a {
  display: block;
  padding: 0.55rem 1.4rem;
  font-size: 0.82rem;
  color: var(--text);
  transition: all 0.2s;
}
.nav__dropdown-menu a:hover {
  background: var(--cream);
  color: var(--green);
  padding-left: 1.6rem;
}

.nav__cta {
  margin-left: 1rem;
  padding: 0.6rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--white);
  background: var(--gold);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
}
.nav__cta:hover {
  background: var(--green);
  transform: translateY(-1px);
}

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--green-dark);
  transition: all 0.3s;
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  height: 90vh;
  min-height: 500px;
  max-height: 720px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4rem;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44,66,38,0.3) 0%,
    rgba(26,26,24,0.15) 50%,
    rgba(181,154,90,0.05) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  text-shadow: 0 2px 15px rgba(0,0,0,0.4);
}
.hero__welcome {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold-light);
  line-height: 0.85;
  margin-bottom: 0.5rem;
  animation: fadeInUp 0.8s var(--ease-out) 0.1s both;
}
.hero__welcome-sub {
  font-size: 0.42em;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  display: block;
  margin-bottom: -0.15em;
  line-height: 1;
}
.hero__separator {
  width: 60px;
  height: 2px;
  background: var(--gold-light);
  margin: 0 auto 1rem;
  animation: fadeInUp 0.8s var(--ease-out) 0.15s both;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  animation: fadeInUp 0.8s var(--ease-out) 0.2s both, badgeGlow 3s ease-in-out 1.5s infinite;
}
@keyframes badgeGlow {
  0%, 100% { border-color: rgba(255,255,255,0.15); box-shadow: 0 0 0 rgba(181,154,90,0); }
  50% { border-color: var(--gold-light); box-shadow: 0 0 20px rgba(181,154,90,0.25); }
}
.hero__badge span { color: var(--gold-light); }
.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.3;
  margin-bottom: 1.8rem;
  animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
}
.hero__subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  opacity: 0.8;
  margin-bottom: 2rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 0.8s var(--ease-out) 0.8s both;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  border: none;
}
.btn--primary {
  background: var(--gold);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(181,154,90,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}
.btn--green {
  background: var(--green);
  color: var(--white);
}
.btn--green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(61,90,52,0.3);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ═══════════════════════════════════════
   INTRO / BIENVENUE
   ═══════════════════════════════════════ */
.intro {
  padding: 7rem 0;
  background: var(--white);
}
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.intro__image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.intro__image:hover img { transform: scale(1.03); }
.intro__image::after {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold-pale);
  border-radius: 16px;
  z-index: -1;
}
.intro__badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(253,252,250,0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}
.intro__badge-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  animation: numberGlow 2.5s ease-in-out infinite;
}
@keyframes numberGlow {
  0%, 100% { transform: scale(1); text-shadow: 0 0 0 rgba(181,154,90,0); }
  50% { transform: scale(1.1); text-shadow: 0 0 18px rgba(181,154,90,0.5); }
}
.intro__badge-text {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.3;
}
.intro__text p {
  color: var(--text-light);
  margin-bottom: 1.2rem;
  font-size: 1rem;
}
.intro__text p strong { color: var(--text); font-weight: 500; }
.intro__quote {
  margin-top: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--cream-dark);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--green);
  line-height: 1.5;
}

/* ═══════════════════════════════════════
   SERVICES / PRESTATIONS
   ═══════════════════════════════════════ */
.services {
  padding: 7rem 0;
  background: var(--cream);
}
.services__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 0;
  text-align: center;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card__title,
.service-card__text {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.service-card__text {
  padding-bottom: 2rem;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
  z-index: 2;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 100%;
  height: 160px;
  margin: 0 0 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.service-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.service-card:hover .service-card__icon img {
  transform: scale(1.08);
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}
.service-card__text {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   DUAL SECTIONS (Voyageur / Propriétaire)
   ═══════════════════════════════════════ */
.dual {
  padding: 7rem 0;
}
.dual--cream { background: var(--cream); }
.dual__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.dual__grid--reverse .dual__content { order: -1; }
.dual__content p {
  color: var(--text-light);
  margin-bottom: 1.2rem;
  font-size: 1rem;
}
.dual__image {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.dual__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.dual__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.dual__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.dual__feature-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--gold);
  margin-top: 2px;
}
.dual__feature-text {
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 400;
}

/* ═══════════════════════════════════════
   WHY US
   ═══════════════════════════════════════ */
.why {
  padding: 7rem 0;
  background: var(--green-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(181,154,90,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.why .section-label { color: var(--gold-light); }
.why .section-title { color: var(--white); }
.why .section-title em { color: var(--gold-light); }
.why__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s var(--ease);
}
.why-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.why-card__suffix {
  font-size: 1.2rem;
}
.why-card__title {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.why-card__text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   MISSIONS
   ═══════════════════════════════════════ */
.missions {
  padding: 7rem 0;
  background: var(--white);
}
.missions__header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 4rem;
}
.missions__header p {
  color: var(--text-light);
  margin-top: 1rem;
}
.missions__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.mission-card {
  padding: 2.5rem;
  border: 1px solid var(--cream-dark);
  border-radius: 16px;
  transition: all 0.4s var(--ease);
  position: relative;
}
.mission-card:hover {
  border-color: var(--gold-pale);
  box-shadow: 0 10px 35px rgba(0,0,0,0.04);
}
.mission-card__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--cream-dark);
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  line-height: 1;
}
.mission-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}
.mission-card__text {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   ZONE D'INTERVENTION
   ═══════════════════════════════════════ */
.zone {
  padding: 7rem 0;
  background: var(--cream);
}
.zone__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.zone__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.zone__city {
  padding: 0.55rem 1.4rem;
  background: var(--white);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--green);
  border: 1px solid rgba(61,90,52,0.15);
  transition: all 0.3s;
}
.zone__city:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.zone__map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.zone__map-custom {
  width: 100%;
  aspect-ratio: 10/11;
}
/* SVG map animations */
.zone__map-custom svg .zone-border {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  transition: stroke-dashoffset 2s var(--ease-out);
}
.zone__map-custom svg .zone-fill {
  opacity: 0;
  transition: opacity 1s var(--ease) 0.8s;
}
.zone__map-custom svg .zone-city {
  opacity: 0;
  transform: scale(0);
  transform-origin: center;
  transform-box: fill-box;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease-out);
}
.zone__map-custom svg .zone-label {
  opacity: 0;
  transition: opacity 0.4s var(--ease) 0.2s;
}
.js-ready .reveal-scale.visible .zone-border {
  stroke-dashoffset: 0;
}
.js-ready .reveal-scale.visible .zone-fill {
  opacity: 1;
}
.js-ready .reveal-scale.visible .zone-city {
  opacity: 1;
  transform: scale(1);
}
.js-ready .reveal-scale.visible .zone-label {
  opacity: 1;
}
.js-ready .reveal-scale.visible .zone-city:nth-child(1) { transition-delay: 0.6s; }
.js-ready .reveal-scale.visible .zone-city:nth-child(2) { transition-delay: 0.7s; }
.js-ready .reveal-scale.visible .zone-city:nth-child(3) { transition-delay: 0.8s; }
.js-ready .reveal-scale.visible .zone-city:nth-child(4) { transition-delay: 0.9s; }
.js-ready .reveal-scale.visible .zone-city:nth-child(5) { transition-delay: 1.0s; }
.js-ready .reveal-scale.visible .zone-city:nth-child(6) { transition-delay: 1.1s; }
.js-ready .reveal-scale.visible .zone-city:nth-child(7) { transition-delay: 1.2s; }
.js-ready .reveal-scale.visible .zone-city:nth-child(8) { transition-delay: 1.3s; }
.js-ready .reveal-scale.visible .zone-city:nth-child(9) { transition-delay: 1.4s; }
.js-ready .reveal-scale.visible .zone-city:nth-child(10) { transition-delay: 1.5s; }
.js-ready .reveal-scale.visible .zone-city:nth-child(11) { transition-delay: 1.6s; }
.js-ready .reveal-scale.visible .zone-city:nth-child(12) { transition-delay: 1.7s; }
.js-ready .reveal-scale.visible .zone-city:nth-child(13) { transition-delay: 1.8s; }
.js-ready .reveal-scale.visible .zone-label:nth-of-type(1) { transition-delay: 0.7s; }
.js-ready .reveal-scale.visible .zone-label:nth-of-type(2) { transition-delay: 0.8s; }
.js-ready .reveal-scale.visible .zone-label:nth-of-type(3) { transition-delay: 0.9s; }
.js-ready .reveal-scale.visible .zone-label:nth-of-type(4) { transition-delay: 1.0s; }
.js-ready .reveal-scale.visible .zone-label:nth-of-type(5) { transition-delay: 1.1s; }
.js-ready .reveal-scale.visible .zone-label:nth-of-type(6) { transition-delay: 1.2s; }
.js-ready .reveal-scale.visible .zone-label:nth-of-type(7) { transition-delay: 1.3s; }
.js-ready .reveal-scale.visible .zone-label:nth-of-type(8) { transition-delay: 1.4s; }
.js-ready .reveal-scale.visible .zone-label:nth-of-type(9) { transition-delay: 1.5s; }
.js-ready .reveal-scale.visible .zone-label:nth-of-type(10) { transition-delay: 1.6s; }
.js-ready .reveal-scale.visible .zone-label:nth-of-type(11) { transition-delay: 1.7s; }
.js-ready .reveal-scale.visible .zone-label:nth-of-type(12) { transition-delay: 1.8s; }
.js-ready .reveal-scale.visible .zone-label:nth-of-type(13) { transition-delay: 1.9s; }
/* Car animation - only show when visible */
.zone-car {
  opacity: 0;
  transition: opacity 0.5s var(--ease) 2.2s;
}
.js-ready .reveal-scale.visible .zone-car {
  opacity: 1;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.testimonials {
  padding: 7rem 0;
  background: var(--white);
  overflow: hidden;
}
.testimonials__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.testimonials__track {
  display: flex;
  gap: 1.5rem;
  animation: scroll-left 20s linear infinite;
  width: max-content;
}
.testimonials__track:hover { animation-play-state: paused; }
.testimonial-card {
  flex-shrink: 0;
  width: 380px;
  background: var(--cream);
  border-radius: 16px;
  padding: 2.2rem;
  position: relative;
}
.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
.testimonial-card__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.testimonial-card__author {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--green);
}
.testimonial-card__role {
  font-size: 0.75rem;
  color: var(--text-light);
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════ */
.cta {
  padding: 6rem 0;
  background: var(--green-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(181,154,90,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(181,154,90,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.cta__content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0 auto;
}
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}
.cta__title em { color: var(--gold-light); font-style: italic; }
.cta__text {
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}
.cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn--premium {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 3rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% 200%;
  border: 2px solid var(--gold-light);
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  animation: shimmer-bg 3s ease-in-out infinite;
  box-shadow: 0 4px 20px rgba(181,154,90,0.3);
}
.btn--premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(181,154,90,0.5);
  border-color: var(--white);
}
.btn--premium__text { position: relative; z-index: 1; }
.btn--premium__shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  animation: shine-sweep 3s ease-in-out infinite;
}
@keyframes shimmer-bg {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes shine-sweep {
  0% { left: -100%; }
  60% { left: 150%; }
  100% { left: 150%; }
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  background: var(--cream);
  color: var(--text);
  padding: 4rem 0 2rem;
  border-top: 2px solid var(--gold);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand img {
  height: 100px;
  margin-bottom: 1.2rem;
}
.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 300px;
}
.footer__heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--green-dark);
  margin-bottom: 1.2rem;
}
.footer__links li { margin-bottom: 0.6rem; }
.footer__links a {
  font-size: 0.85rem;
  transition: color 0.3s;
}
.footer__links a:hover { color: var(--green); }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
}
.footer__contact-icon { color: var(--gold); font-size: 0.9rem; margin-top: 2px; }
.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 1.2rem;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--green);
  transition: all 0.3s;
}
.footer__social-link:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.footer__bottom {
  border-top: 1px solid var(--gold-pale);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}
.footer__bottom a { color: var(--green); }
.footer__bottom a:hover { color: var(--green-dark); }

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid > :last-child { grid-column: span 2; max-width: 400px; margin: 0 auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .intro__grid,
  .dual__grid { gap: 3rem; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
  /* — Global spacing — */
  .container { padding: 0 1.25rem; }
  .intro, .services, .dual, .why, .missions, .zone, .testimonials {
    padding: 4rem 0;
  }
  .cta { padding: 3.5rem 0; }

  /* — Top bar hidden — */
  .topbar { display: none; }

  /* — Header / Nav — */
  .header .container { height: 90px; }
  .logo img { height: 72px; }
  .nav { display: none; }
  .nav__cta { display: none; }
  .hamburger { display: flex; }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    z-index: 1050;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    padding: 2rem;
  }
  .nav.open .nav__link {
    font-size: 1.15rem;
    padding: 0.85rem 1rem;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .nav.open .nav__dropdown-menu {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    box-shadow: none;
    background: var(--cream);
    border-radius: 8px;
    margin-top: 0.25rem;
    width: 100%;
  }
  .nav.open .nav__dropdown-menu a {
    padding: 0.7rem 1.4rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  /* Mobile CTA inside menu */
  .nav.open::after {
    content: 'Estimez vos revenus';
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    padding: 0.85rem 2rem;
    background: var(--gold);
    color: var(--white);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
  }

  /* — Hero — */
  .hero {
    min-height: auto;
    max-height: none;
    height: auto;
    padding: 5rem 0 2.5rem;
    align-items: center;
  }
  .hero__welcome { font-size: 2.5rem; margin-bottom: 0.4rem; }
  .hero__welcome-sub { font-size: 0.5em; margin-bottom: -0.1em; }
  .hero__badge { font-size: 0.68rem; padding: 0.4rem 1rem; margin-bottom: 0.8rem; }
  .hero__title { font-size: 1.3rem; margin-bottom: 1.5rem; }
  .hero__title br { display: none; }
  .hero__subtitle { font-size: 1.05rem; margin-bottom: 2rem; }
  .hero__actions { flex-direction: column; gap: 0.75rem; }
  .hero__actions .btn { width: 100%; justify-content: center; min-height: 50px; }
  .hero__scroll { display: none; }

  /* — Intro — */
  .intro__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .intro__image {
    aspect-ratio: 3/4;
    max-height: 450px;
  }
  .intro__image::after { display: none; }
  .intro__badge {
    bottom: 1rem; left: 1rem;
    padding: 0.75rem 1rem;
  }
  .intro__badge-number { font-size: 1.8rem; }
  .section-title { font-size: 1.8rem; }
  .intro__quote { font-size: 1rem; }

  /* — Services — */
  .services__grid {
    grid-template-columns: 1fr 1fr;
    max-width: none;
    gap: 1rem;
  }
  .service-card { padding: 0; }
  .service-card__icon { width: 100%; height: 130px; margin-bottom: 1rem; }
  .service-card__title { font-size: 1.05rem; }
  .service-card__text { font-size: 0.82rem; }
  .services__header { margin-bottom: 2.5rem; }

  /* — Dual sections — */
  .dual__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .dual__grid--reverse .dual__content { order: 0; }
  .dual__image img { border-radius: 12px; }
  .dual__features { grid-template-columns: 1fr 1fr; gap: 0.75rem; margin: 1.5rem 0; }
  .dual__feature-text { font-size: 0.82rem; }

  /* — Why us — */
  .why__grid { grid-template-columns: 1fr; gap: 1rem; }
  .why__grid > :last-child { grid-column: span 1; max-width: none; }
  .why-card { padding: 2rem 1.5rem; }
  .why-card__number { font-size: 2.5rem; }
  .why__header { margin-bottom: 2.5rem; }

  /* — Missions — */
  .missions__grid { grid-template-columns: 1fr; gap: 1rem; }
  .mission-card { padding: 2rem 1.5rem; }
  .mission-card__num { font-size: 2.2rem; }
  .mission-card__title { font-size: 1.2rem; }
  .missions__header { margin-bottom: 2.5rem; }

  /* — Zone — */
  .zone__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .zone__cities { gap: 0.5rem; }
  .zone__city { padding: 0.5rem 1.1rem; font-size: 0.8rem; min-height: 40px; display: inline-flex; align-items: center; }
  .zone__map-custom { aspect-ratio: 1/1; }

  /* — Testimonials — */
  .testimonial-card {
    width: 290px;
    padding: 1.5rem;
  }
  .testimonial-card__text { font-size: 0.95rem; }
  .testimonials__header { margin-bottom: 2.5rem; }

  /* — CTA — */
  .cta__title { font-size: 1.6rem; }
  .cta__text { font-size: 0.9rem; margin-bottom: 2rem; }
  .cta__actions { flex-direction: column; gap: 0.75rem; align-items: center; }
  .btn--premium { width: 100%; max-width: 320px; min-height: 50px; }

  /* — Footer — */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__brand { grid-column: span 2; }
  .footer__brand p { max-width: none; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  /* — Touch targets everywhere ≥ 44px — */
  .btn { min-height: 48px; padding: 0.85rem 1.8rem; }
  .nav__link, .footer__links a { min-height: 44px; display: inline-flex; align-items: center; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — SMALL PHONE (≤ 480px)
   ═══════════════════════════════════════ */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .intro, .services, .dual, .why, .missions, .zone, .testimonials {
    padding: 3rem 0;
  }
  .cta { padding: 2.5rem 0; }

  .hero { padding: 4rem 0 2rem; }
  .hero__welcome { font-size: 2rem; margin-bottom: 0.3rem; }
  .hero__welcome-sub { font-size: 0.55em; letter-spacing: 0.1em; margin-bottom: -0.1em; }
  .hero__title { font-size: 1.15rem; margin-bottom: 1.2rem; }
  .hero__subtitle { font-size: 0.95rem; }
  .hero__badge { font-size: 0.62rem; letter-spacing: 0.08em; }

  .section-title { font-size: 1.5rem; }
  .section-label { font-size: 0.7rem; }

  .services__grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .service-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    text-align: left;
    padding: 0.75rem;
  }
  .service-card__icon { margin: 0; flex-shrink: 0; width: 90px; height: 90px; border-radius: 10px; }
  .service-card__title { font-size: 0.95rem; margin-bottom: 0.3rem; padding: 0; }
  .service-card__text { font-size: 0.78rem; padding: 0 0.5rem 0 0; }

  .dual__features { grid-template-columns: 1fr; }
  .intro__image { max-height: 400px; }

  .why-card { padding: 1.5rem 1.2rem; }
  .why-card__number { font-size: 2rem; }
  .why-card__title { font-size: 0.82rem; }

  .mission-card { padding: 1.5rem 1.2rem; }
  .mission-card__num { font-size: 1.8rem; top: 1rem; right: 1rem; }
  .mission-card__title { font-size: 1.05rem; }
  .mission-card__text { font-size: 0.85rem; }

  .testimonial-card { width: 260px; padding: 1.2rem; }
  .testimonial-card__text { font-size: 0.88rem; margin-bottom: 1rem; }

  .zone__map-custom { aspect-ratio: 9/10; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .cta__title { font-size: 1.4rem; }

  .intro__badge { padding: 0.6rem 0.8rem; }
  .intro__badge-number { font-size: 1.5rem; }
  .intro__badge-text { font-size: 0.7rem; }
}

/* ═══════════════════════════════════════
   SAFE AREAS (notch/bottom bar)
   ═══════════════════════════════════════ */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .footer { padding-bottom: calc(2rem + env(safe-area-inset-bottom)); }
  .hero { padding-top: calc(6rem + env(safe-area-inset-top)); }
}

/* ═══════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .js-ready .reveal,
  .js-ready .reveal-left,
  .js-ready .reveal-right,
  .js-ready .reveal-scale,
  .js-ready .why-card__number { opacity: 1; transform: none; transition: none; }
  .testimonials__track { animation: none; }
  .hero__badge, .hero__title, .hero__subtitle, .hero__actions { animation: none; }
  .hero__scroll { animation: none; }
  * { transition-duration: 0.01ms !important; }
}
