/* ============================================================
   ALP JARDIN - Complete CSS Stylesheet
   Matches ALL HTML class names across the entire site
   ============================================================ */

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --vert-profond: #1a2e1a;
  --vert-mousse: #2d4a2d;
  --vert-sauge: #4a6741;
  --vert-clair: #7a9e6e;
  --vert-tendre: #a8c49a;
  --vert-pale: #d4e6cc;
  --or: #c8a84b;
  --or-clair: #e8c96b;
  --creme: #f5f0e8;
  --creme-fonce: #ede5d5;
  --blanc: #fafaf7;
  --noir: #0d1a0d;
  --gris-doux: #8a9688;

  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;

  --section-padding: clamp(60px, 8vw, 120px);
  --container-max: 1200px;
  --container-wide: 1400px;
  --container-narrow: 800px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--vert-mousse);
  background-color: var(--blanc);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

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

input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--vert-mousse);
  outline: none;
}

::selection {
  background-color: var(--vert-tendre);
  color: var(--vert-profond);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--creme);
}

::-webkit-scrollbar-thumb {
  background: var(--vert-clair);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--vert-sauge);
}

/* ============================================================
   2. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--vert-profond);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 400;
}

h4 {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 600;
}

h5 {
  font-size: 1.1rem;
  font-weight: 500;
}

h6 {
  font-size: 1rem;
  font-weight: 500;
}

h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--vert-sauge);
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

strong {
  font-weight: 500;
}

em {
  font-style: italic;
}

blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--vert-sauge);
  padding-left: 1.5rem;
  border-left: 3px solid var(--or);
  margin: 1.5rem 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--or);
  margin-bottom: 1rem;
}

.section-label-light {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--or-clair);
  margin-bottom: 1rem;
}

.text-large {
  font-size: 1.2rem;
  line-height: 1.8;
}

.text-small {
  font-size: 0.875rem;
}

.text-accent {
  color: var(--or);
}

.text-center {
  text-align: center;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 60px);
}

.section-header p {
  color: var(--gris-doux);
  font-size: 1.05rem;
  margin-top: 1rem;
}

.section-title {
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--gris-doux);
  font-size: 1.05rem;
}

.section-desc {
  color: var(--gris-doux);
  font-size: 1.05rem;
}

/* ============================================================
   3. LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.container-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

section {
  padding: var(--section-padding) 0;
}

.section {
  padding: var(--section-padding) 0;
}

.hidden {
  display: none !important;
}

.required {
  color: #c0392b;
}

/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-decoration: none;
}

.btn svg {
  flex-shrink: 0;
  transition: transform var(--transition);
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-primary {
  background-color: var(--vert-profond);
  color: var(--blanc);
}

.btn-primary::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--vert-mousse);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
  z-index: -1;
}

.btn-primary:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-primary:hover {
  background-color: var(--vert-mousse);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--blanc);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
  z-index: -1;
}

.btn-secondary:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--vert-profond);
  border: 1.5px solid var(--vert-profond);
}

.btn-outline:hover {
  background-color: var(--vert-profond);
  color: var(--blanc);
}

.btn-outline-dark {
  background: transparent;
  color: var(--vert-profond);
  border: 1.5px solid var(--vert-mousse);
}

.btn-outline-dark:hover {
  background-color: var(--vert-profond);
  color: var(--blanc);
}

.btn-outline-light {
  background: transparent;
  color: var(--blanc);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  color: var(--blanc);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-gold {
  background: linear-gradient(135deg, var(--or), var(--or-clair));
  color: var(--vert-profond);
  font-weight: 500;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--or-clair), var(--or));
  box-shadow: 0 4px 20px rgba(200, 168, 75, 0.4);
}

.btn-full {
  width: 100%;
}

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

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* ============================================================
   5. PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--vert-profond);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.preloader-logo {
  width: 120px;
  height: auto;
  filter: brightness(0) invert(1);
  animation: preloaderPulse 2s ease-in-out infinite;
}

.preloader-logo img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  overflow: hidden;
}

.preloader-progress {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  overflow: hidden;
}

.preloader-progress-bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--or), var(--or-clair));
  border-radius: 3px;
  animation: preloaderLoad 2s ease-in-out forwards;
}

.preloader-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============================================================
   6. SCROLL PROGRESS
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--or), var(--or-clair));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ============================================================
   7. CUSTOM CURSOR
   ============================================================ */
.cursor-dot {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--or);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease;
}

.cursor-outline {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--or);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99997;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease;
  opacity: 0.5;
}

.cursor-dot.active {
  transform: translate(-50%, -50%) scale(0.5);
}

.cursor-outline.active {
  transform: translate(-50%, -50%) scale(1.5);
  opacity: 0.3;
}

.cursor-outline.hovering {
  transform: translate(-50%, -50%) scale(2);
  opacity: 0.2;
  border-color: var(--or-clair);
}

@media (pointer: coarse) {
  .cursor-dot,
  .cursor-outline {
    display: none !important;
  }
}

/* ============================================================
   8. COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--blanc);
  border-top: 1px solid var(--vert-pale);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  z-index: 9990;
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--vert-profond);
}

.cookie-text p {
  font-size: 0.85rem;
  color: var(--gris-doux);
  margin-bottom: 0;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.cookie-accept {
  background: var(--vert-profond);
  color: var(--blanc);
}

.cookie-accept:hover {
  background: var(--vert-mousse);
}

.cookie-refuse {
  background: transparent;
  color: var(--vert-mousse);
  border: 1px solid var(--vert-pale);
}

.cookie-refuse:hover {
  background: var(--creme);
}

.cookie-customize {
  background: transparent;
  color: var(--gris-doux);
  border: 1px solid var(--vert-pale);
}

.cookie-customize:hover {
  background: var(--creme);
  color: var(--vert-mousse);
}

/* ============================================================
   9. NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(250, 250, 247, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  padding: 10px 0;
}

.navbar.scrolled-always {
  background: rgba(250, 250, 247, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  padding: 10px 0;
}

.navbar-minimal {
  /* Same as navbar but minimal structure */
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* Logo containers - both patterns */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 180px;
  width: auto;
  transition: filter var(--transition);
}

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

.logo img,
.logo-img {
  height: 180px;
  width: auto;
  transition: filter var(--transition);
}

/* Logo filter rules */
/* On transparent navbar (homepage before scroll): white logo */
.navbar:not(.scrolled):not(.scrolled-always) .nav-logo img {
  filter: brightness(0) invert(1);
}

