*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #EEF4F3;
  --bg2: #E4EEEC;
  --bg3: #D8EAE7;
  --dark: #1A2420;
  --dark2: #1E3028;
  --teal: #2B8C7E;
  --teal-l: #3AADA0;
  --teal-d: #1E6B60;
  --muted: #6B827D;
  --white: #FFFFFF;
  --serif: 'Playfair Display', serif;
  --sans: 'Outfit', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--dark);
  font-family: var(--sans);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 400;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(43, 140, 126, 0.12);
  transition: box-shadow 0.3s;
}

nav.scrolled { box-shadow: 0 2px 24px rgba(26, 36, 32, 0.1); }

.nav-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
}

.nav-logo span { color: var(--teal); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--dark); }

.nav-svc { position: relative; }

/* Pont invisible : prolonge la zone de hover de .nav-svc jusqu'au dropdown
   pour que le menu ne se ferme pas quand la souris traverse l'espace vide */
.nav-svc::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-svc > a {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-svc > a::after {
  content: '▾';
  font-size: 9px;
  color: var(--teal);
  transition: transform 0.2s;
}

.nav-svc:hover > a::after { transform: rotate(180deg); }

.nav-dd {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border: 1px solid rgba(43, 140, 126, 0.15);
  min-width: 210px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 8px 32px rgba(26, 36, 32, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.nav-svc:hover .nav-dd {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dd a {
  display: block;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(43, 140, 126, 0.07);
  transition: all 0.15s;
}

.nav-dd a:last-child { border-bottom: none; }

.nav-dd a:hover {
  background: rgba(43, 140, 126, 0.06);
  color: var(--dark);
  padding-left: 26px;
}

.nav-lang {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--teal);
  background: none;
  border: 1.5px solid var(--teal);
  padding: 5px 14px;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 20px;
}

.nav-lang:hover {
  background: var(--teal);
  color: var(--white);
}

/* HOME HERO */
.home-hero {
  height: 48vh;
  min-height: 340px;
  max-height: 460px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 92px 64px 48px;
  background: linear-gradient(135deg, #0e2018 0%, #162e22 50%, #0a1810 100%);
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, rgba(15, 35, 30, 0.7) 0%, rgba(58, 173, 160, 0.08) 60%, rgba(8, 20, 16, 0.8) 100%);
}

.home-hero-texture {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  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='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.07'/%3E%3C/svg%3E");
  opacity: 0.35;
}

.home-hero-glow {
  position: absolute;
  bottom: -20%;
  right: 10%;
  width: 50%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(58, 173, 160, 0.08) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.home-hero-content {
  position: relative;
  z-index: 10;
  max-width: 560px;
}

.home-hero-title {
  font-family: var(--serif);
  font-size: clamp(30px, 4.8vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.home-hero-title em {
  font-style: italic;
  color: var(--teal-l);
}

.home-hero-cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--teal);
  color: #fff;
  padding: 14px 36px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  border-radius: 4px;
}

.home-hero-cta:hover {
  background: var(--teal-l);
  transform: translateY(-2px);
}

.home-hero-badge {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-badge-item {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(58, 173, 160, 0.2);
  padding: 16px 24px;
  border-radius: 8px;
  color: #fff;
  text-align: center;
}

.hero-badge-num {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--teal-l);
  line-height: 1;
}

.hero-badge-lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.hero-badge-text {
  padding: 18px 28px;
}

.hero-badge-tagline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal-l);
  margin-bottom: 8px;
}

.hero-badge-place {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--teal-l);
  line-height: 1.1;
}

/* SERVICES ZONE — slider + vidéo fond */
.services-zone {
  position: relative;
  overflow: hidden;
}

.services-zone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: linear-gradient(to bottom, var(--bg) 0%, transparent 100%);
  z-index: 5;
  pointer-events: none;
}

.zone-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.zone-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.zone-vid.active {
  opacity: 1;
}

.zone-wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.zone-wash.active {
  opacity: 1;
}

/* Wash : encadre la vidéo (foncé sur les bords) tout en gardant le centre clair pour qu'elle reste visible */
.zone-wash-gutter {
  background: radial-gradient(ellipse 55% 70% at 50% 50%, transparent 0%, transparent 32%, rgba(10, 28, 38, 0.55) 75%, rgba(6, 16, 24, 0.82) 100%);
}

