/* ============================================================
   ÉLAGAGE SAINT-TROPEZ — CSS CENTRALISÉ
   Charte "Organic Editorialism" — Thème clair premium
   ============================================================ */

/* --- CSS VARIABLES ----------------------------------------- */
:root {
  /* Couleurs principales — Vert forêt premium */
  --primary: #3D5A3E;
  --primary-container: #5B8A5D;
  --primary-fixed: #5B8A5D;
  --primary-fixed-dim: #3D5A3E;
  --on-primary: #FFFFFF;
  --on-primary-fixed: #FFFFFF;
  --on-primary-fixed-variant: #FAF8F3;
  --on-primary-container: #FFFFFF;
  --primary-glow: rgba(61, 90, 62, 0.10);

  /* Gold accent — CTA & boutons primaires */
  --gold: #C9A961;
  --gold-hover: #B8953E;
  --on-gold: #1A1A1A;

  /* Surface & background — Thème clair crème */
  --surface: #FAF8F3;
  --surface-dim: #F1EDE4;
  --surface-bright: #FFFFFF;
  --surface-container-lowest: #F1EDE4;
  --surface-container-low: #F7F4ED;
  --surface-container: #FFFFFF;
  --surface-container-high: #F1EDE4;
  --surface-container-highest: #EBE7DE;
  --surface-variant: #EBE7DE;
  --surface-tint: #3D5A3E;
  --background: #FAF8F3;

  /* Texte — Lisible sur fond clair */
  --on-surface: #1A1A1A;
  --on-surface-variant: #6B6B6B;
  --on-background: #1A1A1A;
  --inverse-surface: #3D5A3E;
  --inverse-on-surface: #FAF8F3;
  --inverse-primary: #5B8A5D;

  /* Secondaire — Texte muted */
  --secondary: #6B6B6B;
  --secondary-container: #F1EDE4;
  --secondary-fixed: #F1EDE4;
  --secondary-fixed-dim: #EBE7DE;
  --on-secondary: #FFFFFF;
  --on-secondary-container: #1A1A1A;
  --on-secondary-fixed: #1A1A1A;
  --on-secondary-fixed-variant: #6B6B6B;

  /* Tertiaire — Vert accent clair */
  --tertiary: #5B8A5D;
  --tertiary-container: #E8F0E8;
  --tertiary-fixed: #E8F0E8;
  --tertiary-fixed-dim: #5B8A5D;
  --on-tertiary: #FFFFFF;
  --on-tertiary-container: #3D5A3E;
  --on-tertiary-fixed: #3D5A3E;
  --on-tertiary-fixed-variant: #5B8A5D;

  /* Outline */
  --outline: #9B9B9B;
  --outline-variant: #D4D0C8;

  /* Erreur */
  --error: #DC3545;
  --error-container: #FDE8EA;
  --on-error: #FFFFFF;
  --on-error-container: #DC3545;

  /* Typographie */
  --font-headline: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-label: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;

  /* Spacing */
  --section-py: 5rem;
  --section-px: 2rem;
  --container-max: 1280px;
  --gap-grid: 1.5rem;

  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;

  /* Border radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Ombres */
  --shadow-sm: 0 1px 4px rgba(26, 26, 26, 0.04);
  --shadow-md: 0 2px 12px rgba(26, 26, 26, 0.06);
  --shadow-lg: 0 4px 24px rgba(26, 26, 26, 0.08);
}

/* --- RESET & BASE ------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--on-surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--gold);
  color: var(--on-gold);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* --- TYPOGRAPHIE ------------------------------------------- */
.font-serif, h1, h2, h3, h4, h5 {
  font-family: var(--font-headline);
}

h1 {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
}

h3 {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.3;
}

h4 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  font-family: var(--font-body);
}

.label-mono {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--primary);
}

.label-section {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

.text-secondary { color: var(--secondary); }
.text-primary { color: var(--primary); }
.text-outline { color: var(--outline); }
.italic { font-style: italic; }

/* --- LAYOUT ------------------------------------------------ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 768px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .section {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

/* --- GLASS NAV (HEADER) ------------------------------------ */
.glass-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(61, 90, 62, 0.1);
  box-shadow: var(--shadow-sm);
}

