/* ═══════════════════════════════════════════════════════════
   LES COULEURS DU TEMPS — Feuille de style principale
   Couleurs exactes du logo : Bleu #4BB3D9 · Vert #2E9B3F · Jaune #F5CC1A
═══════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
  /* Couleurs exactes du logo */
  --blue:         #4BB3D9;
  --blue-dark:    #2E8DB5;
  --blue-light:   #D0EDF8;
  --blue-mid:     #A8D9EF;

  --green:        #2E9B3F;
  --green-dark:   #1E7229;
  --green-light:  #C8E8CB;
  --green-mid:    #99D4A0;

  --yellow:       #F5CC1A;
  --yellow-dark:  #C9A200;
  --yellow-light: #FDF3AC;
  --yellow-mid:   #F9E04A;

  /* Système */
  --color-bg:         #FFFFFF;
  --color-bg-soft:    #F7F9FA;
  --color-bg-dark:    #1A2630;
  --color-text:       #1A1A1A;
  --color-text-muted: #5A6472;
  --color-border:     #E2E8ED;
  --color-white:      #FFFFFF;

  /* Typographie */
  --font-body:    'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-heading: 'Segoe UI', system-ui, -apple-system, sans-serif;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;

  --font-normal:    400;
  --font-medium:    500;
  --font-semibold:  600;
  --font-bold:      700;
  --font-extrabold: 800;

  --leading-tight:  1.25;
  --leading-normal: 1.6;
  --leading-loose:  1.8;

  /* Espacement */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Layout */
  --container-max:     1200px;
  --container-padding: 1.25rem;

  /* Effets */
  --radius-sm:   0.375rem;
  --radius-md:   0.5rem;
  --radius-lg:   0.75rem;
  --radius-xl:   1rem;
  --radius-2xl:  1.5rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.13);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.18);

  --transition: 250ms ease;
}

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

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul[role="list"], ol[role="list"] { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: var(--font-bold); line-height: var(--leading-tight); }
p { line-height: var(--leading-loose); }

/* ─── UTILITAIRES ─── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

/* ─── BOUTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: var(--font-bold);
  font-size: var(--text-base);
  cursor: pointer;
  border: 2.5px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition);
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

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

.btn-blue {
  background-color: var(--blue);
  color: var(--color-white);
  border-color: var(--blue);
}
.btn-blue:hover {
  background-color: var(--blue-dark);
  border-color: var(--blue-dark);
}

.btn-yellow {
  background-color: var(--yellow);
  color: var(--color-text);
  border-color: var(--yellow);
}
.btn-yellow:hover {
  background-color: var(--yellow-dark);
  border-color: var(--yellow-dark);
  color: var(--color-white);
}

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

.btn-outline-white {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn-outline-white:hover {
  background-color: var(--color-white);
  color: var(--color-text);
}

.btn-lg { padding: 1rem 2rem; font-size: var(--text-lg); }

/* ─── PHOTO À PROPOS ─── */
.apropos-photo {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.apropos-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.apropos-photo-badge {
  position: absolute;
  bottom: var(--space-4);
  right: var(--space-4);
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-2) var(--space-3);
  box-shadow: var(--shadow-lg);
  max-width: 130px;
}
.apropos-photo-badge img {
  height: 36px;
  width: auto;
  max-width: 106px;
  object-fit: contain;
}

.apropos-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}

/* ─── PHOTO PRODUITS ─── */
.produit-photo {
  position: relative;
  margin: calc(-1 * var(--space-8)) calc(-1 * var(--space-8)) var(--space-6);
  overflow: hidden;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.produit-photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 400ms ease;
}
.produit-card:hover .produit-photo img { transform: scale(1.04); }

.produit-photo .produit-icon {
  position: absolute;
  bottom: var(--space-3);
  left: var(--space-3);
  width: 44px; height: 44px;
  margin-bottom: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ─── EN-TÊTES DE SECTION ─── */
.section-header { text-align: center; margin-bottom: var(--space-12); }

.section-label {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}
.label-green  { color: var(--green-dark);  background-color: var(--green-light);  }
.label-blue   { color: var(--blue-dark);   background-color: var(--blue-light);   }
.label-yellow { color: var(--yellow-dark); background-color: var(--yellow-light); }

.section-header h2 { font-size: var(--text-3xl); margin-bottom: var(--space-4); }
.section-desc { font-size: var(--text-lg); color: var(--color-text-muted); max-width: 600px; margin-inline: auto; }

/* ════════════════════════════════════════
   HEADER / NAVIGATION
════════════════════════════════════════ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background-color: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 3px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

/* Barre de couleur tricolore sous le header */
#header::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 33.3%, var(--green) 33.3% 66.6%, var(--yellow) 66.6%);
  opacity: 0;
  transition: opacity var(--transition);
}
#header.is-sticky::after { opacity: 1; }
#header.is-sticky { box-shadow: var(--shadow-sm); }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-1);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.nav-logo img {
  height: 140px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: none;
  flex-direction: column;
  gap: var(--space-2);
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background-color: var(--color-white);
  border-top: 3px solid;
  border-image: linear-gradient(90deg, var(--blue) 33.3%, var(--green) 33.3% 66.6%, var(--yellow) 66.6%) 1;
  padding: var(--space-6) var(--container-padding);
  box-shadow: var(--shadow-lg);
  list-style: none;
}
.nav-menu.is-open { display: flex; }

