﻿/*
Theme Name: Futura Energie Habitat
Theme URI: https://futuraenergiehabitat.com/
Author: Bungee
Description: Theme vitrine statique pour Futura Energie Habitat.
Version: 1.0.0
Text Domain: futura-energie-habitat
*/
/* ==========================================================
   FUTURA ÉNERGIE HABITAT — Editorial refresh
   Direction : "Lumière du Sud"
   ========================================================== */

:root {
  /* Palette */
  --cream:        #F5EEE1;
  --cream-deep:   #EADFC8;
  --ivory:        #FBF7EE;
  --forest:       #0E3A2B;
  --forest-deep:  #06251B;
  --forest-soft:  #1C4D3B;
  --amber:        #E89B2B;
  --amber-light:  #F2BE5E;
  --terracotta:   #C9572C;
  --ink:          #15221D;
  --ink-soft:     #384A42;
  --muted:        #6B7B72;
  --line:         #D7CBB3;
  --line-soft:    #E6DCC5;

  /* Typo */
  --serif:  'Fraunces', ui-serif, Georgia, serif;
  --sans:   'Geist', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --mono:   'Geist Mono', ui-monospace, Menlo, monospace;

  /* Layout */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 28px;
  --r-xl: 40px;
  --container: 1360px;
  --pad-x: clamp(20px, 4vw, 64px);

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

::selection { background: var(--amber); color: var(--forest-deep); }

/* ===== Shared ===== */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-block;
}
.eyebrow--light { color: rgba(245, 238, 225, .75); }

.section-head {
  padding: 0 var(--pad-x);
  max-width: var(--container);
  margin: 0 auto 64px;
}
.section-head--center { text-align: center; }
.section-head--center .section-title { max-width: 900px; margin-inline: auto; }

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-top: 20px;
  color: var(--forest-deep);
}
.section-title em {
  font-style: italic;
  font-variation-settings: "SOFT" 100;
  color: var(--terracotta);
}
.section-lede {
  margin-top: 20px;
  max-width: 640px;
  color: var(--ink-soft);
  font-size: 18px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform .35s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
  position: relative;
}
.btn--sm  { padding: 10px 16px; font-size: 14px; }
.btn--lg  { padding: 16px 26px; font-size: 16px; }
.btn--block { width: 100%; justify-content: center; }

.btn--primary {
  background: var(--forest-deep);
  color: var(--cream);
}
.btn--primary:hover { background: var(--forest); transform: translateY(-2px); box-shadow: 0 12px 24px -12px rgba(14, 58, 43, .5); }

.btn--amber {
  background: var(--amber);
  color: var(--forest-deep);
}
.btn--amber:hover { background: var(--amber-light); transform: translateY(-2px); box-shadow: 0 12px 24px -12px rgba(232, 155, 43, .55); }

.btn--ghost {
  background: transparent;
  color: var(--forest-deep);
  border-color: var(--forest-deep);
}
.btn--ghost:hover { background: var(--forest-deep); color: var(--cream); }

.btn--ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 238, 225, .4);
}
.btn--ghost-light:hover { background: var(--cream); color: var(--forest-deep); }

/* ===== Ticker ===== */
.ticker {
  background: var(--forest-deep);
  color: var(--cream);
  overflow: hidden;
  border-bottom: 1px solid rgba(245, 238, 225, .1);
}
.ticker__track {
  display: flex;
  gap: 48px;
  padding: 10px 0;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
  animation: tick 35s linear infinite;
  width: max-content;
}
.ticker__track span { opacity: .85; }
@keyframes tick {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== Navigation ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(251, 247, 238, .8);
  border-bottom: 1px solid var(--line-soft);
  transition: padding .3s var(--ease);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px var(--pad-x);
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0;
  color: var(--forest-deep);
  flex-shrink: 0;
}
.brand__mark {
  display: block;
  width: clamp(142px, 13vw, 184px);
  aspect-ratio: 1092 / 426;
  background: transparent url("assets/logo-navbar.png") left center / contain no-repeat;
  flex-shrink: 0;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.brand__mark svg { display: none; }
.brand:hover .brand__mark {
  transform: translateY(-2px);
  opacity: .9;
}
.brand__text { display: none; }
.brand__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.brand__sub {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 4px;
  opacity: .6;
}

.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: auto;
}
.nav__links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav__links a:hover { color: var(--forest-deep); }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 0;
  background: var(--terracotta);
  transition: width .3s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--forest-deep);
}
.nav__phone:hover { color: var(--terracotta); }
.nav__burger { display: none; flex-direction: column; gap: 5px; width: 28px; }
.nav__burger span { height: 2px; background: var(--forest-deep); }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 64px var(--pad-x) 0;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
}
.hero__bg {
  position: absolute; inset: 0;
  pointer-events: none;
}
.sun {
  position: absolute;
  top: 12%;
  right: -6%;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--amber-light) 0%, var(--amber) 40%, transparent 72%);
  filter: blur(60px);
  opacity: .55;
  animation: sun-pulse 8s ease-in-out infinite;
}
@keyframes sun-pulse {
  0%, 100% { transform: scale(1); opacity: .55; }
  50%      { transform: scale(1.08); opacity: .7; }
}
.grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .3;
  mix-blend-mode: multiply;
}

