:root {
  /* ── FONDS (du plus clair au plus structuré) ── */
  --green-deep:   #1a1814;
  --green:        #2a2620;
  --green-mid:    #3d3830;
  --green-light:  #5a5448;

  /* ── ACCENT OR ── */
  --gold:         #c9a96e;
  --gold-bright:  #e0c48a;
  --gold-dim:     #9e7e46;

  /* ── BLANC / IVOIRE ── */
  --beige:        #f4f1ec;
  --beige-warm:   #ede9e2;
  --beige-dark:   #d8d2c8;
  --cream:        #faf8f5;

  /* ── TYPOGRAPHIE ── */
  --text-dark:    #1a1814;
  --text-mid:     #4a4640;
  --text-light:   #8a8478;

  --wa:           #25D366;

  /* ── RAYONS ── */
  --r-sm:  6px;
  --r-md:  14px;
  --r-lg:  24px;
  --r-xl:  36px;
  --r-pill:999px;

  /* ── TRANSITIONS ── */
  --ease-out: cubic-bezier(0.16,1,0.3,1);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── SCROLL PROGRESS BAR ── */
#progress-bar {
  position: fixed; top: 0; left: 0; z-index: 10000;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-bright));
  transition: width 0.1s linear;
  pointer-events: none;
  border-radius: 0 var(--r-pill) var(--r-pill) 0;
}

/* ── CURSOR UPGRADE ── */
* { cursor: none !important; }

#cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-out),
              height 0.25s var(--ease-out),
              background 0.25s ease,
              opacity 0.25s ease;
  mix-blend-mode: normal;
}

#cursor-ring {
  width: 40px; height: 40px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.5s var(--ease-out),
              height 0.5s var(--ease-out),
              opacity 0.4s ease,
              border-color 0.3s ease,
              border-radius 0.4s ease;
  opacity: 0.45;
}

/* Hover state — curseur s'élargit et se colorise */
.cursor-hover #cursor {
  width: 5px; height: 5px;
  background: var(--gold-bright);
}
.cursor-hover #cursor-ring {
  width: 64px; height: 64px;
  opacity: 0.9;
  border-color: var(--gold-bright);
  border-width: 1px;
}

/* Cursor click pulse */
#cursor.clicking {
  transform: translate(-50%, -50%) scale(0.6);
}
#cursor-ring.clicking {
  transform: translate(-50%, -50%) scale(1.4);
  opacity: 0.2;
}

/* ── FLOATING WA ── */
#wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  width: 58px; height: 58px;
  background: var(--wa);
  border-radius: var(--r-pill);
  border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.3s ease;
}
#wa-float:hover {
  transform: scale(1.15) rotate(-6deg);
  box-shadow: 0 12px 48px rgba(37,211,102,0.65);
}
#wa-float svg { width: 26px; height: 26px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
#wa-float::after {
  content: '';
  position: absolute; inset: -6px;
  border-radius: var(--r-pill);
  border: 2px solid rgba(37,211,102,0.35);
  animation: wa-pulse 2.4s ease-in-out infinite;
}
@keyframes wa-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.35); opacity: 0; }
}