.nav-link {
  font-weight: var(--font-semibold);
  color: var(--color-text);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  transition: color var(--transition), background-color var(--transition);
}
.nav-link:hover { color: var(--blue-dark); background-color: var(--blue-light); }
.nav-link.is-active { color: var(--green-dark); }
.nav-cta { margin-top: var(--space-2); align-self: flex-start; }
.nav-cta--secondary { border-color: var(--blue); color: var(--blue); font-size: var(--text-sm); }

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.hamburger-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════
   HERO — Bold redesign
════════════════════════════════════════ */
#hero {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 150px;
  background-color: #fff;
  overflow: hidden;
}

/* Fond décoratif */
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.hero-blob { position: absolute; border-radius: 50%; filter: blur(90px); }
.hero-blob--blue   { width: 700px; height: 600px; background: var(--blue);   opacity: 0.14; top: -220px; right: -180px; }
.hero-blob--green  { width: 500px; height: 500px; background: var(--green);  opacity: 0.09; bottom: -150px; left: -120px; }
.hero-blob--yellow { width: 380px; height: 380px; background: var(--yellow); opacity: 0.18; bottom: 8%; right: 8%; }

.hero-svg-stripes {
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

/* Layout */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  padding-block: var(--space-10) var(--space-12);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--green-light);
  border: 1.5px solid var(--green-mid);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--green-dark);
  margin-bottom: var(--space-7);
}

/* Titre géant */
.hero-title {
  display: flex;
  flex-direction: column;
  font-size: clamp(3.2rem, 10vw, 6.5rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-8);
}
.ht-line {
  display: block;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
}
.ht-line:hover { transform: translateX(12px); }
.ht-dark   { color: var(--color-text); }
.ht-blue   { color: var(--blue-dark); }
.ht-green  { color: var(--green); }
.ht-yellow { color: var(--yellow-dark); position: relative; width: fit-content; }
.ht-yellow::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 10px;
  background: var(--yellow);
  border-radius: 5px;
  opacity: 0.35;
  transform: skewX(-4deg);
  z-index: -1;
}

/* Sous-titre */
.hero-sub {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 500px;
  margin-bottom: var(--space-8);
  line-height: var(--leading-loose);
}
.hero-sub strong { color: var(--color-text); }

/* CTAs */
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-bottom: var(--space-10); }

/* Stats */
.hero-stats { display: flex; align-items: center; gap: var(--space-6); flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat strong { font-size: var(--text-xl); font-weight: var(--font-extrabold); line-height: 1; }
.hero-stat:nth-child(1) strong { color: var(--green-dark); }
.hero-stat:nth-child(3) strong { color: var(--blue-dark);  }
.hero-stat:nth-child(5) strong { color: var(--yellow-dark);}
.hero-stat span { font-size: var(--text-sm); color: var(--color-text-muted); }
.hero-stat-divider { width: 1px; height: 36px; background: var(--color-border); }

/* Mosaïque */
.hero-mosaic { display: none; position: relative; height: 500px; }

.hm-frame { position: absolute; border-radius: var(--radius-2xl); overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.18); }
.hm-frame img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.hm-frame:hover img { transform: scale(1.06); }