.hero__grid {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: auto auto auto auto auto;
  gap: 28px 64px;
  padding: 40px 0 80px;
}
.hero__eyebrow {
  grid-column: 1 / 2;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--forest);
  align-self: start;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--terracotta);
  animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 87, 44, .4); }
  50%      { box-shadow: 0 0 0 10px rgba(201, 87, 44, 0); }
}

.hero__title {
  grid-column: 1 / 2;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 8.5vw, 128px);
  line-height: 0.9;
  letter-spacing: -0.035em;
  color: var(--forest-deep);
}
.hero__title .line { display: block; }
.hero__title .line:nth-child(1) { animation: rise .9s var(--ease) both; }
.hero__title .line:nth-child(2) { animation: rise .9s var(--ease) .1s both; padding-left: 8vw; }
.hero__title .line:nth-child(3) { animation: rise .9s var(--ease) .2s both; }
.hero__title em {
  font-style: italic;
  color: var(--terracotta);
  font-variation-settings: "SOFT" 100;
}
.underline {
  position: relative;
  display: inline-block;
}
.underline::after {
  content: '';
  position: absolute;
  left: 0; bottom: 6%;
  width: 100%;
  height: 18%;
  background: var(--amber);
  opacity: .55;
  z-index: -1;
  transform-origin: left;
  animation: underline-grow 1.2s var(--ease) .6s both;
}
@keyframes underline-grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes rise {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__lede {
  grid-column: 1 / 2;
  max-width: 560px;
  font-size: 19px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.hero__cta {
  grid-column: 1 / 2;
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 6px;
}

.hero__bullets {
  grid-column: 1 / 2;
  display: flex; gap: 28px; flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  max-width: 680px;
}
.hero__bullets li {
  font-size: 14px;
  color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 8px;
}
.hero__bullets strong {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--forest-deep); color: var(--amber);
  display: grid; place-items: center;
  font-size: 11px;
}

/* Hero card */
.hero__card {
  grid-column: 2 / 3;
  grid-row: 1 / 6;
  align-self: center;
  position: relative;
  background: var(--forest-deep);
  color: var(--cream);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(14, 58, 43, .4);
  animation: card-in 1s var(--ease) .3s both;
  transform: rotate(1.5deg);
  transition: transform .6s var(--ease);
}
.hero__card:hover { transform: rotate(0) scale(1.01); }
@keyframes card-in {
  from { opacity: 0; transform: translateY(40px) rotate(4deg); }
  to   { opacity: 1; transform: translateY(0) rotate(1.5deg); }
}

.hero__card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.hero__card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.hero__card:hover .hero__card-img img { transform: scale(1.05); }
.hero__card-tag {
  position: absolute;
  left: 16px; top: 16px;
  padding: 6px 12px;
  background: var(--amber);
  color: var(--forest-deep);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .05em;
  border-radius: 999px;
}
.hero__card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 24px;
  gap: 12px;
}
.hero__card-stats > div {
  display: flex; flex-direction: column; gap: 4px;
  padding-right: 12px;
  border-right: 1px solid rgba(245, 238, 225, .15);
}
.hero__card-stats > div:last-child { border-right: 0; }
.hero__card-stats .num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 38px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--amber);
}
.hero__card-stats .num i {
  font-style: normal;
  font-size: 22px;
}
.hero__card-stats .lbl {
  font-size: 11px;
  line-height: 1.4;
  opacity: .7;
}