/* On scrolled / scrolled-always: natural logo */
.navbar.scrolled .nav-logo img,
.navbar.scrolled-always .nav-logo img,
.navbar.scrolled .logo img,
.navbar.scrolled-always .logo img,
.navbar.scrolled .logo-img,
.navbar.scrolled-always .logo-img {
  filter: none;
}

/* Nav links */
.nav-menu {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links > li {
  position: relative;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 0.95rem;
  font-weight: 400;
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 1.5px;
  background: var(--or);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* On transparent nav: white links */
.navbar:not(.scrolled):not(.scrolled-always) .nav-link {
  color: var(--blanc);
}

.navbar:not(.scrolled):not(.scrolled-always) .nav-links > li > a {
  color: var(--blanc);
}

/* On scrolled: dark links */
.navbar.scrolled .nav-link,
.navbar.scrolled-always .nav-link,
.navbar.scrolled .nav-links > li > a,
.navbar.scrolled-always .nav-links > li > a {
  color: var(--vert-profond);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled-always .nav-link:hover,
.navbar.scrolled .nav-links > li > a:hover,
.navbar.scrolled-always .nav-links > li > a:hover {
  color: var(--vert-sauge);
}

.nav-link.active,
.nav-links > li > a.active {
  color: var(--or) !important;
}

.nav-chevron {
  transition: transform var(--transition);
}

.has-mega-menu:hover .nav-chevron,
.has-mega:hover .nav-chevron {
  transform: rotate(180deg);
}

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}

.navbar:not(.scrolled):not(.scrolled-always) .nav-cta {
  color: var(--blanc);
}

.navbar.scrolled .nav-cta,
.navbar.scrolled-always .nav-cta {
  color: var(--vert-profond);
}

.nav-cta:hover {
  color: var(--or) !important;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.nav-devis {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--or), var(--or-clair));
  color: var(--vert-profond);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-devis:hover {
  box-shadow: 0 4px 16px rgba(200, 168, 75, 0.4);
  transform: translateY(-1px);
}

/* ============================================================
   MEGA MENU
   ============================================================ */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--blanc);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 28px 32px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  min-width: 500px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 100;
}

.has-mega-menu:hover > .mega-menu,
.has-mega:hover > .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-inner {
  display: flex;
  gap: 32px;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mega-menu-col,
.mega-menu-column,
.mega-col {
  min-width: 160px;
}

.mega-menu-col h4,
.mega-menu-column h4,
.mega-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gris-doux);
  margin-bottom: 12px;
}

.mega-menu-col ul,
.mega-menu-column ul,
.mega-col ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mega-menu-col ul li a,
.mega-menu-column ul li a,
.mega-col ul li a {
  font-size: 0.9rem;
  color: var(--vert-mousse);
  padding: 4px 0;
  transition: color var(--transition);
}

.mega-menu-col ul li a:hover,
.mega-menu-column ul li a:hover,
.mega-col ul li a:hover {
  color: var(--or);
}

.mega-menu-cta,
.mega-cta {
  background: var(--creme);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.mega-menu-cta p,
.mega-cta p {
  font-size: 0.9rem;
  color: var(--vert-mousse);
  margin-bottom: 0;
}

.mega-menu-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.mega-menu-item:hover {
  background: var(--creme);
}

.mega-menu-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vert-pale);
  border-radius: var(--radius-sm);
  color: var(--vert-sauge);
}

.mega-menu-text h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--vert-profond);
  margin-bottom: 2px;
}

.mega-menu-text p {
  font-size: 0.8rem;
  color: var(--gris-doux);
  margin-bottom: 0;
  line-height: 1.4;
}

.mega-menu-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 16px;
  padding-top: 16px;
}

.mega-menu-all {
  font-size: 0.9rem;
  color: var(--or);
  font-weight: 500;
  transition: color var(--transition);
}

.mega-menu-all:hover {
  color: var(--vert-profond);
}

/* ============================================================
   HAMBURGER
   ============================================================ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span,
.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar:not(.scrolled):not(.scrolled-always) .hamburger span,
.navbar:not(.scrolled):not(.scrolled-always) .hamburger-line {
  background: var(--blanc);
}

.navbar.scrolled .hamburger span,
.navbar.scrolled-always .hamburger span,
.navbar.scrolled .hamburger-line,
.navbar.scrolled-always .hamburger-line {
  background: var(--vert-profond);
}

.hamburger.active span:nth-child(1),
.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3),
.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--blanc);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  overflow-y: auto;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 100px 40px 40px;
  gap: 32px;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  padding: 100px 40px 40px;
  gap: 8px;
}

.mobile-menu-content > a {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--vert-profond);
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: color var(--transition);
}

.mobile-menu-content > a:hover,
.mobile-menu-content > a.active {
  color: var(--or);
}

.mobile-nav {
  /* nav wrapper */
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--vert-profond);
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: color var(--transition);
  display: block;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--or);
}

.mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.mobile-menu-info {
  margin-top: 16px;
}

.mobile-menu-info p {
  font-size: 0.85rem;
  color: var(--gris-doux);
  margin-bottom: 4px;
}

.mobile-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  color: var(--vert-profond);
  font-weight: 500;
  padding: 12px 0;
}

.mobile-devis-btn {
  display: block;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--or), var(--or-clair));
  color: var(--vert-profond);
  font-weight: 500;
  text-align: center;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: all var(--transition);
}

.mobile-devis-btn:hover {
  box-shadow: 0 4px 16px rgba(200, 168, 75, 0.4);
}

.mobile-submenu {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  gap: 4px;
  margin-bottom: 8px;
}

.mobile-submenu a {
  font-size: 0.95rem;
  color: var(--gris-doux);
  padding: 6px 0;
  transition: color var(--transition);
}

.mobile-submenu a:hover {
  color: var(--or);
}

