/* =========================================================================
   FAQ PAGE — page-specific styles (loads only on page-faq.php)
   --------------------------------------------------------------------
   Includes the .faq-item / .faq-list / .faq-mark styles too, even
   though they're also in home.css (for the FAQ teaser). The two
   files never load on the same page so there's no conflict; the
   alternative would be hoisting them into site.css, but that would
   bloat every page with FAQ-specific rules.
   ========================================================================= */

/* FAQ ITEMS — same styling as the homepage teaser */
.faq {
  padding: 110px 0 110px;
  background: var(--parchment-tint);
}
.faq-wrap { max-width: 880px; margin: 0 auto; }
.faq-head { text-align: center; margin-bottom: 60px; }
.faq-head h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(32px, 3.6vw, 48px);
  color: var(--lon-blue);
  letter-spacing: -.01em;
  margin-top: 8px;
}
.faq-head h2 em { font-style: italic; font-weight: 700; }

.faq-list { border-top: 1px solid rgba(46,74,92,.2); }
.faq-item {
  border-bottom: 1px solid rgba(46,74,92,.2);
  padding: 0;
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 4px;
  cursor: pointer;
  font-family: var(--f-display);
  font-size: 21px;
  font-weight: 500;
  color: var(--lon-blue);
  list-style: none;
  gap: 20px;
  text-wrap: balance;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .faq-mark {
  font-family: var(--f-stamp);
  font-size: 12px;
  color: var(--oxide-rust);
  letter-spacing: .2em;
  flex: none;
  transition: transform .3s ease;
}
.faq-item[open] .faq-mark { transform: rotate(45deg); }
.faq-item .faq-ans {
  padding: 0 4px 26px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--basalt-ink);
  opacity: .85;
  max-width: 720px;
  text-wrap: pretty;
}
.faq-item .faq-ans strong { color: var(--oxide-rust); font-weight: 600; }
.faq-more {
  text-align: center;
  margin-top: 44px;
  font-family: var(--f-stamp);
  font-size: 12px;
  letter-spacing: .22em;
}
.faq-more a { color: var(--oxide-rust); text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 2px; }


/* CATEGORY NAV + SECTIONS */
.faq-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 50px;
  font-family: var(--f-stamp);
  font-size: 11px;
  letter-spacing: .18em;
}
.faq-cats a {
  color: var(--basalt-ink);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid rgba(46,74,92,.25);
  border-radius: 2px;
  transition: all .2s ease;
}
.faq-cats a:hover, .faq-cats a.active {
  background: var(--lon-blue);
  color: var(--parchment);
  border-color: var(--lon-blue);
}

.faq-section {
  margin-bottom: 60px;
}
.faq-section .cat-head {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--lon-blue);
  margin-bottom: 6px;
  letter-spacing: -.01em;
  /* No flex/gap — that fragments the inline text and inserts 14px between
     <em>-wrapped phrase and the rest of the heading. Keep as block. */
}
.faq-section .cat-head em { font-style: italic; font-weight: 700; }
.faq-section .cat-num {
  font-family: var(--f-stamp);
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--oxide-rust);
}

/* FAQ FOOTER CTA — small block at the bottom of the FAQ list */
.faq-footer-cta {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(46, 74, 92, 0.15);
  text-align: center;
}
.faq-footer-cta p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 17px;
  color: var(--basalt-ink);
  margin-bottom: 22px;
  line-height: 1.6;
}

/* MOBILE — faq-specific */
@media (max-width: 960px) {
  .faq-cats { flex-wrap: wrap; gap: 8px; }
  .faq-cats a { font-size: 11px; padding: 8px 12px; }
}