.zone-wash-leaf {
  background: radial-gradient(ellipse 55% 70% at 50% 50%, transparent 0%, transparent 32%, rgba(18, 38, 15, 0.55) 75%, rgba(10, 22, 8, 0.82) 100%);
}

.zone-wash-junk {
  background: radial-gradient(ellipse 55% 70% at 50% 50%, transparent 0%, transparent 32%, rgba(15, 35, 30, 0.55) 75%, rgba(8, 20, 16, 0.82) 100%);
}

.zone-texture {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  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='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.07'/%3E%3C/svg%3E");
  opacity: 0.35;
}

/* SERVICE INTRO — fond mint fixe, hors zone vidéo */
.svc-intro {
  position: relative;
  z-index: 10;
  background: var(--bg);
  padding: 72px 64px 48px;
  text-align: center;
}

.svc-intro-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.svc-intro-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 12px;
}

.svc-intro-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
}

/* SERVICE SLIDER */
#services {
  position: relative;
  z-index: 10;
  height: 100vh;
  overflow: hidden;
}

.svc-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.svc-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.svc-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Fond de slide : transparent au centre pour laisser passer la vidéo, foncé sur les bords */
.bi-gutter {
  background:
    radial-gradient(ellipse 48% 62% at 50% 50%, transparent 0%, transparent 30%, rgba(10, 24, 38, 0.55) 70%, rgba(8, 16, 24, 0.96) 100%),
    linear-gradient(150deg, rgba(10, 24, 40, 0.4) 0%, rgba(18, 34, 54, 0.25) 40%, rgba(8, 16, 24, 0.4) 100%);
}
.bi-leaf {
  background:
    radial-gradient(ellipse 48% 62% at 50% 50%, transparent 0%, transparent 30%, rgba(14, 32, 16, 0.55) 70%, rgba(8, 18, 8, 0.96) 100%),
    linear-gradient(150deg, rgba(14, 32, 16, 0.4) 0%, rgba(22, 46, 20, 0.25) 40%, rgba(10, 24, 10, 0.4) 100%);
}
.bi-junk {
  background:
    radial-gradient(ellipse 48% 62% at 50% 50%, transparent 0%, transparent 30%, rgba(14, 32, 24, 0.55) 70%, rgba(8, 18, 14, 0.96) 100%),
    linear-gradient(150deg, rgba(14, 32, 24, 0.4) 0%, rgba(22, 46, 34, 0.25) 40%, rgba(10, 24, 16, 0.4) 100%);
}

/* Overlay : contourne le texte gauche-haut et droite-bas, laisse libre la diagonale centrale */
.ov-gutter {
  background:
    radial-gradient(ellipse 55% 50% at 18% 28%, rgba(10, 24, 38, 0.45) 0%, transparent 70%),
    radial-gradient(ellipse 55% 50% at 82% 72%, rgba(10, 24, 38, 0.45) 0%, transparent 70%);
}
.ov-leaf {
  background:
    radial-gradient(ellipse 55% 50% at 18% 28%, rgba(14, 32, 16, 0.45) 0%, transparent 70%),
    radial-gradient(ellipse 55% 50% at 82% 72%, rgba(14, 32, 16, 0.45) 0%, transparent 70%);
}
.ov-junk {
  background:
    radial-gradient(ellipse 55% 50% at 18% 28%, rgba(14, 32, 24, 0.45) 0%, transparent 70%),
    radial-gradient(ellipse 55% 50% at 82% 72%, rgba(14, 32, 24, 0.45) 0%, transparent 70%);
}

.svc-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.svc-texture {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  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='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.07'/%3E%3C/svg%3E");
  opacity: 0.4;
}

.svc-glow {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 55%;
  height: 55%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(58, 173, 160, 0.07) 0%, transparent 70%);
  z-index: 2;
  pointer-events: none;
}

.svc-watermark { display: none; }

.svc-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(80px, 0.5fr) minmax(260px, 0.95fr);
  gap: 0;
  align-items: stretch;
  padding: 90px 64px 80px;
}

.svc-left-c {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: start;
  padding-top: 8px;
}

.svc-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal-l);
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s 0.1s, transform 0.5s 0.1s;
}