/* ============================================================
   10. HERO (Homepage)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--vert-profond);
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 26, 13, 0.5) 0%,
    rgba(13, 26, 13, 0.3) 50%,
    rgba(13, 26, 13, 0.7) 100%
  );
  z-index: 2;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 160px clamp(20px, 4vw, 40px) 120px;
  color: var(--blanc);
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--blanc);
  backdrop-filter: blur(10px);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--blanc);
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-title em {
  color: var(--or-clair);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(250, 250, 247, 0.85);
  max-width: 600px;
  margin-bottom: 32px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 clamp(20px, 4vw, 40px);
}

.hero-stat {
  text-align: center;
  padding: 0 clamp(16px, 3vw, 40px);
  color: var(--blanc);
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--or-clair);
}

.hero-stat-suffix {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 300;
  color: var(--or-clair);
}

.hero-stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(250, 250, 247, 0.7);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* Hero Dots */
.hero-dots {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.hero-dot.active {
  background: var(--or);
  transform: scale(1.3);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 120px;
  right: clamp(20px, 4vw, 60px);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.scroll-mouse {
  opacity: 0.6;
}

.scroll-dot {
  animation: scrollWheel 2s ease-in-out infinite;
}

/* ============================================================
   11. PAGE HERO (Subpages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
}

.page-hero-sm {
  padding: 140px 0 60px;
  min-height: 280px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 26, 13, 0.5) 0%,
    rgba(13, 26, 13, 0.7) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-content h1 {
  color: var(--blanc);
  margin-bottom: 12px;
}

.page-hero-content h1 em {
  color: var(--or-clair);
}

.page-hero-content p {
  color: rgba(250, 250, 247, 0.85);
  max-width: 600px;
  font-size: 1.1rem;
  margin-bottom: 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  margin-bottom: 16px;
  color: rgba(250, 250, 247, 0.7);
}

.breadcrumb a {
  color: rgba(250, 250, 247, 0.7);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--or-clair);
}

.breadcrumb span {
  color: rgba(250, 250, 247, 0.5);
}

/* ============================================================
   12. MARQUEE
   ============================================================ */
.marquee-section {
  overflow: hidden;
  background: var(--creme);
  padding: 16px 0;
}

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
}

.marquee-content {
  display: flex;
  gap: 24px;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: 24px;
}

.marquee-content span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--vert-sauge);
  font-weight: 400;
}

.marquee-dot {
  color: var(--or) !important;
  font-size: 1.2rem !important;
}

/* ============================================================
   13. SERVICES
   ============================================================ */
.services-section {
  padding: var(--section-padding) 0;
  background: var(--blanc);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--blanc);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

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

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-number {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--vert-profond);
}

.service-card-content {
  padding: 24px;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vert-pale);
  border-radius: var(--radius-sm);
  color: var(--vert-sauge);
  margin-bottom: 16px;
}

.service-card-title {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--vert-profond);
  margin-bottom: 8px;
}

.service-card-desc {
  font-size: 0.9rem;
  color: var(--gris-doux);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--or);
  transition: all var(--transition);
}

.service-card-link:hover {
  color: var(--vert-profond);
  gap: 10px;
}

.services-cta {
  text-align: center;
  margin-top: 48px;
}

/* Services Hub (services.html) */
.services-hub {
  padding: var(--section-padding) 0;
}

.services-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-hub-card {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--blanc);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all var(--transition);
  text-decoration: none;
}

.service-hub-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

.service-hub-card:hover .service-hub-card-img img {
  transform: scale(1.05);
}

.service-hub-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 26, 13, 0.4), transparent);
}

.service-hub-card-body {
  padding: 24px;
}

.service-hub-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.service-hub-card-body p {
  font-size: 0.9rem;
  color: var(--gris-doux);
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-hub-number {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--or);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.service-hub-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--or);
}

.services-intro {
  padding: var(--section-padding) 0;
  background: var(--creme);
}

.services-intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.services-intro-content p {
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ============================================================
   14. SERVICE DETAIL
   ============================================================ */
.service-detail {
  padding: var(--section-padding) 0;
}

.service-detail.alt {
  background: var(--creme);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-detail-grid.reverse {
  direction: ltr;
}

.service-detail-grid.reverse .service-detail-content {
  order: 2;
}

.service-detail-grid.reverse .service-detail-images {
  order: 1;
}

.service-detail-content h2 {
  margin-bottom: 16px;
}

.service-detail-content p {
  color: var(--gris-doux);
  line-height: 1.7;
}

.service-includes ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--vert-mousse);
}

.service-includes ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%234a6741' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.detail-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.detail-img-main img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.detail-img-small {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 45%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--blanc);
}

.service-detail-images {
  position: relative;
}

/* ============================================================
   15. ABOUT / TEASER
   ============================================================ */
.about-teaser {
  padding: var(--section-padding) 0;
  background: var(--creme);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content {
  /* text side */
}

.about-text {
  color: var(--vert-mousse);
  line-height: 1.7;
  margin-bottom: 12px;
}

.about-signature {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--or);
  font-size: 1.1rem;
  margin: 20px 0;
}

.about-qualities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.about-quality {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-quality-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vert-pale);
  border-radius: 50%;
  color: var(--vert-sauge);
}

.about-quality span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--vert-mousse);
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-img-main img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-img-small {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 45%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid var(--blanc);
  box-shadow: var(--shadow-lg);
}

.about-img-small img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  top: 20px;
  right: -16px;
  background: var(--or);
  color: var(--vert-profond);
  padding: 16px;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-experience-badge .badge-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  display: block;
  line-height: 1;
}

.about-experience-badge .badge-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-image-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}

.about-image-badge img {
  width: 40px;
  height: 40px;
}

.about-image-badge span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--vert-profond);
}

/* About Story (apropos.html) */
.about-story {
  padding: var(--section-padding) 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-story-content {
  /* text content */
}

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

.about-story-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-story-image {
  position: relative;
}

/* ============================================================
   16. PROCESS
   ============================================================ */
.process,
.process-section {
  padding: var(--section-padding) 0;
  background: var(--creme);
}

.process-grid,
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step-number,
.process-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--or);
  line-height: 1;
  margin-bottom: 16px;
}

.process-step-line,
.process-line {
  position: absolute;
  top: 24px;
  right: -16px;
  width: 32px;
  height: 1px;
  background: var(--vert-pale);
}

.process-step:last-child .process-step-line,
.process-step:last-child .process-line {
  display: none;
}

.process-step-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vert-pale);
  border-radius: 50%;
  color: var(--vert-sauge);
  margin: 0 auto 16px;
}

.process-step-content {
  /* text wrapper */
}

.process-step-content h3,
.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--vert-profond);
}

.process-step-content p,
.process-step p {
  font-size: 0.9rem;
  color: var(--gris-doux);
  line-height: 1.6;
}

/* ============================================================
   17. STATS / NUMBERS
   ============================================================ */
.stats-section {
  position: relative;
  padding: clamp(60px, 8vw, 100px) 0;
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  inset: 0;
}

.stats-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 26, 13, 0.85);
}

.stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  text-align: center;
  color: var(--blanc);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--or-clair);
  display: inline;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 300;
  color: var(--or-clair);
}

.stat-label {
  display: block;
  margin-top: 8px;
  font-size: 0.9rem;
  color: rgba(250, 250, 247, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Numbers variant */
.numbers-section {
  position: relative;
  padding: clamp(60px, 8vw, 100px) 0;
  overflow: hidden;
}

.numbers-bg {
  position: absolute;
  inset: 0;
}

.numbers-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 26, 13, 0.85);
}

