/* ============================================================
   MB EXTÉRIEUR — Jardinier Paysagiste, Alpes-Maritimes
   Palette : vert sauge + beige chaud + anthracite
   Typos  : Playfair Display (titres) + Roboto (corps)
   ============================================================ */

/* ---- Variables ---- */
:root {
  /* Couleurs moodboard */
  --sage:        #8FAF85;   /* vert sauge principal */
  --sage-dark:   #5C7A52;   /* vert foncé */
  --sage-deep:   #3A5234;   /* vert très foncé */
  --beige:       #D4C9A8;   /* beige chaud */
  --beige-light: #F5F0E8;   /* beige clair */
  --beige-mid:   #E8E0CE;   /* beige intermédiaire */
  --anthracite:  #3A3A3A;   /* anthracite */
  --off-white:   #FAFAF7;   /* blanc cassé */
  --white:       #FFFFFF;

  /* Sémantique */
  --color-bg:         var(--off-white);
  --color-bg-alt:     var(--beige-light);
  --color-text:       var(--anthracite);
  --color-text-light: #6A6A5A;
  --color-text-muted: #9A9A8A;
  --color-border:     var(--beige-mid);

  /* Fonts */
  --font-title: 'Playfair Display', Georgia, serif;
  --font-body:  'Roboto', 'Helvetica Neue', Arial, sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(60,60,40,0.08);
  --shadow-md: 0 6px 24px rgba(60,60,40,0.14);
  --shadow-lg: 0 12px 48px rgba(60,60,40,0.18);

  /* Radius */
  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 24px;

  --transition: 0.3s ease;
  --max-w: 1180px;
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sage-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--sage); }
ul { list-style: none; }
p { margin-bottom: 1rem; }

h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.25;
  color: var(--anthracite);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.container {
  width: 92%;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ---- Sections ---- */
.section { padding: 90px 0; }
.section-alt { background: var(--color-bg-alt); }

.section-dark {
  background: var(--sage-deep);
  color: rgba(255,255,255,0.9);
}

/* ---- Section header ---- */
.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.5px solid var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--sage-dark);
  background: rgba(143,175,133,0.08);
}

.section__title {
  margin-bottom: 12px;
}

.section__title--light {
  color: var(--off-white);
}

.section__rule {
  width: 48px;
  height: 2px;
  background: var(--sage);
  margin: 0 auto 16px;
  border-radius: 2px;
}

.section__subtitle {
  color: var(--color-text-light);
  font-size: 1.05rem;
  margin: 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--sage-dark);
  color: var(--white);
  border-color: var(--sage-dark);
}
.btn-primary:hover {
  background: var(--sage-deep);
  border-color: var(--sage-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-beige {
  background: var(--beige);
  color: var(--anthracite);
  border-color: var(--beige);
}
.btn-beige:hover {
  background: var(--beige-light);
  border-color: var(--beige-mid);
  color: var(--anthracite);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--beige-light);
  border-color: rgba(245,240,232,0.5);
}
.btn-outline-light:hover {
  background: rgba(245,240,232,0.12);
  border-color: var(--beige-light);
  color: var(--white);
}

.btn-sm { padding: 10px 22px; font-size: 0.88rem; }
.btn-full { width: 100%; justify-content: center; }

/* Bouton blanc plein (utilisé dans creation.html CTA) */
.btn-white {
  background: var(--white);
  color: var(--sage-dark);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--beige-light);
  border-color: var(--beige-light);
  color: var(--sage-deep);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--white);
  color: var(--sage-dark);
  border-color: var(--sage);
}
.btn-secondary:hover {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--sage-dark);
  border-color: var(--sage);
}
.btn-outline:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-2px);
}

/* ====================================================
   HEADER
   ==================================================== */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition);
  padding: 18px 0;
}

.header--transparent {
  background: transparent;
}

.header--scrolled {
  background: rgba(250,250,247,0.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  transition: color var(--transition);
}
.header--scrolled .header__logo { color: var(--sage-deep); }

.header__logo-img {
  height: 72px;
  width: auto;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
  transition: height var(--transition);
}
.header--scrolled .header__logo-img {
  height: 60px;
}

/* Nav */
.header__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.header__nav-link {
  padding: 7px 14px;
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  border-radius: var(--r-sm);
  transition: all var(--transition);
  letter-spacing: 0.2px;
}
.header__nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}
.header--scrolled .header__nav-link { color: var(--color-text); }
.header--scrolled .header__nav-link:hover {
  color: var(--sage-dark);
  background: rgba(92,122,82,0.08);
}

