/* ============================
   ML HABITAT — Site vitrine
   Palette : #7fa58a · #0d0d0d · #ffffff
   ============================ */

:root{
  --green: #7fa58a;
  --green-dark: #5e8a6f;
  --green-soft: #e8efe9;
  --green-veil: rgba(127,165,138,0.12);
  --black: #0d0d0d;
  --ink: #1a1a1a;
  --grey-900:#222;
  --grey-700:#4a4a4a;
  --grey-500:#7a7a7a;
  --grey-300:#d8d8d8;
  --grey-200:#ececec;
  --grey-100:#f5f5f3;
  --white:#ffffff;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-md: 0 12px 40px rgba(0,0,0,0.10);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.16);
  --container: 1240px;
  --ease: cubic-bezier(0.4, 0, 0.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:'Inter', system-ui, -apple-system, sans-serif;
  font-weight:400;
  color:var(--ink);
  background:var(--white);
  line-height:1.55;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img,svg{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; transition:color .25s var(--ease); }
button{ font:inherit; cursor:pointer; border:0; background:none; color:inherit; }
input,select,textarea{ font:inherit; color:inherit; }
ul{ list-style:none; }
em{ font-style:normal; color:var(--green-dark); font-family:'Playfair Display', serif; font-weight:700; }

/* ===========================
   TOPBAR
   =========================== */
.topbar{
  background:var(--black);
  color:#fff;
  font-size:13px;
  letter-spacing:.02em;
}
.topbar-inner{
  max-width:var(--container);
  margin:0 auto;
  padding:10px 28px;
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  justify-content:center;
}
.topbar-item{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#e6e6e6;
  transition:color .25s var(--ease);
}
.topbar-item:hover{ color:var(--green); }
.topbar-item svg{ width:14px; height:14px; color:var(--green); }
.topbar-sep{ color:#555; }

/* ===========================
   NAVBAR
   =========================== */
.navbar{
  position:sticky;
  top:0;
  z-index:90;
  background:rgba(255,255,255,0.96);
  backdrop-filter:saturate(180%) blur(12px);
  -webkit-backdrop-filter:saturate(180%) blur(12px);
  border-bottom:1px solid var(--grey-200);
  transition:padding .3s var(--ease), box-shadow .3s var(--ease);
}
.navbar.scrolled{
  box-shadow:var(--shadow-sm);
}
.nav-inner{
  max-width:var(--container);
  margin:0 auto;
  padding:16px 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  transition:padding .3s var(--ease);
}
.navbar.scrolled .nav-inner{ padding:10px 28px; }
.nav-logo{ display:block; }
.nav-logo img{ height:46px; width:auto; transition:height .3s var(--ease); }
.navbar.scrolled .nav-logo img{ height:38px; }

.nav-links{
  display:flex;
  align-items:center;
  gap:34px;
  margin-left:auto;
}
.nav-links a{
  font-size:14px;
  font-weight:500;
  color:var(--grey-700);
  position:relative;
  padding:6px 0;
}
.nav-links a::after{
  content:"";
  position:absolute;
  left:0; bottom:-2px;
  width:0; height:2px;
  background:var(--green);
  transition:width .3s var(--ease);
}
.nav-links a:hover{ color:var(--black); }
.nav-links a:hover::after{ width:100%; }

.nav-links a.active{
  color:var(--black);
}
.nav-links a.active::after{
  width:100%;
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:14px;
}
.nav-phone{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  font-weight:600;
  color:var(--black);
  padding:9px 16px;
  border-radius:999px;
  background:var(--green-soft);
  transition:all .25s var(--ease);
}
.nav-phone svg{
  width:16px; height:16px;
  color:var(--green-dark);
}
.nav-phone:hover{
  background:var(--green);
  color:#fff;
}
.nav-phone:hover svg{ color:#fff; }

.nav-cta{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--green);
  color:#fff !important;
  padding:11px 22px;
  border-radius:999px;
  font-weight:600;
  font-size:14px;
  transition:transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.nav-cta svg{ width:14px; height:14px; transition:transform .25s var(--ease); }
.nav-cta:hover{
  background:var(--green-dark);
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(127,165,138,.35);
}
.nav-cta:hover svg{ transform:translateX(3px); }

.nav-burger{
  display:none;
  width:42px; height:42px;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
}
.nav-burger span{
  display:block;
  width:24px; height:2px;
  background:var(--black);
  transition:.3s var(--ease);
}
.nav-burger.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2){ opacity:0; }
.nav-burger.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ===========================
   BUTTONS
   =========================== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:15px 30px;
  border-radius:999px;
  font-weight:600;
  font-size:15px;
  letter-spacing:.01em;
  cursor:pointer;
  transition:all .3s var(--ease);
  border:2px solid transparent;
  white-space:nowrap;
}
.btn svg{ width:16px; height:16px; transition:transform .3s var(--ease); }
.btn:hover svg{ transform:translateX(4px); }
.btn-primary{
  background:var(--green);
  color:#fff;
  box-shadow:0 8px 20px rgba(127,165,138,.25);
}
.btn-primary:hover{
  background:var(--green-dark);
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(127,165,138,.4);
}
.btn-ghost{
  background:transparent;
  color:var(--black);
  border-color:var(--black);
}
.btn-ghost:hover{
  background:var(--black);
  color:#fff;
}
.btn-block{ width:100%; }

/* ===========================
   HERO
   =========================== */
.hero{
  position:relative;
  background:linear-gradient(180deg, var(--green-soft) 0%, #fff 100%);
  overflow:hidden;
  padding:80px 0 100px;
}
.hero-bg{
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.18;
}
.hero-watermark{
  position:absolute;
  right:-100px;
  top:50%;
  transform:translateY(-50%);
  width:780px;
  max-width:none;
  filter:grayscale(1);
  opacity:.5;
}
.hero-inner{
  max-width:var(--container);
  margin:0 auto;
  padding:0 28px;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:60px;
  align-items:center;
  position:relative;
  z-index:2;
}
.hero-content{ position:relative; }
.kicker{
  display:inline-block;
  background:var(--white);
  color:var(--green-dark);
  font-size:12px;
  font-weight:600;
  letter-spacing:.18em;
  text-transform:uppercase;
  padding:8px 16px;
  border-radius:999px;
  border:1px solid rgba(127,165,138,.3);
  margin-bottom:24px;
}
.hero h1{
  font-family:'Playfair Display', serif;
  font-weight:700;
  font-size:clamp(40px, 5.4vw, 72px);
  line-height:1.05;
  letter-spacing:-.02em;
  color:var(--black);
  margin-bottom:24px;
}
.hero-sub{
  font-size:18px;
  color:var(--grey-700);
  max-width:540px;
  margin-bottom:36px;
}
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:48px;
}
.hero-trust{
  display:flex;
  gap:38px;
  flex-wrap:wrap;
  padding-top:28px;
  border-top:1px solid rgba(13,13,13,0.08);
}
.trust-item{
  display:flex;
  flex-direction:column;
}
.trust-item strong{
  font-family:'Playfair Display', serif;
  font-size:32px;
  color:var(--green-dark);
  line-height:1;
  margin-bottom:4px;
}
.trust-item span{
  font-size:13px;
  color:var(--grey-700);
  font-weight:500;
}

/* Hero visual cards */
.hero-visual{
  position:relative;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  align-self:stretch;
  min-height:520px;
}
.hero-card{
  border-radius:var(--radius-lg);
  padding:24px 22px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:6px;
  box-shadow:var(--shadow-md);
  transition:transform .45s var(--ease), box-shadow .45s var(--ease);
  position:relative;
  overflow:hidden;
  min-height:240px;
  background-size:cover;
  background-position:center;
  color:#fff;
  text-decoration:none;
}
.hero-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.78) 100%);
  z-index:0;
  transition:background .35s var(--ease);
}
.hero-card > *{ position:relative; z-index:1; }
.hero-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-lg);
}
.hero-card:hover::before{
  background:linear-gradient(180deg, rgba(127,165,138,0.20) 0%, rgba(0,0,0,0.85) 100%);
}
.hero-card strong{
  font-family:'Playfair Display', serif;
  font-size:22px;
  font-weight:700;
  color:#fff;
  display:block;
  line-height:1.1;
  margin-bottom:4px;
}
.hero-card span{
  font-size:13px;
  color:rgba(255,255,255,0.88);
  font-weight:500;
}
.hero-card-text{
  display:flex;
  flex-direction:column;
}
.hero-card-icon{
  width:44px; height:44px;
  border-radius:12px;
  background:var(--green);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  align-self:flex-start;
  box-shadow:0 6px 16px rgba(0,0,0,.25);
}
.hero-card-icon svg{ width:24px; height:24px; }
.hero-card-1{ transform:translateY(-20px); }
.hero-card-3{ transform:translateY(20px); }
.hero-card-1:hover{ transform:translateY(-26px); }
.hero-card-3:hover{ transform:translateY(14px); }

