/* ════════════════════════════════════════════════════════════
   FAQ — accordion items
   Reuses the legal design system for the top of the page
   (hero, TOC pills, group chapters) and the site FAQ accordion
   (details / summary with the rotating "+") for the answers.

   Palette : or #B38A47 · rouge #CC2200 · bleu #1a4fa0
             panel #1A1A1A · body #C9C9C9
   ════════════════════════════════════════════════════════════ */

/* ─── HIGHLIGHT BAND (between hero and first section) ──────── */
.faq-highlight {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 56px;
  margin: 28px 0 4px;
  padding: 24px;
  border-top: 1px solid #1f1f1f;
  border-bottom: 1px solid #1f1f1f;
  text-align: center;
}
.faq-highlight > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.faq-highlight strong {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--sl-gold);
}
.faq-highlight span {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #9A9A9A;
}

/* Spacing between chapter sections (FAQ page only) */
.legal-group {
  margin-top: 7rem;
}

/* The accordion list inside each chapter group */
.faq-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.faq-item {
  background: #1A1A1A;
  border: 1px solid #1f1f1f;
  border-left: 3px solid #CC2200;
  border-radius: 4px;
  overflow: hidden;
  scroll-margin-top: 140px;
}

.faq-q {
  position: relative;
  list-style: none;
  cursor: pointer;
  font-family: 'Cinzel', serif;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: #F0F0F0;
  padding: 20px 52px 20px 22px;
  transition: color .2s;
}
.faq-q:hover { color: #B38A47; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: #B38A47;
  transition: transform .2s;
}
.faq-item[open] .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-item[open] {
  border-color: rgba(179,138,71,.4);
  box-shadow:
    0 0 0 1px rgba(179,138,71,.15),
    0 15px 40px rgba(0,0,0,.25);
}

.faq-a {
  padding: 0 22px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: #C9C9C9;
  opacity: 0;
  transform: translateY(-6px);
  transition: .3s;
}
.faq-item[open] .faq-a {
  opacity: 1;
  transform: none;
}

/* ─── FINAL CTA ───────────────────────────────────────────── */
.faq-cta {
  margin-top: 7rem;
  padding: 4rem;
  text-align: center;
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(179,138,71,.08),
    rgba(179,138,71,.03)
  );
  border: 1px solid rgba(179,138,71,.2);
}
.faq-cta h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--sl-gold);
  margin-bottom: 16px;
}
.faq-cta p {
  max-width: 520px;
  margin: 0 auto 32px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: #C9C9C9;
}
.faq-cta .btn {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #101010;
  background: var(--sl-gold);
  padding: 15px 40px;
  border-radius: 4px;
  border: 1px solid var(--sl-gold);
  transition: background .2s, color .2s;
}
.faq-cta .btn:hover {
  background: transparent;
  color: var(--sl-gold);
}

@media (max-width: 600px) {
  .faq-cta { padding: 2.5rem 1.5rem; }
}