.hm-frame--1 {
  width: 250px; height: 310px; top: 0; left: 10px;
  transform: rotate(-5deg); border: 5px solid var(--blue); z-index: 2;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hm-frame--1:hover { transform: rotate(0deg) scale(1.04) translateY(-6px); }

.hm-frame--2 {
  width: 230px; height: 270px; top: 15px; right: 0;
  transform: rotate(4deg); border: 5px solid var(--green); z-index: 3;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hm-frame--2:hover { transform: rotate(0deg) scale(1.04) translateY(-6px); }

.hm-frame--3 {
  width: 280px; height: 210px; bottom: 0; left: 50%;
  transform: translateX(-45%) rotate(-2deg); border: 5px solid var(--yellow); z-index: 4;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hm-frame--3:hover { transform: translateX(-45%) rotate(0deg) scale(1.04) translateY(-6px); }

/* Badge flottant */
.hm-badge {
  position: absolute; top: 48%; left: 52%;
  transform: translate(-50%, -50%); z-index: 5;
  background: var(--color-white); border-radius: var(--radius-xl);
  padding: var(--space-3) var(--space-5); box-shadow: var(--shadow-lg);
  text-align: center; border: 3px solid var(--yellow);
  white-space: nowrap; animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50%       { transform: translate(-50%, -50%) translateY(-8px); }
}
.hm-badge strong { display: block; font-size: var(--text-2xl); font-weight: 900; color: var(--green-dark); line-height: 1; }
.hm-badge span   { font-size: var(--text-xs); color: var(--color-text-muted); font-weight: var(--font-medium); }

/* Scroll cta */
.hero-scroll-cta {
  position: absolute; bottom: var(--space-6); left: 50%;
  transform: translateX(-50%); color: var(--color-text-muted);
  animation: bounce 2s infinite; z-index: 1;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* Desktop 2 col */
@media (min-width: 1024px) {
  #hero { min-height: 100svh; }
  .hero-layout {
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--space-16);
    padding-block: var(--space-16) var(--space-20);
  }
  .hero-mosaic { display: block; }
}

/* ════════════════════════════════════════
   BANDEAU CONFIANCE — fond bleu
════════════════════════════════════════ */
.trust-bar {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--green-dark) 100%);
  color: var(--color-white);
  padding-block: var(--space-6);
}
.trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6) var(--space-10);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: var(--font-semibold);
  font-size: var(--text-sm);
}
.trust-item svg { flex-shrink: 0; color: var(--yellow); }

/* ════════════════════════════════════════
   À PROPOS — fond blanc avec accents
════════════════════════════════════════ */
#a-propos {
  padding-block: var(--space-20);
  background-color: var(--color-bg);
}

.apropos-grid { display: grid; gap: var(--space-12); }

.apropos-text p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}
.apropos-text p strong { color: var(--color-text); }
.apropos-text .btn { margin-top: var(--space-4); }

/* apropos-stats géré dans section photo ci-dessus */

.apropos-card {
  border-radius: var(--radius-xl);
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-1);
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition);
  min-width: 0;
  overflow: hidden;
}
.apropos-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.apropos-card--blue {
  background-color: var(--blue-light);
  border-color: var(--blue-mid);
}
.apropos-card--green {
  background-color: var(--green-light);
  border-color: var(--green-mid);
}
.apropos-card--yellow {
  background-color: var(--yellow-light);
  border-color: var(--yellow-mid);
}

.apropos-card-number { font-size: var(--text-xl); font-weight: var(--font-extrabold); }
.apropos-card--blue   .apropos-card-number { color: var(--blue-dark);   }
.apropos-card--green  .apropos-card-number { color: var(--green-dark);  }
.apropos-card--yellow .apropos-card-number { color: var(--yellow-dark); }
.apropos-card-label { font-size: var(--text-sm); font-weight: var(--font-medium); color: var(--color-text-muted); }

/* ════════════════════════════════════════
   PRODUITS — fond bleu clair
════════════════════════════════════════ */
#produits {
  padding-block: var(--space-20);
  background-color: var(--blue-light);
}

#produits .section-label { color: var(--blue-dark); background-color: var(--blue-mid); }

.produits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

.produit-card {
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 2px solid var(--blue-mid);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.produit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.produit-icon {
  width: 72px; height: 72px;
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-5);
}
/* Icônes rotatives : bleu, vert, jaune, bleu, vert, jaune */
.produit-icon--blue   { background-color: var(--blue);   color: var(--color-white); }
.produit-icon--green  { background-color: var(--green);  color: var(--color-white); }
.produit-icon--yellow { background-color: var(--yellow); color: var(--color-text);  }

.produit-card h3 { font-size: var(--text-xl); margin-bottom: var(--space-3); }
.produit-card p  { color: var(--color-text-muted); margin-bottom: var(--space-4); line-height: var(--leading-normal); }

.produit-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue-dark);
  background-color: var(--blue-light);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  border: 1px solid var(--blue-mid);
}

.produits-cta { text-align: center; }
.produits-cta p { color: var(--color-text-muted); margin-bottom: var(--space-4); }

/* ════════════════════════════════════════
   ATELIERS — fond vert
════════════════════════════════════════ */
#ateliers {
  padding-block: var(--space-20);
  background-color: var(--green-light);
}

#ateliers .section-label { color: var(--green-dark); background-color: var(--green-mid); }

.ateliers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.atelier-card {
  background-color: var(--color-white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--green-mid);
}

