/* ═══════════════════════════════════════════════════════════════
   KATRINA SELLS GEORGIA — Guide / PDF Styles
   Shared by buyer-guide.html + seller-guide.html
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;700;900&family=Josefin+Sans:wght@300;400;600&display=swap');

:root {
  --gold:      #C9A84C;
  --gold-light:#e2c47a;
  --dark:      #0D0D0D;
  --dark2:     #1a0a00;
  --dark3:     #2d1800;
  --cognac:    #8B4513;
  --cream:     #F5F0E8;
  --cream2:    #EDE8DE;
  --white:     #FFFFFF;
  --text:      #1A1A1A;
  --text-mid:  #4a4a4a;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Josefin Sans', sans-serif;
  --body:      'Lato', sans-serif;
  --page-w:    816px;
  --page-h:    1056px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: #1e1e1e;
  font-family: var(--body);
  color: var(--text);
}

/* ── Floating toolbar ────────────────────────────────────────── */
.guide-toolbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--dark);
  border-bottom: 2px solid var(--gold);
  padding: .75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
  gap: 1rem;
}
.guide-toolbar .brand {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 500;
  white-space: nowrap;
}
.guide-toolbar .guide-title {
  font-family: var(--sans);
  color: rgba(255,255,255,.7);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  flex: 1;
  text-align: center;
}
.btn-print {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: .5rem 1.4rem;
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background .2s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.btn-print:hover { background: var(--gold-light); }
.btn-back {
  color: rgba(255,255,255,.6);
  font-family: var(--sans);
  font-size: .75rem;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s;
  white-space: nowrap;
}
.btn-back:hover { color: var(--gold); }

/* ── Page wrapper ────────────────────────────────────────────── */
.guide-wrap {
  padding: 5rem 1rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* ── Each page ────────────────────────────────────────────────── */
.guide-page {
  width: var(--page-w);
  min-height: var(--page-h);
  background: var(--cream);
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
  position: relative;
  overflow: hidden;
}

/* ── COVER PAGE ───────────────────────────────────────────────── */
.cover-page {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark2) 45%, var(--dark3) 100%);
  display: flex;
  flex-direction: column;
  min-height: var(--page-h);
}
.cover-top-band {
  background: var(--gold);
  padding: .5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cover-top-band span {
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dark);
}
.cover-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 3.5rem 2.5rem 2rem;
}
.cover-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--sans);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  margin-bottom: 1.5rem;
  width: fit-content;
}
.cover-eyebrow {
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(201,168,76,.8);
  margin-bottom: .5rem;
}
.cover-title {
  font-family: var(--serif);
  font-size: 3.8rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: .5rem;
}
.cover-title em {
  font-style: italic;
  color: var(--gold);
}
.cover-subtitle {
  font-family: var(--body);
  font-size: .95rem;
  color: rgba(255,255,255,.65);
  font-weight: 300;
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 2rem;
}
.cover-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 2rem;
}
.cover-photo-area {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
}
.cover-photo-area img {
  height: 340px;
  width: auto;
  object-fit: cover;
  object-position: top;
  filter: brightness(.9);
}
.cover-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,13,13,.6) 0%, transparent 50%);
}
.cover-agent-card {
  position: absolute;
  bottom: 0; left: 0;
  padding: 1.5rem 2.5rem;
  background: linear-gradient(to top, rgba(13,13,13,.95) 0%, transparent 100%);
  width: 100%;
}
.cover-agent-name {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
}
.cover-agent-name em { color: var(--gold); font-style: italic; }
.cover-agent-title {
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(201,168,76,.8);
  margin-top: .2rem;
}
.cover-agent-contact {
  font-family: var(--body);
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  margin-top: .4rem;
}
.cover-bottom-band {
  background: rgba(201,168,76,.12);
  border-top: 1px solid rgba(201,168,76,.3);
  padding: .6rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cover-bottom-band span {
  font-family: var(--sans);
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(201,168,76,.7);
}
.cover-stats {
  display: flex;
  gap: 2rem;
}
.cover-stat { text-align: center; }
.cover-stat-num {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--gold);
  display: block;
}
.cover-stat-label {
  font-family: var(--sans);
  font-size: .55rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* ── LETTER PAGE (Welcome) ────────────────────────────────────── */
.letter-page {
  padding: 3rem 3rem 2rem;
  display: flex;
  flex-direction: column;
}
.letter-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--cream2);
}
.letter-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--gold);
}
.letter-from { flex: 1; }
.letter-from strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--dark);
  display: block;
}
.letter-from span {
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cognac);
}
.letter-date {
  font-family: var(--body);
  font-size: .8rem;
  color: var(--text-mid);
  text-align: right;
}
.letter-salutation {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
}
.letter-body p {
  font-family: var(--body);
  font-size: .88rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: .9rem;
}
.letter-body p strong { color: var(--dark); }
.letter-sig {
  margin-top: 1.5rem;
}
.letter-sig-name {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--dark);
  display: block;
}
.letter-sig-title {
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cognac);
}
.letter-gold-bar {
  width: 40px; height: 2px;
  background: var(--gold);
  margin: 1rem 0;
}

