/* ── FAQ SECTION ────────────────────────────────────────── */

.faq-container {
  margin-bottom: 100px;
  border: 1px solid var(--border);
  background: var(--panel);
}

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

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s;
}

.faq-question:hover {
  background: rgba(255,255,255,0.02);
}

.faq-q-text {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}

.faq-icon {
  font-family: 'JetBrains Mono', monospace;
  font-size: 20px;
  color: var(--red);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s;
  line-height: 1;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25,0.46,0.45,0.94),
              padding 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  padding: 0 32px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 32px 28px 32px;
}

.faq-answer p {
  font-family: 'EB Garamond', serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}

/* Active question highlight */
.faq-item.open .faq-q-text {
  color: var(--red);
}

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