/* =========================================================
   CHAI & HER — FAQ page additions
   Loaded on faq.html only, after styles.css (uses the same
   brand variables defined there: --plum, --brass, --terracotta,
   --ivory, --ivory-deep, --espresso, --espresso-soft, --muted, --border)
   ========================================================= */

/* ---------- FAQ accordion ---------- */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-bottom: 16px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--plum);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.4rem;
  color: var(--brass);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item .faq-answer {
  padding: 0 28px 26px;
  color: var(--espresso-soft);
}
.faq-item .faq-answer p { margin-bottom: 16px; }
.faq-item .faq-answer p:last-child { margin-bottom: 0; }

/* ---------- Decision map figure ("Which path is right for you?") ----------
   Compact, arrow-led flow: one tinted panel, question > arrow-led branch
   lines, ending in a CTA. */
.decision-map {
  max-width: 620px;
  margin: 32px auto 0;
  background: linear-gradient(160deg, rgba(91,42,68,0.09) 0%, rgba(193,122,84,0.09) 100%);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 26px 28px;
}
.dm-start {
  text-align: center;
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--plum);
  font-size: 0.98rem;
  margin-bottom: 16px;
}
.dm-step { padding: 12px 0; }
.dm-step + .dm-step { border-top: 1px dashed var(--border); }
.dm-q {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  color: var(--espresso);
  font-size: 0.95rem;
  margin-bottom: 9px;
}
.dm-line {
  display: flex;
  align-items: baseline;
  gap: 7px;
  font-size: 0.82rem;
  color: var(--espresso-soft);
  margin-bottom: 5px;
  line-height: 1.5;
}
.dm-line:last-child { margin-bottom: 0; }
.dm-line strong { color: var(--plum); font-weight: 700; }
.dm-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1;
  margin-top: 1px;
}
.dm-line.continue { color: var(--muted); font-style: italic; }
.dm-line.continue .dm-arrow { background: var(--brass); }
.dm-tag { font-weight: 700; color: var(--espresso); }

.dm-final {
  margin-top: 18px;
  background: rgba(91,42,68,0.06);
  border-top: 3px solid var(--brass);
  border-radius: 6px;
  padding: 22px 22px;
  text-align: center;
}
.dm-final .dm-eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--brass);
  display: block;
  margin-bottom: 8px;
}
.dm-final h4 {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--plum);
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.dm-final p {
  color: var(--espresso-soft);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

@media (max-width: 780px) {
  .faq-item summary { padding: 18px 20px; font-size: 1.02rem; }
  .faq-item .faq-answer { padding: 0 20px 22px; }
  .decision-map { padding: 20px 18px; }
}