/* ===========================
   MARQUEE
   =========================== */
.marquee{
  background:var(--black);
  color:#fff;
  padding:18px 0;
  overflow:hidden;
  border-top:1px solid #222;
  border-bottom:1px solid #222;
}
.marquee-track{
  display:flex;
  gap:48px;
  align-items:center;
  white-space:nowrap;
  animation:marqueeScroll 32s linear infinite;
}
.marquee-track span{
  font-family:'Playfair Display', serif;
  font-weight:700;
  font-size:28px;
  letter-spacing:.01em;
}
.marquee-star{
  color:var(--green) !important;
  font-size:18px !important;
}
@keyframes marqueeScroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

/* ===========================
   SECTION HEAD
   =========================== */
.section-head{
  text-align:center;
  max-width:780px;
  margin:0 auto 60px;
}
.section-head-left{ text-align:left; margin-left:0; }
.section-num{
  display:inline-block;
  font-size:12px;
  font-weight:600;
  color:var(--green-dark);
  letter-spacing:.22em;
  text-transform:uppercase;
  margin-bottom:18px;
  padding-left:32px;
  position:relative;
}
.section-num::before{
  content:"";
  position:absolute;
  left:0; top:50%;
  width:24px; height:1px;
  background:var(--green);
}
.section-head h2,
.about h2,
.zone h2,
.contact h2{
  font-family:'Playfair Display', serif;
  font-weight:700;
  font-size:clamp(32px, 4vw, 52px);
  line-height:1.1;
  color:var(--black);
  letter-spacing:-.015em;
  margin-bottom:18px;
}
.section-head p{
  font-size:17px;
  color:var(--grey-700);
  max-width:600px;
  margin:0 auto;
}

