/* ═══════════════════════════════════════════════════════════
   MigrationProvision — Print / PDF-rendering
   Used for the generated documents (Notice of Default, etc.).
   Sized for A4. Imported by templates/documents/*.html and
   triggered by the @media print block when a user prints from
   the portal.
═══════════════════════════════════════════════════════════ */

@page {
  size: A4;
  margin: 22mm 20mm 24mm 20mm;
}

@media print {
  body {
    background: #fff !important;
    color: #000;
    font-family: "Spectral", "EB Garamond", Georgia, serif;
    font-size: 11pt;
    line-height: 1.55;
  }
  .no-print, .header, .footer, .sticky-cta, .drawer, .topbar { display: none !important; }
}

/* Document page (used both for screen-preview and print) */
.doc-page {
  width: 210mm;
  min-height: 297mm;
  margin: 0 auto;
  padding: 25mm 22mm;
  background: #fff;
  color: #111;
  font-family: "Spectral", "EB Garamond", Georgia, serif;
  font-size: 11pt;
  line-height: 1.55;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  position: relative;
}
@media print {
  .doc-page { box-shadow: none; padding: 0; width: auto; min-height: auto; }
}

.doc-page__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 8mm;
  border-bottom: 0.6pt solid #b78a4a;
  margin-bottom: 10mm;
}
.doc-page__brand {
  font-family: "Spectral", serif;
  font-size: 14pt;
  font-weight: 600;
  color: #0e2a47;
  letter-spacing: -.01em;
}
.doc-page__brand-sub {
  font-family: "Inter", -apple-system, sans-serif;
  font-size: 7pt;
  font-weight: 600;
  letter-spacing: 2pt;
  text-transform: uppercase;
  color: #64748b;
  margin-top: 2pt;
}
.doc-page__brand-address {
  font-family: "Inter", -apple-system, sans-serif;
  font-size: 8.5pt;
  color: #475569;
  margin-top: 6pt;
  line-height: 1.5;
}
.doc-page__refblock {
  font-family: "Inter", sans-serif;
  font-size: 8.5pt;
  color: #334155;
  text-align: right;
}
.doc-page__refblock dt {
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1pt;
  font-size: 7pt;
  margin-top: 4pt;
}
.doc-page__refblock dd { font-weight: 500; }

.doc-page__addr {
  margin-bottom: 12mm;
  font-family: "Inter", sans-serif;
  font-size: 10pt;
  line-height: 1.5;
}
.doc-page__addr strong { font-weight: 600; color: #0e2a47; display: block; }

.doc-page__subject {
  margin-bottom: 10mm;
  font-family: "Inter", sans-serif;
  font-size: 10pt;
}
.doc-page__subject strong { font-weight: 700; color: #0e2a47; }

.doc-page__greeting { margin-bottom: 6mm; }

.doc-page__body p { margin-bottom: 5mm; text-align: justify; hyphens: auto; }
.doc-page__body p:last-child { margin-bottom: 0; }

.doc-page__body ol { margin: 4mm 0 6mm 7mm; }
.doc-page__body ol li { margin-bottom: 2mm; }

.doc-page__cite {
  display: block;
  margin: 6mm 0;
  padding-left: 6mm;
  border-left: 2pt solid #b78a4a;
  font-style: italic;
  color: #1e293b;
  font-size: 10.5pt;
}

.doc-page__signature {
  margin-top: 14mm;
}
.doc-page__signature-line {
  width: 70mm;
  border-bottom: 0.5pt solid #0e2a47;
  margin-bottom: 2pt;
}
.doc-page__signature-label {
  font-family: "Inter", sans-serif;
  font-size: 9pt;
  color: #64748b;
}

.doc-page__foot {
  position: absolute;
  bottom: 12mm;
  left: 22mm;
  right: 22mm;
  font-family: "Inter", sans-serif;
  font-size: 7.5pt;
  color: #64748b;
  border-top: 0.4pt solid #cbd5e1;
  padding-top: 4mm;
  display: flex; justify-content: space-between;
  letter-spacing: 0.2pt;
}
.doc-page__foot strong { color: #0e2a47; font-weight: 600; }

.doc-page__seal {
  position: absolute;
  bottom: 30mm;
  right: 25mm;
  width: 22mm; height: 22mm;
  opacity: 0.85;
}

.doc-page__watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-28deg);
  font-family: "Inter", sans-serif;
  font-size: 96pt;
  font-weight: 800;
  color: rgba(14, 42, 71, 0.04);
  letter-spacing: 6pt;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.doc-page > * { position: relative; z-index: 1; }
.doc-page__watermark { z-index: 0; }
