/* ============================================================
   CLÉMENT GARDEN — style.css
   ============================================================ */

/* ===== VARIABLES ===== */
:root {
  --green-deep:    #1E3A13;
  --green-mid:     #2F5A1D;
  --green-accent:  #4E7E33;
  --green-soft:    #6FA04D;
  --green-light:   #C8DFB0;
  --green-pale:    #EBF4E2;
  --cream:         #F7F5F0;
  --white:         #FFFFFF;
  --dark:          #181C15;
  --text:          #282C22;
  --text-mid:      #515748;
  --text-light:    #848C78;
  --border:        #D8E8CB;
  --shadow-sm:     0 2px 8px rgba(30,58,19,0.08);
  --shadow-md:     0 6px 24px rgba(30,58,19,0.12);
  --shadow-lg:     0 16px 48px rgba(30,58,19,0.16);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     32px;
  --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-title:    'Playfair Display', Georgia, serif;
  --font-body:     'Inter', system-ui, sans-serif;
  --max-width:     1200px;
  --navbar-h:      96px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol { list-style: none; }

button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

.section--alt {
  background-color: var(--cream);
}

.section--dark {
  background-color: var(--green-deep);
  color: var(--white);
}

.section--green {
  background-color: var(--green-pale);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-soft);
  margin-bottom: 12px;
}

.section--dark .section__label {
  color: var(--green-light);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(36px, 5vw, 60px); }
h2 { font-size: clamp(28px, 3.5vw, 42px); }
h3 { font-size: clamp(20px, 2.5vw, 26px); }
h4 { font-size: 18px; }

.text-center { text-align: center; }
.text-muted { color: var(--text-mid); }

p + p { margin-top: 1em; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--green-accent);
  color: var(--white);
  border-color: var(--green-accent);
}

.btn--primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--green-accent);
  border-color: var(--green-accent);
}

.btn--outline:hover {
  background: var(--green-accent);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--green-mid);
  border-color: var(--white);
}

.btn--white:hover {
  background: var(--cream);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--sm {
  padding: 9px 18px;
  font-size: 14px;
}

.btn--lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn--phone svg,
.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled,
.navbar.menu-open {
  background: rgba(255,255,255,0.97);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar.menu-open .navbar__burger span {
  background: var(--text);
}

.navbar__inner {
  display: flex;
  align-items: center;
  height: var(--navbar-h);
  gap: 32px;
}

.navbar__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.navbar__logo picture {
  display: flex;
  align-items: center;
}

.navbar__logo img {
  height: 88px;
  width: auto;
  transition: var(--transition);
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.navbar__menu > li {
  position: relative;
}

.navbar__menu > li > a {
  display: block;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.navbar.scrolled .navbar__menu > li > a {
  color: var(--text);
}

.navbar__menu > li > a:hover,
.navbar__menu > li.active > a {
  color: var(--green-soft);
  background: rgba(78,126,51,0.08);
}

.navbar.scrolled .navbar__menu > li > a:hover {
  color: var(--green-accent);
}

.navbar.scrolled .navbar__cta .btn--outline-white {
  color: var(--green-accent);
  border-color: var(--green-accent);
}

.navbar.scrolled .navbar__cta .btn--outline-white:hover {
  background: var(--green-accent);
  color: var(--white);
  border-color: var(--green-accent);
}

/* Dropdown */
.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 6px;
  transition: var(--transition);
}

.has-dropdown:hover > a::after {
  transform: rotate(225deg) translateY(2px);
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dropdown li a:hover {
  background: var(--green-pale);
  color: var(--green-accent);
}

/* Navbar CTA */
.navbar__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Burger */
.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.navbar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .navbar__burger span {
  background: var(--text);
}

.navbar__burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar__burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/accueil.webp');
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  will-change: transform;
}

/* Image mobile allégée (828px) pour les écrans ≤ 960px */
@media (max-width: 960px) {
  .hero__bg {
    background-image: url('../images/accueil-mobile.webp');
  }
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20,44,10,0.72) 0%,
    rgba(30,58,19,0.58) 50%,
    rgba(20,40,12,0.40) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  max-width: 680px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 20px;
}

.hero__label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--green-light);
}