/* ── STICKY NAV ── */
#sticky-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  padding: 0 3rem;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(26,24,20,0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background 0.5s ease, backdrop-filter 0.5s ease, border-color 0.5s ease;
  pointer-events: none;
}
#sticky-nav.scrolled {
  background: rgba(26,24,20,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(201,168,76,0.1);
  pointer-events: all;
}
.snav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.76rem; letter-spacing: 0.28em;
  color: var(--gold); text-transform: uppercase;
  opacity: 0; transition: opacity 0.4s;
}
#sticky-nav.scrolled .snav-logo { opacity: 1; }
.snav-btn {
  font-size: 0.68rem; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.7); text-transform: uppercase;
  border: 1px solid rgba(201,168,76,0.4);
  padding: 0.45rem 1.4rem;
  background: none;
  border-radius: var(--r-pill);
  transition: all 0.3s var(--ease-out);
  opacity: 0;
}
#sticky-nav.scrolled .snav-btn { opacity: 1; }
.snav-btn:hover {
  background: rgba(201,168,76,0.14);
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: hero-zoom 18s ease-out forwards;
}
@keyframes hero-zoom {
  from { transform: scale(1.12); }
  to   { transform: scale(1.01); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 60%, rgba(20,18,14,0.38) 0%, transparent 65%),
    linear-gradient(180deg, rgba(20,18,14,0.80) 0%, rgba(20,18,14,0.44) 50%, rgba(20,18,14,0.88) 100%);
}
.hero-grain {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.28;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

.hero-nav {
  position: absolute; top: 0; left: 0; right: 0;
  padding: 2rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 10;
  animation: fade-down 1s ease 0.2s both;
}
.hero-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem; letter-spacing: 0.28em;
  color: var(--gold); text-transform: uppercase;
}
.hero-nav-line { height: 1px; width: 80px; background: linear-gradient(90deg, var(--gold), transparent); }
.hero-nav-btn {
  font-size: 0.7rem; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.65); text-transform: uppercase;
  border: 1px solid rgba(201,168,76,0.35);
  padding: 0.5rem 1.4rem;
  background: none;
  border-radius: var(--r-pill);
  transition: all 0.3s var(--ease-out);
}
.hero-nav-btn:hover {
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.hero-body {
  position: relative; z-index: 10;
  max-width: 860px; padding: 0 2rem;
  animation: fade-up 1.2s ease 0.4s both;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 1rem;
  margin-bottom: 1.6rem;
}
.eyebrow-line { width: 44px; height: 1px; background: var(--gold); opacity: 0.65; }
.hero-eyebrow span {
  font-size: 0.7rem; letter-spacing: 0.3em;
  color: var(--gold); text-transform: uppercase; font-weight: 400;
}

/* ── SPLIT TEXT HERO ── */
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8.5vw, 6.5rem);
  font-weight: 300; color: white;
  line-height: 1.08; margin-bottom: 1.6rem;
}
.hero h1 em { font-style: italic; color: var(--gold-bright); }
.hero h1 .word { display: inline-block; overflow: hidden; }
.hero h1 .word-inner {
  display: inline-block;
  animation: word-reveal 0.9s var(--ease-out) both;
}
.hero h1 .word:nth-child(1) .word-inner { animation-delay: 0.5s; }
.hero h1 .word:nth-child(2) .word-inner { animation-delay: 0.65s; }
.hero h1 .word:nth-child(3) .word-inner { animation-delay: 0.8s; }
@keyframes word-reveal {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.hero-sub {
  font-size: clamp(0.92rem, 1.8vw, 1.08rem);
  color: rgba(237,229,212,0.82);
  max-width: 520px; margin: 0 auto 2.4rem;
  line-height: 1.9; font-weight: 300; letter-spacing: 0.03em;
  animation: fade-up 1s ease 1.1s both;
}

.hero-ctas {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap;
  animation: fade-up 1s ease 1.25s both;
}

/* ── BOUTONS ── */
.btn-primary {
  background: var(--gold); color: var(--green-deep);
  border: none; padding: 0.95rem 2.2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.75rem;
  border-radius: var(--r-pill);
  transition: all 0.35s var(--ease-out);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold-bright);
  border-radius: inherit;
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out);
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(201,168,76,0.35);
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary svg { width: 17px; height: 17px; stroke: var(--green-deep); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.3s var(--ease-spring); }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
  background: none;
  border: 1px solid rgba(201,168,76,0.42);
  color: rgba(237,229,212,0.75);
  padding: 0.95rem 2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem; font-weight: 400; letter-spacing: 0.15em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.5rem;
  border-radius: var(--r-pill);
  transition: all 0.3s var(--ease-out);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.07);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.12);
}
.btn-ghost svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.hero-trust {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 1.8rem;
  z-index: 10; white-space: nowrap;
  animation: fade-up 1s ease 1.4s both;
}
.trust-item { display: flex; align-items: center; gap: 0.45rem; font-size: 0.68rem; letter-spacing: 0.15em; color: rgba(237,229,212,0.45); text-transform: uppercase; }
.trust-item svg { width: 13px; height: 13px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; opacity: 0.65; }
.trust-sep { width: 1px; height: 18px; background: rgba(201,168,76,0.2); }

