/* Dr. Kari Quinn — renderer-emitted overrides.
 * Regenerated by punch-wireframe on every run. Do not hand-edit.
 *
 * C1  — font remap. Display: Bricolage Grotesque (client-provided woff2s
 *       in fonts/, self-hosted, 2026-07-09). Body: Public Sans (Google
 *       Fonts, per Joe 2026-07-09). UI/labels: Public Sans. Still to be
 *       confirmed in the Figma fork — when punch-token-export runs,
 *       re-run punch-wireframe.
 * C4  — traditional top nav (.wf-topnav*), self-contained.
 * C8  — client-facing "Information needed" blocks.
 * C9  — CTA button tokens.
 * C11 — content-gaps panel.
 */

/* Bricolage Grotesque — client-provided header font, self-hosted */
@font-face { font-family: "Bricolage Grotesque"; font-style: normal; font-weight: 200; font-display: swap; src: url("fonts/bricolage-grotesque-v9-latin-200.woff2") format("woff2"); }
@font-face { font-family: "Bricolage Grotesque"; font-style: normal; font-weight: 300; font-display: swap; src: url("fonts/bricolage-grotesque-v9-latin-300.woff2") format("woff2"); }
@font-face { font-family: "Bricolage Grotesque"; font-style: normal; font-weight: 400; font-display: swap; src: url("fonts/bricolage-grotesque-v9-latin-regular.woff2") format("woff2"); }
@font-face { font-family: "Bricolage Grotesque"; font-style: normal; font-weight: 500; font-display: swap; src: url("fonts/bricolage-grotesque-v9-latin-500.woff2") format("woff2"); }
@font-face { font-family: "Bricolage Grotesque"; font-style: normal; font-weight: 600; font-display: swap; src: url("fonts/bricolage-grotesque-v9-latin-600.woff2") format("woff2"); }
@font-face { font-family: "Bricolage Grotesque"; font-style: normal; font-weight: 700; font-display: swap; src: url("fonts/bricolage-grotesque-v9-latin-700.woff2") format("woff2"); }
@font-face { font-family: "Bricolage Grotesque"; font-style: normal; font-weight: 800; font-display: swap; src: url("fonts/bricolage-grotesque-v9-latin-800.woff2") format("woff2"); }

:root {
  /* current locked system (2026-08-04): Source Sans 3 headers/UI · Lora body */
  --type-family-display: "Source Sans 3", "Source Sans Pro", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --type-family-body: "Lora", Georgia, serif;
  --type-family-mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --type-family-ui: var(--type-family-display);
  --type-family-button: var(--type-family-display);
  --wf-font-display: var(--type-family-display);
  --wf-font-body: var(--type-family-body);
  --wf-font-mono: var(--type-family-mono);
  --radius-sm: 6px;
  --space-4: 14px;
  --space-5: 22px;
  --wf-punch-red: #FF1449;
}

/* All non-header site copy in Public Sans (Joe, 2026-07-09) — overrides the
   wireframe's mono default for eyebrows, stat labels, numerals, and form
   micro-copy. Wireframe-stage chrome (splash meta, toolbox pills) stays mono. */
.wf-main .wf-eyebrow,
.wf-main .wf-stat-label,
.wf-main .wf-numlist__num,
.wf-main .wf-form__note,
.wf-main .wf-form__field label,
.wf-main cite,
.footer li, .footer p, .footer a,
.wf-social a span {
  font-family: var(--type-family-body) !important;
}
/* Footer column headers use the header font (Joe, 2026-07-10) */
.footer__heading {
  font-family: var(--type-family-display) !important;
}

