/*
 * Hearts to Homes Blueprint Library — Master Design System
 * =========================================================
 * Version:  1.0  (Sprint A-7)
 * Applies:  All Blueprint HTML files in /blueprints/
 *
 * USAGE
 * ─────
 * Link this file from every Blueprint HTML:
 *   <link rel="stylesheet" href="blueprint-master.css" />
 *
 * Override the Blueprint accent color per-document by adding
 * a <style> block after the link tag:
 *   :root { --bp-accent: #C9A84C; }  (gold accent for Supporting Blueprints)
 *
 * COMPONENTS (all prefixed .bp-)
 * ────────────────────────────────
 *  Layout        : bp-page, bp-cover, bp-toc, bp-chapter, bp-section
 *  Typography    : bp-h1 through bp-h4, bp-lead, bp-body, bp-label, bp-caption
 *  Callouts      : bp-callout, bp-callout.gold, bp-experience, bp-michigan, bp-pro-tip
 *  Lists         : bp-checklist, bp-action-list, bp-action
 *  Tables        : bp-table-wrap, bp-table
 *  Narrative     : bp-story-box
 *  Journey       : bp-continue-grid, bp-continue-card
 *  CTA           : bp-cta-block
 *  Structure     : bp-divider, bp-ornament, bp-page-break, bp-avoid-break
 *  Footer        : bp-doc-footer (appears at bottom of each chapter)
 */

/* ── DESIGN TOKENS ──────────────────────────────────────────────── */
:root {
  --bp-rose:        #C4788A;
  --bp-rose-dark:   #7A2A3A;
  --bp-gold:        #C9A84C;
  --bp-gold-light:  #E8D08A;
  --bp-cream:       #FCF9F4;
  --bp-warm-bg:     #FBF6EE;
  --bp-panel:       #FFFFFF;
  --bp-charcoal:    #2A1F1A;
  --bp-body:        #3D2E28;
  --bp-muted:       #8A7870;
  --bp-border:      rgba(196,120,138,0.22);
  --bp-border-gold: rgba(201,168,76,0.30);

  /* Accent: override per-Blueprint for signature color */
  --bp-accent:      var(--bp-rose);
  --bp-accent-dark: var(--bp-rose-dark);

  /* Typography */
  --bp-font-serif:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --bp-font-display:'Playfair Display', Georgia, 'Times New Roman', serif;
  --bp-font-sans:   'Jost', 'Helvetica Neue', Arial, sans-serif;
  --bp-font-body:   Georgia, 'Times New Roman', serif;

  /* Spacing */
  --bp-space-xs:    6px;
  --bp-space-sm:    12px;
  --bp-space-md:    20px;
  --bp-space-lg:    36px;
  --bp-space-xl:    56px;
}

/* ── PRINT PAGE SETUP ────────────────────────────────────────────── */
@page {
  size: letter portrait;
  margin: 0.70in 0.90in 0.85in 0.90in;
}

/* ── SCREEN — DOCUMENT VIEWER ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--bp-font-body);
  font-size: 11pt;
  line-height: 1.75;
  color: var(--bp-body);
  background: #E8E4E0;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

/* On screen: render as document pages with shadow */
.bp-page {
  background: var(--bp-panel);
  max-width: 8.5in;
  margin: 0 auto;
  padding: 0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.14);
}

@media print {
  body { background: none; }
  .bp-page { box-shadow: none; max-width: none; }
}

/* ── PAGE BREAK UTILITIES ────────────────────────────────────────── */
.bp-page-break {
  break-before: page;
  page-break-before: always;
}
.bp-avoid-break {
  break-inside: avoid;
  page-break-inside: avoid;
}
.bp-no-break-after {
  break-after: avoid;
  page-break-after: avoid;
}

