/* ============================================================
   bichon-russe-elevage.fr — Theme "Guide Familial Premium"
   Palette : blanc nuage, taupe, framboise sourde, beige doux
   Design premium : full-width banners, 2-col layouts, galeries
   ============================================================ */

:root {
  /* Couleurs principales */
  --blanc-nuage: #F8F6F2;
  --taupe: #8B7D6B;
  --taupe-clair: #A89B8C;
  --framboise: #B24C63;
  --framboise-claire: #D4768B;
  --framboise-sombre: #8A3A4D;
  --beige-doux: #EDE5D8;
  --beige-chaud: #D9CFC0;
  --creme: #FFF9F0;
  --texte: #3D3328;
  --texte-secondaire: #6B5E50;
  --blanc: #FFFFFF;

  /* Typos */
  --font-titre: 'DM Serif Display', 'Georgia', serif;
  --font-corps: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-accent: 'Caveat', cursive;

  /* Espacements */
  --section-py: clamp(3.5rem, 7vw, 6rem);
  --container-max: 1120px;
  --container-wide: 1320px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Ombres */
  --shadow-card: 0 2px 16px rgba(139,125,107,.10);
  --shadow-hover: 0 8px 32px rgba(178,76,99,.14);
  --shadow-soft: 0 4px 24px rgba(61,51,40,.06);
  --shadow-image: 0 12px 40px rgba(139,125,107,.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-corps);
  color: var(--texte);
  background: var(--blanc-nuage);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-titre);
  line-height: 1.25;
  color: var(--texte);
}

a {
  color: var(--framboise);
  text-decoration: none;
  transition: color .2s;
}
a:hover { color: var(--framboise-sombre); }

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}
.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

/* ---- NAVIGATION ---- */
.site-nav {
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--beige-chaud);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: var(--font-titre);
  font-size: 1.2rem;
  color: var(--texte);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.nav-logo .logo-dot {
  width: 10px; height: 10px;
  background: var(--framboise);
  border-radius: 50%;
  display: inline-block;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.nav-links a {
  font-size: .9rem;
  color: var(--texte-secondaire);
  font-weight: 500;
  padding: .4rem 0;
  border-bottom: 2px solid transparent;
  transition: all .2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--framboise);
  border-bottom-color: var(--framboise);
}

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .5rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--texte); margin: 5px 0; transition: .3s; }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--beige-chaud);
    gap: .5rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .6rem 0; font-size: 1rem; }
}

/* ---- HERO (Homepage) ---- */
.hero {
  background: linear-gradient(165deg, var(--creme) 0%, var(--beige-doux) 45%, var(--beige-chaud) 100%);
  padding: clamp(3rem, 8vw, 6rem) 0 var(--section-py);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -15%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(178,76,99,.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,125,107,.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 520px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(178,76,99,.08);
  color: var(--framboise);
  font-size: .8rem;
  font-weight: 600;
  padding: .35rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 1rem;
  color: var(--texte);
}
.hero h1 em {
  color: var(--framboise);
  font-style: normal;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--texte-secondaire);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-questions {
  background: var(--blanc);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  border-left: 3px solid var(--framboise);
  box-shadow: var(--shadow-soft);
}
.hero-questions p {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  color: var(--taupe);
  margin-bottom: .4rem;
}
.hero-questions ul {
  list-style: none;
  padding: 0;
}
.hero-questions li {
  padding: .3rem 0;
  padding-left: 1.4rem;
  position: relative;
  font-size: .95rem;
  color: var(--texte-secondaire);
}
.hero-questions li::before {
  content: '?';
  position: absolute;
  left: 0;
  color: var(--framboise);
  font-weight: 700;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual img,
.hero-visual svg {
  width: 100%;
  max-width: 420px;
  height: auto;
}
.hero-visual img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-image);
  border: 4px solid rgba(255,255,255,.7);
}

@media (max-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content { max-width: 100%; }
  .hero-questions { text-align: left; }
  .hero-visual { order: -1; }
  .hero-visual img,
  .hero-visual svg { max-width: 280px; }
}