.svc-slide.active .svc-eyebrow {
  opacity: 1;
  transform: translateY(0);
}

.svc-name {
  font-family: var(--serif);
  font-size: clamp(50px, 7vw, 98px);
  font-weight: 400;
  line-height: 0.95;
  color: #fff;
  letter-spacing: -1px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s 0.2s, transform 0.6s 0.2s;
}

.svc-slide.active .svc-name {
  opacity: 1;
  transform: translateY(0);
}

.svc-name em { font-style: italic; color: var(--teal-l); }

.svc-counter {
  margin-top: 28px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.3);
  opacity: 0;
  transition: opacity 0.5s 0.5s;
}

.svc-slide.active .svc-counter { opacity: 1; }

.svc-right-c {
  grid-column: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-self: end;
  padding-left: 64px;
  padding-bottom: 8px;
  border-left: none;
}

.svc-line {
  width: 36px;
  height: 1.5px;
  background: var(--teal-l);
  margin-bottom: 24px;
  opacity: 0;
  transition: opacity 0.4s 0.35s;
}

.svc-slide.active .svc-line { opacity: 1; }

.svc-desc {
  font-size: 15px;
  line-height: 1.9;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.76);
  max-width: 440px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s 0.4s, transform 0.5s 0.4s;
}

.svc-slide.active .svc-desc {
  opacity: 1;
  transform: translateY(0);
}

.btn-quote {
  margin-top: 36px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--teal);
  color: #fff;
  padding: 15px 36px;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s 0.55s, transform 0.5s 0.55s, background 0.2s;
}

.svc-slide.active .btn-quote {
  opacity: 1;
  transform: translateY(0);
}

.btn-quote:hover {
  background: var(--teal-l);
  transform: translateY(-2px) !important;
}

.btn-quote.disabled {
  background: rgba(255, 255, 255, 0.15);
  cursor: default;
}

.btn-quote.disabled:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(0) !important;
}

.svc-caption {
  position: absolute;
  bottom: 28px;
  left: 64px;
  right: 64px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transition: opacity 0.5s 0.6s;
}

.svc-slide.active .svc-caption { opacity: 1; }

.cap-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal-l);
  flex-shrink: 0;
}

.cap-text {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.5px;
  font-style: italic;
}

/* ARROWS & DOTS */
.arr-wrap {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 300;
}

.arr-wrap.al { left: 18px; }
.arr-wrap.ar { right: 18px; }

.arr-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(58, 173, 160, 0.35);
  background: rgba(238, 244, 243, 0.12);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}

.arr-btn:hover {
  border-color: var(--teal-l);
  background: rgba(58, 173, 160, 0.2);
  transform: scale(1.08);
}

.arr-btn:disabled {
  opacity: 0.18;
  pointer-events: none;
}

.arr-btn.hide {
  opacity: 0;
  pointer-events: none;
}

.svc-dots {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 300;
  display: flex;
  gap: 8px;
  align-items: center;
  transition: opacity 0.3s;
}

.sdot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}

.sdot.active {
  background: var(--teal-l);
  width: 22px;
}

/* PAGE HERO (service pages) */
.page-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.page-hero .svc-content {
  padding-top: 68px;
}

.page-hero .svc-eyebrow,
.page-hero .svc-name,
.page-hero .svc-line,
.page-hero .svc-desc,
.page-hero .svc-caption {
  opacity: 1;
  transform: none;
}

.page-hero h1.svc-name {
  opacity: 1;
  transform: none;
}

/* SERVICE DETAIL (sub-pages) */
.svc-detail {
  background: var(--white);
  padding: 80px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  border-bottom: 1px solid rgba(43, 140, 126, 0.1);
}

.svc-detail-text {
  font-size: 16px;
  line-height: 1.9;
  font-weight: 300;
  color: var(--muted);
  max-width: 720px;
}

.svc-detail-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.btn-primary {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--teal);
  color: #fff;
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--teal-l);
  transform: translateY(-2px);
}

.construction-banner {
  background: rgba(43, 140, 126, 0.12);
  border-left: 3px solid var(--teal);
  padding: 16px 20px;
  font-size: 14px;
  color: var(--dark2);
  margin-top: 24px;
  max-width: 720px;
}

/* PROCESS */
.process { background: var(--bg); }