.atelier-card-header {
  position: relative;
  padding: var(--space-10) var(--space-8);
  display: flex; align-items: center; justify-content: space-between;
}
.atelier-card-header--blue  { background: linear-gradient(135deg, var(--blue-light), var(--blue-mid)); }
.atelier-card-header--green { background: linear-gradient(135deg, var(--green-light), var(--green-mid)); }

.atelier-emoji { font-size: 4rem; line-height: 1; }

.atelier-badge {
  background-color: var(--yellow);
  color: var(--color-text);
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  border: 2px solid var(--yellow-dark);
}

.atelier-card-body { padding: var(--space-8); }
.atelier-card-body h3 { font-size: var(--text-2xl); margin-bottom: var(--space-5); }

.atelier-details {
  display: flex; flex-direction: column; gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.atelier-details li {
  display: flex; align-items: center; gap: var(--space-3);
  font-size: var(--text-base); color: var(--color-text-muted);
}
.atelier-details li svg { flex-shrink: 0; color: var(--green); }

.atelier-sessions h4 {
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-4);
}

.session-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4);
  background-color: var(--green-light);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--green-mid);
  margin-bottom: var(--space-3);
}
.session-info { display: flex; flex-direction: column; gap: var(--space-1); }
.session-info strong { font-weight: var(--font-semibold); }
.session-info span { font-size: var(--text-sm); color: var(--color-text-muted); }

.payment-notice {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-top: var(--space-6);
  padding: var(--space-4);
  background-color: var(--yellow-light);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--yellow);
}
.payment-notice svg { flex-shrink: 0; color: var(--yellow-dark); margin-top: 2px; }
.payment-notice p { font-size: var(--text-sm); color: var(--color-text-muted); margin: 0; line-height: var(--leading-normal); }

.atelier-card--coming-soon .atelier-card-body h3 { font-size: var(--text-xl); }
.atelier-card--coming-soon .atelier-card-body p  { color: var(--color-text-muted); margin-bottom: var(--space-6); }

/* ════════════════════════════════════════
   GALERIE — Photos de la boutique
════════════════════════════════════════ */
#galerie {
  background-color: var(--color-bg-dark);
  overflow: hidden;
}

/* Grille masonry-like : 2 colonnes sur mobile, jusqu'à 3 sur desktop */
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}

.galerie-item {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-dark);
  aspect-ratio: 4/3;
  cursor: pointer;
}

/* Grande photo : occupe 2 colonnes */
.galerie-item--large {
  grid-column: span 2;
  aspect-ratio: 16/7;
}

.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.3s ease;
}
.galerie-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.85);
}

/* Overlay label au survol */
.galerie-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: var(--space-4);
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.galerie-item:hover .galerie-overlay { opacity: 1; }
.galerie-overlay span {
  color: white;
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Cellule CTA — toujours avec overlay visible */
.galerie-item--cta .galerie-overlay { display: none; }
.galerie-cta-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-5);
  text-align: center;
  background: rgba(0,0,0,0.52);
  backdrop-filter: blur(2px);
}
.galerie-cta-overlay p {
  color: rgba(255,255,255,0.8);
  font-size: var(--text-sm);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
}
.galerie-cta-overlay strong {
  color: white;
  font-size: var(--text-sm);
  line-height: 1.5;
}

/* Desktop : 3 colonnes */
@media (min-width: 768px) {
  .galerie-grid { grid-template-columns: repeat(3, 1fr); }
  .galerie-item--large { grid-column: span 2; aspect-ratio: 16/8; }
  /* CTA pleine largeur sur desktop pour éviter les cases vides */
  .galerie-item--cta { grid-column: 1 / -1; aspect-ratio: 21/6; }
}
@media (min-width: 1024px) {
  .galerie-item--large { aspect-ratio: 21/9; }
  .galerie-item--cta { aspect-ratio: 21/5; }
}

/* ════════════════════════════════════════
   VENTE À DISTANCE / APPEL — fond bleu clair
════════════════════════════════════════ */
#reservation-appel {
  padding-block: var(--space-20);
  background-color: var(--blue-light);
}

.appel-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-bottom: var(--space-14);
}
.appel-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  border: 2px solid var(--blue-mid);
  box-shadow: var(--shadow-sm);
}
.appel-step-arrow {
  display: none;
  font-size: 1.5rem;
  color: var(--color-text-muted);
  align-self: center;
}
.appel-step-number {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: var(--radius-full);
  font-size: var(--text-xl);
  font-weight: var(--font-extrabold);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-white);
}
.appel-step-number--blue   { background: var(--blue);   }
.appel-step-number--green  { background: var(--green);  }
.appel-step-number--yellow { background: var(--yellow); color: var(--color-text); }
.appel-step-content h4 { font-size: var(--text-lg); margin-bottom: var(--space-1); }
.appel-step-content p  { color: var(--color-text-muted); font-size: var(--text-sm); margin: 0; line-height: var(--leading-normal); }