.hero__title {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero__title em {
  font-style: italic;
  color: var(--green-light);
}

.hero__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.6;
}

.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== INTRO / QUICK SERVICES ===== */
.quick-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.quick-service {
  background: var(--white);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
  text-decoration: none;
  color: var(--text);
}

.quick-service:hover {
  background: var(--green-pale);
  transform: translateY(-2px);
}

.quick-service__icon {
  width: 48px;
  height: 48px;
  background: var(--green-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-accent);
  transition: var(--transition);
}

.quick-service:hover .quick-service__icon {
  background: var(--green-accent);
  color: var(--white);
}

.quick-service__icon svg {
  width: 24px;
  height: 24px;
}

.quick-service__title {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
}

.quick-service__text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

.quick-service__arrow {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-accent);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== BEFORE / AFTER SLIDER ===== */
.ba-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.ba-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: ew-resize;
  user-select: none;
  aspect-ratio: 16/9;
  background: var(--green-pale);
}

/* BEFORE = base layer, always visible full width */
.ba-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

/* AFTER = top layer, revealed by clip-path from the left */
.ba-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
  clip-path: inset(0 100% 0 0); /* starts fully hidden — JS will update */
  z-index: 2;
}

.ba-handle {
  position: absolute;
  top: 0;
  left: 0; /* starts at far left */
  height: 100%;
  width: 3px;
  background: var(--white);
  transform: translateX(-50%);
  z-index: 10;
}

.ba-handle::before,
.ba-handle::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232F5A1D' stroke-width='2'%3E%3Cpath d='M8 12H16M8 12l-3 3M8 12l-3-3M16 12l3 3M16 12l3-3'/%3E%3C/svg%3E");
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
}

.ba-handle::before {
  top: 50%;
  transform: translate(-50%, -50%);
}

.ba-handle::after {
  display: none;
}

.ba-label {
  position: absolute;
  top: 16px;
  padding: 6px 14px;
  background: rgba(0,0,0,0.45);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  z-index: 5;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.ba-label--hidden {
  opacity: 0;
  visibility: hidden;
}

.ba-label--before { left: 16px; }
.ba-label--after  { right: 16px; }

.ba-hint {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ba-hint svg {
  width: 16px;
  height: 16px;
  color: var(--green-soft);
}

/* ===== SERVICE CARDS ===== */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
}

.service-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card__img img {
  transform: scale(1.04);
}

.service-card__body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card__title {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
}

.service-card__text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
}

.service-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--green-accent);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  transition: var(--transition);
}

.service-card:hover .service-card__link {
  gap: 10px;
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.why-item:hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow-sm);
}

.why-item__icon {
  width: 44px;
  height: 44px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-accent);
  flex-shrink: 0;
}

.why-item__icon svg { width: 22px; height: 22px; }

.why-item__title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.why-item__text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ===== RÉALISATIONS GRID ===== */
.real-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.real-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.real-card .ba-slider {
  border-radius: 0;
  aspect-ratio: 16/10;
}

.real-card__body {
  padding: 20px 24px;
}

.real-card__title {
  font-family: var(--font-title);
  font-size: 18px;
  margin-bottom: 6px;
}

.real-card__text {
  font-size: 14px;
  color: var(--text-mid);
}

/* ===== INSTAGRAM BLOCK ===== */
.instagram-block {
  text-align: center;
  padding: 64px;
  background: var(--green-pale);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}

.instagram-block__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-radius: 18px;
  color: var(--white);
  margin: 0 auto 20px;
}

.instagram-block__icon svg { width: 32px; height: 32px; }

.instagram-block__handle {
  font-size: 20px;
  font-weight: 700;
  color: var(--green-deep);
  margin: 8px 0 16px;
}

.instagram-block__text {
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 24px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-group {
  justify-content: center;
}

.cta-reassurance {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
}

.cta-reassurance svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
  padding: calc(var(--navbar-h) + 56px) 0 56px;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header__inner {
  position: relative;
  z-index: 1;
}

.page-header__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 12px;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 14px;
}

.page-header__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  line-height: 1.65;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 24px;
}

