.faq-section {
  padding: 10rem 2rem;
  position: relative;
}

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

.faq-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--frost);
  text-align: center;
  margin-bottom: 3.5rem;
}

.faq-heading em {
  font-style: italic;
  color: var(--gold);
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--edge);
  border-radius: 4px;
  margin-bottom: .75rem;
  overflow: hidden;
  transition: border-color .3s;
}

.faq-item.open {
  border-color: rgba(232, 97, 26, .4);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 1.75rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--frost-dim);
  transition: color .3s;
}

.faq-item.open .faq-question {
  color: var(--gold);
}

.faq-chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--frost-faint);
  transition: transform .4s cubic-bezier(.16, 1, .3, 1), color .3s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.16, 1, .3, 1), padding .3s;
  padding: 0 1.75rem;
}

.faq-item.open .faq-answer {
  max-height: 600px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--frost-faint);
}