.numbers-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.number-item {
  text-align: center;
  color: var(--blanc);
}

.number-value {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--or-clair);
}

.number-suffix {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  color: var(--or-clair);
}

.number-label {
  display: block;
  margin-top: 8px;
  font-size: 0.9rem;
  color: rgba(250, 250, 247, 0.7);
}

.counter {
  font-family: var(--font-heading);
}

.counter-bar {
  background: var(--creme);
  padding: 20px 0;
}

.counter-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.counter-bar-content p {
  font-size: 1.05rem;
  color: var(--vert-mousse);
  margin-bottom: 0;
}

.counter-bar-icon {
  color: var(--or);
  flex-shrink: 0;
}

/* ============================================================
   18. GALLERY / REALISATIONS
   ============================================================ */
.gallery-section {
  padding: var(--section-padding) 0;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--vert-mousse);
  background: transparent;
  border: 1px solid var(--vert-pale);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover {
  border-color: var(--vert-sauge);
  color: var(--vert-profond);
}

.filter-btn.active {
  background: var(--vert-profond);
  color: var(--blanc);
  border-color: var(--vert-profond);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-masonry {
  columns: 3;
  column-gap: 20px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.masonry-item.hidden {
  display: none;
}

.masonry-item-inner {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.masonry-item-inner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.masonry-item-inner:hover img {
  transform: scale(1.05);
}

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 26, 13, 0.85) 0%, rgba(13, 26, 13, 0) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}

.masonry-item-inner:hover .masonry-overlay {
  opacity: 1;
}

.masonry-category {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--or-clair);
  margin-bottom: 4px;
}

.masonry-title {
  color: var(--blanc);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.masonry-desc {
  font-size: 0.85rem;
  color: rgba(250, 250, 247, 0.8);
  line-height: 1.5;
  margin-bottom: 8px;
}

.masonry-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(250, 250, 247, 0.6);
}

/* Gallery Modal */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.gallery-modal.active {
  opacity: 1;
  visibility: visible;
}

.gallery-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 26, 13, 0.9);
}

.gallery-modal-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 90%;
  background: var(--blanc);
  border-radius: var(--radius-lg);
  overflow: hidden;
  animation: modalFadeIn 0.4s ease;
}

.gallery-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  color: var(--blanc);
  border-radius: 50%;
  z-index: 3;
  cursor: pointer;
}

.gallery-modal-image img {
  width: 100%;
  height: auto;
}

.gallery-modal-info {
  padding: 24px;
}

.gallery-modal-title {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.gallery-modal-category {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--or);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.gallery-modal-desc {
  color: var(--gris-doux);
  margin-bottom: 8px;
}

.gallery-modal-location {
  font-size: 0.85rem;
  color: var(--gris-doux);
  display: flex;
  align-items: center;
  gap: 6px;
}

.gallery-modal-nav {
  display: flex;
  justify-content: space-between;
  padding: 0 24px 24px;
}

.gallery-modal-prev,
.gallery-modal-next {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--vert-pale);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition);
}

.gallery-modal-prev:hover,
.gallery-modal-next:hover {
  background: var(--vert-profond);
  color: var(--blanc);
  border-color: var(--vert-profond);
}

/* Realisations Carousel (homepage) */
.realisations-section {
  padding: var(--section-padding) 0;
  background: var(--blanc);
}

.realisations-carousel {
  overflow: hidden;
  margin: 0 -20px;
  padding: 0 20px;
}

.realisations-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}

.realisations-track::-webkit-scrollbar {
  display: none;
}

.realisation-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--blanc);
  transition: all var(--transition);
}

.realisation-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.realisation-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

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

.realisation-card:hover .realisation-image img {
  transform: scale(1.05);
}

.realisation-category {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--vert-profond);
}

.realisation-info {
  padding: 16px 20px;
}

.realisation-title {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.realisation-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--gris-doux);
  margin-bottom: 0;
}

.realisations-cta {
  text-align: center;
  margin-top: 40px;
}

/* ============================================================
   19. TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding: var(--section-padding) 0;
  background: var(--creme);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  flex: 0 0 100%;
  max-width: 700px;
  margin: 0 auto;
  background: var(--blanc);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--or);
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--vert-mousse);
  line-height: 1.7;
  margin-bottom: 24px;
  border: none;
  padding: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--vert-pale);
  color: var(--vert-sauge);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 0.9rem;
}

.testimonial-info {
  text-align: left;
}

.testimonial-name {
  display: block;
  font-weight: 500;
  color: var(--vert-profond);
}

.testimonial-location {
  font-size: 0.85rem;
  color: var(--gris-doux);
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.testimonials-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--vert-pale);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.testimonial-dot.active {
  background: var(--or);
  transform: scale(1.2);
}

.testimonial-prev,
.testimonial-next {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--vert-pale);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--vert-mousse);
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: var(--vert-profond);
  color: var(--blanc);
  border-color: var(--vert-profond);
}

/* ============================================================
   20. ZONE / MAP
   ============================================================ */
.zone-section {
  padding: var(--section-padding) 0;
}

.zone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.zone-content {
  /* text side */
}

.zone-text {
  color: var(--gris-doux);
  margin-bottom: 24px;
  line-height: 1.7;
}

.zone-communes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.zone-commune,
.commune-tag {
  padding: 6px 14px;
  background: var(--creme);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--vert-mousse);
  border: 1px solid var(--vert-pale);
  transition: all var(--transition);
}

.zone-commune:hover,
.commune-tag:hover {
  background: var(--vert-profond);
  color: var(--blanc);
  border-color: var(--vert-profond);
}

.communes-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.zone-map {
  position: relative;
}

.zone-map-visual {
  max-width: 400px;
  margin: 0 auto;
}

.zone-map-svg {
  width: 100%;
  height: auto;
}

.zone-map-shape {
  transition: all var(--transition);
}

.zone-dot {
  transition: all var(--transition);
}

.zone-dot-main {
  animation: pulse 2s ease infinite;
}

.zone-info {
  margin-top: 16px;
}

.zone-info-card {
  padding: 16px;
  background: var(--creme);
  border-radius: var(--radius-sm);
}

.map-section {
  padding: 0;
}

.map-full {
  width: 100%;
  height: 400px;
  border: none;
}

.map-full iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   21. CTA BANNERS
   ============================================================ */
.cta-banner {
  position: relative;
  padding: clamp(60px, 8vw, 100px) 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 46, 26, 0.9), rgba(45, 74, 45, 0.85));
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--blanc);
}

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

.cta-content p {
  color: rgba(250, 250, 247, 0.85);
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-final {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--vert-profond);
  text-align: center;
}