.glass-nav nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.75rem 1.25rem;
}

.nav-logo {
  font-size: 1.25rem;
  font-family: var(--font-headline);
  color: var(--primary);
  transition: transform var(--transition-fast);
  white-space: nowrap;
}

.nav-logo:hover { transform: scale(1.05); }

.nav-links {
  display: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--secondary);
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: color var(--transition-fast);
  padding-bottom: 0.25rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a.active {
  border-bottom: 2px solid var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Bouton téléphone header */
.btn-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #FFFFFF;
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-phone svg {
  flex-shrink: 0;
}

.btn-phone:hover {
  background: var(--primary-container);
  transform: scale(1.02);
}

.btn-phone-text { display: none; }

.nav-actions .btn-primary {
  display: none;
  padding: 0.625rem 1.5rem;
  font-size: 0.7rem;
}

/* Menu burger mobile */
.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  cursor: pointer;
  padding: 4px 0;
}

.nav-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--on-surface);
  transition: all var(--transition-fast);
}

.nav-burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Menu mobile overlay */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgba(250, 248, 243, 0.98);
  backdrop-filter: blur(20px);
  z-index: 49;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-family: var(--font-headline);
  font-size: 1.75rem;
  color: var(--on-surface);
  transition: color var(--transition-fast);
}

.nav-mobile a:hover { color: var(--primary); }

.nav-mobile-phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #FFFFFF !important;
  font-family: var(--font-body) !important;
  font-size: 1.125rem !important;
  font-weight: 700;
}

.nav-mobile-phone svg {
  flex-shrink: 0;
}

/* Responsive header */
@media (min-width: 768px) {
  .glass-nav nav { padding: 0.75rem 2rem; }
  .btn-phone { display: flex; }
  .btn-phone-text { display: inline; }
  .nav-actions .btn-primary { display: inline-block; }
  .nav-burger { display: none; }
  .nav-links { display: flex; }
}

@media (min-width: 1024px) {
  .nav-actions { gap: 1rem; }
}

/* --- BOUTONS ----------------------------------------------- */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--on-gold);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover { transform: scale(1.05); background: var(--gold-hover); }
.btn-primary:active { transform: scale(0.95); }

.btn-primary-lg {
  padding: 1.125rem 2.5rem;
  font-size: 0.8rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--primary);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(61, 90, 62, 0.3);
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all var(--transition-fast);
  cursor: pointer;
  text-align: center;
}

.btn-secondary:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #FFFFFF;
}

.btn-secondary svg { flex-shrink: 0; }

.btn-outline {
  display: inline-block;
  color: var(--primary);
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-bottom: 1px solid var(--primary);
  padding-bottom: 0.25rem;
  transition: opacity var(--transition-fast);
}

.btn-outline:hover { opacity: 0.7; }

/* Bouton appeler hero */
.btn-phone-hero {
  background: rgba(61, 90, 62, 0.05);
}

.btn-phone-hero:hover {
  background: var(--primary);
  color: #FFFFFF;
}

/* Phone link */
.phone-link {
  color: var(--on-surface);
  font-family: var(--font-headline);
  transition: color var(--transition-fast);
}

.phone-link:hover { color: var(--primary); }

/* --- HERO -------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  padding: 6rem 1.25rem 2rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(250, 248, 243, 0.72) 0%, rgba(250, 248, 243, 0.35) 50%, rgba(250, 248, 243, 0.05) 100%);
  z-index: 1;
}

/* Hero split — texte gauche, formulaire compact droite */
.hero-split {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 56rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  align-items: center;
}

.hero-watermark {
  position: absolute;
  bottom: 3rem;
  left: 1.25rem;
  z-index: 2;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 10vw;
  color: rgba(61, 90, 62, 0.06);
  line-height: 1;
  user-select: none;
  letter-spacing: -0.04em;
  pointer-events: none;
}

