/* ========================================================================
   FAQ SECTION — objection handling, single-open accordion
   ======================================================================== */

.section-faq {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.faq-list {
  max-width: 860px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
}

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

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--ink);                 /* readable on dark before it highlights gold */
  letter-spacing: -0.005em;
  transition: color 0.25s ease;
}

.faq-question:hover,
.faq-item.is-open .faq-question {
  color: var(--gold);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--dark);
  transition: transform 0.35s var(--ease-out-quart), background 0.3s ease;
}

.faq-icon::before {
  width: 10px;
  height: 1.5px;
}

.faq-icon::after {
  width: 1.5px;
  height: 10px;
}

.faq-item.is-open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
}

.faq-item.is-open .faq-icon::before,
.faq-item.is-open .faq-icon::after {
  background: var(--dark);
}

.faq-item.is-open .faq-icon::after {
  transform: rotate(90deg) scaleY(0);
}

/* Smooth height animation via grid-rows trick — no JS height measuring needed */
.faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease-out-quart);
}

.faq-item.is-open .faq-answer-wrap {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer {
  padding: 0 2.5rem 1.75rem 0.25rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--gray-600);
  line-height: 1.75;
}

.faq-answer strong {
  color: var(--ink);
  font-weight: 600;
}

.faq-answer a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Bottom CTA nudge — still have a question? */
.faq-still {
  margin-top: 3rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--gray-600);
}

.faq-still a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

@media (max-width: 640px) {
  .faq-question {
    font-size: var(--text-base);
    gap: 1rem;
  }
  .faq-answer {
    padding-right: 1.5rem;
  }
}