/* Hero marquee */
.hero__marquee {
  position: relative;
  margin: 0 calc(var(--pad-x) * -1);
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero__marquee-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: tick 40s linear infinite;
  width: max-content;
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--forest-deep);
}
.hero__marquee-track .sep { color: var(--amber); }

/* ==========================================================
   TRUST
   ========================================================== */
.trust {
  padding: 48px var(--pad-x);
  background: var(--forest-deep);
  color: var(--cream);
}
.trust__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
}
.trust__label {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--amber);
}
.trust__items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.trust__badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-left: 24px;
  border-left: 1px solid rgba(245, 238, 225, .15);
}
.trust__badge:first-child { padding-left: 0; border-left: 0; }
.trust__badge-mark {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(245, 238, 225, .08);
  border: 1px solid rgba(245, 238, 225, .2);
  flex-shrink: 0;
  letter-spacing: -0.03em;
}
.trust__badge-mark--amber { background: var(--amber); color: var(--forest-deep); border-color: var(--amber); }
.trust__badge-mark--green { background: #3a7a5c; color: var(--cream); border-color: #3a7a5c; }
.trust__badge-mark--dark  { background: var(--forest); color: var(--amber); }
.trust__badge strong { display: block; font-size: 13px; line-height: 1.2; }
.trust__badge span { font-size: 11px; opacity: .65; }

/* ==========================================================
   SERVICES
   ========================================================== */
.services {
  padding: 120px 0 80px;
}
.services__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.service {
  position: relative;
  background: var(--cream);
  border-radius: var(--r-lg);
  overflow: hidden;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  border: 1px solid var(--line-soft);
}
.service:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(14, 58, 43, .2); }

.service__number {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--muted);
  position: absolute;
  top: 20px; right: 24px;
}

.service__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: var(--r-md);
}
.service__img--sm { aspect-ratio: 4/3; }
.service__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.service:hover .service__img img { transform: scale(1.08); }

.service__tag {
  position: absolute;
  top: 44px; left: 44px;
  background: var(--terracotta);
  color: var(--cream);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.service__body { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.service h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 34px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--forest-deep);
}
.service--featured h3 { font-size: 48px; }
.service p {
  font-size: 15px;
  color: var(--ink-soft);
}
.service__list {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 14px;
  color: var(--ink-soft);
}
.service__list li {
  padding-left: 18px;
  position: relative;
}
.service__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--terracotta);
}
.service__link {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--forest-deep);
  text-transform: uppercase;
  letter-spacing: .05em;
  border-bottom: 1px solid var(--forest-deep);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: color .2s, border-color .2s;
}
.service__link:hover { color: var(--terracotta); border-color: var(--terracotta); }

.service--featured { grid-row: span 1; background: var(--cream-deep); }
.service--featured .service__img { aspect-ratio: 16/9; }

/* ==========================================================
   PV (photovoltaic deep-dive)
   ========================================================== */
.pv {
  padding: 120px var(--pad-x);
  background: var(--forest-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.pv::before {
  content: '';
  position: absolute;
  bottom: -200px; left: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--amber) 0%, transparent 65%);
  opacity: .25;
  filter: blur(40px);
}
.pv__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
}
.pv__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(42px, 5.5vw, 76px);
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin-top: 20px;
}
.pv__title em { font-style: italic; color: var(--amber); }
.pv__lede {
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(245, 238, 225, .8);
  max-width: 540px;
}
.pv__lede strong { color: var(--amber); font-weight: 500; }

.pv__benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 48px 0;
}
.pv__benefit {
  padding: 24px 0;
  border-top: 1px solid rgba(245, 238, 225, .2);
}
.pv__benefit-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--amber);
  letter-spacing: .1em;
}
.pv__benefit h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin: 6px 0 10px;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.pv__benefit p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(245, 238, 225, .65);
}

