/* ============================================================
   FAQ.CSS — Frequently Asked Questions Section
   ============================================================
   PURPOSE:
     Styles the FAQ accordion (native <details>/<summary>, no JS
     required). Supports FAQPage schema markup in index.html.

   SAFE TO EDIT:
     - Card padding, spacing, colors
     - Chevron rotation / transition timing

   DO NOT MODIFY:
     - <details>/<summary> structure — required for the FAQPage
       JSON-LD to map cleanly onto visible question/answer pairs.
============================================================ */

#faq {
  background: var(--paper);
}

.faq-list {
  max-width: 780px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  margin-bottom: 0.85rem;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.4rem;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item[open] summary {
  border-bottom: 1px solid var(--line);
}

.faq-item p {
  padding: 1.1rem 1.4rem;
  font-size: 0.92rem;
  color: var(--stone);
  line-height: 1.7;
}