.cta-final-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-final-title {
  color: var(--blanc);
  margin-bottom: 16px;
}

.cta-final-title em {
  color: var(--or-clair);
}

.cta-final-text {
  color: rgba(250, 250, 247, 0.8);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.cta-final-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   22. CREDIT D'IMPOT
   ============================================================ */
.credit-section {
  padding: var(--section-padding) 0;
}

.credit-banner {
  background: linear-gradient(135deg, var(--or), var(--or-clair));
  padding: 40px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 24px;
}

.credit-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--vert-profond);
}

.credit-content {
  flex: 1;
}

.credit-title {
  font-size: 1.3rem;
  color: var(--vert-profond);
  margin-bottom: 8px;
}

.credit-text {
  color: var(--vert-profond);
  opacity: 0.85;
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.credit-cta {
  background: var(--vert-profond) !important;
  color: var(--blanc) !important;
}

/* Credit impot banner (services.html variant) */
.credit-impot-banner {
  background: linear-gradient(135deg, var(--or), var(--or-clair));
  padding: clamp(40px, 5vw, 60px) 0;
}

.credit-impot-content {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.credit-impot-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--vert-profond);
}

.credit-impot-text {
  flex: 1;
  min-width: 300px;
}

.credit-impot-text h3 {
  color: var(--vert-profond);
  margin-bottom: 8px;
}

.credit-impot-text p {
  color: var(--vert-profond);
  opacity: 0.85;
  margin-bottom: 0;
  line-height: 1.6;
}

/* ============================================================
   23. BLOG
   ============================================================ */
.blog-section {
  padding: var(--section-padding) 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.blog-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--blanc);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card-image {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-category {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  background: var(--blanc);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--vert-sauge);
}

.blog-card-content {
  padding: 24px;
}

.blog-card-content h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.blog-card-content h3 a {
  color: var(--vert-profond);
  transition: color var(--transition);
}

.blog-card-content h3 a:hover {
  color: var(--or);
}

.blog-card-content p {
  font-size: 0.9rem;
  color: var(--gris-doux);
  line-height: 1.6;
  margin-bottom: 12px;
}

.blog-card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}

.blog-card-date,
.blog-card-reading {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--gris-doux);
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--or);
  transition: all var(--transition);
}

.blog-card-link:hover {
  color: var(--vert-profond);
  gap: 10px;
}

/* ============================================================
   24. ARTICLE (single)
   ============================================================ */
.article-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  padding: var(--section-padding) 0;
}

.article-content {
  max-width: 740px;
}

.article-content h2, .article-content h3 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.article-content p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.article-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.article-header {
  margin-bottom: 32px;
}

.article-meta {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--gris-doux);
  margin-bottom: 16px;
}

.article-author,
.article-date,
.article-reading-time {
  display: flex;
  align-items: center;
  gap: 4px;
}

.article-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
}

.article-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.article-section {
  margin-bottom: 32px;
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.article-table th,
.article-table td {
  padding: 12px 16px;
  border: 1px solid var(--vert-pale);
  text-align: left;
}

.article-table th {
  background: var(--creme);
  font-weight: 500;
}

.table-responsive {
  overflow-x: auto;
}

.article-cta {
  background: var(--creme);
  padding: 32px;
  border-radius: var(--radius-md);
  text-align: center;
  margin: 40px 0;
}

.author-bio,
.author-bio-section {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--creme);
  border-radius: var(--radius-md);
  margin-top: 40px;
}

.author-bio-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.author-bio-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-bio-content h4 {
  margin-bottom: 4px;
}

.author-bio-content p {
  font-size: 0.9rem;
  color: var(--gris-doux);
  margin-bottom: 8px;
}

.author-bio-link {
  font-size: 0.9rem;
  color: var(--or);
  font-weight: 500;
}

.sidebar-widget {
  margin-bottom: 32px;
  padding: 24px;
  background: var(--creme);
  border-radius: var(--radius-md);
}

.sidebar-widget h4 {
  margin-bottom: 16px;
}

.sidebar-posts a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.9rem;
  color: var(--vert-mousse);
  transition: color var(--transition);
}

.sidebar-posts a:hover {
  color: var(--or);
}

.sidebar-cta {
  background: var(--vert-profond);
  color: var(--blanc);
  padding: 28px;
  border-radius: var(--radius-md);
  text-align: center;
}

.sidebar-cta h4 {
  color: var(--blanc);
  margin-bottom: 8px;
}

.sidebar-cta p {
  color: rgba(250, 250, 247, 0.8);
  font-size: 0.9rem;
}

.related-articles-section {
  padding: var(--section-padding) 0;
  background: var(--creme);
}

/* ============================================================
   25. FAQ
   ============================================================ */
.faq-section {
  padding: var(--section-padding) 0;
}

.faq-intro {
  padding: var(--section-padding) 0;
  background: var(--creme);
}

.faq-intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.faq-intro-content p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.faq-intro-content a {
  color: var(--or);
  font-weight: 500;
  text-decoration: underline;
}

.faq-grid,
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 40px;
}

.faq-category-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--vert-profond);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--vert-pale);
}

.faq-accordion {
  /* container */
}

.faq-item {
  border-bottom: 1px solid var(--vert-pale);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--vert-profond);
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  transition: color var(--transition);
}

.faq-question span {
  flex: 1;
  font-size: 1.05rem;
  color: var(--vert-profond);
}

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

.faq-question:hover span {
  color: var(--or);
}

.faq-icon,
.faq-chevron {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--gris-doux);
}

.faq-item.active .faq-icon,
.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--or);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--gris-doux);
  line-height: 1.7;
  padding-right: 40px;
}

.faq-answer a {
  color: var(--or);
  text-decoration: underline;
}

.faq-item.active .faq-question {
  color: var(--or);
}

.faq-item.active .faq-question span {
  color: var(--or);
}

/* ============================================================
   26. CONTACT PAGE
   ============================================================ */
.contact-page {
  padding: var(--section-padding) 0;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-page-info {
  /* left column */
}

.contact-page-info h2 {
  margin-bottom: 16px;
}

.contact-page-info > p {
  color: var(--gris-doux);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.contact-card-mini {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--creme);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}

.contact-card-mini:hover {
  background: var(--vert-pale);
  transform: translateX(4px);
}

.contact-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vert-pale);
  border-radius: var(--radius-sm);
  color: var(--vert-sauge);
}

.contact-card-icon svg {
  width: 20px;
  height: 20px;
}

.contact-card-mini strong {
  display: block;
  font-weight: 500;
  color: var(--vert-profond);
  margin-bottom: 2px;
  font-size: 0.9rem;
}