.hero-coords {
  font-family: monospace;
  font-size: 0.65rem;
  color: var(--outline-variant);
  opacity: 0.6;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero { padding: 6rem 3rem 2rem; }
  .hero-watermark { left: 3rem; }
}

@media (min-width: 1024px) {
  .hero { padding: 2rem 6rem; }
  .hero-watermark { left: 6rem; }
  .hero-split {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
  .hero-split .hero-content { flex: 1; }
  .hero-split .form-compact-hero { flex: 0 0 380px; }
}

/* --- HERO LOCAL (pages villes) ----------------------------- */
.hero-local {
  position: relative;
  padding: 8rem 1.25rem 3rem;
  overflow: hidden;
  background: var(--surface-container-lowest);
}

.hero-local .hero-bg {
  opacity: 0.7;
}

.hero-local .hero-overlay {
  background: linear-gradient(to bottom, rgba(250, 248, 243, 0.4) 0%, var(--surface-container-lowest) 100%);
}

.hero-local-split {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.hero-local-content {
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .hero-local { padding: 10rem 3rem 4rem; }
}

@media (min-width: 1024px) {
  .hero-local { padding: 10rem 6rem 5rem; }
  .hero-local-split {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }
  .hero-local-split .hero-local-content { flex: 1; }
  .hero-local-split .form-compact-hero { flex: 0 0 380px; margin-top: 1rem; }
}

/* --- FORMULAIRE COMPACT HERO ------------------------------- */
.form-compact-hero {
  background: #FFFFFF;
  border: 1px solid rgba(61, 90, 62, 0.12);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.form-compact-title {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--on-surface);
}

.form-compact-fields {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.form-compact-field input,
.form-compact-field select {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--surface);
  border: 1px solid rgba(61, 90, 62, 0.12);
  border-radius: var(--radius-md);
  color: var(--on-surface);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-compact-field input:focus,
.form-compact-field select:focus {
  outline: none;
  border-color: var(--primary);
}

.form-compact-field input::placeholder {
  color: var(--outline);
  opacity: 0.6;
}

.form-compact-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B6B6B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.btn-compact-submit {
  width: 100%;
  padding: 1rem;
  font-size: 0.8rem;
}

.form-compact-legal {
  text-align: center;
  font-size: 0.7rem;
  color: var(--outline);
  margin-top: 0.75rem;
}

.form-compact-legal a {
  color: var(--primary);
  text-decoration: underline;
}

/* --- TRUST BAR --------------------------------------------- */
.trust-bar {
  background: var(--surface-container-lowest);
  padding: 2rem 1.25rem;
}

.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.trust-item {
  text-align: center;
}

.trust-item .number {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.trust-item .label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
}

@media (min-width: 768px) {
  .trust-bar { padding: 3rem 2rem; }
  .trust-bar .container {
    grid-template-columns: repeat(4, 1fr);
  }
  .trust-item .number { font-size: 1.75rem; }
}

/* --- SERVICES GRID ----------------------------------------- */
.services-section { background: var(--surface); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(61, 90, 62, 0.12);
}

.service-card {
  background: var(--surface-container);
  padding: 2rem;
  transition: all var(--transition-medium);
  border: 1px solid rgba(61, 90, 62, 0.08);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(61, 90, 62, 0.15);
}

.service-card .icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.service-card .icon img {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--secondary);
  opacity: 0.8;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 0.875rem;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: transform var(--transition-fast);
}

.service-card:hover .card-link { transform: translateX(0.5rem); }

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { padding: 2.5rem; }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card { padding: 3rem; }
}

/* --- POURQUOI NOUS ----------------------------------------- */
.why-section {
  background: var(--surface-container-lowest);
  padding: var(--section-py) 1.25rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.why-item .number,
.why-item .step-number {
  font-family: var(--font-headline);
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

.why-item h4 {
  margin-bottom: 0.5rem;
}

.why-item p {
  color: var(--secondary);
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 640px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .why-section { padding: var(--section-py) 3rem; }
}

@media (min-width: 1024px) {
  .why-grid { grid-template-columns: repeat(4, 1fr); }
  .why-section { padding: var(--section-py) 6rem; }
}

/* --- ZONES PILLS (zones d'intervention) -------------------- */
.zones-section {
  background: var(--surface);
  overflow: hidden;
}

.zones-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(61, 90, 62, 0.15);
  color: var(--secondary);
  font-size: 0.8125rem;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.pill:hover {
  background: var(--primary-container);
  color: var(--primary);
  border-color: var(--primary-container);
}

.zone-map-card {
  aspect-ratio: 1;
  background: var(--surface-container-low);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.zone-map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.5;
}

.zone-map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.zone-map-inner {
  padding: 2rem;
  background: rgba(250, 248, 243, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(61, 90, 62, 0.12);
  max-width: 280px;
  text-align: center;
}

@media (min-width: 768px) {
  .zones-layout {
    flex-direction: row;
    align-items: center;
    gap: 5rem;
  }
  .zones-layout > * { flex: 1; }
  .pills-wrap { gap: 0.75rem; }
}

/* --- PROCESS TIMELINE -------------------------------------- */
.process-section {
  background: var(--surface-container-low);
}

.process-timeline {
  max-width: 56rem;
  margin: 0 auto;
}

.process-steps { display: flex; flex-direction: column; gap: 3rem; }

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.step-indicator {
  position: relative;
  padding-top: 0.5rem;
  flex-shrink: 0;
}

.step-dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--outline-variant);
  opacity: 0.5;
}

.step-dot.active {
  background: var(--primary);
  opacity: 1;
  box-shadow: 0 0 0 8px rgba(61, 90, 62, 0.12);
}

.step-line {
  position: absolute;
  top: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 5rem;
  background: rgba(61, 90, 62, 0.2);
}

.step-label {
  font-family: var(--font-label);
  font-size: 0.75rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
  display: block;
}

.step-label.muted {
  color: var(--outline);
}

.step-content h4 {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.step-content p {
  color: var(--secondary);
  line-height: 1.7;
  font-size: 0.875rem;
}

/* --- TÉMOIGNAGES ------------------------------------------- */
.testimonials-section { background: var(--surface); }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--surface-container);
  padding: 2rem;
  position: relative;
  border: 1px solid rgba(61, 90, 62, 0.08);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-lg);
}

