/* ══ FAQ MODULE ═════════════════════════ */
#s-faq { background: var(--white); padding: 60px 0; }
.faq-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.faq-title { font-family: var(--ff-serif); font-size: 38px; color: var(--blue); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; background: none; border: none; text-align: left;
  font-family: var(--ff-sans); font-size: 16px; font-weight: 600; color: var(--text);
}
.faq-q-icon { font-size: 20px; color: var(--orange); transition: transform 0.3s ease; }
.faq-item.open .faq-q-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s var(--ease-out);
  font-size: 14px; color: var(--muted); line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 240px; padding-bottom: 22px; }