/* Lien actif — page courante */
.header__nav-link--active {
  color: var(--white) !important;
  font-weight: 500;
  background: rgba(255,255,255,0.15);
  border-radius: var(--r-sm);
}
.header--scrolled .header__nav-link--active {
  color: var(--sage-dark) !important;
  background: rgba(92,122,82,0.1);
}

.header__cta { margin-left: 16px; }

.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text);
  transition: color var(--transition);
}
.header__phone svg { width: 16px; height: 16px; stroke: var(--sage-dark); }
.header__phone:hover { color: var(--sage-dark); }

/* Burger */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 1001;
}
.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}
.header--scrolled .header__burger span { background: var(--anthracite); }
.header__burger--active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__burger--active span:nth-child(2) { opacity: 0; }
.header__burger--active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Nav overlay mobile */
.nav-overlay {
  display: none;
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 999;
}
.nav-overlay.active { display: block; }

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

/* Hero réduit pour pages secondaires */
.hero-page {
  min-height: 320px;
}

/* Photo de fond réelle */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

/* Overlay vert sauge semi-transparent */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(58,82,52,0.72) 0%,
    rgba(92,122,82,0.60) 50%,
    rgba(143,175,133,0.45) 100%
  );
}

/* Dégradé bas */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 140px;
  background: linear-gradient(to top, var(--color-bg), transparent);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
  color: var(--white);
}

.hero__eyebrow {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 20px;
}

.hero__title {
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: rgba(245,240,232,0.92);
}

.hero__subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  opacity: 0.88;
  letter-spacing: 1.5px;
  margin-bottom: 40px;
}

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

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 28px;
  height: 44px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.hero__scroll span {
  width: 4px;
  height: 8px;
  background: var(--white);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
  opacity: 0.7;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(10px); opacity: 0.3; }
}

/* ====================================================
   SECTION CRÉATION
   ==================================================== */
.creation__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.creation__text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

.creation__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}

/* Placeholder photos stylisés */
.photo-placeholder {
  background: var(--beige-mid);
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
}

.photo-placeholder--tall {
  grid-row: 1 / 3;
  min-height: 320px;
}

.photo-placeholder--short { min-height: 145px; }
.photo-placeholder--landscape { min-height: 280px; width: 100%; }

/* Vraies photos Création */
.creation__photo {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
}
.creation__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.creation__photo:hover img { transform: scale(1.04); }

.creation__photo--tall {
  grid-row: 1 / 3;
  min-height: 320px;
}
.creation__photo--short { min-height: 145px; }

/* Vraie photo Entretien */
.entretien__photo-wrap {
  border-radius: var(--r-md);
  overflow: hidden;
  min-height: 360px;
}
.entretien__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.entretien__photo-wrap:hover img { transform: scale(1.04); }

/* Rangée de 2 petites photos sous la grande */
.entretien__photos-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}
.entretien__photo-wrap--half {
  min-height: 180px;
}

.photo-placeholder--ba {
  width: 100%;
  height: 100%;
  min-height: 100%;
  position: absolute;
  inset: 0;
  border-radius: 0;
}

.photo-placeholder.before {
  background: linear-gradient(135deg, #b8b0a0 0%, #9a9285 100%);
}
.photo-placeholder.after {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
}

.photo-placeholder__inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(58,58,48,0.45);
  font-size: 0.8rem;
  font-weight: 400;
  text-align: center;
  padding: 12px;
}

.photo-placeholder.before .photo-placeholder__inner,
.photo-placeholder.after .photo-placeholder__inner {
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  font-size: 0.9rem;
}

/* ====================================================
   SECTION ENTRETIEN
   ==================================================== */
.entretien__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.entretien__content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

.entretien__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: rgba(92,122,82,0.10);
  border: 1px solid rgba(92,122,82,0.22);
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--sage-dark);
  transition: all var(--transition);
}
.tag:hover {
  background: rgba(92,122,82,0.18);
  transform: translateY(-2px);
}
.tag svg { color: var(--sage); flex-shrink: 0; }

