/* =====================================================
   retrenchmentadvice.co.za — Shared Stylesheet
   Palette: Navy #1B2B4B | Gold #C89B3C | Sage #A8B5A0
            Off-white #F9F7F4 | Card #EAE8E4
            Body text #1A1A1A | Muted #5C5C5C
   Fonts: Playfair Display (headings) + Inter (body)
===================================================== */

/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1A1A1A;
  background: #F9F7F4;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  color: #1B2B4B;
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); margin-bottom: 0.5rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; color: #1A1A1A; }
p:last-child { margin-bottom: 0; }

.muted { color: #5C5C5C; }
.small  { font-size: 0.875rem; }

/* ── Layout ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.narrow {
  max-width: 640px;
  margin: 0 auto;
}

section {
  padding: 5rem 0;
}

section.sage {
  background: #A8B5A0;
}

section.card-bg {
  background: #EAE8E4;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none;
  border: none;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: #C89B3C;
  color: #fff;
}
.btn-primary:hover { background: #b38830; }

.btn-navy {
  background: #1B2B4B;
  color: #fff;
}
.btn-navy:hover { background: #142038; }

.btn-outline {
  background: transparent;
  color: #1B2B4B;
  border: 2px solid #1B2B4B;
}
.btn-outline:hover { background: #1B2B4B; color: #fff; }

.btn-outline-gold {
  background: transparent;
  color: #C89B3C;
  border: 2px solid #C89B3C;
}
.btn-outline-gold:hover { background: #C89B3C; color: #fff; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* ── Header / Nav ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #F9F7F4;
  border-bottom: 1px solid #EAE8E4;
  transition: box-shadow 0.2s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(27, 43, 75, 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  max-width: 1160px;
  margin: 0 auto;
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #1B2B4B;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1A1A1A;
  text-decoration: none;
  transition: color 0.15s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active { color: #C89B3C; }

.nav-links .nav-cta {
  background: #C89B3C;
  color: #fff;
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.15s, transform 0.15s;
}
.nav-links .nav-cta:hover { background: #b38830; color: #fff; transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1B2B4B;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile nav ── */
@media (max-width: 860px) {
  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #F9F7F4;
    flex-direction: column;
    gap: 0;
    border-bottom: 2px solid #EAE8E4;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #EAE8E4;
    font-size: 1rem;
  }

  .nav-links .nav-cta {
    margin: 1rem 1.5rem 1.25rem;
    width: calc(100% - 3rem);
    text-align: center;
    border-radius: 8px;
    padding: 0.85rem;
  }
}