.scroll-hint {
  position: absolute; bottom: 2.5rem; right: 3rem; z-index: 10;
  writing-mode: vertical-lr; font-size: 0.62rem; letter-spacing: 0.3em;
  color: rgba(201,168,76,0.45); text-transform: uppercase;
  display: flex; align-items: center; gap: 0.7rem;
}
.scroll-hint::after {
  content: ''; display: block; width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { opacity: 0.35; transform: scaleY(0.5); transform-origin: top; }
  50%       { opacity: 1; transform: scaleY(1); }
}

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--green-deep); padding: 0.85rem 0; overflow: hidden;
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  position: relative;
}
.marquee-strip::before, .marquee-strip::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
}
.marquee-strip::before { left: 0; background: linear-gradient(90deg, var(--green-deep), transparent); }
.marquee-strip::after  { right: 0; background: linear-gradient(-90deg, var(--green-deep), transparent); }
.marquee-track { display: flex; animation: marquee 32s linear infinite; white-space: nowrap; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 1.2rem;
  padding: 0 2.5rem; font-size: 0.64rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: rgba(201,168,76,0.5);
  transition: color 0.3s;
}
.marquee-item:hover { color: var(--gold); }
.marquee-dot { width: 3px; height: 3px; background: var(--gold); border-radius: 50%; opacity: 0.35; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTIONS (espacements réduits) ── */
section { padding: 5rem 2rem; }
.bg-cream { background: var(--cream); }
.bg-beige { background: var(--beige); }
.bg-white { background: #fff; }
.bg-deep  { background: var(--green-deep); }
.bg-green { background: var(--green); }

.container    { max-width: 1200px; margin: 0 auto; }
.container-sm { max-width: 860px; margin: 0 auto; }

.section-label {
  display: inline-flex; align-items: center; gap: 0.8rem;
  margin-bottom: 1.1rem;
}
.section-label span { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-dim); font-weight: 500; }
.sl-line { width: 28px; height: 1px; background: var(--gold-dim); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; color: var(--green); line-height: 1.2; margin-bottom: 0.9rem;
}
.section-title em { font-style: italic; color: var(--green-mid); }
.section-title.light { color: white; }
.section-sub { font-size: 0.95rem; color: var(--text-light); line-height: 1.85; max-width: 500px; font-weight: 300; }
.section-sub.light { color: rgba(237,229,212,0.65); }

/* ── PROBLEMS ── */
.problems-section { background: var(--cream); }
.problems-header { max-width: 580px; margin-bottom: 3.5rem; }

.problems-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--beige-dark);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(26,24,20,0.05);
}
@media (max-width: 900px) { .problems-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .problems-grid { grid-template-columns: 1fr; } }

.problem-card {
  padding: 2.4rem 1.8rem;
  border-right: 1px solid var(--beige-dark);
  position: relative; overflow: hidden;
  transition: background 0.4s ease, transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}
.problem-card:last-child { border-right: none; }
.problem-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease-out);
}
.problem-card:hover {
  background: #fff;
  box-shadow: 0 8px 40px rgba(26,24,20,0.08);
  transform: translateY(-4px);
  z-index: 1;
}
.problem-card:hover::after { transform: scaleX(1); }
.problem-card:hover .problem-icon {
  background: var(--gold);
  transform: rotate(-5deg) scale(1.1);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.problem-card:hover .problem-icon svg { stroke: var(--green-deep); }

.problem-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 300; color: var(--beige-dark);
  line-height: 1; margin-bottom: 1.2rem; transition: color 0.4s;
}
.problem-card:hover .problem-num { color: var(--gold); }

.problem-icon {
  width: 46px; height: 46px;
  background: var(--green);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.4s var(--ease-spring);
}
.problem-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.4s; }

.problem-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 500; color: var(--green); margin-bottom: 0.45rem; }
.problem-card p  { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }

/* ── SERVICES ── */
.services-section { background: var(--green); position: relative; overflow: hidden; }
.services-bg-text {
  position: absolute; top: 50%; left: -1%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(8rem, 18vw, 18rem); font-weight: 300;
  color: rgba(255,255,255,0.025); white-space: nowrap; pointer-events: none;
}

.services-layout {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 4.5rem; align-items: start; position: relative; z-index: 1;
}
@media (max-width: 900px) { .services-layout { grid-template-columns: 1fr; gap: 2.5rem; } }

.services-left .section-label span { color: rgba(201,168,76,0.55); }
.services-left .sl-line { background: rgba(201,168,76,0.45); }