/* ── COVER PAGE ──────────────────────────────────────────────────── */
.bp-cover {
  min-height: 11in;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, #2A1F1A 0%, #3D2016 45%, #4A2A20 100%);
  color: var(--bp-cream);
  position: relative;
  overflow: hidden;
  padding: 0;
}
.bp-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(196,120,138,0.18) 0%, transparent 65%),
              radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.12) 0%, transparent 55%);
  pointer-events: none;
}
.bp-cover-header {
  padding: 0.55in 0.90in 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.bp-cover-brand {
  font-family: var(--bp-font-sans);
  font-size: 9pt;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bp-rose);
  opacity: 0.9;
}
.bp-cover-library-label {
  font-family: var(--bp-font-sans);
  font-size: 8pt;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(252,249,244,0.50);
}
.bp-cover-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5in 0.90in 0.4in;
  position: relative;
}
.bp-cover-rule {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--bp-rose) 0%, var(--bp-gold) 100%);
  margin-bottom: 28px;
}
.bp-cover-kicker {
  font-family: var(--bp-font-sans);
  font-size: 9pt;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--bp-accent);
  margin-bottom: 18px;
  display: block;
}
.bp-cover-title {
  font-family: var(--bp-font-serif);
  font-size: 52pt;
  font-weight: 300;
  line-height: 1.08;
  color: var(--bp-cream);
  margin-bottom: 22px;
  letter-spacing: -1px;
}
.bp-cover-title em {
  font-style: italic;
  color: var(--bp-gold-light);
}
.bp-cover-subtitle {
  font-family: var(--bp-font-serif);
  font-size: 14pt;
  font-weight: 400;
  font-style: italic;
  color: rgba(252,249,244,0.75);
  line-height: 1.5;
  max-width: 5.5in;
  margin-bottom: 40px;
}
.bp-cover-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}
.bp-cover-topic-chip {
  font-family: var(--bp-font-sans);
  font-size: 8pt;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(252,249,244,0.70);
  background: rgba(196,120,138,0.15);
  border: 1px solid rgba(196,120,138,0.28);
  padding: 5px 12px;
}
.bp-cover-footer {
  padding: 0.35in 0.90in 0.55in;
  border-top: 1px solid rgba(196,120,138,0.22);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 20px;
  position: relative;
}
.bp-cover-author {
  font-family: var(--bp-font-sans);
  font-size: 9pt;
  color: rgba(252,249,244,0.65);
  line-height: 1.7;
}
.bp-cover-author strong {
  display: block;
  color: var(--bp-cream);
  font-size: 11pt;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.bp-cover-free-badge {
  font-family: var(--bp-font-sans);
  font-size: 8pt;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(252,249,244,0.50);
  text-align: right;
}

/* ── TABLE OF CONTENTS ───────────────────────────────────────────── */
.bp-toc {
  padding: 0.80in 0.90in;
  min-height: 8in;
}
.bp-toc-header {
  margin-bottom: 36px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--bp-border);
}
.bp-toc-label {
  font-family: var(--bp-font-sans);
  font-size: 8.5pt;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bp-accent);
  display: block;
  margin-bottom: 8px;
}
.bp-toc-title {
  font-family: var(--bp-font-display);
  font-size: 24pt;
  font-weight: 500;
  color: var(--bp-charcoal);
  line-height: 1.2;
}
.bp-toc-list {
  list-style: none;
}
.bp-toc-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(196,120,138,0.10);
}
.bp-toc-item:last-child { border-bottom: none; }
.bp-toc-item.chapter { padding: 12px 0 9px; }
.bp-toc-item.chapter:not(:first-child) { margin-top: 6px; }
.bp-toc-num {
  font-family: var(--bp-font-sans);
  font-size: 8pt;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--bp-accent);
  min-width: 64px;
}
.bp-toc-name {
  font-family: var(--bp-font-display);
  font-size: 12pt;
  font-weight: 500;
  color: var(--bp-charcoal);
  flex: 1;
}
.bp-toc-item.chapter .bp-toc-name { font-size: 13pt; }
.bp-toc-item:not(.chapter) .bp-toc-name {
  font-family: var(--bp-font-body);
  font-size: 11pt;
  font-weight: 400;
  color: var(--bp-body);
}
.bp-toc-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(196,120,138,0.35);
  margin: 0 8px;
  height: 0.6em;
}
.bp-toc-pg {
  font-family: var(--bp-font-sans);
  font-size: 9pt;
  color: var(--bp-muted);
  min-width: 20px;
  text-align: right;
}

/* ── INTERIOR CONTENT AREA ───────────────────────────────────────── */
.bp-content {
  padding: 0.65in 0.90in;
}

/* ── CHAPTER HEADER ──────────────────────────────────────────────── */
.bp-chapter-header {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--bp-border);
}
.bp-chapter-num {
  font-family: var(--bp-font-sans);
  font-size: 8.5pt;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bp-accent);
  display: block;
  margin-bottom: 8px;
}
.bp-chapter-title {
  font-family: var(--bp-font-display);
  font-size: 26pt;
  font-weight: 500;
  color: var(--bp-charcoal);
  line-height: 1.15;
  margin-bottom: 12px;
}
.bp-chapter-title em { font-style: italic; color: var(--bp-accent-dark); }
.bp-chapter-lead {
  font-family: var(--bp-font-serif);
  font-size: 13pt;
  font-style: italic;
  color: var(--bp-body);
  line-height: 1.65;
}