/* ---- C4 · Traditional top nav ---- */
.wf-topnav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--wf-bg);
  border-bottom: 1px solid var(--wf-hairline);
}
.wf-topnav__inner {
  max-width: var(--wf-container);
  margin: 0 auto;
  padding: 10px var(--wf-gutter);
  min-height: 64px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px var(--wf-s6);
}
.wf-topnav__brand { display: inline-flex; }
.wf-topnav__brand img { height: var(--wf-nav-logo-h); width: auto; filter: none; }
.wf-topnav .wf-logo--reverse { display: none; }
[data-theme="dark"] .wf-topnav .wf-logo--full { display: none; }
[data-theme="dark"] .wf-topnav .wf-logo--reverse { display: block; }
.wf-topnav__menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px var(--wf-s5);
  margin: 0 auto;
}
.wf-topnav__menu > a,
.wf-topnav__toggle {
  font-family: var(--wf-font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--wf-text-body);
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px 2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.wf-topnav__menu > a:hover,
.wf-topnav__toggle:hover { color: var(--wf-text); opacity: 1; }
.wf-topnav__item { position: relative; }
.wf-topnav__caret {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 180ms ease;
}
.wf-topnav__item.is-open .wf-topnav__caret { transform: rotate(180deg); }
.wf-topnav__drop {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 300px;
  background: var(--wf-bg-elev);
  border: 1px solid var(--wf-hairline);
  border-radius: 10px;
  padding: 8px;
  display: grid;
  box-shadow: 0 18px 44px rgba(var(--wf-ink-rgb), 0.16);
  z-index: 110;
}
.wf-topnav__drop[hidden] { display: none; }
.wf-topnav__drop a {
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--wf-text-body);
  white-space: nowrap;
}
.wf-topnav__drop a:hover { background: rgba(var(--wf-ink-rgb), 0.07); opacity: 1; color: var(--wf-text); }
.wf-topnav__drop a:first-child {
  font-weight: 600;
  color: var(--wf-text);
  border-bottom: 1px solid var(--wf-hairline);
  border-radius: 6px 6px 0 0;
  margin-bottom: 4px;
}
@media (max-width: 720px) {
  .wf-topnav__drop { left: 0; transform: none; }
}

/* ---- C9 · Buttons ---- */
.wf-cta,
.wf-topnav__cta,
.footer__brand-cta {
  font-family: var(--type-family-button);
  border-radius: var(--radius-sm);
  padding: var(--space-4) var(--space-5);
}
.wf-topnav__social {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.wf-topnav__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--wf-hairline);
  border-radius: 50%;
  color: var(--wf-text-body);
}
.wf-topnav__social a:hover {
  opacity: 1;
  color: var(--wf-text);
  border-color: var(--wf-hairline-strong);
  background: rgba(var(--wf-ink-rgb), 0.06);
}
.wf-topnav__social a { position: relative; }
.wf-topnav__social-tag {
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--wf-text);
  color: var(--wf-bg);
  font-family: var(--wf-font-mono);
  font-size: 8px;
  font-weight: 700;
  line-height: 14px;
  text-align: center;
}
@media (max-width: 480px) {
  .wf-topnav__social { display: none; }
}