.testimonial-card .quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3rem;
  color: rgba(61, 90, 62, 0.12);
  font-family: var(--font-headline);
  line-height: 1;
}

.stars {
  display: flex;
  gap: 0.125rem;
  margin-bottom: 1rem;
}

.star {
  color: var(--gold);
  font-size: 1rem;
}

.testimonial-text {
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author { font-weight: 700; font-size: 0.875rem; }

.testimonial-city {
  font-size: 0.7rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card { padding: 2.5rem; }
}

@media (min-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-card { padding: 3rem; }
}

/* --- FAQ ACCORDION ----------------------------------------- */
.faq-section {
  background: var(--surface-container-lowest);
}

.faq-list {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--surface-container);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(61, 90, 62, 0.08);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  background: none;
  border: none;
  color: var(--on-surface);
  font-weight: 700;
  font-size: 0.9375rem;
  font-family: var(--font-body);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-question:hover { color: var(--primary); }

.faq-chevron {
  transition: transform var(--transition-fast);
  flex-shrink: 0;
  margin-left: 1rem;
  font-size: 1.25rem;
  color: var(--outline);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.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;
}

.faq-answer-inner {
  padding: 0 1.25rem 1.25rem;
  color: var(--secondary);
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .faq-question { padding: 1.5rem; font-size: 1rem; }
  .faq-answer-inner { padding: 0 1.5rem 1.5rem; }
}

/* --- MAILLAGE VILLES GRID ---------------------------------- */
.maillage-section { background: var(--surface); }

.maillage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.maillage-card {
  padding: 1.5rem;
  background: var(--surface-container);
  border: 1px solid rgba(61, 90, 62, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  text-decoration: none;
  display: block;
}

.maillage-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(61, 90, 62, 0.20);
}

.maillage-card h5 {
  font-family: var(--font-headline);
  font-size: 1.0625rem;
  margin-bottom: 0.25rem;
}

.maillage-card p {
  font-size: 0.75rem;
  color: var(--secondary);
  opacity: 0.7;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.maillage-card .arrow {
  color: var(--primary);
  font-size: 1.125rem;
  transition: transform var(--transition-fast);
}

.maillage-card:hover .arrow { transform: translateX(0.5rem); }

@media (min-width: 480px) {
  .maillage-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .maillage-grid { grid-template-columns: repeat(3, 1fr); }
  .maillage-card { padding: 2rem; }
}

@media (min-width: 1024px) {
  .maillage-grid { grid-template-columns: repeat(4, 1fr); }
}

/* --- BADGES ARTISANS (Professional Badges) ----------------- */
.badges-section {
  background: var(--surface-container-lowest);
  border-top: 1px solid rgba(61, 90, 62, 0.08);
  border-bottom: 1px solid rgba(61, 90, 62, 0.08);
}

.badges-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.badges-scroll::-webkit-scrollbar { display: none; }

.badge-card {
  flex: 0 0 14rem;
  background: var(--surface-container);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(61, 90, 62, 0.05);
}

.badge-card .badge-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--primary);
}