/* ── Footer ── */
.site-footer {
  background: #1B2B4B;
  color: #EAE8E4;
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.6fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  color: #C89B3C;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-col p,
.footer-col a {
  color: #EAE8E4;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col a:hover { color: #C89B3C; }

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  font-size: 0.9rem;
  color: #EAE8E4;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-nav a:hover { color: #C89B3C; }

.footer-compliance {
  font-size: 0.8rem;
  color: #a0a8b8;
  line-height: 1.65;
}

.footer-disclaimer {
  background: rgba(255,255,255,0.05);
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  font-size: 0.8rem;
  color: #a0a8b8;
  margin-bottom: 1rem;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.825rem;
  color: #a0a8b8;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── Hero ── */
.hero {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(200,155,60,0.10) 0%, transparent 55%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 48px),
    linear-gradient(135deg, #1B2B4B 0%, #223456 60%, #28396289 100%);
  background-color: #1B2B4B;
  padding: 7rem 0 6rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  color: #F9F7F4;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.hero .subheadline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #c8d0e0;
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.hero .btn-group {
  justify-content: center;
}

/* ── Prose / prose sections ── */
.prose {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #2a2a2a;
}

.prose p + p { margin-top: 1.25rem; }

/* ── Pull quote ── */
.pull-quote-section {
  background: #1B2B4B;
  padding: 5rem 0;
  text-align: center;
}

.pull-quote-section blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #F9F7F4;
  max-width: 760px;
  margin: 0 auto 1.5rem;
  position: relative;
  line-height: 1.45;
}

.pull-quote-section blockquote::before {
  content: '\201C';
  font-size: 5rem;
  color: #C89B3C;
  line-height: 0;
  position: absolute;
  top: 1.2rem;
  left: -2.5rem;
  opacity: 0.7;
}

.pull-quote-section blockquote::after {
  content: '\201D';
  font-size: 5rem;
  color: #C89B3C;
  line-height: 0;
  position: absolute;
  bottom: -1rem;
  right: -2rem;
  opacity: 0.7;
}

.pull-quote-section .caption {
  color: #a0a8b8;
  font-size: 0.9rem;
  font-style: italic;
}

/* ── Numbered list (7 days) ── */
.numbered-list {
  list-style: none;
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.numbered-list li {
  counter-increment: steps;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 8px rgba(27,43,75,0.06);
  border-left: 4px solid #C89B3C;
}

.numbered-list li::before {
  content: counter(steps);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #C89B3C;
  min-width: 2rem;
  line-height: 1.3;
}

.numbered-list li a {
  color: #C89B3C;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Cards grid ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(27,43,75,0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(27,43,75,0.12);
}

.card-icon {
  margin-bottom: 1rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon svg {
  width: 32px;
  height: 32px;
  stroke: #C89B3C;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 { margin-bottom: 0.5rem; }

.card p { color: #5C5C5C; font-size: 0.95rem; }

.card .learn-more {
  display: inline-block;
  margin-top: 1rem;
  color: #C89B3C;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: gap 0.15s;
}

.card .learn-more::after { content: ' →'; }
.card .learn-more:hover { color: #b38830; }

/* ── Stats ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.stat-block {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(27,43,75,0.07);
  border-top: 4px solid #C89B3C;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #1B2B4B;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #5C5C5C;
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* ── Logos strip ── */
.logos-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.logos-strip img {
  height: 48px;
  max-height: 48px;
  width: auto;
  max-width: 140px;
  filter: grayscale(100%) opacity(0.6);
  transition: filter 0.25s ease, transform 0.2s ease;
  object-fit: contain;
}

.logos-strip img:hover {
  filter: grayscale(0%) opacity(1);
  transform: translateY(-2px);
}

/* ── Who is Lee (two-col) ── */
.who-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  align-items: center;
}

.who-portrait {
  border-radius: 12px;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 8px 32px rgba(27,43,75,0.15);
}

@media (max-width: 768px) {
  .who-grid {
    grid-template-columns: 1fr;
  }
  .who-portrait {
    max-width: 260px;
    margin: 0 auto;
  }
}

/* ── Mind map / roadmap ── */
.roadmap-image {
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(27,43,75,0.1);
  margin: 2rem auto;
  max-width: 900px;
}

.roadmap-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

/* ── Callout / alert box ── */
.callout {
  background: #fff8e8;
  border-left: 4px solid #C89B3C;
  border-radius: 0 12px 12px 0;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}

.callout p { margin-bottom: 0.5rem; }
.callout p:last-child { margin-bottom: 0; }

.callout strong { color: #1B2B4B; }

/* ── Section headings with accent ── */
.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C89B3C;
  margin-bottom: 0.75rem;
  display: block;
}

/* ── Divider ── */
.divider {
  height: 1px;
  background: #EAE8E4;
  margin: 3rem 0;
}

/* ── Table ── */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 2rem 0;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(27,43,75,0.07);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 0.9rem;
}

thead th {
  background: #1B2B4B;
  color: #F9F7F4;
  padding: 0.9rem 1.25rem;
  text-align: left;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

tbody td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid #EAE8E4;
  vertical-align: top;
}

tbody tr:last-child td { border-bottom: none; }

tbody tr:nth-child(even) { background: #faf9f7; }

tbody tr:hover { background: #f3f1ee; }

/* ── Accordion (FAQ) ── */
.accordion { margin-top: 2rem; }

.accordion-item {
  border-bottom: 1px solid #EAE8E4;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1B2B4B;
  gap: 1rem;
  transition: color 0.15s;
}

.accordion-trigger:hover { color: #C89B3C; }

.accordion-icon {
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #EAE8E4;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s, background 0.15s;
  font-size: 1rem;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
  background: #C89B3C;
  color: #fff;
}

.accordion-content {
  display: none;
  padding: 0 0 1.5rem;
  color: #2a2a2a;
  font-size: 0.95rem;
  line-height: 1.75;
}

.accordion-content.open { display: block; }
.accordion-content p + p { margin-top: 0.75rem; }
.accordion-content ul { padding-left: 1.5rem; margin: 0.5rem 0 1rem; }
.accordion-content li { margin-bottom: 0.4rem; }

/* ── Checklist ── */
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.checklist li input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  accent-color: #C89B3C;
  flex-shrink: 0;
  cursor: pointer;
}

.checklist-section {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 2.25rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 12px rgba(27,43,75,0.06);
}

.checklist-section h3 {
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #EAE8E4;
}

/* ── Contact cards ── */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.contact-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(27,43,75,0.07);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(27,43,75,0.12); }

.contact-card .icon { font-size: 2.5rem; margin-bottom: 1rem; }
.contact-card h3 { margin-bottom: 0.5rem; }
.contact-card p { color: #5C5C5C; font-size: 0.9rem; margin-bottom: 1.25rem; }
.contact-card a.contact-link {
  display: inline-block;
  font-weight: 600;
  color: #C89B3C;
  font-size: 0.95rem;
}
.contact-card a.contact-link:hover { color: #b38830; }

/* ── Form ── */
.form-wrap {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 2px 16px rgba(27,43,75,0.08);
  max-width: 680px;
  margin: 2.5rem auto 0;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: #1B2B4B;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #EAE8E4;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #1A1A1A;
  background: #F9F7F4;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #C89B3C;
  box-shadow: 0 0 0 3px rgba(200,155,60,0.15);
}

.form-group textarea { min-height: 100px; resize: vertical; }

.form-checkbox {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.form-checkbox input { width: 18px; height: 18px; margin-top: 0.2rem; accent-color: #C89B3C; flex-shrink: 0; }

.form-checkbox label { font-size: 0.875rem; color: #5C5C5C; font-weight: 400; }

.form-checkboxes-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.form-checkboxes-group label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 400;
  font-size: 0.9rem;
  cursor: pointer;
}

.form-checkboxes-group input { width: 16px; height: 16px; accent-color: #C89B3C; }

.form-submit {
  margin-top: 1.5rem;
}

.form-submit button {
  width: 100%;
  padding: 1rem;
  background: #C89B3C;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}

.form-submit button:hover { background: #b38830; transform: translateY(-1px); }

.thankyou-msg {
  display: none;
  text-align: center;
  padding: 2rem;
  color: #1B2B4B;
}

.thankyou-msg h3 { color: #1B2B4B; margin-bottom: 0.75rem; }

/* ── Benefit cards (Snapshot page) ── */
.benefit-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.benefit-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(27,43,75,0.07);
  border-top: 4px solid #A8B5A0;
}

.benefit-card .card-icon { font-size: 2.25rem; margin-bottom: 0.75rem; }
.benefit-card h3 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.benefit-card p { font-size: 0.9rem; color: #5C5C5C; }

/* ── Annotated form image (FAQ) ── */
.form-image-wrap {
  text-align: center;
  margin: 1.5rem 0;
}

.form-image-wrap img {
  max-width: 700px;
  width: 100%;
  border: 1px solid #EAE8E4;
  border-radius: 10px;
  box-shadow: 0 2px 14px rgba(27,43,75,0.08);
  margin: 0 auto;
}

.form-image-wrap .caption {
  font-style: italic;
  font-size: 0.85rem;
  color: #5C5C5C;
  margin-top: 0.75rem;
}

/* ── Resources list ── */
.resources-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.resources-list a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #1B2B4B;
  font-weight: 500;
  text-decoration: none;
  padding: 0.85rem 1.25rem;
  background: #fff;
  border-radius: 8px;
  border-left: 4px solid #C89B3C;
  box-shadow: 0 1px 6px rgba(27,43,75,0.06);
  transition: transform 0.15s, box-shadow 0.15s;
}

.resources-list a:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(27,43,75,0.1);
  color: #C89B3C;
}

/* ── Page intro ── */
.page-intro {
  background: #1B2B4B;
  padding: 4.5rem 0 3.5rem;
}

.page-intro h1 { color: #F9F7F4; }
.page-intro p { color: #c8d0e0; font-size: 1.05rem; max-width: 620px; margin-top: 1rem; }

/* ── Print styles (Exit Essentials) ── */
@media print {
  .site-header,
  .site-footer,
  .footer-disclaimer,
  .btn,
  .btn-group,
  .no-print { display: none !important; }

  body { font-size: 12pt; color: #000; background: #fff; }

  .page-intro { background: none; padding: 0; }
  .page-intro h1 { color: #000; }

  .checklist-section { box-shadow: none; border: 1px solid #ccc; page-break-inside: avoid; }
  h1, h2, h3 { page-break-after: avoid; }
}

/* ── Utilities ── */
.text-center { text-align: center; }
.text-gold   { color: #C89B3C; }
.text-navy   { color: #1B2B4B; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