.services-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: rgba(255,255,255,0.04);
  padding: 2rem 1.8rem;
  transition: background 0.35s ease, transform 0.35s var(--ease-out);
  position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0;
  background: linear-gradient(to bottom, var(--gold-dim), var(--gold));
  transition: height 0.45s var(--ease-out);
}

/* Shimmer effect au hover */
.service-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: linear-gradient(105deg, transparent 40%, rgba(201,168,76,0.06) 50%, transparent 60%);
  transform: skewX(-15deg);
  transition: left 0.7s ease;
  pointer-events: none;
}
.service-card:hover::before { left: 120%; }

.service-card:hover {
  background: rgba(201,168,76,0.07);
  transform: translateY(-2px);
}
.service-card:hover::after { height: 100%; }
.service-card:hover .service-icon {
  border-color: var(--gold);
  background: rgba(201,168,76,0.14);
  transform: rotate(8deg) scale(1.08);
  box-shadow: 0 6px 20px rgba(201,168,76,0.2);
}

.service-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(201,168,76,0.28);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  transition: all 0.4s var(--ease-spring);
}
.service-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.service-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.22rem; font-weight: 500; color: white; margin-bottom: 0.45rem; }
.service-card p  { font-size: 0.82rem; color: rgba(237,229,212,0.55); line-height: 1.7; }
a.service-card   { text-decoration: none; display: block; }
.service-arrow   { margin-top: 1.1rem; transition: transform 0.35s var(--ease-spring); }
.service-card:hover .service-arrow { transform: translateX(8px); }
.service-card:hover .service-arrow svg { stroke: var(--gold); }

/* ── APPROACH ── */
.approach-section { background: var(--beige); position: relative; overflow: hidden; }

.approach-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem; margin-top: 4rem;
  position: relative;
}
.approach-grid::before {
  content: '';
  position: absolute;
  top: 35px; left: calc(12.5% + 35px); right: calc(12.5% + 35px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(18,40,68,0.2) 15%, rgba(196,163,90,0.35) 50%, rgba(18,40,68,0.2) 85%, transparent);
  z-index: 0;
}
@media (max-width: 900px) {
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-grid::before { display: none; }
}
@media (max-width: 500px) {
  .approach-grid { grid-template-columns: 1fr; }
}

.approach-item {
  position: relative; z-index: 1;
  padding: 1.5rem;
  border-radius: var(--r-lg);
  transition: background 0.35s ease, transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}
.approach-item:hover {
  background: rgba(201,168,76,0.05);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(26,24,20,0.1);
}

.approach-step {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-dim); margin-bottom: 0.6rem; font-weight: 500;
}
.approach-icon-wrap {
  width: 70px; height: 70px;
  background: var(--green);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem; position: relative;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease, border-radius 0.4s ease;
}
.approach-item:hover .approach-icon-wrap {
  transform: translateY(-4px) rotate(-4deg);
  box-shadow: 0 16px 40px rgba(26,24,20,0.18);
  border-radius: var(--r-xl);
}
.approach-icon-wrap::before {
  content: ''; position: absolute; inset: -7px;
  border-radius: inherit;
  border: 1px solid rgba(18,40,68,0.18);
  transition: border-color 0.4s, inset 0.4s, border-radius 0.4s;
}
.approach-item:hover .approach-icon-wrap::before {
  border-color: rgba(201,168,76,0.3); inset: -10px;
}
.approach-icon-wrap svg { stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.approach-item h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 500; color: var(--green); margin-bottom: 0.45rem; }
.approach-item p  { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }

/* ── BENEFITS ── */
.benefits-section { background: var(--cream); }
.benefits-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
@media (max-width: 900px) { .benefits-layout { grid-template-columns: 1fr; gap: 2.5rem; } }

.benefits-visual { position: relative; height: 440px; }
.benefits-visual img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.85) saturate(0.88);
  border-radius: var(--r-xl);
  transition: filter 0.4s ease;
}
.benefits-visual:hover img { filter: brightness(0.9) saturate(0.95); }
.benefits-frame {
  position: absolute; inset: 0;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--r-xl);
  transform: translate(12px, 12px); pointer-events: none;
  transition: transform 0.5s var(--ease-out);
}
.benefits-visual:hover .benefits-frame { transform: translate(20px, 20px); }
.benefits-badge {
  position: absolute; bottom: -1.2rem; left: -1.2rem;
  background: var(--green); padding: 1.3rem 1.6rem;
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: var(--r-lg);
  min-width: 140px;
  box-shadow: 0 8px 32px rgba(26,24,20,0.25);
  transition: transform 0.35s var(--ease-spring);
}
.benefits-visual:hover .benefits-badge { transform: translateY(-4px); }
.badge-num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: var(--gold); line-height: 1; }
.badge-label { font-size: 0.65rem; letter-spacing: 0.18em; color: rgba(237,229,212,0.55); text-transform: uppercase; margin-top: 0.2rem; }