/* ====================================================
   FILTRES RÉALISATIONS
   ==================================================== */
.filter-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: 24px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--beige-mid);
  background: var(--white);
  color: var(--color-text);
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn--active {
  background: var(--sage-dark);
  color: var(--white);
  border-color: var(--sage-dark);
}

/* ====================================================
   SECTION RÉALISATIONS — Avant/Après
   ==================================================== */
.projects-grid,
.ba-projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.ba-project {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.ba-project:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* Slider avant/après */
.ba-slider {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  touch-action: none; /* bloque le scroll natif sur le slider pour éviter le bug mobile */
}

.ba-slider__before,
.ba-slider__after {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.ba-slider__before {
  z-index: 2;
  /* clip-path : masque la partie droite, l'image garde sa taille réelle → pas d'étirement */
  clip-path: inset(0 50% 0 0);
}

.ba-slider__before img,
.ba-slider__after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* Handle */
.ba-slider__handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: rgba(255,255,255,0.8);
  z-index: 3;
  transform: translateX(-50%);
  cursor: ew-resize;
  transition: background var(--transition);
}
.ba-slider:hover .ba-slider__handle { background: var(--white); }

.ba-slider__handle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  box-shadow: var(--shadow-md);
  color: var(--sage-dark);
}

/* Labels avant / après */
.ba-label {
  position: absolute;
  top: 12px;
  z-index: 4;
  padding: 3px 10px;
  background: rgba(0,0,0,0.45);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.ba-label--before { left: 12px; }
.ba-label--after  { right: 12px; }

/* Alias BEM pour les labels slider */
.ba-slider__label {
  position: absolute;
  top: 12px;
  z-index: 4;
  padding: 3px 10px;
  background: rgba(0,0,0,0.45);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.ba-slider__label--before { left: 12px; }
.ba-slider__label--after  { right: 12px; }

/* ====================================================
   CTA SECTION (pages secondaires)
   ==================================================== */
.cta-section {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage-deep) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}
.cta-section h2 {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.ba-project__info {
  padding: 18px 20px;
}

.ba-project__title {
  font-size: 1rem;
  font-family: var(--font-title);
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--anthracite);
}

.ba-project__location {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
}

.ba-project__desc {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 6px 0 12px;
}

.ba-project__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ba-project__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 12px;
  background: rgba(143,175,133,0.12);
  color: var(--sage-dark);
  border: 1px solid rgba(143,175,133,0.25);
}

/* Lien Instagram */
.realisations__instagram {
  text-align: center;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1.5px solid var(--beige-mid);
  border-radius: var(--r-sm);
  color: var(--color-text);
  font-size: 0.95rem;
  transition: all var(--transition);
}
.instagram-link:hover {
  border-color: var(--sage);
  color: var(--sage-dark);
  background: rgba(143,175,133,0.06);
}
.instagram-link strong { color: var(--sage-dark); }

/* ====================================================
   SECTION AVIS
   ==================================================== */
/* Badge Google */
.google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 48px;
}

.google-badge__score {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-left: 6px;
}

.google-badge__label {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(245,240,232,0.65);
  margin-left: 2px;
  letter-spacing: 0.5px;
  align-self: flex-end;
  margin-bottom: 2px;
}

/* Carrousel */
.avis-carousel {
  position: relative;
  overflow: hidden;
}

.avis-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.avis-card {
  flex: 0 0 calc(33.333% - 20px);
  margin: 0 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(245,240,232,0.12);
  border-radius: var(--r-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  backdrop-filter: blur(4px);
}

.avis-card__stars {
  display: flex;
  gap: 3px;
}

.avis-card__text {
  font-style: normal;
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(245,240,232,0.88);
  flex: 1;
  quotes: "\201C" "\201D";
}

.avis-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(245,240,232,0.10);
}

.avis-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(143,175,133,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(245,240,232,0.9);
  flex-shrink: 0;
}

.avis-card__name {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--off-white);
}

.avis-card__date {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.5);
  display: block;
}

/* Contrôles carousel */
.avis-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.avis-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(245,240,232,0.3);
  background: transparent;
  color: rgba(245,240,232,0.8);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.avis-btn:hover {
  background: rgba(245,240,232,0.12);
  border-color: rgba(245,240,232,0.6);
  color: var(--white);
}