/* ── TOC PAGE ─────────────────────────────────────────────────── */
.toc-page { padding: 0; overflow: hidden; }
.toc-sidebar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 220px;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark3) 100%);
  padding: 3rem 1.5rem;
}
.toc-sidebar-title {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: .5rem;
}
.toc-sidebar-sub {
  font-family: var(--sans);
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 2rem;
}
.toc-sidebar-divider {
  width: 30px; height: 1px;
  background: var(--gold);
  margin-bottom: 2rem;
}
.toc-guide-info {
  font-family: var(--body);
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}
.toc-guide-info strong {
  color: var(--gold);
  display: block;
  font-family: var(--sans);
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .2rem;
}
.toc-content {
  margin-left: 220px;
  padding: 3rem 2.5rem;
}
.toc-heading {
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cognac);
  margin-bottom: 1.5rem;
}
.toc-item {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--cream2);
}
.toc-num {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: rgba(201,168,76,.25);
  font-weight: 600;
  line-height: 1;
  min-width: 40px;
}
.toc-item-body { flex: 1; }
.toc-chapter {
  font-family: var(--sans);
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cognac);
}
.toc-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--dark);
  font-weight: 500;
  line-height: 1.2;
}
.toc-desc {
  font-family: var(--body);
  font-size: .78rem;
  color: var(--text-mid);
  margin-top: .2rem;
}

/* ── CHAPTER PAGES ────────────────────────────────────────────── */
.chapter-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 100%);
  padding: 2rem 2.5rem 1.8rem;
  position: relative;
  overflow: hidden;
}
.chapter-header::before {
  content: '';
  position: absolute;
  right: -40px; top: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(201,168,76,.06);
}
.ch-num {
  font-family: var(--serif);
  font-size: 6rem;
  font-weight: 700;
  color: rgba(201,168,76,.1);
  position: absolute;
  right: 1.5rem;
  top: -.5rem;
  line-height: 1;
}
.ch-label {
  font-family: var(--sans);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
}
.ch-title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
}
.ch-title em { color: var(--gold); font-style: italic; }
.ch-subtitle {
  font-family: var(--body);
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  margin-top: .4rem;
  font-weight: 300;
}
.ch-gold-line {
  width: 40px; height: 2px;
  background: var(--gold);
  margin-top: .8rem;
}
.chapter-body {
  padding: 1.8rem 2.5rem;
}

/* ── Content elements ─────────────────────────────────────────── */
.section-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: .6rem;
  font-weight: 500;
}
.section-title em { color: var(--cognac); font-style: italic; }

p.body-text {
  font-family: var(--body);
  font-size: .83rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: .8rem;
}
p.body-text strong { color: var(--dark); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1rem 0;
}
.three-col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin: 1rem 0;
}