.proc-header {
  text-align: center;
  padding: 80px 56px 48px;
}

.proc-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.proc-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.1;
}

.proc-sub {
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
  font-weight: 300;
}

.proc-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 56px 80px;
}

.proc-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  background: var(--white);
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 32px rgba(43, 140, 126, 0.08);
}

.proc-card-img {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ps-bg1 { background: linear-gradient(145deg, #c8e8e2 0%, #a8d4ce 100%); }
.ps-bg2 { background: linear-gradient(145deg, #b8dbd4 0%, #94c8c0 100%); }
.ps-bg3 { background: linear-gradient(145deg, #a8d0ca 0%, #88bcb4 100%); }
.ps-bg4 { background: linear-gradient(145deg, #d4ede9 0%, #b4dcd6 100%); }

.ps-icon { font-size: 80px; opacity: 0.3; }

.ps-label {
  font-size: 11px;
  color: var(--teal-d);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 12px;
  opacity: 0.5;
  text-align: center;
}

.proc-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 60px;
  background: var(--white);
}

.proc-step-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.proc-card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.proc-card-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.05;
  margin-bottom: 20px;
}

.proc-card-desc {
  font-size: 15px;
  line-height: 1.85;
  font-weight: 300;
  color: var(--muted);
  max-width: 380px;
}

.proc-card-img,
.proc-card-content {
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.proc-card.fading .proc-card-img,
.proc-card.fading .proc-card-content { opacity: 0; }

.proc-nav {
  display: flex;
  align-items: center;
  padding: 32px 0 0;
  position: relative;
}

.proc-nav-line-bg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 26px;
  right: 26px;
  height: 3px;
  background: rgba(43, 140, 126, 0.15);
  margin-top: 1px;
}

.proc-nav-line-fill {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 26px;
  height: 3px;
  background: var(--teal);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 1px;
}

.proc-nav-steps {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 2;
}

.proc-nav-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid rgba(43, 140, 126, 0.2);
  background: var(--bg2);
  color: var(--muted);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  position: relative;
  z-index: 2;
}

.proc-nav-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--bg3);
}

.proc-nav-btn.active {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  transform: scale(1.12);
  box-shadow: 0 4px 16px rgba(43, 140, 126, 0.3);
}

.proc-nav-btn.done {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

/* SERVING */
.serving {
  background: var(--bg);
  padding: 80px 56px 100px;
}

.s-header {
  text-align: center;
  margin-bottom: 60px;
}

.s-ey {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.s-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 400;
  color: var(--dark);
}

.s-sub {
  font-size: 14px;
  color: var(--muted);
  margin-top: 10px;
  font-weight: 300;
}

.serving-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.map-frame {
  height: 460px;
  background: var(--bg3);
  border: 1px solid rgba(43, 140, 126, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

.map-frame span { font-size: 42px; opacity: 0.4; }

.map-frame p {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}

.zones { display: flex; flex-direction: column; }

.zone-grp { border-bottom: 1px solid rgba(43, 140, 126, 0.12); }

.zone-hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 4px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--dark);
  transition: color 0.2s;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.zone-hd:hover { color: var(--teal); }

.zone-chev {
  font-size: 9px;
  color: var(--teal);
  transition: transform 0.3s;
}

.zone-grp.open .zone-chev { transform: rotate(180deg); }

.zone-cities {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.zone-grp.open .zone-cities { max-height: 400px; }

.zone-city {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  padding: 8px 4px;
  border-bottom: 1px solid rgba(43, 140, 126, 0.06);
  transition: color 0.15s;
}

.zone-city:hover { color: var(--dark); }

.zone-city:last-child {
  border-bottom: none;
  padding-bottom: 14px;
}

/* REVIEWS */
.reviews {
  background: var(--bg);
  padding: 110px 56px 80px;
}

/* Transition douce avis → zones desservies */
.color-flow {
  height: 160px;
  background: linear-gradient(
    180deg,
    var(--bg) 0%,
    #e8f0ee 18%,
    var(--bg2) 42%,
    var(--bg3) 58%,
    var(--bg2) 78%,
    var(--bg) 100%
  );
  background-size: 100% 220%;
  animation: colorFlow 16s ease-in-out infinite alternate;
}

@keyframes colorFlow {
  0% { background-position: 0% 0%; }
  100% { background-position: 0% 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .color-flow {
    animation: none;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 50%, var(--bg) 100%);
  }
}

.rev-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.rev-ey {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.rev-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.1;
}

.rev-rating strong {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--teal);
  display: block;
  text-align: right;
}

.rev-rating span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
}

.rev-rating span a {
  color: var(--teal);
  text-decoration: none;
}

.rev-rating span a:hover {
  text-decoration: underline;
}

.rev-slider {
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.rev-track {
  display: flex;
  gap: 16px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.rev-card {
  min-width: calc(33.333% - 11px);
  flex-shrink: 0;
  background: var(--white);
  padding: 38px 34px;
  border-radius: 10px;
}

.rev-stars {
  color: var(--teal);
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-size: 13px;
}

.rev-text {
  font-size: 14px;
  line-height: 1.85;
  color: var(--dark2);
  margin-bottom: 26px;
  font-weight: 300;
  font-style: italic;
}

.rev-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rev-init {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-family: var(--serif);
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rev-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}

.rev-loc {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

.rev-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.rdot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(26, 36, 32, 0.12);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}

.rdot.active {
  background: var(--teal);
  width: 20px;
}

/* CTA */
.cta-strip {
  background: var(--teal);
  padding: 72px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-heading {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 46px);
  color: #fff;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 10px;
}

.cta-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

.btn-white {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: #fff;
  color: var(--teal-d);
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s;
}

.btn-white:hover {
  background: var(--bg);
  transform: translateY(-2px);
}

/* FOOTER */
footer {
  background: var(--white);
  padding: 56px 56px 32px;
  border-top: 1px solid rgba(43, 140, 126, 0.12);
}

.ft {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.ft-logo {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--dark);
}

.ft-logo span { color: var(--teal); }

.ft-tagline {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  max-width: 280px;
  line-height: 1.65;
  font-weight: 300;
}

.ft-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 52px;
}

.ft-link {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.ft-link:hover { color: var(--teal); }

.ft-btm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid rgba(43, 140, 126, 0.1);
}

.ft-copy { font-size: 11px; color: var(--muted); }

.ft-phone {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--teal);
}

.ft-phone a {
  text-decoration: none;
  color: inherit;
}

/* MODAL */
.mo {
  position: fixed;
  inset: 0;
  background: rgba(26, 36, 32, 0.6);
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(8px);
}

.mo.open {
  opacity: 1;
  pointer-events: auto;
}

.mo-box {
  background: var(--white);
  width: 90%;
  max-width: 540px;
  max-height: 88vh;
  overflow-y: auto;
  padding: 52px;
  position: relative;
  transform: translateY(14px);
  transition: transform 0.3s;
  border-top: 3px solid var(--teal);
  border-radius: 12px;
}

.mo.open .mo-box { transform: translateY(0); }

.mo-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: 1px solid rgba(26, 36, 32, 0.15);
  width: 34px;
  height: 34px;
  cursor: pointer;
  font-size: 13px;
  color: var(--muted);
  transition: all 0.2s;
  border-radius: 4px;
}

.mo-close:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.mo-ey {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.mo-ti {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.1;
}

.mo-intro {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 8px;
}

.pr-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(26, 36, 32, 0.07);
}

.pr-row:last-of-type { border-bottom: none; }

.pr-lbl { font-size: 14px; color: var(--dark); }

.pr-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

.pr-val {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--teal);
}

.pr-note {
  margin-top: 18px;
  padding: 14px 16px;
  background: var(--bg);
  border-left: 2px solid var(--teal);
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 300;
}

.mo-num-box {
  background: var(--dark2);
  padding: 22px 26px;
  margin: 24px 0 16px;
  border-radius: 4px;
}

.mo-num-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal-l);
  margin-bottom: 8px;
}

.mo-num {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--bg);
  letter-spacing: 2px;
}

