/* =============================================
   FAQ
============================================= */
.faq { background: var(--black); }

.faq-header {
  max-width: 600px;
  margin-bottom: 4rem;
}

.faq-list { max-width: 860px; }

.faq-item { border-bottom: 1px solid #1a1a1a; }
.faq-item:first-child { border-top: 1px solid #1a1a1a; }

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.75rem 0;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s;
}

.faq-question {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.8vw, 2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  transition: color 0.3s;
}

.faq-icon {
  flex-shrink: 0;
  width: 1.6rem; height: 1.6rem;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.35s, background 0.35s, transform 0.4s var(--ease);
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 2px;
  transition: opacity 0.3s, transform 0.35s var(--ease);
}
.faq-icon::before { width: 10px; height: 1px; }
.faq-icon::after  { width: 1px; height: 10px; }

.faq-item.open .faq-question { color: var(--gold); }
.faq-item.open .faq-icon {
  border-color: var(--gold);
  background: rgba(201,169,110,0.08);
  transform: rotate(45deg);
}

.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s var(--ease);
}

.faq-answer {
  padding-bottom: 1.75rem;
  font-size: 1.05rem;
  font-weight: 300;
  color: #CCCCCC;
  line-height: 1.9;
}
.faq-answer ul {
  margin-top: 0.75rem;
  padding-left: 1.25rem;
  list-style: none;
}
.faq-answer ul li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.3rem;
  font-size: 1.05rem;
  color: #CCCCCC;
}
.faq-answer ul li::before {
  content: '—';
  position: absolute;
  left: -0.25rem;
  color: var(--gold);
  font-size: 0.8rem;
}