.breadcrumb a { color: rgba(255,255,255,0.75); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* ===== SERVICE PAGE ===== */
.service-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.service-intro--reverse {
  direction: rtl;
}

.service-intro--reverse > * {
  direction: ltr;
}

.service-intro__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.service-intro__img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.service-intro__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-soft);
  margin-bottom: 12px;
}

.service-intro h2 {
  margin-bottom: 18px;
}

.service-intro p {
  color: var(--text-mid);
  margin-bottom: 14px;
}

.service-list {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-mid);
}

.service-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-pale);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%234E7E33'%3E%3Cpath d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

/* ===== ZONES ===== */
.zones-block {
  background: var(--green-pale);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.zones-block__icon {
  width: 48px;
  height: 48px;
  background: var(--green-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.zones-block__icon svg { width: 24px; height: 24px; }

.zones-block h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.zones-block p {
  font-size: 15px;
  color: var(--text-mid);
}

/* ===== FORM ===== */
.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}

.form-card__header {
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  padding: 36px 40px;
  color: var(--white);
}

.form-card__header h2 {
  color: var(--white);
  margin-bottom: 8px;
}

.form-card__header p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
}

.form-card__body {
  padding: 40px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-grid--full {
  grid-column: 1 / -1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.form-group label .optional {
  font-weight: 400;
  color: var(--text-light);
  font-size: 12px;
  margin-left: 4px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green-accent);
  box-shadow: 0 0 0 3px rgba(78,126,51,0.12);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Radio type */
.radio-group {
  display: flex;
  gap: 12px;
}

.radio-option {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-size: 15px;
}

.radio-option input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--green-accent);
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

.radio-option:has(input:checked) {
  border-color: var(--green-accent);
  background: var(--green-pale);
}

/* File upload */
.file-upload {
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  background: var(--cream);
  transition: var(--transition);
}

.file-upload:hover {
  border-color: var(--green-soft);
  background: var(--green-pale);
}

.file-upload input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.file-upload__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: var(--text-mid);
  font-size: 14px;
  text-align: center;
}

.file-upload__icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-accent);
  box-shadow: var(--shadow-sm);
}

.file-upload__icon svg { width: 24px; height: 24px; }

.file-upload__label strong { color: var(--green-accent); }

.file-upload__preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.file-upload__preview:empty {
  display: none;
}

.file-thumb {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1.5px solid var(--border);
  flex-shrink: 0;
}

.file-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.file-thumb__remove {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 20px;
  height: 20px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  font-size: 12px;
  line-height: 1;
  border: none;
  transition: var(--transition);
}

.file-thumb__remove:hover { background: rgba(200,0,0,0.8); }

.form-hint {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--green-light);
}

.faq-item.open {
  border-color: var(--green-accent);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  background: none;
  border: none;
  font-family: inherit;
}

.faq-question:hover { color: var(--green-accent); }

.faq-item.open .faq-question { color: var(--green-accent); }

.faq-question__icon {
  width: 28px;
  height: 28px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-accent);
  transition: var(--transition);
}

.faq-item.open .faq-question__icon {
  background: var(--green-accent);
  color: var(--white);
  transform: rotate(180deg);
}

.faq-question__icon svg { width: 14px; height: 14px; }

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.faq-answer__inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ===== À PROPOS ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}

.about-img {
  position: relative;
}

.about-img__main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img__main img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
}

.about-img__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  text-align: center;
  min-width: 120px;
}

.about-img__badge .year {
  font-family: var(--font-title);
  font-size: 36px;
  font-weight: 700;
  color: var(--green-accent);
  line-height: 1;
}

.about-img__badge .year-label {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
  line-height: 1.3;
}

.about-content__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-soft);
  margin-bottom: 14px;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-mid);
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.75;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.about-stat {
  text-align: center;
  padding: 20px 16px;
  background: var(--green-pale);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.about-stat__num {
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 700;
  color: var(--green-accent);
  line-height: 1;
}

.about-stat__label {
  font-size: 13px;
  color: var(--text-mid);
  margin-top: 6px;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: flex-start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow-sm);
}