.mo-hint {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}

/* QUOTE FORM (homepage) */
.qf { margin-top: 4px; }

.qf-row { margin-bottom: 16px; }

.qf-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.qf-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(43, 140, 126, 0.25);
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--dark);
  background: var(--bg);
  transition: border-color 0.2s, background 0.2s;
}

.qf-input:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
}

.qf-radio-grp { display: flex; gap: 10px; }

.qf-radio {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  border: 1px solid rgba(43, 140, 126, 0.25);
  border-radius: 6px;
  background: var(--bg);
  cursor: pointer;
  font-size: 13px;
  color: var(--dark2);
  transition: all 0.2s;
  user-select: none;
}

.qf-radio input { accent-color: var(--teal); cursor: pointer; }

.qf-radio:has(input:checked) {
  border-color: var(--teal);
  background: rgba(43, 140, 126, 0.08);
  color: var(--dark);
  font-weight: 600;
}

.qf-submit {
  display: block;
  width: 100%;
  margin-top: 22px;
  padding: 15px 22px;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.qf-submit:hover {
  background: var(--teal-l);
  transform: translateY(-1px);
}

.qf-hint {
  text-align: center;
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
}

/* FLOATING REVIEWS BUTTON */
.float-rev {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 350;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: #fff;
  padding: 13px 22px 13px 18px;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(43, 140, 126, 0.4), 0 2px 8px rgba(26, 36, 32, 0.18);
  opacity: 0;
  transform: translateY(14px) scale(0.94);
  pointer-events: none;
  transition: opacity 0.35s, transform 0.35s, background 0.2s, box-shadow 0.2s;
}

.float-rev.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.float-rev:hover {
  background: var(--teal-l);
  box-shadow: 0 10px 32px rgba(43, 140, 126, 0.5), 0 4px 12px rgba(26, 36, 32, 0.22);
  transform: translateY(-2px) scale(1);
}

.float-rev-star {
  color: #fff;
  font-size: 13px;
  letter-spacing: -1px;
  line-height: 1;
}

@media (max-width: 768px) {
  .float-rev {
    bottom: 14px;
    right: 14px;
    padding: 11px 18px 11px 14px;
    font-size: 11px;
    max-width: calc(100vw - 28px);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }

  .home-hero {
    padding: 88px 24px 36px;
    height: auto;
    min-height: 300px;
    max-height: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .home-hero-title { font-size: clamp(26px, 8vw, 40px); margin-bottom: 20px; }

  .home-hero-badge {
    position: static;
    transform: none;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 20px;
    width: 100%;
  }

  .home-hero-content { width: 100%; }

  .hero-badge-item { padding: 12px 16px; }
  .hero-badge-num { font-size: 24px; }
  .hero-badge-place { font-size: 18px; }

  .svc-intro { padding: 48px 24px 36px; }

  .color-flow { height: 100px; }

  .svc-content {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 90px 24px 120px;
    align-items: flex-end;
  }

  .svc-left-c {
    grid-column: 1;
    align-self: auto;
    padding-top: 0;
  }

  .svc-right-c {
    grid-column: 1;
    align-self: auto;
    border-left: none;
    border-top: 1px solid rgba(58, 173, 160, 0.25);
    padding-left: 0;
    padding-top: 24px;
    margin-top: 16px;
  }

  .svc-name { font-size: clamp(40px, 12vw, 64px); }
  .svc-desc { font-size: 14px; }
  .svc-caption { left: 24px; right: 24px; bottom: 80px; }

  .svc-detail {
    grid-template-columns: 1fr;
    padding: 48px 24px;
  }

  .proc-body { padding: 0 20px 60px; }
  .proc-card { grid-template-columns: 1fr; }
  .proc-card-img { min-height: 260px; }
  .proc-card-content { padding: 36px 28px; }
  .proc-card-title { font-size: clamp(22px, 6vw, 32px); }

  .serving-body { grid-template-columns: 1fr; }
  .map-frame { height: 280px; }
  .serving { padding: 60px 24px; }

  .reviews { padding: 60px 20px; }
  .rev-card { min-width: calc(100% - 2px); }
  .rev-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .rev-rating strong { text-align: left; }

  .cta-strip {
    flex-direction: column;
    padding: 48px 24px;
    text-align: center;
  }

  .ft { flex-direction: column; gap: 32px; }
  .ft-links { grid-template-columns: 1fr 1fr; }
  footer { padding: 40px 24px 24px; }

  .proc-header { padding: 60px 24px 40px; }
  .arr-wrap { display: none; }
  .svc-dots { bottom: 50px; }
  .proc-nav-btn { width: 42px; height: 42px; font-size: 16px; }
}
