/* ===================================
   FAQ / QUESTIONS ANSWERED
   =================================== */

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--line-dim);
}

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

.faq-question {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  font-family: 'Cinzel', serif;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  background: none;
  border: none;
  letter-spacing: 0.015em;
  line-height: 1.3;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--gold-bright);
}

.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  position: relative;
  transition: transform 0.4s ease;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
}

.faq-toggle::after {
  transform: rotate(90deg);
  transition: transform 0.4s ease;
}

.faq-item.open .faq-toggle::after {
  transform: rotate(0deg);
}

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

.faq-answer-inner {
  padding: 0 0 32px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 700px;
  font-weight: 300;
}

.faq-answer-inner p + p {
  margin-top: 14px;
}

.faq-answer-inner a {
  color: var(--gold-bright);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
