/* Page d'accueil — mise en page claire après intro */

body.page-home.hero-intro-done .hero-content,
body.page-home.hero-intro-skip-all .hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.hero-home-head {
  margin: 0;
}

body.page-home .hero-home-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 3.5rem);
  letter-spacing: 0.06em;
  color: var(--blanc);
  margin: 0 0 0.5rem;
  line-height: 1.05;
}

.hero-home-title span {
  color: var(--turquoise);
  text-shadow: 0 0 28px var(--turquoise-glow);
}

.hero-home-lead {
  margin: 0;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: var(--gris);
  line-height: 1.5;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

body.page-home .hero-label {
  margin-bottom: 0.35rem;
}

.hero-home-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 245, 212, 0.18);
  border-radius: 16px;
  padding: 1.15rem 1.25rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.hero-home-card--primary {
  border-color: rgba(0, 245, 212, 0.28);
  background: linear-gradient(145deg, rgba(0, 245, 212, 0.08) 0%, rgba(10, 10, 11, 0.6) 100%);
}

.hero-home-card--primary .hero-address-spotlight {
  margin: 0 0 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
}

.hero-home-card--primary .hero-buttons {
  margin: 0;
  gap: 0.65rem;
}

.hero-home-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  text-align: left;
}

.hero-home-card--review,
.hero-home-card--game {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1rem;
}

.hero-home-card-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--turquoise);
}

.hero-home-card--review .hero-google-review-label {
  margin: 0;
  font-size: 0.82rem;
  text-align: left;
  line-height: 1.4;
}

.hero-home-card--review .btn-google-review-hero {
  width: 100%;
  max-width: none;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
}

.hero-home-card--game p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--gris);
  line-height: 1.4;
  flex: 1;
}

.hero-home-card--game .btn {
  width: 100%;
  justify-content: center;
}

body.page-home .hero-social {
  margin-top: 0.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 560px) {
  .hero-home-row {
    grid-template-columns: 1fr;
  }
}
