  /* Page Header */
  .page-header {
    padding: 10rem 3rem 4rem;
    background: var(--warm-cream);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .page-header::before {
    content: '\2713';
    position: absolute;
    top: 2rem;
    right: 10%;
    font-size: 18rem;
    color: rgba(107,123,76,0.04);
    line-height: 1;
    pointer-events: none;
  }
  .breadcrumb {
    font-size: 0.75rem;
    color: var(--warm-gray);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
  }
  .breadcrumb a {
    color: var(--warm-gray);
    text-decoration: none;
    transition: color 0.3s;
  }
  .breadcrumb a:hover { color: var(--accent-olive); }
  .page-header h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--deep-brown);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
  }
  .page-header h1 em {
    font-style: italic;
    background: linear-gradient(135deg, var(--accent-olive) 0%, var(--accent-olive-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .page-header p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--medium-brown);
    font-weight: 300;
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  /* Action Bar */
  .action-bar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-olive);
    color: var(--soft-white);
    padding: 0.9rem 2.4rem;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 2px solid var(--accent-olive);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'DM Sans', sans-serif;
  }
  .btn-primary:hover {
    background: var(--accent-olive-light);
    border-color: var(--accent-olive-light);
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(107,123,76,0.28), 0 8px 25px rgba(107,123,76,0.2);
  }
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--medium-brown);
    padding: 0.9rem 2.4rem;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 2px solid var(--sand);
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .btn-secondary:hover {
    border-color: var(--accent-olive);
    color: var(--accent-olive);
    transform: translateY(-2px);
  }

  /* Section basics */
  .section { padding: 5rem 3rem; }
  .container { max-width: 800px; margin: 0 auto; }

  /* Checklist Styles */
  .checklist-phase {
    margin-bottom: 3.5rem;
  }
  .phase-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-sage);
  }
  .phase-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-olive);
    margin-bottom: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
  }
  .phase-label::before {
    content: '';
    width: 20px;
    height: 1.5px;
    background: var(--accent-olive);
  }
  .phase-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--deep-brown);
  }

  .checklist-items {
    list-style: none;
  }
  .checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: background 0.3s;
  }
  .checklist-item:hover {
    background: rgba(107,123,76,0.02);
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 6px;
  }
  .checklist-item:last-child {
    border-bottom: none;
  }
  .checkbox {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 2px solid var(--sand);
    border-radius: 4px;
    margin-top: 2px;
    transition: border-color 0.3s;
  }
  .checklist-item:hover .checkbox {
    border-color: var(--accent-olive);
  }
  .item-number {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--light-sage);
    color: var(--accent-olive);
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-top: 1px;
  }
  .item-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--deep-brown);
    font-weight: 400;
  }

  /* Print Footer (document info) */
  .document-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-sage);
    text-align: center;
  }
  .document-footer p {
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--medium-brown);
    font-weight: 300;
  }
  .document-footer p strong {
    font-weight: 500;
    color: var(--deep-brown);
  }

  /* CTA Section */
  .cta-section {
    text-align: center;
    padding: 6rem 3rem;
    background: linear-gradient(135deg, var(--deep-brown) 0%, #3A302A 50%, #2C2420 100%);
    color: var(--soft-white);
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 50%;
    height: 180%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107,123,76,0.08) 0%, transparent 60%);
  }
  .cta-section h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
  }
  .cta-section p {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    max-width: 550px;
    margin: 0 auto 2rem;
    font-weight: 300;
    line-height: 1.7;
    position: relative;
    z-index: 2;
  }
  .cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
  }
  .btn-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--soft-white);
    color: var(--deep-brown);
    padding: 0.9rem 2.4rem;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 2px solid var(--soft-white);
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .btn-light:hover {
    background: var(--accent-olive);
    border-color: var(--accent-olive);
    color: var(--soft-white);
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(107,123,76,0.28), 0 8px 25px rgba(107,123,76,0.2);
  }
  .btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--soft-white);
    padding: 0.9rem 2.4rem;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .btn-outline-light:hover {
    border-color: var(--soft-white);
    background: rgba(255,255,255,0.05);
    transform: translateY(-2px);
  }

  /* Scroll Animations */
  .reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }


  /* Responsive */
  @media (max-width: 900px) {
    .nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .section { padding: 3.5rem 1.5rem; }
    .page-header { padding: 8rem 1.5rem 3rem; }
    .footer { padding: 3rem 1.5rem 2rem; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .footer-contact-item { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom-links { justify-content: center; }
    .footer-social { justify-content: center; }
  }
  @media (max-width: 550px) {
    .cta-actions { flex-direction: column; }
    .btn-light, .btn-outline-light { width: 100%; justify-content: center; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    .page-header::before { font-size: 10rem; }
  }

  /* ==================== PRINT STYLES ==================== */
  @media print {
    /* Hide web-only elements */
    .nav,
    .mobile-menu,
    .scroll-progress,
    .cursor,
    .cursor-ring,
    .action-bar,
    .cta-section,
    .footer,
    .back-link {
      display: none !important;
    }

    /* Remove grain overlay */
    body::after {
      display: none !important;
    }

    /* Reset body */
    body {
      background: white !important;
      color: #1a1a1a !important;
      font-size: 11pt;
      line-height: 1.5;
    }

    /* Page margins */
    @page {
      size: A4;
      margin: 20mm 18mm 25mm 18mm;
    }

    /* Print header with logo */
    .page-header {
      background: none !important;
      padding: 0 !important;
      text-align: left;
      border-bottom: 2px solid #6B7B4C;
      padding-bottom: 12pt !important;
      margin-bottom: 16pt;
    }
    .page-header::before {
      display: none !important;
    }
    .print-logo {
      display: block !important;
      margin-bottom: 12pt;
    }
    .print-logo img {
      height: 36px;
      width: auto;
    }
    .breadcrumb {
      display: none !important;
    }
    .page-header h1 {
      font-size: 20pt !important;
      color: #1a1a1a !important;
      margin-bottom: 4pt;
    }
    .page-header h1 em {
      -webkit-text-fill-color: #6B7B4C !important;
      color: #6B7B4C !important;
      background: none !important;
    }
    .page-header p {
      font-size: 10pt !important;
      color: #555 !important;
      max-width: none;
    }

    /* Content section */
    .section {
      padding: 0 !important;
    }
    .container {
      max-width: none;
    }

    /* Phase sections */
    .checklist-phase {
      break-inside: avoid;
      margin-bottom: 16pt;
    }
    .phase-header {
      border-bottom: 1.5px solid #6B7B4C;
      margin-bottom: 8pt;
      padding-bottom: 6pt;
    }
    .phase-label {
      font-size: 7pt;
      color: #6B7B4C !important;
    }
    .phase-label::before {
      background: #6B7B4C;
    }
    .phase-title {
      font-size: 13pt;
      color: #1a1a1a !important;
    }

    /* Checklist items */
    .checklist-item {
      padding: 5pt 0;
      border-bottom: 0.5px solid #e0e0e0;
      break-inside: avoid;
    }
    .checklist-item:hover {
      background: none;
      margin: 0;
      padding-left: 0;
      padding-right: 0;
    }
    .checkbox {
      width: 14px;
      height: 14px;
      border: 1.5px solid #888 !important;
      border-radius: 2px;
      print-color-adjust: exact;
      -webkit-print-color-adjust: exact;
    }
    .item-number {
      width: 18px;
      height: 18px;
      font-size: 7pt;
      background: #e8edde !important;
      color: #6B7B4C !important;
      print-color-adjust: exact;
      -webkit-print-color-adjust: exact;
    }
    .item-text {
      font-size: 10pt;
      color: #1a1a1a !important;
    }

    /* Document footer */
    .document-footer {
      margin-top: 20pt;
      padding-top: 12pt;
      border-top: 1.5px solid #6B7B4C;
      text-align: left;
    }
    .document-footer p {
      font-size: 8.5pt;
      color: #555 !important;
    }
    .document-footer p strong {
      color: #1a1a1a !important;
    }

    /* Reveal animations off */
    .reveal {
      opacity: 1 !important;
      transform: none !important;
    }

    /* Links: no underline decoration */
    a {
      text-decoration: none !important;
      color: inherit !important;
    }
  }

  /* Print logo: hidden on screen */
  .print-logo {
    display: none;
  }

  /* Back link styling */
  .back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: var(--warm-gray);
    text-decoration: none;
    transition: color 0.3s;
    margin-bottom: 2rem;
  }
  .back-link:hover {
    color: var(--accent-olive);
  }