/* Tip box */
.tip-box {
  background: var(--white);
  border-left: 3px solid var(--gold);
  padding: .9rem 1.2rem;
  margin: 1rem 0;
  border-radius: 0 4px 4px 0;
}
.tip-box .tip-label {
  font-family: var(--sans);
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .25rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.tip-box p {
  font-family: var(--body);
  font-size: .8rem;
  line-height: 1.7;
  color: var(--text-mid);
}
.tip-box p strong { color: var(--dark); }

/* Warning box */
.warn-box {
  background: #fff8f5;
  border-left: 3px solid var(--cognac);
  padding: .9rem 1.2rem;
  margin: 1rem 0;
  border-radius: 0 4px 4px 0;
}
.warn-box .warn-label {
  font-family: var(--sans);
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cognac);
  margin-bottom: .25rem;
}
.warn-box p {
  font-family: var(--body);
  font-size: .8rem;
  line-height: 1.7;
  color: var(--text-mid);
}

/* Stat callout */
.stat-callout {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 100%);
  padding: 1.2rem 1.5rem;
  border-radius: 4px;
  text-align: center;
}
.stat-callout .sc-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-callout .sc-label {
  font-family: var(--body);
  font-size: .72rem;
  color: rgba(255,255,255,.65);
  margin-top: .2rem;
}

/* Checklist */
.checklist { list-style: none; margin: .8rem 0; }
.checklist li {
  font-family: var(--body);
  font-size: .8rem;
  color: var(--text-mid);
  padding: .35rem 0 .35rem 1.6rem;
  position: relative;
  border-bottom: 1px dashed rgba(0,0,0,.06);
  line-height: 1.5;
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: '';
  position: absolute;
  left: 0; top: .55rem;
  width: 14px; height: 14px;
  border: 1.5px solid var(--gold);
  border-radius: 2px;
}
.checklist li strong { color: var(--dark); }

/* Numbered list */
.num-list { list-style: none; margin: .8rem 0; counter-reset: nlist; }
.num-list li {
  font-family: var(--body);
  font-size: .82rem;
  color: var(--text-mid);
  padding: .5rem 0 .5rem 2.2rem;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,.05);
  line-height: 1.6;
  counter-increment: nlist;
}
.num-list li:last-child { border-bottom: none; }
.num-list li::before {
  content: counter(nlist);
  position: absolute;
  left: 0; top: .45rem;
  width: 20px; height: 20px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--sans);
  font-size: .6rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 20px;
}
.num-list li strong { color: var(--dark); }

/* Process steps (inline) */
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1rem 0;
}
.step-card {
  background: var(--white);
  border-radius: 4px;
  padding: 1rem;
  border-top: 2px solid var(--gold);
}
.step-card .sn {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: rgba(201,168,76,.3);
  font-weight: 700;
  line-height: 1;
}
.step-card .st {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--dark);
  margin: .3rem 0 .2rem;
  text-transform: uppercase;
}
.step-card .sd {
  font-family: var(--body);
  font-size: .75rem;
  color: var(--text-mid);
  line-height: 1.55;
}

/* Info row (icon + text) */
.info-row {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  margin-bottom: .7rem;
}
.info-row .ir-icon {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .7rem;
  color: var(--dark);
}
.info-row .ir-body { flex: 1; }
.info-row .ir-title {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.info-row .ir-text {
  font-family: var(--body);
  font-size: .78rem;
  color: var(--text-mid);
  line-height: 1.55;
}

/* Full-width dark banner (within page) */
.dark-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 100%);
  padding: 1.2rem 2.5rem;
  margin: 0 -2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.dark-banner .db-num {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}
.dark-banner .db-body {}
.dark-banner .db-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--white);
}
.dark-banner .db-sub {
  font-family: var(--body);
  font-size: .78rem;
  color: rgba(255,255,255,.55);
}