/* ---- SECTIONS ---- */
section { padding: var(--section-py) 0; }
section:nth-child(even) { background: var(--blanc); }

.section-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--framboise);
  font-weight: 600;
  margin-bottom: .5rem;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: .6rem;
}
.section-subtitle {
  color: var(--texte-secondaire);
  font-size: 1rem;
  max-width: 600px;
  margin-bottom: 2.5rem;
}
.section-header { margin-bottom: 2.5rem; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ---- PAGE BANNER (Full-Width) ---- */
.page-banner {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: linear-gradient(165deg, var(--creme) 0%, var(--beige-doux) 100%);
}
.page-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(61,51,40,.1) 0%,
    rgba(61,51,40,.55) 60%,
    rgba(61,51,40,.8) 100%
  );
  z-index: 1;
}
.page-banner__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 3rem 0 2.5rem;
}
.page-banner__content .container {
  max-width: var(--container-max);
}
.page-banner__content h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--blanc);
  margin-bottom: .6rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.page-banner__content .lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,.9);
  max-width: 600px;
  text-shadow: 0 1px 4px rgba(0,0,0,.15);
}
.page-banner__content .breadcrumb {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  margin-bottom: .8rem;
}
.page-banner__content .breadcrumb a {
  color: rgba(255,255,255,.8);
}
.page-banner__content .breadcrumb a:hover {
  color: var(--blanc);
}

/* Fallback si pas de photo */
.page-banner--no-image {
  min-height: 220px;
  background: linear-gradient(165deg, var(--creme) 0%, var(--beige-doux) 60%, var(--beige-chaud) 100%);
  align-items: center;
}
.page-banner--no-image .page-banner__content h1 {
  color: var(--texte);
  text-shadow: none;
}
.page-banner--no-image .page-banner__content .lead {
  color: var(--texte-secondaire);
  text-shadow: none;
}

@media (max-width: 768px) {
  .page-banner { min-height: 260px; }
}

/* ---- PAGE CONTENT ---- */
.page-content {
  padding: var(--section-py) 0;
}
.page-content .container {
  max-width: 820px;
}
.page-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 .8rem;
  padding-top: 1rem;
}
.page-content h3 {
  font-size: 1.15rem;
  margin: 1.5rem 0 .5rem;
}
.page-content p {
  margin-bottom: 1rem;
  font-size: .95rem;
}
.page-content ul, .page-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.page-content li {
  margin-bottom: .4rem;
  font-size: .95rem;
}

/* ---- TWO COLUMNS (Image + Texte) ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
}
.two-col--reverse {
  direction: rtl;
}
.two-col--reverse > * {
  direction: ltr;
}
.two-col__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-image);
  border: 3px solid rgba(255,255,255,.6);
}
.two-col__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform .4s ease;
}
.two-col:hover .two-col__image img {
  transform: scale(1.02);
}
.two-col__text h2 {
  margin-top: 0;
  padding-top: 0;
}
.two-col__text h3 {
  margin-top: 0;
}

@media (max-width: 768px) {
  .two-col,
  .two-col--reverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    direction: ltr;
  }
  .two-col__image {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ---- GALLERY ---- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin: 2.5rem 0;
}
.gallery--wide {
  max-width: var(--container-wide);
  margin-left: auto;
  margin-right: auto;
}
.gallery__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: box-shadow .3s, transform .3s;
}
.gallery__item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.gallery__item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery__item:hover img {
  transform: scale(1.04);
}
.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(61,51,40,.7));
  color: var(--blanc);
  font-size: .82rem;
  padding: 2rem 1rem .8rem;
  font-weight: 500;
}

/* ---- AMBIANCE IMAGE (full-width break) ---- */
.ambiance-break {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 320px;
  overflow: hidden;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.ambiance-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ambiance-break__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(248,246,242,.3) 0%,
    transparent 20%,
    transparent 80%,
    rgba(248,246,242,.3) 100%
  );
}
.ambiance-break__quote {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-accent);
  font-size: 1.3rem;
  color: var(--texte);
  box-shadow: var(--shadow-soft);
  max-width: 500px;
  text-align: center;
}

@media (max-width: 768px) {
  .ambiance-break { height: 220px; }
  .ambiance-break__quote {
    font-size: 1rem;
    padding: .8rem 1.2rem;
    max-width: 80%;
  }
}

/* ---- FEATURED BOX ---- */
.featured-box {
  background: linear-gradient(135deg, var(--creme) 0%, var(--beige-doux) 100%);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  margin: 2.5rem 0;
  border: 1px solid var(--beige-chaud);
  position: relative;
  overflow: hidden;
}
.featured-box::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(178,76,99,.08) 0%, transparent 70%);
  border-radius: 50%;
}
.featured-box h3 {
  font-size: 1.2rem;
  margin-bottom: .8rem;
  color: var(--framboise-sombre);
}
.featured-box p {
  color: var(--texte-secondaire);
}

/* ---- CARDS ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: box-shadow .3s, transform .3s;
  border: 1px solid rgba(139,125,107,.06);
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(178,76,99,.08), rgba(178,76,99,.04));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
}
.card h3 {
  font-size: 1.15rem;
  margin-bottom: .6rem;
}
.card p {
  font-size: .92rem;
  color: var(--texte-secondaire);
  line-height: 1.65;
}

/* ---- CHECKLIST ---- */
.checklist {
  list-style: none;
  padding: 0;
}
.checklist li {
  padding: .8rem 0 .8rem 2.2rem;
  position: relative;
  border-bottom: 1px solid var(--beige-doux);
  font-size: .95rem;
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 0; top: .95rem;
  width: 20px; height: 20px;
  border: 2px solid var(--framboise);
  border-radius: 4px;
}
.checklist li::after {
  content: '\2713';
  position: absolute;
  left: 3px; top: .85rem;
  color: var(--framboise);
  font-weight: 700;
  font-size: .85rem;
}
.checklist li:last-child { border-bottom: none; }

/* ---- SCORECARD ---- */
.scorecard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.score-item {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(139,125,107,.06);
  transition: transform .3s, box-shadow .3s;
}
.score-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.score-value {
  font-family: var(--font-titre);
  font-size: 2rem;
  color: var(--framboise);
  display: block;
  margin-bottom: .3rem;
}
.score-label {
  font-size: .82rem;
  color: var(--texte-secondaire);
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ---- COMPARATIF ---- */
.comparatif-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--blanc);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.comparatif-table th {
  background: linear-gradient(135deg, var(--beige-doux), var(--beige-chaud));
  font-family: var(--font-titre);
  font-size: .95rem;
  padding: 1.1rem 1.2rem;
  text-align: left;
  color: var(--texte);
  border-bottom: 2px solid var(--beige-chaud);
}
.comparatif-table td {
  padding: .9rem 1.2rem;
  font-size: .9rem;
  border-bottom: 1px solid var(--beige-doux);
  color: var(--texte-secondaire);
}
.comparatif-table tbody tr {
  transition: background .2s;
}
.comparatif-table tbody tr:hover {
  background: rgba(237,229,216,.3);
}
.comparatif-table .highlight-cell {
  color: var(--framboise);
  font-weight: 600;
}

@media (max-width: 600px) {
  .comparatif-table { font-size: .85rem; }
  .comparatif-table th, .comparatif-table td { padding: .7rem .6rem; }
}

/* ---- TEMOIGNAGES ---- */
.temoignage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.temoignage {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(139,125,107,.06);
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.temoignage:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.temoignage::before {
  content: '\201C';
  font-family: var(--font-titre);
  font-size: 4rem;
  color: var(--framboise-claire);
  opacity: .3;
  position: absolute;
  top: .5rem; left: 1.2rem;
  line-height: 1;
}
.temoignage blockquote {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--texte-secondaire);
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  font-style: italic;
}
.temoignage-author {
  font-weight: 600;
  font-size: .85rem;
  color: var(--texte);
}
.temoignage-meta {
  font-size: .78rem;
  color: var(--taupe-clair);
}