.appel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  margin-top: var(--space-16);
  padding-top: var(--space-12);
  border-top: 3px solid var(--blue-mid);
}
.appel-reasons {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  border: 2px solid var(--blue-mid);
}
.appel-reasons h3 { font-size: var(--text-xl); margin-bottom: var(--space-6); }

.appel-list { display: flex; flex-direction: column; gap: var(--space-5); margin-bottom: var(--space-8); }
.appel-list li { display: flex; align-items: flex-start; gap: var(--space-4); }
.appel-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; }
.appel-icon--blue   { background: var(--blue);   color: var(--color-white); }
.appel-icon--green  { background: var(--green);  color: var(--color-white); }
.appel-icon--yellow { background: var(--yellow); color: var(--color-text);  }
.appel-list li div strong { display: block; font-weight: var(--font-semibold); margin-bottom: 2px; }
.appel-list li div span   { font-size: var(--text-sm); color: var(--color-text-muted); line-height: var(--leading-normal); }

.appel-livraison {
  display: flex; align-items: flex-start; gap: var(--space-4);
  background: linear-gradient(135deg, var(--green-light), var(--blue-light));
  border: 2px solid var(--green-mid);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  margin-bottom: var(--space-6);
}
.appel-livraison-icon { flex-shrink: 0; width: 52px; height: 52px; background: var(--green); color: var(--color-white); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; }
.appel-livraison strong { display: block; font-weight: var(--font-bold); margin-bottom: var(--space-1); font-size: var(--text-base); }
.appel-livraison p { font-size: var(--text-sm); color: var(--color-text-muted); margin: 0; line-height: var(--leading-normal); }

.appel-ical-note { display: flex; align-items: flex-start; gap: var(--space-3); padding: var(--space-4); background: var(--yellow-light); border: 1.5px solid var(--yellow-mid); border-radius: var(--radius-lg); }
.appel-ical-note svg { flex-shrink: 0; color: var(--yellow-dark); margin-top: 2px; }
.appel-ical-note p { font-size: var(--text-sm); color: var(--color-text-muted); margin: 0; line-height: var(--leading-normal); }

.appel-form-card {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-5);
  border: 2px solid var(--blue-mid);
  box-shadow: var(--shadow-lg);
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
}
.appel-form-card h3 { font-size: var(--text-xl); margin-bottom: var(--space-2); }
.appel-form-card > p { color: var(--color-text-muted); margin-bottom: var(--space-5); }
#appel-form input,
#appel-form select,
#appel-form textarea {
  max-width: 100%;
  box-sizing: border-box;
}
.appel-booking {
  min-width: 0;
  max-width: 100%;
}

.demo-slots {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  background: var(--blue-light);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  border: 1.5px solid var(--blue-mid);
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.demo-day-label { display: block; font-size: var(--text-xs); font-weight: var(--font-bold); text-transform: uppercase; letter-spacing: 0.08em; color: var(--blue-dark); margin-bottom: var(--space-2); }
.demo-times { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.demo-time { padding: var(--space-2) var(--space-3); border: 2px solid var(--blue); border-radius: var(--radius-md); background: var(--color-white); color: var(--blue-dark); font-size: var(--text-sm); font-weight: var(--font-semibold); cursor: pointer; transition: background var(--transition), color var(--transition), border-color var(--transition); }
.demo-time:hover:not(:disabled) { background: var(--blue); color: var(--color-white); }
.demo-time.is-selected { background: var(--green); color: var(--color-white); border-color: var(--green); }
.demo-time--taken { border-color: var(--color-border); background: var(--color-border); color: var(--color-text-muted); cursor: not-allowed; opacity: 0.6; }
.calcom-note { font-size: var(--text-xs); color: var(--color-text-muted); margin-top: var(--space-2); }

@media (min-width: 768px) {
  .appel-steps { flex-direction: row; align-items: stretch; }
  .appel-step { flex: 1; }
  .appel-step-arrow { display: flex; }
}
@media (min-width: 1024px) {
  .appel-grid { grid-template-columns: 1fr 1.4fr; align-items: start; }
}

/* ════════════════════════════════════════
   CONTACT — fond jaune clair
════════════════════════════════════════ */
#contact {
  padding-block: var(--space-20);
  background-color: var(--yellow-light);
}

#contact .section-label { color: var(--yellow-dark); background-color: var(--yellow-mid); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-16);
}