/* Dots */
.avis-dots {
  display: flex;
  gap: 8px;
}
.avis-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245,240,232,0.25);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.avis-dot.active {
  background: var(--sage);
  transform: scale(1.25);
}

/* CTA section avis */
.avis__cta {
  text-align: center;
  margin-top: 48px;
}

/* ====================================================
   SECTION CONTACT
   ==================================================== */
.contact__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Formulaire */
.contact-form {
  background: var(--white);
  padding: 42px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}

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

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 7px;
  color: var(--color-text);
}

.required { color: #b05a4a; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition), background var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
  background: var(--white);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #b05a4a;
}
.form-group textarea { resize: vertical; min-height: 130px; }

.form-success {
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(92,122,82,0.1);
  border: 1px solid rgba(92,122,82,0.25);
  border-radius: var(--r-sm);
  color: var(--sage-dark);
  font-weight: 500;
  font-size: 0.95rem;
  text-align: center;
}

/* Infos contact */
.contact__info {
  padding-top: 8px;
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact__info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: rgba(143,175,133,0.12);
  border: 1px solid rgba(143,175,133,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-dark);
}

.contact__info-label {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.contact__info-value {
  font-size: 1rem;
  color: var(--color-text);
  font-weight: 400;
}
a.contact__info-value:hover { color: var(--sage-dark); }

.contact__map {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 8px;
  border: 1px solid var(--color-border);
}
.contact__map iframe { display: block; }

/* Contact info card (contact.html alternative layout) */
.contact__info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border);
}
.contact__info-card:last-of-type { border-bottom: none; }

/* Contact socials */
.contact__socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.contact__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(143,175,133,0.1);
  color: var(--sage-dark);
  border: 1.5px solid rgba(143,175,133,0.25);
  transition: all var(--transition);
}
.contact__social-link:hover {
  background: var(--sage-dark);
  color: var(--white);
  border-color: var(--sage-dark);
}
.contact__social-link svg { width: 20px; height: 20px; }

/* Form checkbox */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.form-checkbox input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--sage-dark);
  cursor: pointer;
}
.form-checkbox label {
  font-size: 0.85rem;
  color: var(--color-text-light);
  cursor: pointer;
  line-height: 1.5;
}

/* ====================================================
   AVIS — Note moyenne
   ==================================================== */
.testimonials__avg {
  text-align: center;
}
.testimonials__avg-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
}
.testimonials__avg-stars svg {
  width: 32px;
  height: 32px;
  fill: #F5A623;
  color: #F5A623;
}
.testimonials__avg-text {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-text);
}

/* ====================================================
   FOOTER
   ==================================================== */
.footer {
  background: var(--anthracite);
  color: rgba(245,240,232,0.75);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 48px;
}

/* Brand */
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(245,240,232,0.9);
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer__logo:hover { color: var(--sage); }

.footer__logo-img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer__tagline {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: rgba(245,240,232,0.5);
}

.footer__instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(245,240,232,0.7);
  transition: color var(--transition);
}
.footer__instagram:hover { color: var(--sage); }

/* Nav footer */
.footer__title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(245,240,232,0.4);
  margin-bottom: 18px;
}

.footer__links li { margin-bottom: 10px; }
.footer__links a {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.65);
  transition: all var(--transition);
}
.footer__links a:hover {
  color: var(--sage);
  padding-left: 4px;
}

/* Contact footer */
.footer__contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(245,240,232,0.65);
  margin-bottom: 14px;
  transition: color var(--transition);
}
.footer__contact-link svg { color: var(--sage); flex-shrink: 0; }
a.footer__contact-link:hover { color: var(--sage); }

/* Footer bottom */
.footer__bottom {
  border-top: 1px solid rgba(245,240,232,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(245,240,232,0.35);
  flex-wrap: wrap;
  gap: 10px;
}

.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a {
  color: rgba(245,240,232,0.35);
  font-size: 0.82rem;
}
.footer__legal a:hover { color: var(--sage); }

/* Footer aliases used in secondary pages */
.footer__about { /* brand/about column */ }

.footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(245,240,232,0.08);
  color: rgba(245,240,232,0.65);
  transition: all var(--transition);
}
.footer__social:hover {
  background: var(--sage);
  color: var(--white);
}
.footer__social svg { width: 18px; height: 18px; }

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(245,240,232,0.65);
  margin-bottom: 12px;
}
.footer__contact-item svg { color: var(--sage); flex-shrink: 0; }