/* ── SECTION HEADING ─────────────────────────────────────────────── */
.bp-section-title {
  font-family: var(--bp-font-display);
  font-size: 14pt;
  font-weight: 600;
  color: var(--bp-charcoal);
  margin: 26px 0 10px;
  line-height: 1.25;
}
.bp-section-title em { font-style: italic; color: var(--bp-accent-dark); }
.bp-sub-title {
  font-family: var(--bp-font-display);
  font-size: 12pt;
  font-weight: 600;
  color: var(--bp-body);
  margin: 18px 0 8px;
}

/* ── BODY TEXT ───────────────────────────────────────────────────── */
.bp-body-text {
  font-size: 11pt;
  line-height: 1.80;
  color: var(--bp-body);
  margin-bottom: 14px;
}
.bp-body-text + .bp-body-text { margin-top: 0; }
.bp-label {
  font-family: var(--bp-font-sans);
  font-size: 8pt;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--bp-accent);
  display: block;
  margin-bottom: 6px;
}
.bp-caption {
  font-family: var(--bp-font-sans);
  font-size: 8.5pt;
  color: var(--bp-muted);
  font-style: italic;
  margin-top: 6px;
}

/* ── CALLOUT BOXES ───────────────────────────────────────────────── */
.bp-callout {
  background: rgba(196,120,138,0.07);
  border-left: 4px solid var(--bp-accent);
  padding: 18px 20px;
  margin: 20px 0;
  break-inside: avoid;
  page-break-inside: avoid;
}
.bp-callout.gold {
  background: rgba(201,168,76,0.07);
  border-left-color: var(--bp-gold);
}
.bp-callout.dark {
  background: var(--bp-charcoal);
  border-left-color: var(--bp-gold);
  color: var(--bp-cream);
}
.bp-callout-label {
  font-family: var(--bp-font-sans);
  font-size: 8pt;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--bp-accent);
  display: block;
  margin-bottom: 8px;
}
.bp-callout.gold .bp-callout-label { color: var(--bp-gold); }
.bp-callout.dark .bp-callout-label { color: var(--bp-gold-light); }
.bp-callout-text {
  font-size: 11pt;
  line-height: 1.72;
  color: inherit;
}
.bp-callout-text strong { color: var(--bp-charcoal); }
.bp-callout.dark .bp-callout-text strong { color: var(--bp-gold-light); }

/* ── EXPERIENCE BOX ("From Experience: Derica") ──────────────────── */
.bp-experience {
  background: var(--bp-warm-bg);
  border: 1px solid var(--bp-border);
  border-top: 3px solid var(--bp-accent);
  padding: 20px 22px;
  margin: 22px 0;
  break-inside: avoid;
  page-break-inside: avoid;
}
.bp-experience-header {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}
.bp-experience-label {
  font-family: var(--bp-font-sans);
  font-size: 7.5pt;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--bp-accent);
}
.bp-experience-source {
  font-family: var(--bp-font-sans);
  font-size: 8pt;
  color: var(--bp-muted);
}
.bp-experience-text {
  font-family: var(--bp-font-serif);
  font-size: 12pt;
  font-style: italic;
  line-height: 1.70;
  color: var(--bp-body);
}

/* ── MICHIGAN TIP ─────────────────────────────────────────────────── */
.bp-michigan {
  background: rgba(42,31,26,0.04);
  border: 1px solid rgba(42,31,26,0.12);
  border-left: 4px solid var(--bp-charcoal);
  padding: 16px 20px;
  margin: 20px 0;
  break-inside: avoid;
  page-break-inside: avoid;
}
.bp-michigan-label {
  font-family: var(--bp-font-sans);
  font-size: 7.5pt;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--bp-charcoal);
  display: block;
  margin-bottom: 6px;
}
.bp-michigan-text {
  font-size: 10.5pt;
  line-height: 1.70;
  color: var(--bp-body);
}