.badge-card .name {
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.badge-card .rating {
  color: var(--primary);
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}

.badge-card .cert {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(61, 90, 62, 0.08);
  color: var(--primary);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(61, 90, 62, 0.12);
}

/* --- CTA SECTION ------------------------------------------- */
.cta-section {
  position: relative;
  padding: 6rem 1.25rem;
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(250, 248, 243, 0.6), rgba(250, 248, 243, 0.25), rgba(250, 248, 243, 0.6));
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 56rem;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: 1.5rem;
}

.cta-content .subtitle {
  font-size: 1.125rem;
  color: var(--secondary);
  opacity: 0.8;
  margin-bottom: 2rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cta-phone-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-phone-label {
  font-size: 0.75rem;
  color: var(--outline);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.25rem;
}

.cta-phone-number {
  font-family: var(--font-headline);
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .cta-section { padding: 8rem 3rem; }
  .cta-actions {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .cta-section { padding: 10rem 6rem; }
}

/* --- FORMULAIRE DE DEVIS ----------------------------------- */
.form-section {
  background: var(--surface-container-low);
}

.form-devis {
  max-width: 56rem;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.form-field label {
  display: block;
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--on-surface-variant);
  margin-bottom: 0.5rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--surface);
  border: 1px solid rgba(61, 90, 62, 0.12);
  border-radius: var(--radius-md);
  color: var(--on-surface);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--outline);
  opacity: 0.6;
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B6B6B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: var(--secondary);
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
  accent-color: var(--primary);
}

