/* ============================================================
   Harvardbridge — service detail pages (additions only)
   Loaded AFTER style.css on the seven service pages.
   The main stylesheet (css/style.css) is unchanged.
   ============================================================ */

/* Back-link above the page title */
.crumb {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #9FB0CC;
  text-decoration: none;
  margin-bottom: 0.9rem;
}
.crumb:hover { color: var(--white); }

/* FAQ accordion (native details/summary — works with JS disabled) */
.faq-list { max-width: 46em; }
details.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  margin-bottom: 0.8rem;
  box-shadow: var(--shadow);
}
details.faq-item summary {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 1.8rem;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 700;
  color: var(--teal-dark);
}
details.faq-item[open] summary::after { content: "\2013"; }
details.faq-item p { margin-top: 0.7rem; }

/* Amber-stream pages use the amber accent on the FAQ marker */
.stream-amber details.faq-item summary::after { color: var(--amber-dark); }
.stream-amber .feature .num { color: var(--amber-dark); }

/* Small print under CTAs (compliance / clarification notes) */
.fine-note {
  font-size: 0.92rem;
  max-width: 46em;
  margin-top: 1rem;
}