.contact-card-mini span {
  font-size: 0.9rem;
  color: var(--gris-doux);
}

.contact-social {
  margin-bottom: 24px;
}

.contact-social h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.contact-response-note {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--vert-pale);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--vert-sauge);
  font-weight: 500;
}

.contact-form-wrapper {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-form h3 {
  margin-bottom: 8px;
}

/* ============================================================
   27. FORMS
   ============================================================ */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--vert-profond);
  margin-bottom: 6px;
}

.form-group label small {
  font-weight: 300;
  color: var(--gris-doux);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--vert-pale);
  border-radius: var(--radius-sm);
  background: var(--blanc);
  font-size: 0.95rem;
  color: var(--vert-mousse);
  transition: all var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gris-doux);
  opacity: 0.7;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--vert-sauge);
  box-shadow: 0 0 0 3px rgba(74, 103, 65, 0.1);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%238a9688' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 10px;
  padding-right: 40px;
}

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

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeInUp 0.4s ease;
}

.form-step-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--vert-profond);
  margin-bottom: 20px;
}

.form-step-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}

.form-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
}

.form-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}

.form-progress-step span {
  font-size: 0.75rem;
  color: var(--gris-doux);
  font-weight: 400;
}

.form-progress-step.active span {
  color: var(--vert-profond);
  font-weight: 500;
}

.progress-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--creme);
  color: var(--gris-doux);
  border: 2px solid var(--vert-pale);
  transition: all var(--transition);
}

.form-progress-step.active .progress-circle {
  background: var(--vert-profond);
  color: var(--blanc);
  border-color: var(--vert-profond);
}

.form-progress-line {
  width: 40px;
  height: 2px;
  background: var(--vert-pale);
  margin: 0 8px;
  margin-bottom: 20px;
}

.form-subtitle {
  font-size: 0.95rem;
  color: var(--gris-doux);
  margin-bottom: 24px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--gris-doux);
  margin-top: 12px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  accent-color: var(--vert-sauge);
}

.form-checkbox label {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--gris-doux);
  margin-bottom: 0;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success-icon {
  margin-bottom: 16px;
}

.form-success h3 {
  color: var(--vert-profond);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--gris-doux);
}

.form-success-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--vert-sauge);
  font-weight: 500;
}

.step-next,
.step-prev {
  /* inherits from .btn */
}

/* ============================================================
   28. DEVIS LANDING
   ============================================================ */
.devis-landing {
  padding: 120px 0 var(--section-padding);
}

.devis-landing-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.devis-header {
  margin-bottom: 32px;
}

.devis-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--vert-pale);
  color: var(--vert-sauge);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.devis-subtitle {
  font-size: 1.1rem;
  color: var(--gris-doux);
  margin-top: 8px;
}

.devis-proof-points {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.proof-point {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--vert-sauge);
  font-weight: 400;
}

.proof-point svg {
  color: var(--vert-sauge);
}

.devis-form-wrapper {
  background: var(--blanc);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 40px;
  text-align: left;
}

.devis-form {
  /* inherits form styles */
}

.devis-guarantees {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.guarantee-card {
  text-align: center;
  padding: 24px 16px;
  background: var(--creme);
  border-radius: var(--radius-md);
}

.guarantee-icon {
  margin-bottom: 12px;
}

.guarantee-card h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--vert-profond);
  margin-bottom: 6px;
}

.guarantee-card p {
  font-size: 0.85rem;
  color: var(--gris-doux);
  margin-bottom: 0;
  line-height: 1.5;
}

.devis-social-proof {
  margin-top: 40px;
}

.social-proof-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.social-proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--vert-mousse);
}

.social-proof-icon {
  flex-shrink: 0;
}

.social-proof-testimonial {
  max-width: 500px;
  margin: 0 auto;
}

.social-proof-testimonial blockquote {
  border: none;
  padding: 0;
  text-align: center;
}

.social-proof-testimonial p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--vert-mousse);
  line-height: 1.7;
}

.social-proof-testimonial footer {
  margin-top: 12px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.9rem;
  color: var(--gris-doux);
}

/* ============================================================
   29. TEAM
   ============================================================ */
.team-section {
  padding: var(--section-padding) 0;
  background: var(--blanc);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--blanc);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.team-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 6;
}

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

.team-card:hover .team-photo img {
  transform: scale(1.05);
}

.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 26, 13, 0.7), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-social {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--blanc);
  transition: all var(--transition);
}

.team-social:hover {
  background: var(--or);
  color: var(--vert-profond);
}

.team-info {
  padding: 20px 24px;
}

.team-info h3 {
  font-size: 1.15rem;
  margin-bottom: 2px;
}

.team-role {
  display: block;
  font-size: 0.85rem;
  color: var(--or);
  margin-bottom: 8px;
}

.team-info p {
  font-size: 0.9rem;
  color: var(--gris-doux);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================================
   30. VALUES / CERTIFICATIONS
   ============================================================ */
.values-section {
  padding: var(--section-padding) 0;
  background: var(--creme);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--blanc);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vert-pale);
  border-radius: 50%;
  color: var(--vert-sauge);
  margin: 0 auto 20px;
}

.value-card h3 {
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--gris-doux);
  line-height: 1.6;
  margin-bottom: 0;
}

.certifications-section {
  padding: var(--section-padding) 0;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.certification-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--creme);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.certification-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.certification-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vert-pale);
  border-radius: 50%;
  color: var(--vert-sauge);
  margin: 0 auto 16px;
}

.certification-card h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.certification-card p {
  font-size: 0.85rem;
  color: var(--gris-doux);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================================
   31. TIMELINE
   ============================================================ */
.timeline-section {
  padding: var(--section-padding) 0;
  background: var(--creme);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--vert-pale);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  display: flex;
  margin-bottom: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-left {
  justify-content: flex-start;
  padding-right: 50%;
}

.timeline-right {
  justify-content: flex-end;
  padding-left: 50%;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  top: 24px;
  width: 16px;
  height: 16px;
  background: var(--or);
  border: 3px solid var(--blanc);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 0 3px var(--vert-pale);
}

.timeline-card {
  padding: 24px;
  background: var(--blanc);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  max-width: 380px;
}

.timeline-year {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--or);
  font-weight: 600;
  margin-bottom: 8px;
}