.form-error {
  background: var(--error-container);
  color: var(--on-error-container);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.form-error ul { margin-top: 0.5rem; padding-left: 1.25rem; list-style: disc; }

@media (min-width: 768px) {
  .form-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- BREADCRUMB -------------------------------------------- */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.8125rem;
  color: var(--secondary);
}

.breadcrumb a {
  color: var(--secondary);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover { color: var(--primary); }

.breadcrumb .separator {
  margin: 0 0.5rem;
  color: var(--outline);
}

.breadcrumb .current {
  color: var(--on-surface);
}

/* --- INFOS VILLE (tableau données) ------------------------- */
.infos-ville-section { background: var(--surface-container-lowest); }

.infos-ville-table {
  width: 100%;
  border-collapse: collapse;
}

.infos-ville-table tr {
  border-bottom: 1px solid rgba(61, 90, 62, 0.10);
}

.infos-ville-table td {
  padding: 0.75rem 0.5rem;
  font-size: 0.875rem;
}

.infos-ville-table td:first-child {
  color: var(--secondary);
  font-weight: 600;
  white-space: nowrap;
  width: 40%;
}

@media (min-width: 768px) {
  .infos-ville-table td { padding: 0.875rem 1rem; }
}

/* --- ZONE PARENTE ------------------------------------------ */
.zone-parente {
  background: var(--surface-container);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.zone-parente .zone-label {
  font-size: 0.75rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.zone-parente h3 a {
  color: var(--primary);
}

.zone-parente h3 a:hover { text-decoration: underline; }

/* --- EXPERTISE LOCALE -------------------------------------- */
.expertise-section {
  background: var(--surface-container-low);
}

.expertise-content {
  max-width: 56rem;
}

.expertise-content p {
  color: var(--secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.expertise-content strong {
  color: var(--on-surface);
}

/* --- TARIFS INDICATIFS ------------------------------------- */
.tarifs-section { background: var(--surface); }

.tarifs-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.tarifs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  min-width: 500px;
}

.tarifs-table thead th {
  text-align: left;
  padding: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  border-bottom: 1px solid rgba(61, 90, 62, 0.15);
  white-space: nowrap;
}

.tarifs-table tbody td {
  padding: 0.75rem;
  font-size: 0.8125rem;
  border-bottom: 1px solid rgba(61, 90, 62, 0.08);
  color: var(--secondary);
}

.tarifs-table tbody td:first-child {
  color: var(--on-surface);
  font-weight: 600;
}

@media (min-width: 768px) {
  .tarifs-table { min-width: 0; }
  .tarifs-table thead th { padding: 1rem; font-size: 0.75rem; }
  .tarifs-table tbody td { padding: 1rem; font-size: 0.875rem; }
}

/* --- GALERIE / PORTFOLIO ----------------------------------- */
.gallery-section { background: var(--surface); }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.gallery-grid-2 {
  grid-template-columns: 1fr;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(26, 26, 26, 0.7));
  color: #FFFFFF;
  font-size: 0.8125rem;
  transform: translateY(100%);
  transition: transform var(--transition-fast);
}

.gallery-item:hover .gallery-caption { transform: translateY(0); }

@media (min-width: 640px) {
  .gallery-grid-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid-2 { grid-template-columns: repeat(2, 1fr); }
}

/* --- SERVICES CROISÉS (bloc sur pages villes) -------------- */
.services-croises {
  background: var(--surface-container-low);
}

.services-croises-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.services-croises-grid a {
  display: block;
  padding: 1rem;
  background: var(--surface-container);
  text-align: center;
  font-weight: 600;
  font-size: 0.8125rem;
  transition: all var(--transition-fast);
  border: 1px solid rgba(61, 90, 62, 0.08);
  border-radius: var(--radius-md);
}

.services-croises-grid a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

@media (min-width: 640px) {
  .services-croises-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .services-croises-grid { grid-template-columns: repeat(6, 1fr); }
}

/* --- VILLES VOISINES --------------------------------------- */
.voisines-section { background: var(--surface-container-low); }

.voisines-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.voisines-grid a {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(61, 90, 62, 0.15);
  color: var(--secondary);
  font-size: 0.8125rem;
  transition: all var(--transition-fast);
}

.voisines-grid a:hover {
  background: var(--primary-container);
  color: var(--primary);
  border-color: var(--primary-container);
}

/* --- PAGE MERCI -------------------------------------------- */
.merci-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--surface);
  padding: 6rem 1.25rem;
}

.merci-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(61, 90, 62, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--primary);
  font-size: 2.5rem;
}

/* --- PAGE 404 ---------------------------------------------- */
.page-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--surface);
  padding: 6rem 1.25rem;
}

.page-404 .code-404 {
  font-family: var(--font-headline);
  font-size: 6rem;
  color: var(--primary);
  opacity: 0.2;
  line-height: 1;
}

@media (min-width: 768px) {
  .page-404 .code-404 { font-size: 8rem; }
}

/* --- MENTIONS LÉGALES -------------------------------------- */
.mentions-content {
  max-width: 56rem;
  margin: 0 auto;
}