.pv__right {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto 1fr;
  gap: 20px;
}
.pv__stat {
  background: var(--forest);
  border: 1px solid rgba(245, 238, 225, .1);
  border-radius: var(--r-md);
  padding: 28px;
}
.pv__stat--1 {
  grid-column: 1 / 3;
  background: var(--amber);
  color: var(--forest-deep);
  border-color: var(--amber);
}
.pv__stat .num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 56px;
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
}
.pv__stat--1 .num { font-size: 82px; }
.pv__stat .lbl {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.4;
  opacity: .7;
}
.pv__stat--1 .lbl { opacity: .85; }

.pv__img {
  grid-column: 1 / 3;
  aspect-ratio: 16/8;
  border-radius: var(--r-md);
  overflow: hidden;
}
.pv__img img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================
   AIDES
   ========================================================== */
.aides {
  padding: 120px 0;
  background: var(--ivory);
}
.aides__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.aide {
  padding: 40px 28px;
  background: var(--cream);
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  transition: transform .4s var(--ease), background .3s;
  position: relative;
  overflow: hidden;
}
.aide:hover { transform: translateY(-8px); background: var(--cream-deep); }
.aide::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--amber);
}
.aide__amount {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 56px;
  letter-spacing: -0.03em;
  color: var(--forest-deep);
  line-height: 1;
  margin-bottom: 16px;
}
.aide h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--forest-deep);
}
.aide p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.aides__note {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--muted);
  margin-top: 40px;
  padding: 0 var(--pad-x);
}

/* ==========================================================
   PROCESS
   ========================================================== */
.process {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
}
.process__steps {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
  counter-reset: step;
}
.process__steps li {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.process__num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 72px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--terracotta);
  display: block;
  margin-bottom: 16px;
  opacity: .4;
  transition: opacity .3s;
}
.process__steps li:hover .process__num { opacity: 1; }
.process__steps strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  color: var(--forest-deep);
  display: block;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.process__steps p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

/* ==========================================================
   AVANT / APRES
   ========================================================== */
.before-after {
  padding: 120px var(--pad-x);
  background: var(--forest-deep);
  color: var(--cream);
  overflow: hidden;
}
.before-after__head {
  padding-inline: 0;
}
.before-after__head .section-title {
  color: var(--cream);
}
.before-after__head .section-title em {
  color: var(--amber);
}
.before-after__head .section-lede {
  margin-inline: auto;
  color: rgba(245, 238, 225, .72);
}
.before-after__grid {
  max-width: var(--container);
  margin: 0 auto;
  column-count: 4;
  column-gap: 22px;
}
.before-after__item {
  position: relative;
  break-inside: avoid;
  margin: 0 0 22px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(245, 238, 225, .06);
  border: 1px solid rgba(245, 238, 225, .14);
  box-shadow: 0 24px 60px -38px rgba(0, 0, 0, .8);
}
.before-after__item img {
  width: 100%;
  height: auto;
  transition: transform .6s var(--ease), filter .6s var(--ease);
}
.before-after__item:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04);
}
.before-after__item figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(6, 37, 27, .72);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

/* ==========================================================
   ZONE
   ========================================================== */
.zone {
  padding: 120px var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.zone__text p {
  margin-top: 24px;
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 460px;
}
.zone__cities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.zone__col { display: flex; flex-direction: column; gap: 10px; }
.zone__col span {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--forest-deep);
  letter-spacing: -0.01em;
  transition: color .2s, transform .2s;
  cursor: default;
  display: inline-block;
}
.zone__col span:hover { color: var(--terracotta); transform: translateX(4px); }

/* ==========================================================
   AVIS
   ========================================================== */