.contact-info { display: flex; flex-direction: column; gap: var(--space-6); }
.boutique-address { font-style: normal; display: flex; flex-direction: column; gap: var(--space-5); }

.contact-block { display: flex; align-items: flex-start; gap: var(--space-4); }

.contact-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
}
/* Icônes contact en couleurs marque */
.contact-block:nth-child(1) .contact-icon { background-color: var(--green);  color: var(--color-white); }
.contact-block:nth-child(2) .contact-icon { background-color: var(--blue);   color: var(--color-white); }
.contact-block:nth-child(3) .contact-icon { background-color: var(--yellow); color: var(--color-text);  }

.contact-block strong { display: block; font-weight: var(--font-semibold); margin-bottom: var(--space-1); }
.contact-block p { color: var(--color-text-muted); font-size: var(--text-base); margin: 0; line-height: var(--leading-normal); }
.contact-block a { color: var(--blue-dark); font-weight: var(--font-medium); }
.contact-block a:hover { text-decoration: underline; }

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: #25D366 !important;
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  margin-top: var(--space-2);
}
.whatsapp-link:hover { text-decoration: underline; }

.horaires { display: flex; flex-direction: column; gap: var(--space-2); margin-top: var(--space-2); }
.horaire-row { display: flex; gap: var(--space-6); font-size: var(--text-sm); }
.horaire-row dt { font-weight: var(--font-medium); min-width: 90px; color: var(--color-text); }
.horaire-row dd { color: var(--color-text-muted); }

.social-links { display: flex; gap: var(--space-3); flex-wrap: wrap; }

.social-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  color: var(--color-white) !important;
  transition: opacity var(--transition), transform var(--transition);
}
.social-link:hover { opacity: 0.9; transform: translateY(-2px); }
.social-link--facebook  { background-color: #1877F2; }
.social-link--instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

.contact-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--yellow-mid);
}
.contact-map iframe { width: 100%; height: 300px; display: block; }

/* Formulaire */
.contact-form-wrapper {
  max-width: 720px;
  margin-inline: auto;
  background-color: var(--color-white);
  padding: var(--space-10);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--yellow-mid);
}
.contact-form-wrapper h3 { font-size: var(--text-2xl); margin-bottom: var(--space-2); }
.contact-form-wrapper > p { color: var(--color-text-muted); margin-bottom: var(--space-8); }

#contact-form { display: flex; flex-direction: column; gap: var(--space-5); }
.form-row { display: grid; grid-template-columns: 1fr; gap: var(--space-5); }
.form-group { display: flex; flex-direction: column; gap: var(--space-2); }
.form-group label { font-weight: var(--font-semibold); font-size: var(--text-sm); }
.form-group label span { color: var(--green); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(75,179,217,0.2);
}
.form-group textarea { resize: vertical; }

.form-success {
  padding: var(--space-4);
  background-color: var(--green-light);
  border: 2px solid var(--green);
  border-radius: var(--radius-lg);
  color: var(--green-dark);
  font-weight: var(--font-semibold);
  text-align: center;
}

/* ════════════════════════════════════════
   FOOTER — fond sombre avec accents couleurs
════════════════════════════════════════ */
footer {
  background-color: var(--color-bg-dark);
  color: rgba(255,255,255,0.9);
}

/* Barre tricolore en haut du footer */
footer::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--blue) 33.3%, var(--green) 33.3% 66.6%, var(--yellow) 66.6%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  padding-block: var(--space-16);
}

.footer-brand img {
  margin-bottom: var(--space-4);
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-brand p { font-size: var(--text-sm); color: rgba(255,255,255,0.55); line-height: var(--leading-loose); }

.footer-nav h4,
.footer-contact h4 {
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--yellow);
  margin-bottom: var(--space-4);
}