/* ===========================
   SERVICES
   =========================== */
.services{
  padding:120px 28px;
  background:#fff;
}
.services-grid{
  max-width:var(--container);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
}
.service-card{
  background:#fff;
  border:1px solid var(--grey-200);
  border-radius:var(--radius-lg);
  padding:36px 28px;
  transition:all .4s var(--ease);
  position:relative;
  overflow:hidden;
}
.service-card::after{
  content:"";
  position:absolute;
  top:0; left:0;
  height:3px;
  width:0;
  background:var(--green);
  transition:width .5s var(--ease);
}
.service-card:hover{
  border-color:var(--green);
  transform:translateY(-6px);
  box-shadow:var(--shadow-md);
}
.service-card:hover::after{ width:100%; }
.service-icon{
  width:64px; height:64px;
  border-radius:18px;
  background:var(--green-soft);
  color:var(--green-dark);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:22px;
  transition:all .3s var(--ease);
}
.service-icon svg{ width:36px; height:36px; }
.service-card:hover .service-icon{
  background:var(--green);
  color:#fff;
  transform:scale(1.05);
}
.service-card h3{
  font-family:'Playfair Display', serif;
  font-size:26px;
  font-weight:700;
  margin-bottom:10px;
  color:var(--black);
}
.service-desc{
  font-size:14px;
  color:var(--grey-700);
  margin-bottom:18px;
  line-height:1.55;
}
.service-list li{
  font-size:14px;
  color:var(--grey-700);
  padding:8px 0;
  padding-left:22px;
  position:relative;
  border-top:1px dashed var(--grey-200);
}
.service-list li::before{
  content:"";
  position:absolute;
  left:0; top:14px;
  width:10px; height:10px;
  border-right:2px solid var(--green);
  border-bottom:2px solid var(--green);
  transform:rotate(-45deg);
}

.services-cta{
  max-width:var(--container);
  margin:60px auto 0;
  text-align:center;
  padding:40px;
  background:var(--green-soft);
  border-radius:var(--radius-lg);
}
.services-cta p{
  font-family:'Playfair Display', serif;
  font-size:24px;
  color:var(--black);
  margin-bottom:18px;
}

/* ===========================
   RÉALISATIONS
   =========================== */
.realisations{
  padding:120px 28px;
  background:var(--grey-100);
}
.realisations-grid{
  max-width:var(--container);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  grid-auto-rows:260px;
  gap:18px;
}
.realisation{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  cursor:pointer;
  box-shadow:var(--shadow-sm);
  transition:transform .45s var(--ease), box-shadow .45s var(--ease);
}
.realisation.r-tall{ grid-row:span 2; }
.realisation img{
  position:absolute;
  inset:0;
  width:100%; height:100%;
  object-fit:cover;
  transition:transform .8s var(--ease);
}
.realisation::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.82) 100%);
  transition:background .35s var(--ease);
}
.realisation:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-lg);
}
.realisation:hover img{ transform:scale(1.06); }
.realisation:hover::after{
  background:linear-gradient(180deg, rgba(127,165,138,0.15) 0%, rgba(0,0,0,0.88) 100%);
}
.realisation-overlay{
  position:absolute;
  left:0; right:0; bottom:0;
  padding:24px 22px;
  color:#fff;
  z-index:1;
  transform:translateY(8px);
  transition:transform .4s var(--ease);
}
.realisation:hover .realisation-overlay{ transform:translateY(0); }
.realisation-tag{
  display:inline-block;
  font-size:11px;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
  background:var(--green);
  color:#fff;
  padding:5px 11px;
  border-radius:999px;
  margin-bottom:10px;
}
.realisation-overlay h3{
  font-family:'Playfair Display', serif;
  font-size:20px;
  font-weight:700;
  margin-bottom:4px;
  line-height:1.2;
}
.realisation-overlay p{
  font-size:13px;
  color:rgba(255,255,255,.85);
}

/* ===========================
   ABOUT
   =========================== */
