.faq { padding: 110px 32px; scroll-margin-top: 72px; }
.faq .wrap { max-width: 820px; padding-left: 0; padding-right: 0; }

.faq-head { text-align: center; margin-bottom: 48px; }
.faq-head h2 {
  font-size: clamp(30px, 4.2vw, 44px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.1;
  margin: 14px 0 0;
}

.faq-list { border-top: 1px solid var(--border-2); }

.faq-item { border-bottom: 1px solid var(--border-2); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  padding: 24px 4px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}

.faq-chevron {
  flex: none;
  color: #a5a5aa;
  transition: transform .25s ease;
  display: flex;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-panel {
  overflow: hidden;
  transition: max-height .3s ease, opacity .3s ease;
  max-height: 0;
  opacity: 0;
}
.faq-item.open .faq-panel {
  max-height: 320px;
  opacity: 1;
}

.faq-panel p {
  margin: 0;
  padding: 0 4px 26px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 720px;
}