.footer__bottom-links {
  display: flex;
  gap: 20px;
}
.footer__bottom-links a {
  color: rgba(245,240,232,0.35);
  font-size: 0.82rem;
  transition: color var(--transition);
}
.footer__bottom-links a:hover { color: var(--sage); }

/* ====================================================
   CTA FLOTTANT MOBILE
   ==================================================== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  z-index: 990;
  padding: 12px 16px;
  background: rgba(250,250,247,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 -2px 20px rgba(0,0,0,0.12);
  gap: 12px;
}

.mobile-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
  text-align: center;
}

.mobile-cta__btn--call {
  background: var(--sage-dark);
  color: var(--white);
}
.mobile-cta__btn--call:hover { background: var(--sage-deep); color: var(--white); }

.mobile-cta__btn--devis {
  background: var(--beige);
  color: var(--anthracite);
  border: 1.5px solid var(--beige-mid);
}
.mobile-cta__btn--devis:hover { background: var(--beige-mid); }

/* ====================================================
   SCROLL TO TOP
   ==================================================== */
.scroll-top {
  position: fixed;
  bottom: 32px; right: 28px;
  width: 44px; height: 44px;
  background: var(--sage-dark);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 995;
  box-shadow: var(--shadow-md);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover {
  background: var(--sage-deep);
  transform: translateY(-3px);
}

/* ====================================================
   ANIMATIONS
   ==================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.slide-right {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.slide-right.visible { opacity: 1; transform: translateX(0); }

.slide-left {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.slide-left.visible { opacity: 1; transform: translateX(0); }

/* Délais en cascade */
.fade-in:nth-child(2), .slide-right:nth-child(2), .slide-left:nth-child(2) { transition-delay: 0.08s; }
.fade-in:nth-child(3), .slide-right:nth-child(3), .slide-left:nth-child(3) { transition-delay: 0.16s; }
.fade-in:nth-child(4) { transition-delay: 0.24s; }
.fade-in:nth-child(5) { transition-delay: 0.32s; }

/* ====================================================
   PROCESSUS / ÉTAPES (création.html)
   ==================================================== */
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.process__step {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--beige-mid);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.process__step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.process__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.process__step h3 {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  color: var(--anthracite);
  margin-bottom: 10px;
}
.process__step p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--color-text-light);
  margin: 0;
}

/* ====================================================
   LIGHTBOX
   ==================================================== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20,20,20,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  backdrop-filter: blur(6px);
}
.lightbox.active { display: flex; }

.lightbox__img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--r-sm);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.lightbox__caption {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  text-align: center;
  margin: 0;
}

.lightbox__close {
  position: fixed;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition), transform var(--transition);
  z-index: 10000;
}
.lightbox__close:hover { color: var(--white); transform: scale(1.15); }

.lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 2rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 10000;
  line-height: 1;
}
.lightbox__nav:hover { background: rgba(255,255,255,0.25); }
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }

/* ====================================================
   PAGES SECONDAIRES — Alias titres de section
   ==================================================== */
.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--anthracite);
  margin-bottom: 12px;
  text-align: center;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-light);
  text-align: center;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Bloc intro pages secondaires (création, entretien) */
.page-intro {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.page-intro p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--color-text-light);
  margin-bottom: 1.2rem;
}
.page-intro p:last-child { margin-bottom: 0; }

/* ====================================================
   SERVICES LIST (pages entretien / création)
   ==================================================== */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.services-list__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--beige-mid);
  transition: box-shadow var(--transition), transform var(--transition);
}
.services-list__item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.services-list__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--r-sm);
  background: rgba(143,175,133,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-dark);
}
.services-list__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--sage-dark);
}

.services-list__content h3 {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--anthracite);
  margin-bottom: 6px;
}
.services-list__content p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin: 0;
}