.contact-info-card__icon {
  width: 44px;
  height: 44px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-accent);
  flex-shrink: 0;
}

.contact-info-card__icon svg { width: 22px; height: 22px; }

.contact-info-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.5;
}

.contact-info-card a:hover { color: var(--green-accent); }

.contact-call-highlight {
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  color: var(--white);
  text-align: center;
}

.contact-call-highlight h3 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 6px;
}

.contact-call-highlight p {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  margin-bottom: 16px;
}

.contact-call-highlight .btn {
  width: 100%;
  justify-content: center;
}

.contact-reassurance {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text-mid);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border: 1px solid var(--border);
}

.contact-reassurance svg {
  width: 18px;
  height: 18px;
  color: var(--green-soft);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===== RÉALISATIONS PAGE ===== */
.reals-intro {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.reals-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 0;
}

.real-full-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.real-full-card .ba-slider {
  border-radius: 0;
  aspect-ratio: 16/10;
}

.real-full-card__body {
  padding: 28px 32px;
}

.real-full-card__num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-soft);
  margin-bottom: 8px;
}

.real-full-card__title {
  font-family: var(--font-title);
  font-size: 22px;
  margin-bottom: 10px;
}

.real-full-card__text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ===== MERCI PAGE ===== */
.merci-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--navbar-h) + 60px) 0 80px;
}

.merci-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 60px 48px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.merci-card__icon {
  width: 80px;
  height: 80px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-accent);
  margin: 0 auto 28px;
}

.merci-card__icon svg { width: 40px; height: 40px; }

.merci-card h1 {
  font-size: 32px;
  margin-bottom: 16px;
}

.merci-card p {
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.merci-card .btn-group {
  justify-content: center;
  margin-top: 32px;
}

/* ===== MENTIONS LÉGALES ===== */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--green-deep);
}