.mentions-section {
  margin-bottom: 3rem;
}

.mentions-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(61, 90, 62, 0.12);
}

.mentions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.mentions-grid dt {
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.875rem;
}

.mentions-grid dd {
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.mentions-grid a {
  color: var(--primary);
}

.mentions-grid a:hover { text-decoration: underline; }

@media (min-width: 768px) {
  .mentions-grid {
    grid-template-columns: 200px 1fr;
    gap: 0.5rem 2rem;
  }
  .mentions-grid dd { margin-bottom: 0; }
}

/* --- FOOTER ------------------------------------------------ */
.footer-principal {
  background: #3D5A3E;
  color: #FAF8F3;
  padding: 4rem 1.25rem 6rem;
  border-top: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand-text {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  color: #C9A961;
  margin-bottom: 1rem;
  display: block;
}

.footer-tagline {
  color: rgba(250, 248, 243, 0.7);
  font-size: 0.8125rem;
  line-height: 1.7;
  opacity: 1;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(250, 248, 243, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 248, 243, 0.7);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  color: #C9A961;
  border-color: #C9A961;
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-col h6 {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  margin-bottom: 1.5rem;
  color: #FAF8F3;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  color: rgba(250, 248, 243, 0.7);
  font-size: 0.8125rem;
  transition: color var(--transition-fast);
}

.footer-col a:hover { color: #C9A961; }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: rgba(250, 248, 243, 0.7);
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  color: #C9A961;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 248, 243, 0.15);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(250, 248, 243, 0.5);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-legal a {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(250, 248, 243, 0.5);
  transition: color var(--transition-fast);
}

.footer-legal a:hover { color: #C9A961; }

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .footer-principal { padding: 5rem 3rem 6rem; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
  .footer-brand-text { font-size: 1.75rem; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 1024px) {
  .footer-principal { padding: 6rem; padding-bottom: 6rem; }
}

/* --- CTA STICKY MOBILE ------------------------------------- */
.cta-sticky-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 0.75rem 1rem;
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
  background: var(--primary);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
}

.cta-sticky-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  min-height: 44px;
}

.cta-sticky-link svg {
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .cta-sticky-mobile { display: block; }
  /* padding bottom sur body pour ne pas masquer le contenu */
  body { padding-bottom: 4.5rem; }
}

/* --- UTILITAIRES ------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-24 { margin-bottom: 6rem; }
.mt-8 { margin-top: 2rem; }
.mt-16 { margin-top: 4rem; }

.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }
.max-w-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }

.hidden { display: none; }

/* --- PAGE HEADER (pages internes) -------------------------- */
.page-header {
  padding: 8rem 1.25rem 3rem;
  text-align: center;
}

.page-header .subtitle {
  color: var(--secondary);
  margin-top: 1rem;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .page-header { padding: 10rem 0 4rem; }
  .page-header .subtitle { font-size: 1.125rem; }
}

/* --- ANIMATIONS -------------------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* --- MOBILE RESPONSIVE GLOBAL ------------------------------ */
@media (max-width: 767px) {
  /* Boutons full-width sur mobile */
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cta-actions {
    width: 100%;
  }
  .cta-actions .btn-primary,
  .cta-actions .btn-secondary {
    width: 100%;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Padding des sections réduit */
  .section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  /* Trust bar en 2 colonnes sur mobile (déjà par défaut) */

  /* Gallery 1 colonne mobile */
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  /* Tables en scroll horizontal */
  .tarifs-section .container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* H1 plus lisible */
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}

/* --- TABLETTE ---------------------------------------------- */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-split {
    flex-direction: column;
  }
  .hero-local-split {
    flex-direction: column;
  }
}

/* --- PRINT ------------------------------------------------- */
@media print {
  .glass-nav, .footer-principal, .cta-section, .nav-mobile, .cta-sticky-mobile { display: none !important; }
  body { background: #fff; color: #000; padding-bottom: 0 !important; }
  * { color: #000 !important; background: transparent !important; }
}
