/* =============================
   faq
============================= */
.faq {
  padding: 100px 0;
  background: var(--color-bg);
}

.faq__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq__label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.faq__title {
  font-size: var(--fs-3xl);
  font-weight: 900;
  color: var(--color-text);
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
}

.faq__item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--color-text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}

.faq__question:hover {
  color: var(--gold);
}

.faq__question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq__item.is-open .faq__question::after {
  transform: rotate(45deg);
}

.faq__answer {
  display: none;
  padding: 0 0 24px;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: 2;
}

.faq__item.is-open .faq__answer {
  display: block;
}