/* ====================================================
   GALLERY GRID (pages entretien)
   ==================================================== */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery__item {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery__item:hover img { transform: scale(1.05); }

.gallery__item__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(40,45,30,0.72) 0%, transparent 100%);
  padding: 20px 16px 14px;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
}
.gallery__item:hover .gallery__item__overlay {
  opacity: 1;
  transform: translateY(0);
}
.gallery__item__overlay h4 {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.gallery__item__overlay p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

/* ====================================================
   PRICING CARDS (entretien.html)
   ==================================================== */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--beige-mid);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pricing-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.pricing-card--featured {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: var(--white);
}
.pricing-card--featured .pricing-card__title,
.pricing-card--featured .pricing-card__desc,
.pricing-card--featured .pricing-card__features li {
  color: rgba(255,255,255,0.92);
}
.pricing-card--featured .pricing-card__features svg {
  stroke: rgba(255,255,255,0.7);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terracotta, #c2714f);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 14px;
  border-radius: 20px;
}

.pricing-card__title {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--anthracite);
  margin-bottom: 8px;
}
.pricing-card__desc {
  font-size: 0.88rem;
  color: var(--color-text-light);
  margin-bottom: 24px;
  line-height: 1.5;
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-text);
}
.pricing-card__features svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--sage-dark);
}

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 1024px) {
  .creation__grid,
  .entretien__grid { grid-template-columns: 1fr; gap: 40px; }

  .entretien__photo { order: 1; }

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

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

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

  .avis-card { flex: 0 0 calc(50% - 20px); }

  /* Pages secondaires */
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: 1fr 1fr; }
  .process__steps { grid-template-columns: 1fr 1fr; gap: 16px; }
}

@media (max-width: 768px) {
  .section { padding: 52px 0; }

  /* Mobile nav */
  .header__nav {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 320px;
    height: 100vh;
    background: var(--off-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 28px 32px;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
    z-index: 1000;
    gap: 0;
  }
  .header__nav--open { right: 0; }

  .header__nav-list {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  .header__nav-link {
    color: var(--color-text);
    padding: 14px 4px;
    display: block;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
    width: 100%;
    font-size: 1rem;
  }
  .header__nav-link:hover {
    background: transparent;
    color: var(--sage-dark);
  }
  .header__cta { margin: 20px 0 0; width: 100%; justify-content: center; }
  .header__burger { display: flex; }

  /* Hero */
  .hero { min-height: 85vh; }
  .hero__title { font-size: clamp(1.9rem, 7.5vw, 2.8rem); }
  .hero__subtitle { font-size: 0.95rem; padding: 0 8px; }
  .hero__actions { flex-direction: column; align-items: center; gap: 12px; }
  .btn { width: 100%; max-width: 340px; justify-content: center; }
  .hero-page { min-height: 220px; }

  /* Section titles */
  .section__title { font-size: clamp(1.5rem, 6vw, 2rem); }

  /* Services grid index.html */
  .services__grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 24px 20px; }

  /* Grilles création / entretien */
  .creation__grid,
  .entretien__grid { grid-template-columns: 1fr; gap: 32px; }
  .entretien__photo { order: 1; }

  /* Entretien : 2 petites photos côte à côte */
  .entretien__photo-wrap { min-height: 240px; }
  .entretien__photo-wrap--half { min-height: 140px; }
  .entretien__photos-row { gap: 8px; margin-top: 8px; }

  /* Galerie photos création */
  .creation__gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 8px;
  }
  .creation__photo--tall { min-height: 180px; grid-row: auto; }
  .creation__photo--short { min-height: 150px; }
  .photo-placeholder--tall { min-height: 180px; grid-row: auto; }
  .photo-placeholder--short { min-height: 150px; }

  /* Filtres réalisations */
  .filter-buttons { gap: 8px; flex-wrap: wrap; justify-content: center; }
  .filter-btn { padding: 8px 14px; font-size: 0.82rem; }

  /* Slider avant/après */
  .ba-projects { grid-template-columns: 1fr; gap: 24px; }
  .ba-slider { aspect-ratio: 3/2; }

  /* Réalisations */
  .projects-grid,
  .ba-projects { grid-template-columns: 1fr; }

  /* Avis carousel */
  .avis-card { flex: 0 0 calc(100% - 20px); }
  .avis-card__text { font-size: 0.9rem; }

  /* Contact */
  .contact__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 18px; }
  .contact-form .btn { max-width: 100%; }
  .contact__map iframe { height: 240px; }
  .contact__info-item { font-size: 0.9rem; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .footer__logo-img { height: 44px; }

  /* Badge Google */
  .google-badge { flex-wrap: wrap; gap: 6px; justify-content: center; }
  .google-badge__score { font-size: 1.3rem; }

  /* CTA mobile visible */
  .mobile-cta { display: flex; }

  /* Décale le body pour le CTA */
  body { padding-bottom: 72px; }

  /* Scroll top */
  .scroll-top { bottom: 88px; right: 16px; }

  /* Mentions légales / pages texte */
  .legal-section { padding: 32px 0; }
  .legal-content { font-size: 0.92rem; }

  /* CTA section pages secondaires */
  .cta-section { padding: 52px 0; }
  .cta-section h2 { font-size: clamp(1.4rem, 6vw, 1.9rem); }

  /* Pages secondaires — gallery, pricing, services */
  .gallery__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .pricing__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr 1fr; gap: 12px; }
  .process__step { padding: 20px 16px; }
  .section-title { font-size: clamp(1.4rem, 6vw, 1.9rem); }
  .section-subtitle { font-size: 0.92rem; margin-bottom: 32px; }
  .services-list__item { padding: 18px 16px; gap: 14px; }
}