.about{
  padding:120px 28px;
  background:var(--grey-100);
  position:relative;
}
.about-inner{
  max-width:var(--container);
  margin:0 auto;
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:80px;
  align-items:center;
}
.about-img{ position:relative; }
.about-img-wrap{
  aspect-ratio:1/1;
  background:var(--green);
  border-radius:var(--radius-lg);
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}
.about-img-wrap::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.18) 100%);
}
.about-img-wrap img{
  width:78%; height:auto;
  position:relative;
  z-index:1;
}
.about-badge{
  position:absolute;
  right:-30px; bottom:-30px;
  background:var(--black);
  color:#fff;
  border-radius:var(--radius);
  padding:24px 30px;
  display:flex;
  align-items:center;
  gap:14px;
  box-shadow:var(--shadow-lg);
}
.about-badge strong{
  font-family:'Playfair Display', serif;
  font-size:60px;
  line-height:1;
  color:var(--green);
}
.about-badge span{
  font-size:11px;
  font-weight:700;
  letter-spacing:.18em;
  line-height:1.3;
}
.about-content h2{ text-align:left; }
.about-content p{
  font-size:16px;
  color:var(--grey-700);
  margin-bottom:14px;
  max-width:560px;
}
.about-stats{
  display:flex;
  gap:40px;
  margin-top:40px;
  padding-top:32px;
  border-top:1px solid var(--grey-300);
  flex-wrap:wrap;
}
.about-stat{
  display:flex;
  flex-direction:column;
}
.about-stat strong{
  font-family:'Playfair Display', serif;
  font-size:48px;
  line-height:1;
  color:var(--green-dark);
  margin-bottom:8px;
}
.about-stat span{
  font-size:13px;
  color:var(--grey-700);
  font-weight:500;
  line-height:1.4;
}

/* ===========================
   ADVANTAGES (stats)
   =========================== */
.advantages{
  background:var(--black);
  color:#fff;
  padding:60px 28px;
}
.advantages-inner{
  max-width:var(--container);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:24px;
}
.advantage{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:8px;
  padding:12px;
  position:relative;
}
.advantage:not(:last-child)::after{
  content:"";
  position:absolute;
  right:-12px;
  top:50%;
  transform:translateY(-50%);
  width:1px;
  height:60px;
  background:#2a2a2a;
}
.advantage svg{
  width:32px; height:32px;
  color:var(--green);
  margin-bottom:8px;
}
.advantage strong{
  font-family:'Playfair Display', serif;
  font-size:22px;
  font-weight:700;
  letter-spacing:-.01em;
}
.advantage span{
  font-size:13px;
  color:#aaa;
}

/* ===========================
   WHY
   =========================== */
