/* ── FAQ body ── */
.faq-body {
  background: var(--cream);
  padding: 0 var(--pad-x-wide) var(--pad-v);
}

/* ── Group ── */
.faq-group {
  margin-top: 56px;
}
.faq-group:first-child {
  margin-top: 0;
  padding-top: 72px;
}
.faq-group-label {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 40px;
}

/* ── Accordion item ── */
.faq-item {
  border-top: 1px solid rgba(var(--forest-ui-rgb), 0.12);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  cursor: pointer;
  text-align: left;
}
.faq-question-text {
  font-family: "Jost", sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--forest);
  line-height: 1.4;
  transition: color 0.2s ease;
}
.faq-question:hover .faq-question-text {
  color: var(--amber);
}
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--forest);
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}
.faq-icon::before {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.faq-icon::after {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.faq-item.open .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 0 32px;
  font-family: "Jost", sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--stone);
  max-width: 640px;
}
.faq-answer-inner a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-answer-inner a:hover {
  color: var(--amber);
}

/* ── Still have questions interstitial ── */
.faq-interstitial {
  background: var(--forest);
  padding: var(--pad-v-sm) var(--pad-x-wide);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
.faq-interstitial p {
  font-family: "Crimson Text", serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.2;
}