.wf-topnav__cta {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  background: var(--wf-punch-red);
  border: 1px solid var(--wf-punch-red);
  color: #FFFFFF;
}
.wf-topnav__cta:hover { opacity: 0.85; }
.wf-cta-primary,
.wf-cta.wf-cta-primary {
  background: var(--wf-punch-red);
  border-color: var(--wf-punch-red);
  color: #FFFFFF;
}
.wf-cta.wf-cta-primary:hover { background: var(--wf-punch-red); color: #FFFFFF; opacity: 0.85; }

/* ---- C8 · Information needed blocks ---- */
.wf-missing-source {
  max-width: var(--wf-container);
  margin: 0 auto;
  padding: var(--wf-s7) var(--wf-gutter);
  border-left: 4px solid var(--wf-punch-red);
  background: rgba(255, 20, 73, 0.06);
  border-bottom: 1px solid var(--wf-hairline);
}
.wf-missing-source__chip {
  display: inline-block;
  font-family: var(--wf-font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--wf-punch-red);
  color: #FFFFFF;
  padding: 5px 10px;
  border-radius: 4px;
  margin-bottom: var(--wf-s4);
}
.wf-missing-source__title {
  font-family: var(--wf-font-display);
  font-size: 20px !important;
  text-transform: none !important;
  line-height: 1.35;
  color: var(--wf-text);
  margin: 0 0 var(--wf-s3) !important;
  max-width: 44ch !important;
}
.wf-missing-source__need,
.wf-missing-source__note {
  font-family: var(--wf-font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--wf-text-body);
  margin: 0 0 var(--wf-s2);
  max-width: 64ch;
}
.wf-missing-source__note { color: var(--wf-text-dim); }

/* Planned (briefless) pages */
.wf-planned-page {
  min-height: 40vh;
  display: flex;
  align-items: center;
}
.wf-planned-page p { font-size: 18px; color: var(--wf-text-dim); }

/* ---- C11 · Content-gaps panel ---- */
.wf-gaps-panel {
  position: fixed;
  left: 18px;
  bottom: 72px;
  z-index: 120;
  width: min(440px, calc(100vw - 36px));
  max-height: 60vh;
  overflow-y: auto;
  background: var(--wf-bg-elev);
  border: 1px solid var(--wf-hairline-strong);
  border-radius: 12px;
  padding: var(--wf-s5);
  box-shadow: 0 24px 60px rgba(var(--wf-ink-rgb), 0.25);
}
.wf-gaps-panel[hidden] { display: none; }
.wf-gaps-panel__title {
  font-family: var(--wf-font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wf-text);
  margin: 0 0 var(--wf-s3);
}
.wf-gaps-panel ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.wf-gaps-panel a {
  display: block;
  padding: 10px 12px;
  border: 1px solid var(--wf-hairline);
  border-left: 3px solid var(--wf-punch-red);
  border-radius: 8px;
  font-family: var(--wf-font-body);
  font-size: 13px;
  line-height: 1.45;
  color: var(--wf-text-body);
  background: var(--wf-bg);
}
.wf-gaps-panel a:hover { opacity: 1; border-color: var(--wf-hairline-strong); }
.wf-gaps-panel a strong { color: var(--wf-text); font-weight: 600; }

/* ---- FAQ: all-open variant (wireframe-config: faq_pattern all-open) ---- */
.wf-faq-allopen { display: grid; }
.wf-faq-allopen .wf-accordion__item .wf-accordion__icon { display: none; }
.wf-faq-allopen .wf-accordion__summary { cursor: default; pointer-events: none; }

/* ---- Service sections: bullet groups ---- */
.wf-svc-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wf-s6);
  margin: var(--wf-s6) 0;
}
@media (min-width: 720px) {
  .wf-svc-groups--2 { grid-template-columns: 1fr 1fr; }
}
.wf-svc-group h3 { margin: 0 0 var(--wf-s3); }
.wf-svc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
@media (min-width: 560px) {
  .wf-svc-list--cols { grid-template-columns: 1fr 1fr; column-gap: var(--wf-s6); }
}
.wf-svc-list li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--wf-text-body);
}
.wf-svc-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(var(--wf-ink-rgb), 0.45);
}

/* ---- Static forms (HubSpot embeds at launch) ---- */
.wf-form {
  display: grid;
  gap: var(--wf-s4);
  max-width: 640px;
  margin-top: var(--wf-s6);
}
.wf-form__row {
  display: grid;
  gap: var(--wf-s4);
  grid-template-columns: 1fr;
}
@media (min-width: 560px) {
  .wf-form__row--2 { grid-template-columns: 1fr 1fr; }
}
.wf-form__field { display: grid; gap: 6px; }
.wf-form__field label {
  font-family: var(--wf-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wf-text-dim);
}
.wf-form__field input,
.wf-form__field select,
.wf-form__field textarea {
  font-family: var(--wf-font-body);
  font-size: 15px;
  color: var(--wf-text);
  background: var(--wf-bg-elev);
  border: 1px solid var(--wf-hairline-strong);
  border-radius: 8px;
  padding: 12px 14px;
  width: 100%;
}
.wf-form__field textarea { min-height: 120px; resize: vertical; }
.wf-form__field input:focus,
.wf-form__field select:focus,
.wf-form__field textarea:focus {
  outline: 2px solid var(--wf-text);
  outline-offset: 1px;
}
.wf-form .wf-cta { justify-self: start; border: 0; cursor: pointer; font-size: 15px; }
.wf-form__note {
  font-family: var(--wf-font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wf-text-muted);
  margin: 0;
}

/* ---- Social link pills ---- */
.wf-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--wf-s5);
  padding: 0;
  list-style: none;
}
.wf-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--wf-hairline-strong);
  border-radius: 999px;
  font-family: var(--wf-font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--wf-text-body);
  white-space: nowrap;
}
.wf-social a:hover { opacity: 1; background: rgba(var(--wf-ink-rgb), 0.06); color: var(--wf-text); }
.wf-social a span {
  font-family: var(--wf-font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wf-text-dim);
}

/* Footer logo theme swap */
.footer .wf-logo--reverse { display: none; }
[data-theme="dark"] .footer .wf-logo--full { display: none; }
[data-theme="dark"] .footer .wf-logo--reverse { display: block; }

/* Splash logo swap (C6) */
.wf-opening__brand .wf-logo--full { display: block; }