.why{
  padding:120px 28px;
  background:#fff;
}
.why-inner{
  max-width:var(--container);
  margin:0 auto;
  display:grid;
  grid-template-columns:0.85fr 1.5fr;
  gap:80px;
  align-items:flex-start;
}
.why-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}
.why-card{
  background:var(--grey-100);
  border-radius:var(--radius-lg);
  padding:32px 28px;
  transition:all .35s var(--ease);
  position:relative;
}
.why-card:hover{
  background:var(--green);
  color:#fff;
  transform:translateY(-4px);
}
.why-card:hover h3,
.why-card:hover .why-num{ color:#fff; }
.why-card:hover p{ color:rgba(255,255,255,.85); }
.why-num{
  font-family:'Playfair Display', serif;
  font-size:42px;
  font-weight:700;
  color:var(--green);
  display:block;
  margin-bottom:14px;
  transition:color .35s var(--ease);
}
.why-card h3{
  font-family:'Playfair Display', serif;
  font-size:22px;
  font-weight:700;
  margin-bottom:10px;
  color:var(--black);
  transition:color .35s var(--ease);
}
.why-card p{
  font-size:14px;
  color:var(--grey-700);
  transition:color .35s var(--ease);
}

/* ===========================
   AVIS
   =========================== */
.avis{
  padding:120px 28px;
  background:#fff;
  position:relative;
  overflow:hidden;
}
.avis::before{
  content:"";
  position:absolute;
  top:80px;
  right:-120px;
  width:400px; height:400px;
  border-radius:50%;
  background:radial-gradient(circle, var(--green-veil) 0%, transparent 70%);
  pointer-events:none;
}
.avis-grid{
  max-width:var(--container);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
  position:relative;
}
.avis-card{
  background:var(--grey-100);
  border-radius:var(--radius-lg);
  padding:32px 28px;
  display:flex;
  flex-direction:column;
  gap:18px;
  border:1px solid transparent;
  transition:all .35s var(--ease);
  position:relative;
}
.avis-card::before{
  content:"\201C";
  position:absolute;
  top:14px;
  right:24px;
  font-family:'Playfair Display', serif;
  font-size:80px;
  color:var(--green);
  opacity:.2;
  line-height:1;
}
.avis-card:hover{
  border-color:var(--green);
  background:#fff;
  transform:translateY(-4px);
  box-shadow:var(--shadow-md);
}
.avis-stars{
  display:flex;
  gap:3px;
  color:#f5b84c;
}
.avis-stars svg{ width:18px; height:18px; }
.avis-quote{
  font-size:15px;
  color:var(--grey-900);
  line-height:1.6;
  font-style:italic;
  flex:1;
}
.avis-author{
  display:flex;
  align-items:center;
  gap:14px;
  padding-top:18px;
  border-top:1px solid var(--grey-200);
}
.avis-avatar{
  width:46px; height:46px;
  border-radius:50%;
  background:var(--green);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:14px;
  letter-spacing:.04em;
  flex-shrink:0;
}
.avis-author strong{
  display:block;
  font-size:14px;
  color:var(--black);
  margin-bottom:2px;
}
.avis-author span{
  font-size:12px;
  color:var(--grey-700);
}
.avis-summary{
  max-width:var(--container);
  margin:60px auto 0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  padding:32px 40px;
  background:var(--green-soft);
  border-radius:var(--radius-lg);
  flex-wrap:wrap;
}
.avis-summary-rating{
  display:flex;
  align-items:center;
  gap:14px;
}
.avis-summary-rating strong{
  font-family:'Playfair Display', serif;
  font-size:48px;
  color:var(--green-dark);
  line-height:1;
}
.avis-summary-rating .avis-stars svg{ width:22px; height:22px; }
.avis-summary p{
  font-size:14px;
  color:var(--grey-700);
  margin:0;
}

/* ===========================
   ZONE
   =========================== */
.zone{
  padding:120px 28px;
  background:var(--grey-100);
}
.zone-inner{
  max-width:var(--container);
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:60px;
  align-items:center;
}
.zone-text h2{ text-align:left; }
.zone-text > p{
  font-size:16px;
  color:var(--grey-700);
  margin-bottom:30px;
}
.zone-address{
  display:flex;
  gap:18px;
  align-items:center;
  background:#fff;
  border-radius:var(--radius);
  padding:22px 26px;
  border-left:4px solid var(--green);
  max-width:480px;
}
.zone-address-icon{
  width:48px; height:48px;
  background:var(--green);
  color:#fff;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.zone-address-icon svg{ width:22px; height:22px; }
.zone-address strong{
  display:block;
  font-size:16px;
  color:var(--black);
  margin-bottom:4px;
}
.zone-address span{
  font-size:14px;
  color:var(--grey-700);
}
.zone-map{
  aspect-ratio:4/3;
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:1px solid var(--grey-300);
  box-shadow:var(--shadow-md);
}
.zone-map iframe{
  width:100%; height:100%;
  border:0;
  display:block;
}

/* ===========================
   CONTACT
   =========================== */
.contact{
  padding:120px 28px;
  background:var(--black);
  color:#fff;
  position:relative;
  overflow:hidden;
}
.contact::before{
  content:"";
  position:absolute;
  top:-50%;
  right:-10%;
  width:600px; height:600px;
  background:radial-gradient(circle, var(--green-veil) 0%, transparent 70%);
  pointer-events:none;
}
.contact-inner{
  max-width:var(--container);
  margin:0 auto;
  display:grid;
  grid-template-columns:0.95fr 1.05fr;
  gap:60px;
  align-items:flex-start;
  position:relative;
}
.contact-info .section-num{
  color:var(--green);
}
.contact-info h2{
  color:#fff;
  text-align:left;
  margin-bottom:18px;
}
.contact-info h2 em{ color:var(--green); }
.contact-info > p{
  font-size:16px;
  color:#bbb;
  margin-bottom:24px;
  max-width:480px;
}

.contact-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:rgba(127,165,138,.18);
  color:var(--green);
  padding:10px 18px;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
  letter-spacing:.02em;
  margin-bottom:34px;
  border:1px solid rgba(127,165,138,.3);
}
.contact-badge svg{ width:16px; height:16px; }

.contact-cards{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-bottom:32px;
}
.contact-card{
  display:flex;
  align-items:center;
  gap:18px;
  padding:18px 22px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:14px;
  transition:all .3s var(--ease);
  text-decoration:none;
  color:inherit;
}
.contact-card:not(.contact-card-static):hover{
  background:rgba(127,165,138,0.12);
  border-color:var(--green);
  transform:translateX(4px);
}
.contact-card:not(.contact-card-static):hover .contact-card-arrow{
  transform:translateX(4px);
  color:var(--green);
}
.contact-card-icon{
  width:48px; height:48px;
  background:var(--green);
  color:#fff;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.contact-card-icon svg{ width:22px; height:22px; }
.contact-card-body{
  flex:1;
  min-width:0;
}
.contact-card-label{
  display:block;
  font-size:11px;
  font-weight:600;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--green);
  margin-bottom:4px;
}
.contact-card strong{
  display:block;
  font-size:15px;
  color:#fff;
  font-weight:600;
  line-height:1.4;
  word-break:break-word;
}
.contact-card-arrow{
  width:18px; height:18px;
  color:#666;
  flex-shrink:0;
  transition:all .3s var(--ease);
}

.contact-hours{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.06);
  border-radius:14px;
  padding:22px 24px;
  margin-bottom:28px;
}
.contact-hours h4{
  display:flex;
  align-items:center;
  gap:10px;
  font-family:'Playfair Display', serif;
  font-size:18px;
  color:#fff;
  margin-bottom:14px;
  font-weight:700;
}
.contact-hours h4 svg{
  width:18px; height:18px;
  color:var(--green);
}
.contact-hours ul{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.contact-hours li{
  display:flex;
  justify-content:space-between;
  font-size:14px;
  padding:6px 0;
  border-bottom:1px dashed rgba(255,255,255,0.08);
}
.contact-hours li:last-child{ border-bottom:0; }
.contact-hours li span{ color:#bbb; }
.contact-hours li strong{ color:#fff; font-weight:600; }

.contact-socials{
  display:flex;
  align-items:center;
  gap:18px;
}
.contact-socials > span{
  font-size:13px;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#888;
}
.socials{
  display:flex;
  gap:10px;
}
.socials a{
  width:42px; height:42px;
  border-radius:50%;
  background:rgba(127,165,138,0.15);
  color:var(--green);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all .3s var(--ease);
}
.socials a:hover{
  background:var(--green);
  color:#fff;
  transform:translateY(-3px);
}
.socials svg{ width:18px; height:18px; }

/* FORM */
.contact-form{
  background:#fff;
  color:var(--ink);
  border-radius:var(--radius-lg);
  padding:42px 38px;
  box-shadow:var(--shadow-lg);
}
.contact-form h3{
  font-family:'Playfair Display', serif;
  font-size:24px;
  font-weight:700;
  margin-bottom:28px;
  color:var(--black);
  padding-bottom:18px;
  border-bottom:1px solid var(--grey-200);
}
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.form-group{
  margin-bottom:18px;
  display:flex;
  flex-direction:column;
}
.form-group label{
  font-size:13px;
  font-weight:600;
  margin-bottom:8px;
  color:var(--grey-900);
  letter-spacing:.01em;
}
.form-group input,
.form-group select,
.form-group textarea{
  background:var(--grey-100);
  border:1px solid var(--grey-200);
  border-radius:10px;
  padding:13px 16px;
  font-size:15px;
  color:var(--ink);
  transition:all .25s var(--ease);
  font-family:inherit;
  width:100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  outline:none;
  border-color:var(--green);
  background:#fff;
  box-shadow:0 0 0 4px rgba(127,165,138,.18);
}
.form-group textarea{ resize:vertical; min-height:120px; }
.form-group input.error,
.form-group select.error,
.form-group textarea.error{
  border-color:#d04040;
  background:#fff4f4;
}
.form-check{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size:13px;
  color:var(--grey-700);
  margin-bottom:22px;
  cursor:pointer;
  line-height:1.5;
}
.form-check input{
  width:18px; height:18px;
  margin-top:2px;
  accent-color:var(--green);
  flex-shrink:0;
}
.form-status{
  margin-top:18px;
  font-size:14px;
  font-weight:500;
  text-align:center;
  min-height:22px;
  line-height:1.5;
}
.form-status a{ color:inherit; font-weight:600; text-decoration:underline; }
.form-status.success{
  color:var(--green-dark);
  background:rgba(127,165,138,.12);
  border-radius:10px;
  padding:14px 16px;
}
.form-status.error{
  color:#b03030;
  background:rgba(208,64,64,.08);
  border-radius:10px;
  padding:14px 16px;
}

/* Honeypot — visually hidden but still in the DOM for bots */
.hp-field{
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
  opacity:0 !important;
  pointer-events:none !important;
}

/* Submit button states */
#submitBtn .btn-spinner{
  display:none;
  width:20px; height:20px;
  animation:spin .9s linear infinite;
}
#submitBtn .btn-spinner circle{
  stroke-dasharray:90 150;
  stroke-dashoffset:0;
}
#submitBtn.loading{
  pointer-events:none;
  opacity:.85;
}
#submitBtn.loading .btn-label{ opacity:.6; }
#submitBtn.loading .btn-arrow{ display:none; }
#submitBtn.loading .btn-spinner{ display:block; }
#submitBtn:disabled{ cursor:not-allowed; }

@keyframes spin{
  from{ transform:rotate(0deg); }
  to{ transform:rotate(360deg); }
}

/* ===========================
   FOOTER
   =========================== */
.footer{
  background:#0a0a0a;
  color:#bbb;
  padding:0 28px;
}

/* Footer CTA banner */
.footer-cta{
  max-width:var(--container);
  margin:0 auto;
  transform:translateY(-50%);
}
.footer-cta-inner{
  background:linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius:var(--radius-lg);
  padding:40px 50px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  box-shadow:0 20px 60px rgba(127,165,138,.35);
  position:relative;
  overflow:hidden;
}
.footer-cta-inner::before{
  content:"";
  position:absolute;
  right:-100px; top:-100px;
  width:300px; height:300px;
  background:rgba(255,255,255,0.08);
  border-radius:50%;
}
.footer-cta-inner::after{
  content:"";
  position:absolute;
  left:-60px; bottom:-60px;
  width:180px; height:180px;
  background:rgba(0,0,0,0.08);
  border-radius:50%;
}
.footer-cta-inner > *{ position:relative; z-index:1; }
.footer-cta-kicker{
  display:block;
  font-size:12px;
  font-weight:700;
  letter-spacing:.22em;
  color:rgba(255,255,255,.75);
  margin-bottom:10px;
}
.footer-cta h3{
  font-family:'Playfair Display', serif;
  font-size:32px;
  font-weight:700;
  color:#fff;
  letter-spacing:-.01em;
  line-height:1.15;
}
.footer-cta-actions{
  display:flex;
  gap:12px;
  flex-shrink:0;
}
.footer-cta-actions .btn-primary{
  background:#fff;
  color:var(--green-dark);
}
.footer-cta-actions .btn-primary:hover{
  background:var(--black);
  color:#fff;
}
.btn-ghost-light{
  background:transparent;
  color:#fff;
  border-color:rgba(255,255,255,.5);
}
.btn-ghost-light:hover{
  background:#fff;
  color:var(--green-dark);
  border-color:#fff;
}