.timeline-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.timeline-card p {
  font-size: 0.9rem;
  color: var(--gris-doux);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================================
   32. NEWSLETTER
   ============================================================ */
.newsletter-section {
  padding: var(--section-padding) 0;
  background: var(--creme);
}

.newsletter-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-content h2 {
  margin-bottom: 8px;
}

.newsletter-content p {
  color: var(--gris-doux);
  margin-bottom: 24px;
}

.newsletter-form {
  /* wrapper */
}

.newsletter-input-group {
  display: flex;
  gap: 8px;
}

.newsletter-input-group input {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid var(--vert-pale);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

.newsletter-input-group input:focus {
  border-color: var(--vert-sauge);
}

/* ============================================================
   33. ECO SECTION
   ============================================================ */
.eco-section {
  padding: var(--section-padding) 0;
  background: var(--blanc);
}

.eco-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.eco-content {
  /* text side */
}

.eco-content h2 {
  margin-bottom: 16px;
}

.eco-content > p {
  color: var(--gris-doux);
  margin-bottom: 24px;
  line-height: 1.7;
}

.eco-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eco-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.eco-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vert-pale);
  border-radius: 50%;
  color: var(--vert-sauge);
}

.eco-list li strong {
  display: block;
  font-weight: 500;
  color: var(--vert-profond);
  margin-bottom: 4px;
}

.eco-list li p {
  font-size: 0.9rem;
  color: var(--gris-doux);
  line-height: 1.6;
  margin-bottom: 0;
}

.eco-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.eco-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ============================================================
   34. SOCIAL LINKS
   ============================================================ */
.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--vert-pale);
  border-radius: 50%;
  color: var(--vert-mousse);
  transition: all var(--transition);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  background: var(--or);
  border-color: var(--or);
  color: var(--vert-profond);
}

/* ============================================================
   35. FOOTER
   ============================================================ */
.footer {
  background: var(--noir);
  padding: 60px 0 0;
  color: rgba(250, 250, 247, 0.7);
}

.footer-top {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col {
  /* column */
}

.footer-about {
  /* first col */
}

.footer-brand {
  /* brand wrapper in footer-top pattern */
}

.footer-brand .logo img,
.footer-brand .logo-img {
  filter: brightness(0) invert(1);
}

.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--or-clair);
  margin-bottom: 8px;
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(250, 250, 247, 0.6);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--or-clair);
  margin-bottom: 20px;
}

.footer-links {
  /* either a div col or a ul */
}

.footer-links h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--or-clair);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links ul li a {
  font-size: 0.9rem;
  color: rgba(250, 250, 247, 0.6);
  transition: color var(--transition);
}

.footer-links ul li a:hover {
  color: var(--or-clair);
}

.footer-contact {
  /* contact col */
}

.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--or-clair);
  margin-bottom: 20px;
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(250, 250, 247, 0.6);
}

.footer-contact li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--or-clair);
}

.footer-contact li a {
  color: rgba(250, 250, 247, 0.6);
  transition: color var(--transition);
}

.footer-contact li a:hover {
  color: var(--or-clair);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: rgba(250, 250, 247, 0.6);
  transition: all var(--transition);
}

.footer-social-link:hover {
  background: var(--or);
  border-color: var(--or);
  color: var(--vert-profond);
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(250, 250, 247, 0.5);
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
}

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

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(250, 250, 247, 0.4);
  margin-bottom: 0;
}

.footer-bottom-left {
  /* left part */
}

.footer-bottom-left p {
  margin-bottom: 0;
}

.footer-bottom-center {
  display: flex;
  gap: 20px;
}

.footer-bottom-center a {
  font-size: 0.85rem;
  color: rgba(250, 250, 247, 0.4);
  transition: color var(--transition);
}

.footer-bottom-center a:hover {
  color: var(--or-clair);
}

.footer-bottom-right {
  display: flex;
  gap: 12px;
}

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

.footer-bottom-links a {
  font-size: 0.85rem;
  color: rgba(250, 250, 247, 0.4);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--or-clair);
}

/* Footer Minimal */
.footer.footer-minimal {
  padding: 0;
}

.footer-minimal .footer-bottom {
  border-top: none;
  padding: 24px 0;
}

.footer-minimal-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.footer-minimal-copy {
  font-size: 0.85rem;
  color: rgba(250, 250, 247, 0.4);
}

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

.footer-minimal-links a {
  font-size: 0.85rem;
  color: rgba(250, 250, 247, 0.4);
  transition: color var(--transition);
}

.footer-minimal-links a:hover {
  color: var(--or-clair);
}

/* ============================================================
   36. WHATSAPP / BACK TO TOP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  z-index: 990;
  transition: all var(--transition);
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vert-profond);
  color: var(--blanc);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--or);
  color: var(--vert-profond);
  transform: translateY(-2px);
}

/* ============================================================
   37. ERROR / LEGAL / SITEMAP
   ============================================================ */
