/* faq.css — the FAQ accordion page, faithful to ManAhead FAQ.dc.html.
   Nav, buttons, .btn-cta-dark and the footer come from styles.css. */

.nav-links a.active { color: var(--accent); }

/* The FAQ column is narrower than the 1280px site grid. */
.faq-inner { max-width: 880px; margin: 0 auto; }

/* ============================= page header ============================= */
.faq-header { padding: 40px var(--pad-x) 40px; }
.faq-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 88px);
  line-height: .9;
  margin: 0;
  text-transform: uppercase;
}
.faq-title span { color: var(--accent); }

/* ============================= questions ============================= */
.faq-section { padding: 0 var(--pad-x) var(--section-y); }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-sm);
  transition: border-color .3s ease;
}
.faq-item:hover { border-color: rgba(200, 244, 74, .35); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 26px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--text);
}
.faq-icon { font-size: 22px; color: var(--accent); flex-shrink: 0; transition: transform .3s ease; }
.faq-item.open .faq-icon { transform: rotate(180deg); }

/* Collapsed by default; max-height (not display) so it can animate open. */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.16, 1, .3, 1);
}
.faq-item.open .faq-a { max-height: 600px; }
.faq-a p {
  margin: 0;
  padding: 0 26px 24px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-70);
}
.faq-a a { color: var(--accent); }

/* ============================= CTA ============================= */
.faq-cta { padding: 0 var(--pad-x) var(--section-y); }
.faq-cta-band {
  background: var(--accent);
  border-radius: var(--r);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: var(--ink);
  flex-wrap: wrap;
}
.faq-cta-band h2 {
  font-family: var(--font-display);
  font-size: 40px;
  text-transform: uppercase;
  margin: 0;
  line-height: .9;
}

/* ============================= responsive ============================= */
@media (max-width: 620px) {
  .faq-q { font-size: 20px; padding: 18px 20px; }
  .faq-a p { padding: 0 20px 20px; }
  .faq-cta-band { padding: 32px; flex-direction: column; align-items: flex-start; }
  .faq-cta-band h2 { font-size: 32px; }
  .btn-cta-dark { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .faq-a { transition: none; }
  .faq-icon { transition: none; }
}