.footer-inner{
  max-width:var(--container);
  margin:0 auto;
  display:grid;
  grid-template-columns:1.5fr 0.9fr 0.9fr 1.2fr;
  gap:50px;
  padding-top:40px;
  padding-bottom:60px;
  border-bottom:1px solid #1f1f1f;
}
.footer-brand p{
  font-size:14px;
  line-height:1.6;
  margin-top:18px;
  margin-bottom:22px;
  max-width:340px;
}
.footer-logo{
  height:60px;
  width:auto;
  filter:brightness(0) invert(1);
}
.footer-socials{
  display:flex;
  gap:10px;
}
.footer-socials a{
  width:40px; height:40px;
  border-radius:50%;
  background:rgba(255,255,255,.06);
  color:#bbb;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all .3s var(--ease);
}
.footer-socials a:hover{
  background:var(--green);
  color:#fff;
  transform:translateY(-3px);
}
.footer-socials svg{ width:18px; height:18px; }

.footer-col h4{
  font-family:'Playfair Display', serif;
  font-size:18px;
  font-weight:700;
  color:#fff;
  margin-bottom:22px;
  position:relative;
  padding-bottom:12px;
}
.footer-col h4::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:32px; height:2px;
  background:var(--green);
}
.footer-col ul{ display:flex; flex-direction:column; gap:11px; }
.footer-col a{
  font-size:14px;
  color:#bbb;
  transition:color .2s var(--ease), padding-left .2s var(--ease);
}
.footer-col a:hover{
  color:var(--green);
  padding-left:6px;
}
.footer-contact li{
  display:flex;
  gap:12px;
  align-items:flex-start;
  font-size:14px;
  line-height:1.6;
  color:#bbb;
}
.footer-contact li svg{
  width:16px; height:16px;
  color:var(--green);
  flex-shrink:0;
  margin-top:4px;
}
.footer-contact li a{
  padding-left:0 !important;
}

.footer-legal{
  max-width:var(--container);
  margin:0 auto;
}
.footer-legal-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:24px 0;
  font-size:13px;
  color:#777;
  flex-wrap:wrap;
  gap:12px;
}
.footer-legal-right{
  display:flex;
  align-items:center;
  gap:20px;
}
.footer-credits{
  font-size:12px;
  color:#666;
  font-style:italic;
}
.legal-toggle{
  color:#999;
  font-size:13px;
  text-decoration:underline;
  transition:color .2s var(--ease);
}
.legal-toggle:hover{ color:var(--green); }