.error-page {
  padding: 160px 0 var(--section-padding);
  text-align: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.error-content {
  max-width: 600px;
  margin: 0 auto;
}

.error-number {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 300;
  color: var(--vert-pale);
  line-height: 1;
  margin-bottom: 16px;
}

.error-page h1 {
  margin-bottom: 16px;
}

.error-description {
  color: var(--gris-doux);
  margin-bottom: 12px;
  line-height: 1.7;
}

.error-suggestion {
  color: var(--gris-doux);
  margin-bottom: 32px;
}

.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.error-links {
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
}

.error-links h2 {
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.error-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.error-links ul li a {
  color: var(--vert-mousse);
  font-size: 0.95rem;
  transition: color var(--transition);
}

.error-links ul li a:hover {
  color: var(--or);
}

.legal-content {
  padding: var(--section-padding) 0;
}

.legal-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
}

.legal-text h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-text h3 {
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-text p {
  margin-bottom: 16px;
}

.legal-update {
  font-size: 0.85rem;
  color: var(--gris-doux);
  font-style: italic;
}

.sitemap-section {
  padding: var(--section-padding) 0;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.sitemap-col h3 {
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.sitemap-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sitemap-col ul li a {
  color: var(--vert-mousse);
  font-size: 0.95rem;
  transition: color var(--transition);
}

.sitemap-col ul li a:hover {
  color: var(--or);
}

/* ============================================================
   38. KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(8px);
    opacity: 0.3;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(200, 168, 75, 0.4);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(200, 168, 75, 0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes preloaderLoad {
  0% { width: 0; }
  100% { width: 100%; }
}

@keyframes preloaderPulse {
  0%, 100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes accordionOpen {
  from {
    max-height: 0;
    opacity: 0;
  }
  to {
    max-height: 500px;
    opacity: 1;
  }
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes cursorPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
  }
}

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  }
  50% {
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.55);
  }
}

/* ============================================================
   39. SCROLL ANIMATIONS (AOS-like)
   ============================================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].visible,
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(40px);
}

[data-aos="fade-right"] {
  transform: translateX(-40px);
}

[data-aos="fade-down"] {
  transform: translateY(-30px);
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-left"].visible,
[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-right"].visible,
[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-down"].visible,
[data-aos="fade-down"].aos-animate {
  transform: translateY(0);
}

/* ============================================================
   40. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Large desktop */
@media (max-width: 1200px) {
  .services-grid,
  .services-hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mega-menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .devis-guarantees {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .about-grid,
  .about-story-grid,
  .eco-grid,
  .zone-grid,
  .contact-page-grid,
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-grid,
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid,
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step-line,
  .process-line {
    display: none;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-left,
  .timeline-right {
    padding-left: 50px;
    padding-right: 0;
    justify-content: flex-start;
  }

  .timeline-marker {
    left: 20px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links,
  .nav-menu {
    display: none;
  }

  .nav-devis {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
    width: 32px;
    height: 32px;
  }

  /* Logo plus petit en mobile */
  .logo img,
  .logo-img,
  .nav-logo img {
    height: 80px !important;
  }

  .navbar {
    padding: 10px 0;
  }

  /* Menu mobile amélioré */
  .mobile-menu {
    background: var(--vert-profond);
  }

  .mobile-menu-content,
  .mobile-menu-inner {
    padding: 120px 32px 40px;
    gap: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .mobile-menu-content > a,
  .mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    color: var(--blanc) !important;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease;
    display: block;
  }

  .mobile-menu.active .mobile-menu-content > a,
  .mobile-menu.active .mobile-nav-link {
    opacity: 1;
    transform: translateX(0);
  }

  .mobile-menu.active .mobile-menu-content > a:nth-child(1),
  .mobile-menu.active .mobile-nav-links li:nth-child(1) .mobile-nav-link { transition-delay: 0.1s; }
  .mobile-menu.active .mobile-menu-content > a:nth-child(2),
  .mobile-menu.active .mobile-nav-links li:nth-child(2) .mobile-nav-link { transition-delay: 0.15s; }
  .mobile-menu.active .mobile-menu-content > a:nth-child(3),
  .mobile-menu.active .mobile-nav-links li:nth-child(3) .mobile-nav-link { transition-delay: 0.2s; }
  .mobile-menu.active .mobile-menu-content > a:nth-child(4),
  .mobile-menu.active .mobile-nav-links li:nth-child(4) .mobile-nav-link { transition-delay: 0.25s; }
  .mobile-menu.active .mobile-menu-content > a:nth-child(5),
  .mobile-menu.active .mobile-nav-links li:nth-child(5) .mobile-nav-link { transition-delay: 0.3s; }
  .mobile-menu.active .mobile-nav-links li:nth-child(6) .mobile-nav-link { transition-delay: 0.35s; }

  .mobile-menu-content > a:hover,
  .mobile-menu-content > a.active,
  .mobile-nav-link:hover,
  .mobile-nav-link.active {
    color: var(--or) !important;
  }

  .mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-menu-cta {
    margin-top: 40px;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.35s, transform 0.4s ease 0.35s;
  }

  .mobile-menu.active .mobile-menu-cta {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu-cta .btn,
  .mobile-devis-btn {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
    font-size: 1rem;
    border-radius: 8px;
  }

  .mobile-phone {
    color: var(--blanc);
  }

  .mobile-devis-btn {
    background: var(--or);
    color: var(--blanc);
    display: block;
    font-weight: 500;
  }

  .mobile-menu-cta .btn-outline-dark {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--blanc);
  }

  .mobile-menu-cta .btn-outline-dark:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .mobile-menu-info p {
    color: rgba(255, 255, 255, 0.5);
  }

  /* Hamburger blanc quand menu ouvert */
  .hamburger.active span,
  .hamburger.active .hamburger-line {
    background: var(--blanc) !important;
  }

  .hero-content {
    padding: 140px 20px 100px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
    bottom: 20px;
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-stat {
    flex: 1 1 40%;
    padding: 8px 0;
  }

  .hero-dots {
    bottom: 80px;
  }

  .scroll-indicator {
    display: none;
  }

  .services-grid,
  .services-hub-grid,
  .blog-grid,
  .blog-grid-2,
  .values-grid,
  .team-grid,
  .sitemap-grid {
    grid-template-columns: 1fr;
  }

  .gallery-masonry {
    columns: 2;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .credit-banner {
    flex-direction: column;
    text-align: center;
  }

  .credit-impot-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-bottom-center {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-bottom-right {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stats-grid,
  .numbers-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .process-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

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

  .mega-menu {
    position: static;
    transform: none;
    min-width: auto;
    box-shadow: none;
    padding: 16px;
    display: none;
  }

  .testimonial-card {
    padding: 28px 20px;
  }

  .devis-proof-points {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .social-proof-stats {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-actions {
    flex-direction: column;
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
  }

  .cta-final-buttons {
    flex-direction: column;
    align-items: center;
  }

  .error-actions {
    flex-direction: column;
    align-items: center;
  }

  .contact-form-wrapper {
    padding: 24px;
  }

  .devis-form-wrapper {
    padding: 24px;
  }

  .devis-guarantees {
    grid-template-columns: 1fr;
  }

  .about-experience-badge {
    right: 0;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-content {
    padding: 120px 16px 80px;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-stats {
    display: none;
  }

  .gallery-masonry {
    columns: 1;
  }

  .mobile-menu-content {
    padding: 80px 20px 20px;
  }

  .mobile-menu-inner {
    padding: 80px 20px 20px;
  }

  .page-hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .form-step-actions {
    flex-direction: column;
  }

  .timeline::before {
    left: 12px;
  }

  .timeline-left,
  .timeline-right {
    padding-left: 36px;
  }

  .timeline-marker {
    left: 12px;
    width: 12px;
    height: 12px;
  }

  .timeline-card {
    padding: 16px;
  }

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

  .nav-cta span {
    display: none;
  }
}

/* Touch devices */
@media (pointer: coarse) {
  .cursor-dot,
  .cursor-outline {
    display: none !important;
  }
}

/* Print styles */
@media print {
  .navbar,
  .preloader,
  .cookie-banner,
  .whatsapp-float,
  .back-to-top,
  .scroll-progress,
  .cursor-dot,
  .cursor-outline,
  .hamburger,
  .mobile-menu {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero,
  .page-hero {
    min-height: auto;
    padding: 40px 0;
  }

  .hero-overlay,
  .page-hero-overlay {
    display: none;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .footer {
    background: #f5f5f5;
    color: #333;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-slide {
    transition: none;
  }

  .marquee-track {
    animation: none;
  }

  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============================================================
   LANDING PAGE BODY
   ============================================================ */
.landing-page {
  /* body class for devis-gratuit.html */
}