.footer-nav ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-nav a { font-size: var(--text-sm); color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer-nav a:hover { color: var(--blue); }

.footer-contact p { font-size: var(--text-sm); color: rgba(255,255,255,0.7); margin-bottom: var(--space-2); line-height: var(--leading-loose); }
.footer-contact a { color: var(--yellow); }
.footer-contact a:hover { text-decoration: underline; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-block: var(--space-6); }
.footer-bottom-inner { display: flex; flex-direction: column; gap: var(--space-3); align-items: center; text-align: center; }
.footer-bottom p { font-size: var(--text-sm); color: rgba(255,255,255,0.35); }
.footer-bottom nav { display: flex; gap: var(--space-6); flex-wrap: wrap; justify-content: center; }
.footer-bottom nav a { font-size: var(--text-sm); color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-bottom nav a:hover { color: var(--color-white); }

/* ════════════════════════════════════════
   RESPONSIVE — Tablette (≥ 640px)
════════════════════════════════════════ */
@media (min-width: 640px) {
  .produits-grid     { grid-template-columns: repeat(2, 1fr); }
  .form-row          { grid-template-columns: repeat(2, 1fr); }
  .ateliers-grid     { grid-template-columns: repeat(2, 1fr); }
  .contact-map iframe { height: 350px; }
}

/* ════════════════════════════════════════
   RESPONSIVE — Desktop (≥ 1024px)
════════════════════════════════════════ */
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .nav-menu {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    position: static;
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    gap: var(--space-2);
  }
  .nav-cta { margin-top: 0; }

  #hero h1 { font-size: var(--text-5xl); }

  .produits-grid { grid-template-columns: repeat(3, 1fr); }
  .apropos-grid  { grid-template-columns: 1fr 1fr; align-items: center; }
  .contact-grid  { grid-template-columns: 1fr 1fr; align-items: start; }
  .contact-map iframe { height: 420px; }
  .footer-grid   { grid-template-columns: 2fr 1fr 1fr; }
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ════════════════════════════════════════
   RESPONSIVE — CORRECTIFS GLOBAUX
   Empêche tout débordement horizontal
════════════════════════════════════════ */

/* 1. Bloquer le scroll horizontal sur toute la page */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* 2. Empêcher les sections de dépasser la largeur */
section, footer, header {
  overflow-x: hidden;
  max-width: 100%;
}

/* 3. Hero — les brosses flottantes ne doivent pas créer de scroll */
#hero {
  overflow: hidden;
}
.hero-background {
  overflow: hidden;
}

/* 4. Grilles — min-width:0 pour que les colonnes puissent rétrécir */
.apropos-grid > *,
.produits-grid > *,
.ateliers-grid > *,
.appel-grid > *,
.contact-grid > *,
.footer-grid > * {
  min-width: 0;
}

/* 4b. Boutons pleine largeur — autoriser le retour à la ligne */
.btn[style*="width:100%"],
.btn[style*="width: 100%"] {
  white-space: normal;
  word-break: break-word;
  height: auto;
}

/* 4c. Hero bg — overflow caché car #hero est overflow:hidden */
.hero-bg {
  overflow: hidden;
}

/* 5. À propos — la photo doit rester dans son conteneur */
.apropos-photo {
  max-width: 100%;
  overflow: hidden;
}
.apropos-photo img {
  width: 100%;
  max-width: 100%;
  height: 300px;
}

/* 6. Formulaire de rappel — padding réduit sur mobile */
.appel-form-card {
  padding: var(--space-5);
}

/* 7. Demo-slots — les créneaux passent à la ligne sur petit écran */
.demo-times {
  flex-wrap: wrap;
}
.demo-time {
  flex-shrink: 0;
}

/* 8. Form-row — une colonne sur petits écrans */
.form-row {
  grid-template-columns: 1fr;
}

/* 9. Hero stats — ajustement mobile */
.hero-stats {
  flex-wrap: wrap;
  gap: var(--space-3);
}
.hero-stat-divider {
  display: none;
}

/* 10. Session-block — empilé sur mobile */
.session-block {
  flex-direction: column;
  align-items: flex-start;
}

/* 11. Atelier-card-header — padding réduit mobile */
.atelier-card-header {
  padding: var(--space-6);
}

/* 12. Trust list — centré, pas de débordement */
.trust-list {
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

/* 13. Images produits — hauteur réduite sur mobile */
.produit-photo img {
  height: 160px;
}

/* 14. Footer — liens sociaux empilés */
.social-links {
  flex-wrap: wrap;
}

/* Ré-appliquer les valeurs desktop aux bons breakpoints */
@media (min-width: 640px) {
  .appel-form-card { padding: var(--space-8); }
  .form-row { grid-template-columns: repeat(2, 1fr); }
  .apropos-photo img { height: 380px; }
  .produit-photo img { height: 200px; }
  .hero-stat-divider { display: block; }
  .trust-list { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .session-block { flex-direction: row; align-items: center; }
  .atelier-card-header { padding: var(--space-10) var(--space-8); }
  .apropos-card { padding: var(--space-6); gap: var(--space-2); }
  .apropos-card-number { font-size: var(--text-3xl); }
  .apropos-stats { gap: var(--space-4); }
}

/* ════════════════════════════════════════
   GALERIE — Bande visite (adresse / horaires / tél)
════════════════════════════════════════ */
.galerie-item--cta.galerie-item--visite {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--blue) 100%);
  aspect-ratio: auto !important;
  min-height: 200px;
  cursor: default;
}
.galerie-item--cta.galerie-item--visite:hover img { transform: none; filter: none; }

.galerie-visite-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  padding: var(--space-10) var(--space-8);
  height: 100%;
  min-height: 200px;
  text-align: center;
}
.galerie-visite-infos {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  align-items: center;
}
.galerie-visite-bloc {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  text-align: left;
}
.galerie-visite-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: white;
}
.galerie-visite-text strong {
  display: block;
  color: white;
  font-weight: var(--font-semibold);
  font-size: var(--text-sm);
  margin-bottom: 2px;
}
.galerie-visite-text span {
  color: rgba(255,255,255,0.8);
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
}
.galerie-visite-separateur {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
  display: none;
  align-self: center;
}
.galerie-visite-actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 768px) {
  .galerie-visite-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: var(--space-10);
    padding: var(--space-10) var(--space-12);
  }
  .galerie-visite-infos {
    flex-direction: row;
    gap: var(--space-6);
    align-items: center;
    flex: 1;
  }
  .galerie-visite-separateur { display: block; }
  .galerie-visite-actions {
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: var(--space-3);
    flex-shrink: 0;
  }
}

