/* ============================================================
   NIGHT MACARON — FAQ Section
   ============================================================ */

.faq {
  background: var(--bg-2);
}

.faq-header {
  margin-bottom: 4rem;
}

/* ── FAQ list container ── */
.faq-list {
  max-width: 740px;
}

/* ── Single FAQ item ── */
.faq-item {
  border-bottom: 0.5px solid var(--border);
}

.faq-item:first-child {
  border-top: 0.5px solid var(--border);
}

/* ── Question button ── */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.8rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-align: left;
  transition: color var(--t-fast);
}

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

/* ── Toggle icon ── */
.faq-icon {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 200;
  color: var(--gold);
  opacity: 0.7;
  flex-shrink: 0;
  transition: transform var(--t-base), opacity var(--t-fast);
  display: inline-block;
  width: 1.2rem;
  text-align: center;
  line-height: 1;
}

/* When open: + becomes × via rotation */
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  opacity: 1;
}

/* ── Answer ── */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              padding 0.35s ease,
              opacity 0.3s ease;
  opacity: 0;
  padding: 0;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  opacity: 1;
  padding-bottom: 1.8rem;
}

.faq-answer p {
  font-family: var(--font-sans);
  font-size: 0.83rem;
  font-weight: 300;
  line-height: 2;
  color: var(--muted-light);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .faq-list {
    max-width: 100%;
  }

  .faq-question {
    font-size: 0.83rem;
    padding: 1.5rem 0;
  }
}