.avis {
  padding: 120px 0;
  background: var(--cream);
}
.avis__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.avis__card {
  padding: 32px;
  background: var(--ivory);
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform .4s var(--ease);
}
.avis__card:hover { transform: translateY(-4px); }
.avis__card--wide { grid-column: span 2; background: var(--amber); border-color: var(--amber); }
.avis__card--dark { background: var(--forest-deep); color: var(--cream); border-color: var(--forest-deep); }
.avis__stars {
  color: var(--terracotta);
  font-size: 18px;
  letter-spacing: 2px;
}
.avis__card--dark .avis__stars { color: var(--amber); }
.avis__card p {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--forest-deep);
}
.avis__card--wide p { font-size: 26px; }
.avis__card--dark p { color: var(--cream); }
.avis__card footer {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.avis__card--dark footer { border-color: rgba(245, 238, 225, .15); }
.avis__card--wide footer { border-color: rgba(14, 58, 43, .2); }
.avis__card footer strong {
  font-size: 14px;
  font-weight: 500;
  color: var(--forest-deep);
}
.avis__card--dark footer strong { color: var(--cream); }
.avis__card footer span {
  font-size: 12px;
  color: var(--muted);
}
.avis__card--dark footer span { color: rgba(245, 238, 225, .5); }

/* ==========================================================
   SPONSOR
   ========================================================== */
.sponsor {
  padding: 120px var(--pad-x);
  background: var(--terracotta);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.sponsor__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.sponsor__text h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 20px 0 28px;
}
.sponsor__text h2 em { font-style: italic; color: var(--forest-deep); }
.sponsor__text p {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(245, 238, 225, .9);
  max-width: 460px;
}
.sponsor__badge {
  display: inline-flex; align-items: center; gap: 16px;
  margin-top: 32px;
  padding: 14px 20px 14px 14px;
  background: rgba(0, 0, 0, .12);
  border-radius: 999px;
  border: 1px solid rgba(245, 238, 225, .2);
}
.sponsor__badge-num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.03em;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--forest-deep);
  color: var(--amber);
}
.sponsor__badge strong { display: block; font-size: 14px; font-weight: 500; }
.sponsor__badge span { font-size: 12px; opacity: .7; }

.sponsor__visual {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--r-lg);
}
.sponsor__ball {
  font-size: 260px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.3));
  animation: ball-bounce 3s ease-in-out infinite;
  z-index: 2;
}
@keyframes ball-bounce {
  0%, 100% { transform: translateY(0) rotate(-10deg); }
  50%      { transform: translateY(-16px) rotate(10deg); }
}
.sponsor__banner {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
  width: 140%;
  border-top: 2px dashed rgba(245, 238, 225, .4);
  border-bottom: 2px dashed rgba(245, 238, 225, .4);
  padding: 16px 0;
  overflow: hidden;
  display: flex;
  gap: 32px;
  white-space: nowrap;
  font-family: var(--serif);
  font-style: italic;
  font-size: 40px;
  color: rgba(245, 238, 225, .6);
  animation: banner-scroll 20s linear infinite;
  z-index: 1;
}
@keyframes banner-scroll {
  from { transform: translate(-50%, -50%) rotate(-18deg) translateX(0); }
  to   { transform: translate(-50%, -50%) rotate(-18deg) translateX(-30%); }
}

/* ==========================================================
   CONTACT
   ========================================================== */
.contact {
  padding: 120px var(--pad-x);
  background: var(--forest-deep);
  color: var(--cream);
}
.contact__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact__intro h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 20px 0 28px;
}
.contact__intro h2 em { font-style: italic; color: var(--amber); }
.contact__lede {
  font-size: 17px;
  color: rgba(245, 238, 225, .75);
  max-width: 440px;
}

.contact__channels {
  margin-top: 40px;
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(245, 238, 225, .15);
}
.contact__channel {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(245, 238, 225, .15);
  transition: padding .3s;
}
a.contact__channel:hover { padding-left: 8px; }
.contact__channel-ic {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--forest-deep);
  display: grid; place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact__channel strong { display: block; font-size: 15px; font-weight: 500; }
.contact__channel span { font-size: 12px; opacity: .6; }

.contact__tabs {
  margin-top: 32px;
  display: inline-flex;
  background: rgba(0,0,0, .2);
  padding: 4px;
  border-radius: 999px;
}
.tab {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  color: rgba(245, 238, 225, .7);
  transition: background .3s, color .3s;
}
.tab.is-active { background: var(--amber); color: var(--forest-deep); }

/* ===== Form ===== */
.contact__form {
  background: var(--cream);
  color: var(--forest-deep);
  border-radius: var(--r-lg);
  padding: 36px;
  position: sticky;
  top: 100px;
}
.contact__form-head {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}
.form-panel { display: flex; flex-direction: column; gap: 18px; }
.form-panel[hidden] { display: none; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label {
  font-size: 12px;
  font-weight: 500;
  color: var(--forest-deep);
  letter-spacing: .01em;
}
.field input, .field textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--ivory);
  border-radius: var(--r-sm);
  color: var(--forest-deep);
  transition: border-color .2s;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--forest-deep);
}
.field textarea { resize: vertical; font-family: var(--sans); }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips input { position: absolute; opacity: 0; pointer-events: none; }
.chips label {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  background: var(--ivory);
}
.chips input:checked + label {
  background: var(--forest-deep);
  color: var(--cream);
  border-color: var(--forest-deep);
}