.benefits-list { display: flex; flex-direction: column; gap: 0.7rem; }
.benefit-item {
  display: flex; align-items: center; gap: 1.1rem;
  padding: 1rem 1.4rem;
  background: var(--beige);
  border-left: 3px solid transparent;
  border-radius: var(--r-md);
  transition: all 0.35s var(--ease-out);
  position: relative; overflow: hidden;
}
.benefit-item::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(201,168,76,0.06), transparent);
  transform: translateX(-100%); transition: transform 0.4s ease;
  border-radius: inherit;
}
.benefit-item:hover {
  border-left-color: var(--gold);
  background: #fff;
  transform: translateX(6px);
  box-shadow: 0 4px 24px rgba(26,24,20,0.08);
}
.benefit-item:hover::before { transform: translateX(0); }
.benefit-item svg { width: 18px; height: 18px; stroke: var(--green); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; position: relative; z-index: 1; transition: stroke 0.3s, transform 0.35s var(--ease-spring); }
.benefit-item:hover svg { stroke: var(--gold); transform: scale(1.15); }
.benefit-item p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.5; position: relative; z-index: 1; }

/* ── TESTIMONIALS ── */
.testi-section { background: var(--green-deep); }
.testi-header { text-align: center; margin-bottom: 3.5rem; }
.testi-header .section-label { justify-content: center; }
.testi-header .section-label span { color: rgba(201,168,76,0.55); }
.testi-header .sl-line { background: rgba(201,168,76,0.4); }

.testi-carousel { position: relative; overflow: hidden; border-radius: var(--r-xl); }
.testi-track {
  display: flex;
  transition: transform 0.6s var(--ease-out);
}
.testi-card {
  min-width: 100%; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.testi-card-inner {
  background: rgba(255,255,255,0.04);
  padding: 2.2rem 1.8rem;
  border: 1px solid rgba(255,255,255,0.05);
  transition: background 0.35s ease, transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}
.testi-card-inner:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
  z-index: 1;
}
@media (max-width: 900px) {
  .testi-card { grid-template-columns: 1fr; }
}

.testi-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 0.6rem; margin-top: 2rem;
}
.testi-dot {
  width: 6px; height: 6px; border-radius: var(--r-pill);
  background: rgba(201,168,76,0.25); border: none;
  transition: all 0.35s var(--ease-out); padding: 0;
}
.testi-dot.active { background: var(--gold); width: 28px; }
.testi-arrow {
  width: 42px; height: 42px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(201,168,76,0.25); background: none;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease-out); margin: 0 0.8rem;
}
.testi-arrow:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
  transform: scale(1.08);
}
.testi-arrow svg { width: 16px; height: 16px; stroke: rgba(201,168,76,0.6); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.3s; }
.testi-arrow:hover svg { stroke: var(--gold); }

.testi-stars { display: flex; gap: 0.25rem; margin-bottom: 1.2rem; }
.testi-stars svg { width: 13px; height: 13px; fill: var(--gold); transition: transform 0.2s; }
.testi-stars svg:hover { transform: scale(1.3); }

.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem; font-weight: 300; font-style: italic;
  color: rgba(237,229,212,0.82); line-height: 1.75; margin-bottom: 1.6rem;
}
.testi-author { display: flex; align-items: center; gap: 0.85rem; }
.testi-avatar {
  width: 38px; height: 38px;
  background: var(--green-mid);
  border-radius: var(--r-pill);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--gold);
  border: 1px solid rgba(201,168,76,0.2);
  transition: transform 0.35s var(--ease-spring), border-color 0.3s;
}
.testi-card-inner:hover .testi-avatar {
  transform: scale(1.1);
  border-color: rgba(201,168,76,0.5);
}
.testi-name { font-size: 0.8rem; font-weight: 500; color: rgba(237,229,212,0.65); letter-spacing: 0.06em; }
.testi-loc  { font-size: 0.68rem; color: rgba(201,168,76,0.45); letter-spacing: 0.06em; }

