/* ============================================================
   SECTION — FAQ (Commonly asked questions)
   ============================================================
   Devolfs-style accordion: question + toggle, answer expands.
   ============================================================ */

.section-faq {
  background: #ffffff;
  width: 100%;
  margin: 0 auto;
  padding-top: 90px;
  padding-bottom: 120px;
}

/* ── HEADING — centered ── */
.faq__heading {
  margin: 0 0 70px 0;
  font-weight: var(--fw-regular);
  display: block;
  text-align: center;
}

.faq__heading .h2-mont {
  font-family: var(--font-mont);
  font-size: var(--fs-h2-mont);
  font-weight: 400;
  line-height: var(--lh-h2-mont);
  letter-spacing: -0.07em;
  color: #111111;
}

.faq__heading .h2-dutch {
  font-family: var(--font-dutch);
  font-size: var(--fs-h2-dutch);
  font-weight: 400;
  font-style: italic;
  line-height: var(--lh-h2-mont);
  letter-spacing: var(--ls-default);
  color: #111111;
}

/* ── ACCORDION LIST ── */
.faq__list {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ── SINGLE ITEM ── */
.faq__item {
  border-bottom: 1px solid #d0d0d0;
  overflow: hidden;
}

/* Remove top border on very first item */
.faq__list .faq__item:first-child {
  border-top: none;
}

/* ── QUESTION ROW ── */
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 28px 0;
  cursor: pointer;
  user-select: none;
}

.faq__question-text {
  font-family: var(--font-mont);
  font-size: calc(var(--fs-p) * 0.95);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-default);
  color: #111111;
  line-height: 1.4;
  flex: 1;
}

/* Toggle — plain + that rotates 45deg on open */
.faq__toggle {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mont);
  font-size: 20px;
  font-weight: 300;
  color: #111111;
  line-height: 1;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

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

/* ── ANSWER ── */
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq__item.is-open .faq__answer {
  max-height: 400px;
}

.faq__answer-inner {
  padding-bottom: 28px;
  font-family: var(--font-mont);
  font-size: calc(var(--fs-p) * 0.95 * 0.95);
  font-weight: var(--fw-regular);
  line-height: var(--lh-p);
  letter-spacing: var(--ls-default);
  color: #555555;
  opacity: 0.75;
  max-width: 80%;
}

/* ── ANIMATIONS ── */
.section-faq.will-animate .faq__heading,
.section-faq.will-animate .faq__list {
  opacity: 0;
  transition: opacity 1s ease-out;
}

.faq__list {
  transition-delay: 0.12s;
}

.section-faq.anim-visible .faq__heading,
.section-faq.anim-visible .faq__list {
  opacity: 1;
}

/* ── FAQ QUESTIONS FADE UP ── */
.section-faq.will-animate .faq__item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.6s ease-out, transform 1.6s ease-out;
}

.section-faq.anim-visible .faq__item:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.section-faq.anim-visible .faq__item:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.section-faq.anim-visible .faq__item:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.section-faq.anim-visible .faq__item:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.section-faq.anim-visible .faq__item:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }
