/* ─────────────────────────────────────────
   FAQ — L'Atelier Graphiplus
───────────────────────────────────────── */

.faq-body {
  background: var(--white);
  padding: 72px 48px 100px;
}

.faq-inner {
  max-width: 820px;
  margin: 0 auto;
}

.faq-intro {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 64px;
  font-style: italic;
}

/* ── Catégorie ── */
.faq-category {
  margin-bottom: 52px;
}

.faq-category-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-gold);
  margin-bottom: 0;
}

/* ── Item accordion ── */
.faq-item {
  border-bottom: 1px solid var(--border-gold);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  text-align: left;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.55;
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--cta);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  transition: transform 0.3s ease, background 0.2s, color 0.2s;
}

.faq-item.open .faq-q {
  color: var(--cta);
}

.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: rotate(45deg);
}

/* ── Réponse (collapse) ── */
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-item.open .faq-a {
  grid-template-rows: 1fr;
}

.faq-a-inner {
  overflow: hidden;
}

.faq-a p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text);
  padding-bottom: 24px;
  padding-right: 44px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .faq-body {
    padding: 48px 24px 72px;
  }

  .faq-q {
    font-size: 14px;
    padding: 16px 0;
  }

  .faq-a p {
    padding-right: 0;
  }
}