/* ── CTA ── */
.cta-section {
  position: relative; overflow: hidden;
  text-align: center; padding: 7rem 2rem;
}
.cta-bg-img { position: absolute; inset: 0; }
.cta-bg-img img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,24,20,0.94) 0%, rgba(26,24,20,0.97) 100%);
}
.cta-orb {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.1), transparent 70%);
  pointer-events: none; animation: orb-float linear infinite;
}
.cta-orb:nth-child(1) { width: 300px; height: 300px; top: -80px; left: -60px; animation-duration: 18s; }
.cta-orb:nth-child(2) { width: 200px; height: 200px; bottom: -50px; right: 5%; animation-duration: 22s; animation-delay: -6s; }
.cta-orb:nth-child(3) { width: 150px; height: 150px; top: 30%; right: 20%; animation-duration: 15s; animation-delay: -3s; }
@keyframes orb-float {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(20px, -30px) scale(1.08); }
  66%  { transform: translate(-15px, 15px) scale(0.95); }
  100% { transform: translate(0, 0) scale(1); }
}
.cta-content { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.cta-section .section-label { justify-content: center; }
.cta-section .section-label span { color: rgba(201,168,76,0.55); }
.cta-section .sl-line { background: rgba(201,168,76,0.4); }

.cta-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 300;
  color: white; line-height: 1.15; margin-bottom: 1.2rem;
}
.cta-section h2 em { font-style: italic; color: var(--gold-bright); }
.cta-section p { font-size: 0.98rem; color: rgba(237,229,212,0.68); line-height: 1.9; margin-bottom: 2.4rem; }

.cta-actions { display: flex; justify-content: center; gap: 1.2rem; flex-wrap: wrap; margin-bottom: 2rem; }
.cta-guarantees { display: flex; align-items: center; justify-content: center; gap: 1.8rem; flex-wrap: wrap; }
.cta-guarantee { display: flex; align-items: center; gap: 0.45rem; font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(201,168,76,0.5); }
.cta-guarantee svg { width: 13px; height: 13px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; opacity: 0.65; }
.cta-sep { width: 1px; height: 14px; background: rgba(201,168,76,0.2); }

/* ── FOOTER ── */
footer {
  background: var(--green-deep); padding: 4rem 2rem 2.5rem;
  border-top: 1px solid rgba(201,168,76,0.1);
  position: relative; overflow: hidden;
}
footer::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem; margin-bottom: 2.5rem; position: relative; z-index: 1;
}
@media (max-width: 700px) { .footer-inner { grid-template-columns: 1fr; } }

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; letter-spacing: 0.22em; color: var(--gold); text-transform: uppercase; margin-bottom: 0.6rem;
}
.footer-gold-line { width: 36px; height: 1px; background: var(--gold); opacity: 0.4; margin: 0.9rem 0; }
.footer-tagline { font-size: 0.78rem; color: rgba(237,229,212,0.38); letter-spacing: 0.06em; line-height: 1.8; max-width: 220px; }

.footer-col h4 { font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(201,168,76,0.5); margin-bottom: 1.1rem; font-weight: 500; }
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-link {
  font-size: 0.82rem; color: rgba(237,229,212,0.38); transition: all 0.25s var(--ease-out);
  text-decoration: none; letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 0.4rem;
}
.footer-link::before { content: ''; width: 0; height: 1px; background: var(--gold); transition: width 0.3s var(--ease-out); }
.footer-link:hover { color: var(--gold); transform: translateX(4px); }
.footer-link:hover::before { width: 12px; }