.legal-content h3 {
  font-size: 17px;
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-content p,
.legal-content li {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 10px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 64px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__brand picture {
  display: block;
}

.footer__brand img {
  height: 140px;
  width: auto;
  margin-bottom: 16px;
  opacity: 0.9;
  filter: brightness(0) invert(1);
}

.footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 16px;
}

.footer__zone {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer__zone svg { width: 14px; height: 14px; color: var(--green-soft); }

.footer h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer__nav a,
.footer__contact-item {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer__nav a:hover,
.footer__contact-item a:hover {
  color: var(--green-light);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--green-soft);
  flex-shrink: 0;
  margin-top: 1px;
}

.footer__insta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  font-weight: 600;
  margin-top: 4px;
  transition: var(--transition);
}

.footer__insta:hover { color: var(--white); }

.footer__insta svg {
  width: 28px;
  height: 28px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-radius: 8px;
  padding: 5px;
  box-sizing: content-box;
  stroke: var(--white);
  flex-shrink: 0;
  transition: var(--transition);
}

.footer__insta:hover svg {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(188,24,136,0.35);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer__legal-links {
  display: flex;
  gap: 20px;
}

.footer__legal-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}

.footer__legal-links a:hover { color: rgba(255,255,255,0.75); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Les en-têtes de section ne font pas de reveal — le motif botanique
   doit rester visible dès le chargement sans être masqué par un translateY */
.section__header {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== GOOGLE PLACES AUTOCOMPLETE ===== */
.pac-container {
  border-radius: var(--radius-md) !important;
  border: 1.5px solid var(--border) !important;
  box-shadow: var(--shadow-lg) !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  margin-top: 4px !important;
  overflow: hidden;
}

.pac-item {
  padding: 10px 16px !important;
  font-size: 14px !important;
  color: var(--text-mid) !important;
  cursor: pointer !important;
  border-top: 1px solid var(--border) !important;
  transition: background 0.15s ease;
  font-family: var(--font-body) !important;
}

.pac-item:first-child { border-top: none !important; }

.pac-item:hover,
.pac-item.pac-item-selected {
  background: var(--green-pale) !important;
}

.pac-item-query {
  color: var(--text) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  font-family: var(--font-body) !important;
}

.pac-matched {
  color: var(--green-accent) !important;
  font-weight: 700 !important;
}

.pac-icon { display: none !important; }

.pac-logo::after { display: none !important; }

/* Phone input — numeric only */
input.phone-numeric {
  letter-spacing: 0.08em;
}

/* ===== FORM VALIDATION ===== */
.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
  border-color: #d94040;
  box-shadow: 0 0 0 3px rgba(217, 64, 64, 0.1);
}

.form-error {
  font-size: 12px;
  color: #d94040;
  display: flex;
  align-items: flex-start;
  gap: 5px;
  margin-top: 4px;
  line-height: 1.4;
}

.form-error svg {
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===== MOTIF VÉGÉTAL DÉCORATIF ===== */
/*
 * SVG 500×500 px — composition botanique variée : branche principale + 4 feuilles
 * (tailles/angles différents) + tige latérale, grande feuille isolée, petit rameau,
 * brindille nue, feuille couchée, vrille avec bourgeon, paire de feuilles.
 * Aucune animation : motif statique visible dès le chargement.
 * Technique ::before avec z-index:0 ; .container direct passe à z-index:1.
 * Finition : drop-shadow vert très doux sur chaque élément du motif.
 * Exclusions automatiques : .hero, .footer, .section--dark, .page-header.
 */

.section:not(.section--dark) {
  position: relative;
}

.section:not(.section--dark)::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MDAiIGhlaWdodD0iNTAwIiB2aWV3Qm94PSIwIDAgNTAwIDUwMCI+CgogIDwhLS0gPT09IEJSQU5DSEUgUFJJTkNJUEFMRSA6IGJhc3NlLWdhdWNoZSB2ZXJzIGNlbnRyZS1oYXV0ID09PSAtLT4KICA8cGF0aCBkPSJNNDUsNDMwIEM4NSwzNjggMTI4LDI5OCAxNzAsMjE4IEMyMDAsMTU1IDIyMiwxMTggMjQyLDgyIgogICAgICAgIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzNkNmIyOCIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgoKICA8IS0tIEZldWlsbGUgZ3JhbmRlLCBwZW5jaMOpZSBnYXVjaGUgKH5yb3RhdGlvbiAtNDLCsCkgLS0+CiAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoODgsMzY1KSByb3RhdGUoLTQyKSI+CiAgICA8cGF0aCBkPSJNMCwwIEMtMTEsLTE4IC0xNCwtMzggMCwtNTQgQzE0LC0zOCAxMSwtMTggMCwwWiIgZmlsbD0iIzNkNmIyOCIvPgogICAgPGxpbmUgeDE9IjAiIHkxPSItMSIgeDI9IjAiIHkyPSItNTMiIHN0cm9rZT0iIzNkNmIyOCIgc3Ryb2tlLXdpZHRoPSIwLjU1Ii8+CiAgPC9nPgoKICA8IS0tIFRpZ2UgbGF0w6lyYWxlIGNvdXJ0ZSAtLT4KICA8cGF0aCBkPSJNMTI4LDI5NSBDMTE2LDI3OCAxMTQsMjYyIDExMCwyNTAiCiAgICAgICAgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjM2Q2YjI4IiBzdHJva2Utd2lkdGg9IjAuNzUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPgogIDwhLS0gUGV0aXRlIGZldWlsbGUgYXUgYm91dCBkZSBsYSB0aWdlIGxhdMOpcmFsZSAtLT4KICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMTAsMjUwKSByb3RhdGUoLTU1KSI+CiAgICA8cGF0aCBkPSJNMCwwIEMtNiwtOCAtNywtMTggMCwtMjUgQzcsLTE4IDYsLTggMCwwWiIgZmlsbD0iIzNkNmIyOCIvPgogIDwvZz4KCiAgPCEtLSBGZXVpbGxlIG1veWVubmUsIHBlbmNow6llIGRyb2l0ZSAofnJvdGF0aW9uIDMywrApIC0tPgogIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE1NCwyNTIpIHJvdGF0ZSgzMikiPgogICAgPHBhdGggZD0iTTAsMCBDLTEyLC0xMCAtMTYsLTI3IDAsLTM4IEMxNiwtMjcgMTIsLTEwIDAsMFoiIGZpbGw9IiMzZDZiMjgiLz4KICAgIDxsaW5lIHgxPSIwIiB5MT0iLTEiIHgyPSIwIiB5Mj0iLTM3IiBzdHJva2U9IiMzZDZiMjgiIHN0cm9rZS13aWR0aD0iMC41Ii8+CiAgPC9nPgoKICA8IS0tIFBldGl0ZSBmZXVpbGxlIGhhdXRlLCBxdWFzaS1kcm9pdGUgKH5yb3RhdGlvbiAtMTLCsCkgLS0+CiAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjA4LDE3NSkgcm90YXRlKC0xMikiPgogICAgPHBhdGggZD0iTTAsMCBDLTcsLTEwIC05LC0yMiAwLC0zMSBDOSwtMjIgNywtMTAgMCwwWiIgZmlsbD0iIzNkNmIyOCIvPgogIDwvZz4KCiAgPCEtLSA9PT0gR1JBTkRFIEZFVUlMTEUgSVNPTMOJRSA6IGhhdXQtZHJvaXQgPT09IC0tPgogIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDM2OCw5MCkgcm90YXRlKDE4KSI+CiAgICA8cGF0aCBkPSJNMCwwIEMtMTcsLTE2IC0yMiwtMzggMCwtNTYgQzIyLC0zOCAxNywtMTYgMCwwWiIgZmlsbD0iIzNkNmIyOCIvPgogICAgPGxpbmUgeDE9IjAiIHkxPSItMSIgeDI9IjAiIHkyPSItNTUiIHN0cm9rZT0iIzNkNmIyOCIgc3Ryb2tlLXdpZHRoPSIwLjY1Ii8+CiAgPC9nPgogIDwhLS0gVGlnZSBkZSBsYSBmZXVpbGxlIGhhdXQtZHJvaXQgLS0+CiAgPHBhdGggZD0iTTM2OCw5MCBDMzY1LDEwNSAzNjIsMTE0IDM2NiwxMjYiCiAgICAgICAgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjM2Q2YjI4IiBzdHJva2Utd2lkdGg9IjAuOSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+CgogIDwhLS0gPT09IFBFVElUIFJBTUVBVSBEUk9JVCA6IG1pbGlldS1kcm9pdCA9PT0gLS0+CiAgPHBhdGggZD0iTTQyOCwyOTUgQzQzMywyNjggNDM4LDI0NCA0NDIsMjE4IgogICAgICAgIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzNkNmIyOCIgc3Ryb2tlLXdpZHRoPSIxLjEiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPgogIDwhLS0gRmV1aWxsZSBnYXVjaGUgLS0+CiAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNDMyLDI3Mikgcm90YXRlKC00OCkiPgogICAgPHBhdGggZD0iTTAsMCBDLTgsLTExIC0xMCwtMjQgMCwtMzMgQzEwLC0yNCA4LC0xMSAwLDBaIiBmaWxsPSIjM2Q2YjI4Ii8+CiAgPC9nPgogIDwhLS0gRmV1aWxsZSBkcm9pdGUgLS0+CiAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNDM4LDI0NCkgcm90YXRlKDQyKSI+CiAgICA8cGF0aCBkPSJNMCwwIEMtOCwtMTAgLTksLTIyIDAsLTMwIEM5LC0yMiA4LC0xMCAwLDBaIiBmaWxsPSIjM2Q2YjI4Ii8+CiAgPC9nPgogIDwhLS0gRmV1aWxsZSBzb21tZXQgKHBldGl0ZSwgZHJvaXRlKSAtLT4KICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0NDIsMjE4KSByb3RhdGUoNikiPgogICAgPHBhdGggZD0iTTAsMCBDLTUsLTggLTYsLTE3IDAsLTIzIEM2LC0xNyA1LC04IDAsMFoiIGZpbGw9IiMzZDZiMjgiLz4KICA8L2c+CgogIDwhLS0gPT09IEJSSU5ESUxMRSBOVUUgOiBjZW50cmUtYmFzID09PSAtLT4KICA8cGF0aCBkPSJNMjYyLDQ4MCBDMjY3LDQ1OCAyNzIsNDM4IDI3NSw0MTgiCiAgICAgICAgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjM2Q2YjI4IiBzdHJva2Utd2lkdGg9IjEiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPgogIDwhLS0gRm91cmNoZSAtLT4KICA8cGF0aCBkPSJNMjY5LDQ0OCBDMjc1LDQzNyAyODAsNDMwIDI4Miw0MjAiCiAgICAgICAgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjM2Q2YjI4IiBzdHJva2Utd2lkdGg9IjAuNjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPgogIDwhLS0gUGV0aXRlIGZldWlsbGUgc3VyIGxhIGZvdXJjaGUgLS0+CiAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjgyLDQyMCkgcm90YXRlKDI4KSI+CiAgICA8cGF0aCBkPSJNMCwwIEMtNSwtNyAtNiwtMTUgMCwtMjAgQzYsLTE1IDUsLTcgMCwwWiIgZmlsbD0iIzNkNmIyOCIvPgogIDwvZz4KCiAgPCEtLSA9PT0gRkVVSUxMRSBDT1VDSE1FIDogYmFzLWRyb2l0ID09PSAtLT4KICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0NjIsNDA4KSByb3RhdGUoNzgpIj4KICAgIDxwYXRoIGQ9Ik0wLDAgQy0xMywtMTQgLTE2LC0zMiAwLC00NiBDMTYsLTMyIDEzLC0xNCAwLDBaIiBmaWxsPSIjM2Q2YjI4Ii8+CiAgICA8bGluZSB4MT0iMCIgeTE9Ii0xIiB4Mj0iMCIgeTI9Ii00NSIgc3Ryb2tlPSIjM2Q2YjI4IiBzdHJva2Utd2lkdGg9IjAuNTUiLz4KICA8L2c+CgogIDwhLS0gPT09IFZSSUxMRSBEw4lDT1JBVElWRSA6IGhhdXQtZ2F1Y2hlID09PSAtLT4KICA8cGF0aCBkPSJNNTgsNTIgQzcwLDM4IDg0LDMwIDg4LDE4IEM5MSw4IDgzLDMgNzcsOSIKICAgICAgICBmaWxsPSJub25lIiBzdHJva2U9IiMzZDZiMjgiIHN0cm9rZS13aWR0aD0iMC44NSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+CiAgPCEtLSBQZXRpdCBib3VyZ2VvbiB0ZXJtaW5hbCAtLT4KICA8ZWxsaXBzZSBjeD0iNzciIGN5PSI5IiByeD0iMi41IiByeT0iMy41IiBmaWxsPSIjM2Q2YjI4IiB0cmFuc2Zvcm09InJvdGF0ZSgtMjAsNzcsOSkiLz4KCiAgPCEtLSA9PT0gUEFJUkUgREUgRkVVSUxMRVMgOiBjZW50cmUgZ2F1Y2hlICh6b25lIGHDqXLDqWUpID09PSAtLT4KICA8IS0tIFRpZ2UgY291cnRlIC0tPgogIDxwYXRoIGQ9Ik01MiwyMjAgQzU4LDIwNSA2NSwxOTYgNzAsMTg2IgogICAgICAgIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzNkNmIyOCIgc3Ryb2tlLXdpZHRoPSIwLjgiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPgogIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDU4LDIxMCkgcm90YXRlKC02MCkiPgogICAgPHBhdGggZD0iTTAsMCBDLTcsLTkgLTgsLTE5IDAsLTI2IEM4LC0xOSA3LC05IDAsMFoiIGZpbGw9IiMzZDZiMjgiLz4KICA8L2c+CiAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNjYsMTk2KSByb3RhdGUoNTApIj4KICAgIDxwYXRoIGQ9Ik0wLDAgQy02LC04IC03LC0xNyAwLC0yMyBDNywtMTcgNiwtOCAwLDBaIiBmaWxsPSIjM2Q2YjI4Ii8+CiAgPC9nPgoKPC9zdmc+Cg==");
  background-size: 500px 500px;
  background-repeat: repeat;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  /* Halo vert très doux autour de chaque élément végétal du motif */
  filter: drop-shadow(0 0 10px rgba(60, 110, 35, 0.85)) drop-shadow(0 0 4px rgba(45, 90, 20, 0.75));
}

/* Le .container direct reste lisible au-dessus du pseudo-élément décoratif */
.section:not(.section--dark) > .container {
  position: relative;
  z-index: 1;
}

/* ===== BACKGROUND AMBIENT ANIMATION (white sections) ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 12% 28%, rgba(78,126,51,0.055) 0%, transparent 60%),
    radial-gradient(ellipse 55% 65% at 88% 72%, rgba(140,185,95,0.045) 0%, transparent 60%);
  animation: bgAmbientShift 24s ease-in-out infinite alternate;
}

@keyframes bgAmbientShift {
  0%   { transform: scale(1)    translate(0, 0); }
  40%  { transform: scale(1.04) translate(-1.5%, 1%); }
  100% { transform: scale(1.02) translate(1.5%, -0.8%); }
}

/* Subtle animated gradient overlay on hero */
.hero__overlay-anim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 20% 40%, rgba(78,126,51,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 60%, rgba(30,58,19,0.22) 0%, transparent 70%);
  animation: heroOverlayShift 14s ease-in-out infinite alternate;
}

@keyframes heroOverlayShift {
  0%   { opacity: 0.6; transform: scale(1)   translate(0, 0); }
  50%  { opacity: 1;   transform: scale(1.04) translate(-1%, 1%); }
  100% { opacity: 0.7; transform: scale(1.02) translate(1%, -0.5%); }
}

/* ===== UTILITIES ===== */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  :root { --navbar-h: 80px; }

  .navbar__logo img {
    height: 44px;
  }

  .navbar__menu { display: none; }
  .navbar__cta { display: none; }
  .navbar__burger { display: flex; }

  .navbar__menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--navbar-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 24px;
    gap: 4px;
    overflow-y: auto;
    z-index: 999;
  }

  .navbar__menu.open > li > a {
    color: var(--text) !important;
    font-size: 18px;
    padding: 14px 16px;
  }

  .navbar__menu.open .has-dropdown > a::after {
    border-color: var(--text);
    transition: transform 0.25s ease;
  }

  .navbar__menu.open .has-dropdown.is-open > a::after {
    transform: rotate(225deg) translateY(2px);
  }

  /* Dropdown caché par défaut en mobile — ouvert uniquement via .is-open (JS) */
  .navbar__menu.open .dropdown {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--cream);
    border-radius: var(--radius-md);
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.25s ease, margin 0.25s ease;
  }

  .navbar__menu.open .has-dropdown.is-open .dropdown {
    opacity: 1;
    visibility: visible;
    max-height: 300px;
    margin: 4px 0 8px;
  }

  .navbar__menu.open .navbar__cta-mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
  }

  .navbar__menu.open .navbar__cta-mobile .btn {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 14px;
  }

  .service-cards {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-img__badge {
    bottom: 16px;
    right: 16px;
  }

  .about-img__main img {
    aspect-ratio: 4/3;
  }

  .service-intro {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .service-intro--reverse {
    direction: ltr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .real-grid {
    grid-template-columns: 1fr;
  }

  .reals-full-grid {
    grid-template-columns: 1fr;
  }

  .quick-services {
    grid-template-columns: 1fr;
  }

  .instagram-block {
    padding: 40px 24px;
  }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .section__header { margin-bottom: 40px; }

  h1 { font-size: 32px; }
  h2 { font-size: 26px; }

  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; justify-content: center; }

  .service-cards { grid-template-columns: 1fr; }

  .form-card__header { padding: 28px 24px; }
  .form-card__body { padding: 28px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid--full { grid-column: 1; }

  .about-stats { grid-template-columns: 1fr 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .merci-card { padding: 40px 24px; }

  .page-header { padding: calc(var(--navbar-h) + 40px) 0 40px; }

  .about-img__badge { right: 12px; bottom: 12px; }

  .btn-group { flex-direction: column; }
  .btn-group .btn { justify-content: center; }

  .cta-section .btn-group { flex-direction: column; align-items: center; }
  .cta-section .btn-group .btn { width: 100%; max-width: 360px; }

  .contact-call-highlight { padding: 24px 20px; }
}
