/* FAQ accordion — About page. Rendered from window.__FAQS (single source that
   matches the FAQPage JSON-LD in the document head).
   Navy surface so the section reads as distinct from the off-white Leadership
   block above it; teal accents remap to mint-light on the dark ground. */
.faq {
  background: var(--ba-navy);
  color: #fff;
  padding: 80px 0;
  --ba-teal: var(--ba-mint-light);
}
@media (min-width: 960px) { .faq { padding: 120px 0; } }

.faq__head { margin: 0 0 48px; }
.faq .eyebrow-txt { color: var(--ba-mint-light); }
.faq__title {
  font-family: var(--font-serif); font-weight: 400; color: #fff;
  font-size: clamp(2rem, 4.6vw, 3.2rem); line-height: 1.08;
  letter-spacing: -0.01em; margin: 14px 0 18px;
}
.faq__title em { font-style: italic; color: var(--ba-mint-light); }
.faq__lead { font-size: 17px; line-height: 1.65; color: rgba(255,255,255,0.78); margin: 0; max-width: 56ch; }

.faq__groups { display: flex; flex-direction: column; gap: 48px; }
.faq__group-label {
  font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ba-mint-light); font-weight: 500;
  margin: 0 0 4px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}
.faq__list { display: flex; flex-direction: column; }

.faq-item { border-bottom: 1px solid rgba(255,255,255,0.12); }
.faq-item__q {
  list-style: none; cursor: pointer;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 22px;
  padding: 22px 4px;
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem); line-height: 1.35;
  color: #fff;
  transition: color 160ms ease;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q:hover { color: var(--ba-mint-light); }
.faq-item__chevron {
  flex: none; width: 22px; height: 22px; color: var(--ba-mint-light); margin-top: 3px;
  transition: transform 260ms ease;
}
.faq-item[open] .faq-item__chevron { transform: rotate(180deg); }

.faq-item__a { padding: 0 4px 4px 4px; }
.faq-item__a p {
  margin: 0 0 22px; font-family: var(--font-sans);
  font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.80); max-width: none;
}
.faq-item__a em { font-style: italic; color: var(--ba-mint-light); }
.faq-item__a a {
  color: #fff; text-decoration: underline;
  text-decoration-color: rgba(83,245,196,0.6); text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}
.faq-item__a a:hover { color: var(--ba-mint-light); text-decoration-color: var(--ba-mint-light); }
@media (prefers-reduced-motion: no-preference) {
  .faq-item[open] .faq-item__a { animation: faqOpen 300ms ease both; }
}
@keyframes faqOpen { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