/* ---- CTA ---- */
.cta-section {
  background: linear-gradient(135deg, var(--framboise) 0%, var(--framboise-sombre) 100%);
  color: var(--blanc);
  text-align: center;
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-section h2 {
  color: var(--blanc);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: .8rem;
}
.cta-section p {
  color: rgba(255,255,255,.85);
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2.2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: .95rem;
  transition: all .25s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--framboise);
  color: var(--blanc);
  box-shadow: 0 4px 16px rgba(178,76,99,.25);
}
.btn-primary:hover {
  background: var(--framboise-sombre);
  color: var(--blanc);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(178,76,99,.3);
}
.btn-white {
  background: var(--blanc);
  color: var(--framboise);
  box-shadow: 0 4px 16px rgba(255,255,255,.2);
}
.btn-white:hover {
  background: var(--creme);
  color: var(--framboise-sombre);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--framboise);
  border: 2px solid var(--framboise);
}
.btn-outline:hover {
  background: var(--framboise);
  color: var(--blanc);
  transform: translateY(-1px);
}

/* ---- FAQ ---- */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--beige-chaud);
  padding: 1.2rem 0;
}
.faq-question {
  font-family: var(--font-titre);
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--texte);
}
.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--framboise);
  font-weight: 300;
  transition: transform .2s;
}
.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  font-size: .92rem;
  color: var(--texte-secondaire);
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding-top: .8rem;
}

/* ---- MAILLAGE (LIENS INTERNES) ---- */
.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}
.link-card {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 1.1rem 1.4rem;
  background: var(--blanc);
  border-radius: var(--radius-lg);
  border: 1px solid var(--beige-chaud);
  transition: all .25s;
}
.link-card:hover {
  border-color: var(--framboise-claire);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.link-card .link-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.link-card .link-text {
  font-weight: 500;
  font-size: .9rem;
  color: var(--texte);
}

/* ---- TIMELINE ---- */
.timeline {
  position: relative;
  padding-left: 2.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--framboise-claire), var(--beige-chaud));
}
.timeline-step {
  position: relative;
  padding-bottom: 2rem;
}
.timeline-step::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: .35rem;
  width: 16px; height: 16px;
  background: var(--framboise);
  border-radius: 50%;
  border: 3px solid var(--blanc-nuage);
  box-shadow: 0 0 0 3px rgba(178,76,99,.15);
}
.timeline-step h3 {
  font-size: 1.05rem;
  margin-bottom: .3rem;
}
.timeline-step p {
  font-size: .9rem;
  color: var(--texte-secondaire);
}

/* ---- INFO BOX / ALERT ---- */
.info-box {
  background: var(--creme);
  padding: 1.5rem 1.8rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--framboise);
  margin: 1.5rem 0;
}
.info-box strong {
  color: var(--framboise-sombre);
}

/* ---- STATS ROW ---- */
.stats-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, var(--creme), var(--beige-doux));
  border-radius: var(--radius-lg);
}
.stats-row__item {
  text-align: center;
  flex: 1;
  min-width: 120px;
}
.stats-row__value {
  font-family: var(--font-titre);
  font-size: 1.8rem;
  color: var(--framboise);
  display: block;
}
.stats-row__label {
  font-size: .8rem;
  color: var(--texte-secondaire);
  text-transform: uppercase;
  letter-spacing: .03em;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--texte);
  color: rgba(255,255,255,.7);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand h3 {
  color: var(--blanc);
  font-size: 1.1rem;
  margin-bottom: .5rem;
}
.footer-brand p {
  font-size: .85rem;
  line-height: 1.6;
  max-width: 300px;
}
.footer-links h4 {
  color: var(--blanc);
  font-size: .9rem;
  margin-bottom: .8rem;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: .4rem; }
.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: .85rem;
}
.footer-links a:hover { color: var(--framboise-claire); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.2rem;
  font-size: .78rem;
  text-align: center;
  color: rgba(255,255,255,.4);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ---- UTILITIES ---- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ---- SMOOTH ANIMATIONS ---- */
@media (prefers-reduced-motion: no-preference) {
  .card, .temoignage, .score-item, .link-card, .gallery__item {
    animation: fadeInUp .5s ease both;
  }
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }
}