@media (max-width: 480px) {
  .section { padding: 40px 0; }
  .container { width: 95%; }

  /* Hero encore plus compact */
  .hero__title { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .hero__badge { font-size: 0.75rem; padding: 6px 12px; }

  /* Header compact sur très petits écrans */
  .header { padding: 10px 0; }
  .header__logo-img { height: 48px; }
  .header--scrolled .header__logo-img { height: 44px; }

  /* Entretien : photos empilées sur très petits écrans */
  .entretien__photo-wrap { min-height: 200px; }
  .entretien__photos-row { grid-template-columns: 1fr 1fr; }
  .entretien__photo-wrap--half { min-height: 120px; }

  /* Galerie 1 colonne sur très petits écrans */
  .creation__gallery {
    grid-template-columns: 1fr;
  }
  .creation__photo--tall,
  .creation__photo--short,
  .photo-placeholder--tall,
  .photo-placeholder--short { min-height: 200px; grid-row: auto; }

  /* Stats / chiffres */
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat__number { font-size: 1.8rem; }

  /* Pricing cards */
  .pricing__grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 24px 18px; }

  /* Services page secondaire */
  .services-list { gap: 12px; }
  .service-item { padding: 16px 14px; font-size: 0.88rem; }
  .services-list__item { gap: 12px; padding: 16px 14px; }
  .services-list__icon { width: 40px; height: 40px; min-width: 40px; }

  /* Gallery 1 colonne */
  .gallery__grid { grid-template-columns: 1fr; gap: 10px; }

  /* Processus 1 colonne sur très petits écrans */
  .process__steps { grid-template-columns: 1fr; }
  .process__step { padding: 18px 14px; }

  /* Lightbox navigation sur mobile */
  .lightbox__nav { width: 40px; height: 40px; font-size: 1.6rem; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }

  /* Formulaire */
  .contact-form { padding: 20px 14px; }
  input, textarea, select { font-size: 16px; } /* évite le zoom auto iOS sur focus */

  /* Avis page dédiée */
  .reviews__grid { grid-template-columns: 1fr; }
  .review-card { padding: 18px 16px; }

  /* Slider réalisations */
  .ba-slider { aspect-ratio: 4/3; }
  .ba-project__info { padding: 14px 12px; }
  .ba-project__title { font-size: 0.95rem; }

  /* Footer */
  .footer__logo-img { height: 38px; }
  .footer__nav { flex-wrap: wrap; gap: 10px; }

  .google-badge { flex-wrap: wrap; gap: 6px; }
}

/* ============================================================
   REVIEWS GRID (avis.html)
   ============================================================ */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--beige-mid);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.review-card--google {
  border-top: 3px solid #4285F4;
}

.review-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.review-card__stars {
  display: flex;
  gap: 2px;
}
.review-card__stars svg {
  width: 16px;
  height: 16px;
  fill: #F5A623;
  color: #F5A623;
}

.review-card__date {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.review-card__text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-text);
  flex: 1;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.review-card__author > div:last-child {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card__name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-text);
}

.review-card__google {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .reviews__grid { grid-template-columns: 1fr; }
}