/* Section divider */
.s-divider {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin: 1.2rem 0;
}
.s-divider::before, .s-divider::after {
  content: ''; flex: 1;
  height: 1px;
  background: var(--cream2);
}
.s-divider span {
  font-family: var(--sans);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── CHECKLIST MASTER PAGE ────────────────────────────────────── */
.cl-page { padding: 0; }
.cl-header {
  background: linear-gradient(135deg, var(--gold) 0%, #a07830 100%);
  padding: 2rem 2.5rem 1.5rem;
}
.cl-header-label {
  font-family: var(--sans);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(0,0,0,.5);
  margin-bottom: .3rem;
}
.cl-header h2 {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--dark);
  font-weight: 400;
}
.cl-header h2 em { font-style: italic; }
.cl-body {
  padding: 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.cl-section h3 {
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cognac);
  padding-bottom: .4rem;
  border-bottom: 1.5px solid var(--gold);
  margin-bottom: .6rem;
}
.cl-section ul { list-style: none; }
.cl-section ul li {
  font-family: var(--body);
  font-size: .75rem;
  color: var(--text-mid);
  padding: .28rem 0 .28rem 1.4rem;
  position: relative;
  border-bottom: 1px dashed rgba(0,0,0,.06);
}
.cl-section ul li::before {
  content: '';
  position: absolute;
  left: 0; top: .5rem;
  width: 12px; height: 12px;
  border: 1.5px solid var(--gold);
  border-radius: 2px;
}
.cl-section ul li strong { color: var(--dark); font-weight: 700; }

/* ── BACK COVER ───────────────────────────────────────────────── */
.back-cover {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark2) 50%, var(--dark3) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  min-height: var(--page-h);
  text-align: center;
}
.back-cover-logo {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--white);
  font-weight: 300;
}
.back-cover-logo em { color: var(--gold); font-style: italic; }
.back-cover-tagline {
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(201,168,76,.7);
  margin: .5rem 0 2rem;
}
.back-divider {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
}
.back-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  width: 100%;
  max-width: 560px;
  margin: 1.5rem auto;
}
.bc-item { text-align: center; }
.bc-icon {
  width: 38px; height: 38px;
  border: 1px solid rgba(201,168,76,.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .4rem;
  color: var(--gold);
  font-size: .85rem;
}
.bc-label {
  font-family: var(--sans);
  font-size: .55rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.bc-value {
  font-family: var(--body);
  font-size: .8rem;
  color: var(--white);
}
.back-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.back-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(201,168,76,.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201,168,76,.7);
  text-decoration: none;
  font-size: .85rem;
  transition: all .2s;
}
.back-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,.1);
}
.back-awards {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin: 1.5rem auto;
  max-width: 500px;
}
.back-award-badge {
  border: 1px solid rgba(201,168,76,.3);
  padding: .25rem .7rem;
  font-family: var(--sans);
  font-size: .55rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(201,168,76,.7);
  border-radius: 2px;
}
.back-disclaimer {
  font-family: var(--body);
  font-size: .65rem;
  color: rgba(255,255,255,.25);
  margin-top: 2rem;
  max-width: 500px;
  line-height: 1.6;
}

/* ── Page number ──────────────────────────────────────────────── */
.pg-num {
  position: absolute;
  bottom: .8rem; right: 1.5rem;
  font-family: var(--sans);
  font-size: .6rem;
  letter-spacing: .12em;
  color: rgba(0,0,0,.2);
}
.pg-num-light {
  color: rgba(255,255,255,.2);
}

/* ── PRINT RULES ──────────────────────────────────────────────── */
@media print {
  @page { size: letter; margin: 0; }
  body { background: white !important; }
  .guide-toolbar { display: none !important; }
  .guide-wrap { padding: 0 !important; gap: 0 !important; }
  .guide-page {
    width: 100% !important;
    min-height: 100vh !important;
    box-shadow: none !important;
    page-break-after: always;
    break-after: page;
    margin: 0 !important;
  }
  .cover-page, .back-cover {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    color-adjust: exact;
  }
  .chapter-header, .dark-banner, .cover-top-band, .cover-bottom-band,
  .cl-header, .toc-sidebar, .stat-callout, .step-card, .tip-box, .warn-box {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    color-adjust: exact;
  }
}
