.faq { background: var(--cream); }
.faq h2 { max-width: 600px; }

.faq-list { margin-top: 48px; max-width: 760px; }

.faq-item {
  border-bottom: 1px solid rgba(43,33,24,0.12);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 0;
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question span {
  font-size: 1.4rem;
  color: var(--gold-dark);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question span { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding-bottom: 22px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 640px;
}