/* ════════════════════════════════════════
   TÉMOIGNAGES — Carrousel
════════════════════════════════════════ */
#temoignages {
  padding-block: var(--space-20);
  background-color: var(--color-bg-soft);
}
.carousel { position: relative; overflow: hidden; }
.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.temoignage-card {
  min-width: 100%;
  padding: var(--space-8) var(--space-6);
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  box-sizing: border-box;
}
.temoignage-stars {
  color: var(--yellow-dark);
  font-size: var(--text-2xl);
  letter-spacing: 0.05em;
  line-height: 1;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.08));
}
.temoignage-card blockquote { flex: 1; }
.temoignage-card blockquote p {
  font-size: var(--text-lg);
  color: var(--color-text);
  line-height: var(--leading-loose);
  font-style: italic;
  margin: 0;
}
.temoignage-footer {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-4);
  border-top: 2px solid var(--color-border);
}
.temoignage-avatar {
  width: 48px; height: 48px;
  border-radius: var(--radius-full);
  background: var(--blue);
  color: white;
  font-weight: var(--font-bold);
  font-size: var(--text-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}
.temoignage-avatar--green  { background: var(--green); }
.temoignage-avatar--yellow { background: var(--yellow); color: var(--color-text); }
.temoignage-avatar--blue   { background: var(--blue); }
.temoignage-footer strong  { display: block; font-weight: var(--font-semibold); margin-bottom: 2px; }
.temoignage-footer span    { font-size: var(--text-sm); color: var(--color-text-muted); }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  margin-top: var(--space-8);
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: var(--radius-full);
  border: 2.5px solid var(--color-border);
  background: var(--color-white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
  color: var(--color-text);
  flex-shrink: 0;
}
.carousel-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: white;
  transform: translateY(-2px);
}
.carousel-dots { display: flex; gap: var(--space-2); align-items: center; }
.carousel-dot {
  width: 10px; height: 10px;
  border-radius: var(--radius-full);
  background: var(--color-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}
.carousel-dot.is-active {
  background: var(--green);
  transform: scale(1.4);
}

/* ════════════════════════════════════════
   NEWSLETTER — Fond dégradé
════════════════════════════════════════ */
#newsletter {
  padding-block: var(--space-16);
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--blue) 100%);
}
.newsletter-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-8);
}
.newsletter-icon { font-size: 2.5rem; line-height: 1; display: block; }
.newsletter-text h2 {
  font-size: var(--text-3xl);
  color: var(--color-white);
  margin-bottom: var(--space-3);
}
.newsletter-text p {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.85);
  max-width: 500px;
  margin-inline: auto;
  line-height: var(--leading-loose);
}
.newsletter-form { width: 100%; max-width: 520px; }
.newsletter-input-group {
  display: flex;
  gap: var(--space-2);
  background: white;
  border-radius: var(--radius-full);
  padding: var(--space-2);
  box-shadow: var(--shadow-xl);
}
.newsletter-input-group input {
  flex: 1;
  border: none;
  outline: none;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  border-radius: var(--radius-full);
  background: transparent;
  min-width: 0;
  font-family: var(--font-body);
  color: var(--color-text);
}
.newsletter-input-group .btn { flex-shrink: 0; }
.newsletter-note {
  margin-top: var(--space-3);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.7);
  text-align: center;
  line-height: var(--leading-normal);
}
.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;
}
@media (min-width: 768px) {
  .newsletter-inner {
    flex-direction: row;
    text-align: left;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-12);
  }
  .newsletter-text { flex: 1; }
  .newsletter-text p { margin-inline: 0; }
  .newsletter-form { flex-shrink: 0; }
}

/* ════════════════════════════════════════
   ACCESSIBILITÉ
════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