.checkbox {
  display: flex; gap: 10px;
  font-size: 12px;
  color: var(--ink-soft);
  cursor: pointer;
}
.checkbox input { margin-top: 3px; accent-color: var(--forest-deep); }

.form-hint {
  font-size: 14px;
  color: var(--ink-soft);
  padding: 14px 16px;
  background: var(--ivory);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--amber);
}

/* ==========================================================
   FAQ
   ========================================================== */
.faq {
  padding: 120px 0;
  background: var(--cream);
}
.faq__list {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.faq__item {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2.5vw, 30px);
  color: var(--forest-deep);
  letter-spacing: -0.01em;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__plus {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--forest-deep);
  display: grid; place-items: center;
  font-size: 20px;
  transition: transform .3s, background .3s, color .3s;
  flex-shrink: 0;
}
.faq__item[open] .faq__plus {
  transform: rotate(45deg);
  background: var(--forest-deep);
  color: var(--cream);
}
.faq__item p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 700px;
}

/* ==========================================================
   FINAL CTA
   ========================================================== */
.final-cta {
  padding: 120px var(--pad-x);
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%);
  color: var(--forest-deep);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 60%; height: 160%;
  background: radial-gradient(circle, rgba(255,255,255,.3) 0%, transparent 60%);
}
.final-cta__inner {
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.final-cta h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 9vw, 140px);
  letter-spacing: -0.04em;
  line-height: 0.9;
}
.final-cta p {
  font-size: 20px;
  margin: 24px 0 40px;
  color: rgba(14, 58, 43, .8);
}
.final-cta__buttons {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.final-cta .btn--ghost-light {
  color: var(--forest-deep);
  border-color: var(--forest-deep);
}
.final-cta .btn--ghost-light:hover { background: var(--forest-deep); color: var(--cream); }

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 80px var(--pad-x) 24px;
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245, 238, 225, .15);
}
.footer__brand .brand { color: var(--cream); margin-bottom: 20px; }
.footer__brand .brand__mark {
  width: min(100%, 250px);
  background-image: url("assets/logo-footer.png");
}
.footer__brand p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245, 238, 225, .65);
  max-width: 320px;
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h5 {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--amber);
  margin-bottom: 8px;
}
.footer__col a, .footer__col span {
  font-size: 14px;
  color: rgba(245, 238, 225, .75);
  transition: color .2s;
  line-height: 1.5;
}
.footer__col a:hover { color: var(--amber); }
.footer__social { display: flex; gap: 14px; margin-top: 16px; }
.footer__social a {
  padding: 8px 14px;
  border: 1px solid rgba(245, 238, 225, .2);
  border-radius: 999px;
  font-size: 12px;
}
.footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(245, 238, 225, .5);
}