/* ── PRO TIP ─────────────────────────────────────────────────────── */
.bp-pro-tip {
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--bp-border-gold);
  border-left: 4px solid var(--bp-gold);
  padding: 16px 20px;
  margin: 20px 0;
  break-inside: avoid;
  page-break-inside: avoid;
}
.bp-pro-tip-label {
  font-family: var(--bp-font-sans);
  font-size: 7.5pt;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--bp-gold);
  display: block;
  margin-bottom: 6px;
}
.bp-pro-tip-text {
  font-size: 10.5pt;
  line-height: 1.70;
  color: var(--bp-body);
}

/* ── CHECKLIST ───────────────────────────────────────────────────── */
.bp-checklist-label {
  font-family: var(--bp-font-sans);
  font-size: 8pt;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--bp-accent);
  display: block;
  margin: 20px 0 10px;
}
.bp-checklist {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}
.bp-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(196,120,138,0.10);
  font-size: 10.5pt;
  line-height: 1.60;
  color: var(--bp-body);
}
.bp-checklist li:last-child { border-bottom: none; }
.bp-checklist li::before {
  content: '';
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--bp-accent);
  margin-top: 3px;
  display: block;
}

/* ── ACTION STEPS ────────────────────────────────────────────────── */
.bp-action-list {
  list-style: none;
  margin: 16px 0;
  padding: 0;
  counter-reset: bp-action;
}
.bp-action {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(196,120,138,0.10);
  counter-increment: bp-action;
  break-inside: avoid;
  page-break-inside: avoid;
}
.bp-action:last-child { border-bottom: none; }
.bp-action::before {
  content: counter(bp-action);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--bp-accent);
  color: #fff;
  font-family: var(--bp-font-sans);
  font-size: 8.5pt;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.bp-action-text {
  font-size: 10.5pt;
  line-height: 1.65;
  color: var(--bp-body);
}
.bp-action-text strong { color: var(--bp-charcoal); }

/* ── TABLES ──────────────────────────────────────────────────────── */
.bp-table-wrap {
  margin: 20px 0;
  overflow-x: auto;
  break-inside: avoid;
  page-break-inside: avoid;
}
.bp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 10pt;
}
.bp-table th {
  background: var(--bp-accent);
  color: #fff;
  font-family: var(--bp-font-sans);
  font-size: 8.5pt;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 9px 13px;
  text-align: left;
}
.bp-table td {
  padding: 8px 13px;
  border-bottom: 1px solid rgba(196,120,138,0.12);
  vertical-align: top;
  line-height: 1.60;
}
.bp-table tr:nth-child(even) td { background: rgba(196,120,138,0.04); }
.bp-table td:first-child { font-weight: 600; color: var(--bp-charcoal); }
.bp-table-caption {
  font-family: var(--bp-font-sans);
  font-size: 8.5pt;
  color: var(--bp-muted);
  font-style: italic;
  margin-top: 8px;
  display: block;
}

/* ── STORY BOX ───────────────────────────────────────────────────── */
.bp-story-box {
  background: var(--bp-warm-bg);
  border: 1px solid var(--bp-border);
  padding: 28px 28px 24px;
  margin: 24px 0;
  position: relative;
  break-inside: avoid;
  page-break-inside: avoid;
}
.bp-story-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bp-rose) 0%, var(--bp-gold) 100%);
}
.bp-story-kicker {
  font-family: var(--bp-font-sans);
  font-size: 7.5pt;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--bp-accent);
  display: block;
  margin-bottom: 14px;
}
.bp-story-title {
  font-family: var(--bp-font-display);
  font-size: 18pt;
  font-weight: 500;
  color: var(--bp-charcoal);
  margin-bottom: 16px;
  line-height: 1.25;
}
.bp-story-text {
  font-family: var(--bp-font-serif);
  font-size: 12pt;
  font-style: italic;
  line-height: 1.75;
  color: var(--bp-body);
  margin-bottom: 14px;
}
.bp-story-attribution {
  font-family: var(--bp-font-sans);
  font-size: 8.5pt;
  color: var(--bp-muted);
  letter-spacing: 0.5px;
}

