.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 3.5rem auto 0;
}

.review-card {
  margin: 0;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: #f3ede7;
  color: #211d1a;
}

.review-stars {
  margin-bottom: 1.5rem;
  color: #a96737;
  font-size: .85rem;
  letter-spacing: .25em;
}

.review-card > p {
  margin: 0 0 2.2rem;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
  line-height: 1.2;
}

.review-card footer {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.review-card footer span { color: #746a63; }

.review-note {
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.home .site-footer { padding-top: 4rem; }
.home .footer-intro { display: none; }
.footer-menu > li:nth-last-child(2) { display: none; }

.footer-resources {
  padding: 1.75rem 0;
  border-top: 1px solid rgba(255,255,255,.16);
}

.footer-resources .footer-title { margin: 0 0 .8rem; }

.footer-resources ul {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-resources li { display: flex; align-items: center; }
.footer-resources li:not(:last-child)::after {
  content: "·";
  margin: 0 .75rem;
  color: rgba(255,255,255,.3);
}

.footer-resources a {
  color: rgba(255,255,255,.58);
  font-size: .68rem;
  line-height: 1.5;
  text-decoration: none;
  transition: color .2s ease;
}

.footer-resources a:hover { color: #fff; }

/* L'ancien bloc était injecté après le footer par un réglage historique. */
body > font:last-of-type { display: none !important; }

/* Une échelle éditoriale plus maîtrisée : les titres restent expressifs sans
   prendre toute la hauteur de l'écran ni casser les phrases trop souvent. */
h1 { font-size: clamp(3.25rem, 6.2vw, 7rem); }
h2 { font-size: clamp(2.4rem, 4.2vw, 4.8rem); }

.hero h1 { max-width: 780px; }
.manifesto h2 { max-width: 960px; }
.reviews-heading h2 { max-width: 920px; margin-right: auto; margin-left: auto; }
.closing-content h2 { max-width: 800px; margin-right: auto; margin-left: auto; }

