/* === Apollo Arboreal — FAQ === */
/* Slim, page-specific styles that overlay theme.css. Mirrors the spacing
   and typography of services.css / blog.css so the page feels native. */

/* === Page === */
.faq-page {
  background: var(--bg);
  min-height: 100vh;
}

/* === Hero === */
.faq-hero {
  padding: 8rem 2rem 4.5rem;
  background: var(--forest-dark);
  color: var(--cream);
}

.faq-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq-kicker {
  font-family: 'Bitter', serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 1rem;
}

.faq-hero h1 {
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.faq-tagline {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(250, 247, 242, 0.78);
  max-width: 640px;
}

/* === Question list === */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--cream);
  border: 1px solid rgba(26, 61, 46, 0.12);
  border-radius: 6px;
  transition: border-color 0.2s, transform 0.2s;
}

.faq-item:hover {
  border-color: var(--earth);
  transform: translateY(-2px);
}

.faq-item[open] {
  border-color: var(--forest);
}

.faq-question {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 1.75rem;
  font-family: 'Bitter', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--forest-dark);
  line-height: 1.35;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

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

.faq-chevron {
  font-family: 'Bitter', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--earth);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s;
}

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

.faq-answer {
  padding: 0 1.75rem 1.5rem;
  border-top: 1px solid rgba(26, 61, 46, 0.08);
}

.faq-answer p {
  font-family: 'Figtree', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-learn-more {
  margin-top: 1rem !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
  color: var(--muted) !important;
  font-style: italic;
}

.faq-learn-more a {
  color: var(--forest);
  text-decoration: underline;
  text-decoration-color: var(--earth);
  text-underline-offset: 3px;
  font-weight: 500;
  font-style: normal;
  transition: color 0.2s;
}

.faq-learn-more a:hover {
  color: var(--earth);
}

/* === CTA band === */
.faq-cta-band {
  background: var(--forest);
  color: var(--cream);
}

.faq-cta-band .closing-statement {
  color: var(--cream);
}

.faq-cta-band .closing-phone {
  color: rgba(250, 247, 242, 0.7);
}

.faq-cta-band .closing-phone strong {
  color: var(--cream);
}

/* === Responsive === */
@media (max-width: 768px) {
  .faq-hero {
    padding: 7rem 1.5rem 3.5rem;
  }

  .faq-list {
    padding: 3rem 1.5rem 4rem;
  }

  .faq-question {
    padding: 1.25rem 1.25rem;
    font-size: 1.05rem;
  }

  .faq-answer {
    padding: 0 1.25rem 1.25rem;
  }
}