/* ── CONSULTATION CTA BLOCK ──────────────────────────────────────── */
.bp-cta-block {
  background: linear-gradient(160deg, #2A1F1A 0%, #3D2016 100%);
  color: var(--bp-cream);
  padding: 40px 36px;
  text-align: center;
  margin: 0;
  break-inside: avoid;
  page-break-inside: avoid;
  position: relative;
  overflow: hidden;
}
.bp-cta-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bp-rose) 0%, var(--bp-gold) 100%);
}
.bp-cta-label {
  font-family: var(--bp-font-sans);
  font-size: 8pt;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bp-rose);
  display: block;
  margin-bottom: 14px;
}
.bp-cta-title {
  font-family: var(--bp-font-serif);
  font-size: 26pt;
  font-weight: 300;
  color: var(--bp-cream);
  line-height: 1.20;
  margin-bottom: 16px;
}
.bp-cta-title em { font-style: italic; color: var(--bp-gold-light); }
.bp-cta-body {
  font-size: 11pt;
  color: rgba(252,249,244,0.82);
  line-height: 1.75;
  max-width: 5in;
  margin: 0 auto 24px;
}
.bp-cta-contact {
  font-family: var(--bp-font-sans);
  font-size: 10pt;
  color: rgba(252,249,244,0.90);
  line-height: 2;
}
.bp-cta-contact a { color: var(--bp-gold-light); text-decoration: none; }
.bp-cta-contact strong { color: var(--bp-cream); }
.bp-cta-url {
  font-family: var(--bp-font-sans);
  font-size: 9pt;
  letter-spacing: 1px;
  color: var(--bp-rose);
  display: block;
  margin-top: 10px;
}

/* ── CONTINUE YOUR BLUEPRINT JOURNEY ─────────────────────────────── */
.bp-continue {
  padding: 28px 0 8px;
  break-inside: avoid;
  page-break-inside: avoid;
}
.bp-continue-label {
  font-family: var(--bp-font-sans);
  font-size: 8pt;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bp-accent);
  display: block;
  margin-bottom: 10px;
}
.bp-continue-title {
  font-family: var(--bp-font-display);
  font-size: 18pt;
  font-weight: 500;
  color: var(--bp-charcoal);
  margin-bottom: 20px;
  line-height: 1.25;
}
.bp-continue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.bp-continue-card {
  border: 1px solid var(--bp-border);
  padding: 16px 16px 14px;
  break-inside: avoid;
  page-break-inside: avoid;
}
.bp-continue-card::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--bp-accent);
  margin-bottom: 10px;
}
.bp-continue-card-label {
  font-family: var(--bp-font-sans);
  font-size: 7.5pt;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bp-muted);
  display: block;
  margin-bottom: 5px;
}
.bp-continue-card-name {
  font-family: var(--bp-font-display);
  font-size: 11pt;
  font-weight: 600;
  color: var(--bp-charcoal);
  line-height: 1.30;
  margin-bottom: 6px;
}
.bp-continue-card-desc {
  font-size: 9.5pt;
  color: var(--bp-muted);
  line-height: 1.60;
}
.bp-continue-card-url {
  font-family: var(--bp-font-sans);
  font-size: 8pt;
  color: var(--bp-accent-dark);
  display: block;
  margin-top: 8px;
  word-break: break-all;
}

/* ── STRUCTURAL ELEMENTS ─────────────────────────────────────────── */
.bp-divider {
  border: none;
  border-top: 1px solid var(--bp-border);
  margin: 24px 0;
}
.bp-divider.heavy {
  border-top: 2px solid var(--bp-border);
}
.bp-ornament {
  text-align: center;
  font-family: var(--bp-font-serif);
  font-size: 16pt;
  color: var(--bp-accent);
  opacity: 0.5;
  margin: 20px 0;
  letter-spacing: 8px;
}
.bp-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

/* ── DOCUMENT FOOTER ─────────────────────────────────────────────── */
.bp-doc-footer {
  margin-top: 36px;
  padding-top: 12px;
  border-top: 1px solid var(--bp-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--bp-font-sans);
  font-size: 7.5pt;
  color: var(--bp-muted);
  letter-spacing: 0.5px;
}
.bp-doc-footer-brand { font-weight: 600; color: var(--bp-accent-dark); }
.bp-doc-footer-right { text-align: right; }

/* ── PRINT OVERRIDES ─────────────────────────────────────────────── */
@media print {
  .bp-content { padding: 0.4in 0; }
  .bp-toc { padding: 0.4in 0; }
  a { color: inherit; text-decoration: none; }
  .bp-cta-contact a { color: var(--bp-gold-light); }
  .bp-continue-card-url { color: var(--bp-accent-dark); }
}

/* ── SCREEN-ONLY UTILITIES ───────────────────────────────────────── */
@media screen {
  .bp-content { padding: 0.75in 0.90in; }
  .bp-toc { padding: 0.80in 0.90in; }
  .bp-cover { min-height: auto; padding-bottom: 0.5in; }
}
