/* v2-editorial.css — v2 facelift layer. Placeholder created by MAIN agent 2026-06-09;
   filled by AGENT-EDITORIAL 2026-06-09. Enqueued site-wide after pages.css.

   Design note: page-critical v2 styles (About pull-quote + hairline list,
   FAQ editorial header + accordion animation, assessment bridge) live in
   their templates' own <style> blocks — the established pattern in this
   theme — so those pages render correctly regardless of stylesheet order.
   This file carries the shared/enhancement layer only. Everything below is
   namespaced (.v2-* or page-template body classes); nothing here can leak
   into other agents' pages. */

/* --------------------------------------------------------------------------
   Gold text on light surfaces — AA-safe token pattern.
   MAIN defines --gold-text in variables.css. All gold-on-light labels in
   editorial templates were swapped at source to var(--gold-text, #8A6320).
   This utility is for any future editorial markup. NEVER use raw --gold /
   --gold-deep for text on cream/white.
   -------------------------------------------------------------------------- */
.v2-gold-text { color: var(--gold-text, #8A6320); }

/* --------------------------------------------------------------------------
   Reusable editorial primitives (mirror the About-page treatments, for any
   future editorial page that wants the same moves without inline CSS).
   -------------------------------------------------------------------------- */

/* Massive italic-serif pull-quote moment — typographic only, no signature. */
.v2-pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.9rem, 4.4vw, 3.2rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--navy);
  text-align: center;
  max-width: 1000px;
  margin: clamp(4.5rem, 11vh, 7.5rem) auto 0;
  padding: 0;
  border: 0;
  background: none;
  text-wrap: balance;
}
.v2-pullquote::before {
  content: '';
  display: block;
  width: 64px;
  height: 1px;
  background: var(--gold-deep);
  margin: 0 auto 2.6rem;
}
.v2-pullquote .v2-pq-attr {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-top: 2.6rem;
}

/* Editorial hairline list — slate 1px rules, ma, no boxes. */
.v2-hairline-list { display: grid; grid-template-columns: 1fr; gap: 0; max-width: 880px; }
.v2-hairline-list > * {
  display: grid;
  grid-template-columns: 88px 1fr;
  column-gap: 2.4rem;
  padding: 2.8rem 0;
  border-top: 1px solid var(--slate);
  border-radius: 0;
  background: none;
}
.v2-hairline-list > *:last-child { border-bottom: 1px solid var(--slate); }
@media (max-width: 920px) {
  .v2-hairline-list > * { grid-template-columns: 56px 1fr; column-gap: 1.4rem; padding: 2.2rem 0; }
}

/* Short gold hairline rule under an editorial display header. */
.v2-hero-rule { width: 72px; height: 1px; background: var(--gold-deep); border: 0; margin: 2rem 0 0; }

/* --------------------------------------------------------------------------
   FAQ page — enhancement extras (core accordion CSS/JS lives in
   page-faq.php; ARIA wiring is applied by its inline script).
   -------------------------------------------------------------------------- */

/* Print: expand every answer so the page is useful on paper / save-as-PDF. */
@media print {
  .page-template-page-faq .faq-a,
  .page-template-page-faq .faq-enhanced .faq-a { display: block; grid-template-rows: none; padding: 0 1.5rem 1.4rem; }
  .page-template-page-faq .faq-enhanced .faq-a-inner { visibility: visible; overflow: visible; }
}

/* No-JS: answers readable rather than locked shut (MAIN swaps html.no-js). */
html.no-js .page-template-page-faq .faq-a { display: block; }