.legal-panel{
  background:#111;
  border-radius:var(--radius);
  padding:30px;
  margin-bottom:30px;
  border:1px solid #1f1f1f;
  animation:fadeSlide .4s var(--ease);
}
@keyframes fadeSlide{
  from{ opacity:0; transform:translateY(10px); }
  to{ opacity:1; transform:translateY(0); }
}
.legal-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
}
.legal-grid > div{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.legal-grid strong{
  font-size:11px;
  font-weight:700;
  color:var(--green);
  text-transform:uppercase;
  letter-spacing:.12em;
}
.legal-grid span{
  font-size:13px;
  color:#ccc;
}

/* ===========================
   BACK TO TOP
   =========================== */
.back-top{
  position:fixed;
  right:24px; bottom:24px;
  width:46px; height:46px;
  border-radius:50%;
  background:var(--green);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  pointer-events:none;
  transition:all .3s var(--ease);
  box-shadow:var(--shadow-md);
  z-index:80;
}
.back-top.show{ opacity:1; pointer-events:auto; }
.back-top:hover{
  background:var(--green-dark);
  transform:translateY(-4px);
}
.back-top svg{ width:20px; height:20px; }

/* ===========================
   REVEAL ANIMATIONS
   =========================== */
.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in{
  opacity:1;
  transform:translateY(0);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1100px){
  .hero-inner{ grid-template-columns:1fr; gap:50px; }
  .hero-visual{ min-height:380px; }
  .services-grid{ grid-template-columns:repeat(2, 1fr); }
  .realisations-grid{ grid-template-columns:repeat(2, 1fr); }
  .realisation.r-tall{ grid-row:span 1; }
  .avis-grid{ grid-template-columns:1fr; max-width:680px; }
  .about-inner,
  .why-inner,
  .zone-inner,
  .contact-inner{
    grid-template-columns:1fr;
    gap:50px;
  }
  .about-img{ max-width:460px; margin:0 auto; }
  .advantages-inner{ grid-template-columns:repeat(2, 1fr); gap:36px; }
  .advantage:not(:last-child)::after{ display:none; }
  .footer-inner{ grid-template-columns:1fr 1fr; gap:40px; }
  .legal-grid{ grid-template-columns:repeat(2, 1fr); }
  .footer-cta-inner{ flex-direction:column; align-items:flex-start; padding:32px 36px; }
  .footer-cta h3{ font-size:26px; }
  .nav-phone span{ display:none; }
  .nav-phone{ padding:9px; }
}

@media (max-width: 760px){
  .topbar-inner{ flex-direction:column; gap:6px; padding:10px; font-size:12px; }
  .topbar-sep{ display:none; }

  .nav-links,
  .nav-actions{ display:none; }
  .nav-burger{ display:flex; }

  .nav-links.mobile-open{
    display:flex;
    position:absolute;
    top:100%; left:0; right:0;
    background:#fff;
    flex-direction:column;
    gap:0;
    padding:18px 0;
    box-shadow:var(--shadow-md);
    border-bottom:1px solid var(--grey-200);
  }
  .nav-links.mobile-open a{
    padding:14px 28px;
    border-bottom:1px solid var(--grey-100);
  }

  .hero{ padding:50px 0 70px; }
  .hero h1{ font-size:42px; }
  .hero-sub{ font-size:16px; }
  .hero-actions{ flex-direction:column; }
  .hero-actions .btn{ width:100%; }
  .hero-trust{ gap:20px; }
  .trust-item strong{ font-size:26px; }
  .hero-visual{ grid-template-columns:1fr 1fr; gap:12px; min-height:auto; }
  .hero-card{ min-height:160px; padding:18px; }
  .hero-card-1,.hero-card-3{ transform:none; }

  .marquee-track span{ font-size:20px; }

  .services,
  .realisations,
  .about,
  .why,
  .avis,
  .zone,
  .contact{ padding:70px 22px; }

  .realisations-grid{ grid-template-columns:1fr; grid-auto-rows:240px; gap:14px; }
  .avis-card{ padding:26px 22px; }
  .avis-summary{ padding:24px; flex-direction:column; gap:10px; text-align:center; }
  .avis-summary-rating strong{ font-size:38px; }

  .services-grid{ grid-template-columns:1fr; gap:18px; }
  .service-card{ padding:28px 24px; }

  .about-badge{ right:auto; left:50%; transform:translateX(-50%); bottom:-40px; }

  .advantages-inner{ grid-template-columns:1fr 1fr; gap:24px; }

  .why-grid{ grid-template-columns:1fr; }
  .why-card{ padding:26px 22px; }

  .contact-form{ padding:30px 22px; }
  .form-row{ grid-template-columns:1fr; gap:0; }

  .contact-badge{ margin-bottom:24px; }
  .contact-cards{ margin-bottom:24px; }
  .contact-card{ padding:14px 16px; gap:14px; }
  .contact-card-icon{ width:42px; height:42px; }
  .contact-card strong{ font-size:14px; }
  .contact-socials{ flex-direction:column; align-items:flex-start; gap:12px; }

  .footer{ padding:0 22px; }
  .footer-cta-inner{ padding:28px 24px; gap:24px; }
  .footer-cta h3{ font-size:22px; }
  .footer-cta-actions{ flex-direction:column; width:100%; }
  .footer-cta-actions .btn{ width:100%; }
  .footer-inner{ grid-template-columns:1fr; gap:36px; padding-top:20px; padding-bottom:40px; }
  .legal-grid{ grid-template-columns:1fr 1fr; gap:14px; }
  .footer-legal-inner{ flex-direction:column; text-align:center; }
  .footer-legal-right{ flex-direction:column; gap:8px; }

  .back-top{ right:16px; bottom:16px; }
}

@media (max-width: 480px){
  .advantages-inner{ grid-template-columns:1fr; }
  .legal-grid{ grid-template-columns:1fr; }
  .hero-card{ min-height:140px; padding:14px; }
  .hero-card-icon{ width:38px; height:38px; }
  .hero-card-icon svg{ width:20px; height:20px; }
  .hero-card strong{ font-size:15px; }
  .hero-card span{ font-size:12px; }
}