.footer-values { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-value { display: flex; align-items: center; gap: 0.55rem; font-size: 0.8rem; color: rgba(237,229,212,0.38); }
.footer-value svg { width: 13px; height: 13px; stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; opacity: 0.5; flex-shrink: 0; }

.footer-bottom {
  max-width: 1200px; margin: 0 auto; position: relative; z-index: 1;
  padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-copy    { font-size: 0.7rem; color: rgba(237,229,212,0.22); letter-spacing: 0.08em; }
.footer-country { font-size: 0.7rem; color: rgba(201,168,76,0.35); letter-spacing: 0.15em; text-transform: uppercase; }

/* ── ANIMATIONS ── */
@keyframes fade-up   { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes fade-down { from { opacity: 0; transform: translateY(-18px); } to { opacity: 1; transform: none; } }

/* Reveal au scroll — plus fluide */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.18s; }
.delay-3 { transition-delay: 0.28s; }
.delay-4 { transition-delay: 0.4s; }

/* ── GLOW EFFECT sur les titres au hover ── */
.section-title:hover em {
  text-shadow: 0 0 40px rgba(201,168,76,0.3);
}

/* ── RESPONSIVE ── */

@media (max-width: 1024px) {
  .services-layout { grid-template-columns: 1fr 1.3fr; gap: 3.5rem; }
  .benefits-layout { gap: 4rem; }
  #sticky-nav { padding: 0 1.5rem; }
}

@media (max-width: 900px) {
  .services-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .benefits-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .benefits-visual { height: 320px; }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-grid::before { display: none; }
  .testi-card { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-nav { padding: 1.4rem 1.2rem; }
  .hero-nav-line, .hero-nav-btn { display: none; }
  .scroll-hint { display: none; }
  .hero-trust { gap: 0.7rem; flex-wrap: wrap; justify-content: center; padding: 0 0.8rem; }
  .trust-sep { display: none; }
  section { padding: 4rem 1.4rem; }
  .cta-section { padding: 5.5rem 1.4rem; }
  .problems-header { margin-bottom: 2.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .cta-guarantees { gap: 1rem; }
  .hero-ctas { gap: 0.9rem; }
  .btn-primary, .btn-ghost { padding: 0.85rem 1.6rem; font-size: 0.73rem; }
}

@media (max-width: 600px) {
  .approach-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .problems-grid { grid-template-columns: 1fr; border-radius: var(--r-md); }
  .benefits-visual { height: 260px; }
  .benefits-badge { left: 0; bottom: -1rem; padding: 1rem 1.2rem; min-width: 120px; border-radius: var(--r-md); }
  .badge-num { font-size: 2rem; }
  .testi-card-inner { padding: 1.8rem 1.4rem; }
  .footer-inner { gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  section { padding: 3.5rem 1rem; }
}

@media (max-width: 480px) {
  .hero-trust { bottom: 1.2rem; gap: 0.5rem; }
  .trust-item { font-size: 0.58rem; }
  .hero h1 { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .hero-sub { font-size: 0.88rem; }
  .cta-section h2 { font-size: clamp(2rem, 7vw, 2.8rem); }
  .problem-card { padding: 2rem 1.4rem; }
  #sticky-nav { padding: 0 1rem; }
  .snav-logo { font-size: 0.65rem; letter-spacing: 0.18em; }
}
/* ── SNAV LINKS (navigation pages) ── */
.snav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex: 1;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
#sticky-nav.scrolled .snav-links { opacity: 1; }

.snav-link {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(237,229,212,0.5);
  text-decoration: none;
  padding: 0.38rem 0.75rem;
  border-radius: var(--r-sm);
  transition: color 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.snav-link:hover { color: var(--gold); background: rgba(201,168,76,0.07); }
.snav-link.active { color: var(--gold); }

/* ── BURGER MOBILE ── */
.snav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.4rem;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
#sticky-nav.scrolled .snav-burger { opacity: 1; }
.snav-burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--gold);
  border-radius: var(--r-pill);
  transition: all 0.35s var(--ease-out);
}
.snav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.snav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.snav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU ── */
#snav-mobile-menu {
  position: fixed;
  top: 68px; left: 0; right: 0;
  z-index: 799;
  background: rgba(26,24,20,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 1.2rem 1.5rem 2rem;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s var(--ease-out), opacity 0.3s ease;
}
#snav-mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.snav-mobile-link {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(237,229,212,0.55);
  text-decoration: none;
  padding: 0.9rem 0.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  transition: color 0.25s ease, padding-left 0.25s ease;
}
.snav-mobile-link:hover,
.snav-mobile-link.active { color: var(--gold); padding-left: 0.8rem; }
#snav-mobile-menu .snav-btn { margin-top: 1.4rem; opacity: 1; text-align: center; width: 100%; padding: 0.85rem; }

/* ── RESPONSIVE NAVBAR ── */
@media (max-width: 900px) {
  .snav-links { display: none; }
  .snav-burger { display: flex; }
}
@media (max-width: 480px) {
  #sticky-nav .snav-btn { display: none; }
}
