/* =========================================
   SECTION PLACES — Quartier
   ========================================= */

#q-section-places {
  width: 100%;
  box-sizing: border-box;
  background: #03001e;
  padding: 2.5rem 1.5rem 1.5rem;
  margin: 0;
}

#q-section-places .q-section-inner {
  max-width: 900px;
  margin: 0 auto;
}

#q-section-places .q-section-header {
  margin: 0 0 1rem;
}

#q-section-places h2 {
  margin: 0 0 0.75rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 3vw, 2.35rem);
  line-height: 1.2;
  color: #fef8f0;
}

#q-section-places .q-section-tagline {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #e4d9c8;
}

#q-section-places .q-places-intro {
  margin-top: 1.2rem;
  max-width: 52rem;
}

#q-section-places .q-places-intro p {
  margin: 0 0 0.9rem;
  font-size: 1rem;
  line-height: 1.72;
  color: #fef8f0;
}

#q-section-places .q-places-intro p:last-child {
  margin-bottom: 0;
}

#q-section-places .q-places-cta {
  margin-top: 1.35rem;
}

#q-section-places .q-btn,
#q-section-places .q-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(254, 248, 240, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #fef8f0;
  text-decoration: none;
  font-size: 0.96rem;
  line-height: 1;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

#q-section-places .q-btn:hover,
#q-section-places .q-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(254, 248, 240, 0.28);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  #q-section-places {
    padding: 2rem 1.25rem 1.25rem;
  }

  #q-section-places h2 {
    font-size: 1.75rem;
  }

  #q-section-places .q-section-tagline,
  #q-section-places .q-places-intro p {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  #q-section-places .q-btn,
  #q-section-places .q-btn-ghost {
    width: 100%;
    justify-content: center;
  }
}