/* ==========================================================
   FLOATING WIDGETS
   ========================================================== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px -10px rgba(37, 211, 102, .6);
  z-index: 90;
  transition: transform .3s var(--ease);
  animation: wa-float 4s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes wa-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.chat {
  position: fixed;
  bottom: 24px;
  right: 100px;
  z-index: 90;
}
.chat__toggle {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--forest-deep);
  color: var(--cream);
  display: grid; place-items: center;
  box-shadow: 0 10px 30px -10px rgba(14, 58, 43, .5);
  position: relative;
  transition: transform .3s var(--ease);
}
.chat__toggle:hover { transform: scale(1.08); }
.chat__notif {
  position: absolute;
  top: 4px; right: 4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--cream);
  font-size: 11px;
  font-weight: 600;
  display: grid; place-items: center;
  animation: dot-pulse 2s ease-in-out infinite;
}

.chat__box {
  position: absolute;
  bottom: 76px; right: 0;
  width: 360px;
  background: var(--cream);
  border-radius: var(--r-md);
  box-shadow: 0 30px 60px -20px rgba(14, 58, 43, .35);
  overflow: hidden;
  border: 1px solid var(--line);
  animation: chat-in .3s var(--ease);
}
@keyframes chat-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.chat__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px;
  background: var(--forest-deep);
  color: var(--cream);
}
.chat__head strong { font-family: var(--serif); font-size: 17px; display: block; }
.chat__head span { font-size: 11px; opacity: .75; display: flex; align-items: center; gap: 6px; }
.chat__online {
  width: 8px; height: 8px; border-radius: 50%;
  background: #52d98a;
  box-shadow: 0 0 0 0 rgba(82, 217, 138, .4);
  animation: dot-pulse 2s infinite;
}
.chat__close {
  font-size: 24px;
  width: 32px; height: 32px;
  border-radius: 50%;
  transition: background .2s;
}
.chat__close:hover { background: rgba(245, 238, 225, .1); }
.chat__body {
  padding: 20px;
  max-height: 280px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.chat__msg { display: flex; flex-direction: column; gap: 4px; }
.chat__msg p {
  background: var(--ivory);
  border: 1px solid var(--line-soft);
  padding: 12px 14px;
  border-radius: 14px 14px 14px 4px;
  font-size: 14px;
  color: var(--forest-deep);
  max-width: 90%;
}
.chat__msg span { font-size: 10px; color: var(--muted); padding-left: 8px; }
.chat__quick { display: flex; flex-wrap: wrap; gap: 6px; }
.chat__quick button {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  color: var(--forest-deep);
  transition: background .2s, color .2s;
}
.chat__quick button:hover { background: var(--forest-deep); color: var(--cream); }
.chat__form {
  display: flex; gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
  background: var(--ivory);
}
.chat__form input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  background: var(--cream);
}
.chat__form input:focus { outline: none; border-color: var(--forest-deep); }
.chat__form button {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--forest-deep);
  font-size: 18px;
  transition: background .2s;
}
.chat__form button:hover { background: var(--amber-light); }
.chat__foot {
  padding: 8px 14px;
  font-size: 10px;
  color: var(--muted);
  text-align: center;
  background: var(--ivory);
  border-top: 1px solid var(--line);
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1100px) {
  .brand__mark { width: clamp(136px, 22vw, 168px); }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__card { grid-column: 1; grid-row: auto; margin-top: 20px; }
  .before-after__grid { column-count: 2; }
  .pv__inner, .zone, .sponsor__inner, .contact__grid { grid-template-columns: 1fr; gap: 60px; }
  .trust__inner { grid-template-columns: 1fr; gap: 28px; }
  .trust__items { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .trust__badge { padding-left: 0; border-left: 0; }
  .services__grid, .aides__grid, .process__steps, .avis__grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact__form { position: static; }
  .avis__card--wide { grid-column: span 2; }
}
@media (max-width: 700px) {
  .brand__mark {
    width: min(146px, 40vw);
  }
  .section-head, .services__grid, .aides__grid, .process__steps,
  .avis__grid, .zone__cities, .pv__benefits,
  .hero__card-stats, .footer__inner { grid-template-columns: 1fr; }
  .hero { padding-top: 40px; }
  .hero__title .line:nth-child(2) { padding-left: 0; }
  .trust__items { grid-template-columns: 1fr 1fr; }
  .services { padding: 80px 0 40px; }
  .pv, .aides, .process, .before-after, .avis, .sponsor, .contact, .faq, .final-cta { padding-left: 20px; padding-right: 20px; padding-top: 80px; padding-bottom: 80px; }
  .before-after__grid { column-count: 1; }
  .service--featured h3 { font-size: 38px; }
  .pv__right { grid-template-columns: 1fr; }
  .pv__stat--1 { grid-column: 1; }
  .pv__img { grid-column: 1; }
  .avis__card--wide { grid-column: 1; }
  .field-row { grid-template-columns: 1fr; }
  .contact__form { padding: 24px; }
  .chat { right: 20px; bottom: 96px; }
  .chat__box { width: calc(100vw - 40px); right: -76px; }
  .wa-float { bottom: 20px; right: 20px; }
  .ticker__track { font-size: 11px; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; }
  .sponsor__ball { font-size: 160px; }
  .sponsor__visual { aspect-ratio: 4/3; max-width: 420px; margin: 0 auto; }
  .sponsor__banner { font-size: 24px; }
  .hero__marquee-track { font-size: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

