  /* Page Header */
  .page-header {
    padding: 10rem 3rem 4rem;
    background: var(--warm-cream);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .page-header::before {
    content: '\00a7';
    position: absolute;
    top: 2rem;
    right: 10%;
    font-family: 'DM Serif Display', serif;
    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;
  }

  /* Header Actions */
  .header-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
  }

  /* Buttons */
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-olive);
    color: var(--soft-white);
    padding: 0.85rem 2rem;
    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);
  }
  .btn-primary:hover {
    background: var(--accent-olive-light);
    border-color: var(--accent-olive-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107,123,76,0.25);
  }
  .btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--medium-brown);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.85rem 1.5rem;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 100px;
    transition: all 0.3s;
  }
  .btn-back:hover {
    border-color: var(--accent-olive);
    color: var(--accent-olive);
    transform: translateY(-2px);
  }

  /* Section basics */
  .section { padding: 4rem 3rem; }
  .container { max-width: 800px; margin: 0 auto; }
  .section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-olive);
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
  }
  .section-label::before {
    content: '';
    width: 20px;
    height: 1.5px;
    background: var(--accent-olive);
  }

  /* Content Sections */
  .content-section {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .content-section:last-child {
    border-bottom: none;
  }
  .content-section h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 1.2rem;
    color: var(--deep-brown);
    line-height: 1.3;
  }
  .content-section h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
    color: var(--deep-brown);
  }
  .content-section p, .content-section li {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--medium-brown);
    font-weight: 300;
  }
  .content-section ul {
    list-style: none;
    padding: 0;
  }
  .content-section ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
  }
  .content-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-olive);
  }
  .content-section ul li strong {
    color: var(--deep-brown);
    font-weight: 600;
  }

  /* Law Box */
  .law-box {
    background: var(--warm-cream);
    border-radius: 16px;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.2rem 2rem;
  }
  .law-item {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .law-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
  .law-item-full {
    grid-column: 1 / -1;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 0.7rem 0;
  }
  .law-item-full:last-child {
    border-bottom: none;
  }
  .law-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 0.2rem;
  }
  .law-value {
    font-size: 0.95rem;
    color: var(--deep-brown);
    font-weight: 400;
    line-height: 1.5;
  }

  /* Timeline */
  .timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 1.5rem 0;
  }
  .timeline-item {
    display: flex;
    align-items: stretch;
    gap: 1.2rem;
  }
  .timeline-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 24px;
    flex-shrink: 0;
  }
  .timeline-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent-olive);
    border: 3px solid var(--light-sage);
    flex-shrink: 0;
    margin-top: 0.3rem;
  }
  .timeline-item:last-child .timeline-dot {
    background: var(--highlight);
    border-color: #F0E4D0;
    width: 18px;
    height: 18px;
    margin-left: -2px;
  }
  .timeline-connector {
    width: 2px;
    flex-grow: 1;
    background: var(--sand);
    margin: 4px 0;
  }
  .timeline-content {
    padding: 0.2rem 0 1.5rem;
  }
  .timeline-year {
    font-family: 'DM Serif Display', serif;
    font-size: 1rem;
    color: var(--deep-brown);
    margin-bottom: 0.15rem;
  }
  .timeline-desc {
    font-size: 0.88rem;
    color: var(--medium-brown);
    font-weight: 300;
  }
  .timeline-item:last-child .timeline-year {
    color: var(--highlight);
  }
  .timeline-item:last-child .timeline-desc {
    font-weight: 500;
    color: var(--deep-brown);
  }

  /* Stats Grid */
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
  }
  .stat-card {
    background: var(--warm-cream);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
  }
  .stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  }
  .stat-number {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    color: var(--accent-olive);
    line-height: 1.2;
    margin-bottom: 0.4rem;
  }
  .stat-number.warning {
    color: var(--highlight);
  }
  .stat-desc {
    font-size: 0.78rem;
    color: var(--medium-brown);
    font-weight: 300;
    line-height: 1.5;
  }
  .stat-card.wide {
    grid-column: span 1;
  }

  /* Responsibility Table */
  .resp-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
  }
  .resp-item {
    background: var(--warm-cream);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid var(--accent-olive);
    position: relative;
    overflow: hidden;
  }
  .resp-item:nth-child(2) { border-left-color: var(--highlight); }
  .resp-item:nth-child(3) { border-left-color: var(--medium-brown); }
  .resp-item:nth-child(4) { border-left-color: var(--warm-gray); }
  .resp-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.05rem;
    color: var(--deep-brown);
    margin-bottom: 0.4rem;
  }
  .resp-desc {
    font-size: 0.9rem;
    color: var(--medium-brown);
    font-weight: 300;
    line-height: 1.6;
  }

  /* Hessen Box */
  .hessen-box {
    background: var(--light-sage);
    border-radius: 16px;
    padding: 2rem;
    margin: 1.5rem 0;
  }
  .hessen-box h3 {
    margin-bottom: 1rem;
  }
  .hessen-box ul li::before {
    background: var(--accent-olive-light);
  }

  /* Action List */
  .action-list {
    counter-reset: action;
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
  }
  .action-list li {
    counter-increment: action;
    padding: 1rem 1rem 1rem 3.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--medium-brown);
    font-weight: 300;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .action-list li:last-child { border-bottom: none; }
  .action-list li::before {
    content: counter(action);
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent-olive);
    color: var(--soft-white);
    font-size: 0.78rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .action-list li strong {
    color: var(--deep-brown);
    font-weight: 600;
  }

  /* Partner Box */
  .partner-box {
    background: linear-gradient(135deg, var(--deep-brown) 0%, #3A302A 100%);
    color: var(--soft-white);
    border-radius: 16px;
    padding: 2.5rem;
    margin-top: 2rem;
    text-align: center;
  }
  .partner-box h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--soft-white);
  }
  .partner-box p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
  }
  .partner-box .contact-line {
    margin-top: 1.2rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.9);
    font-weight: 400;
  }
  .partner-box .contact-line a {
    color: var(--accent-olive-light);
    text-decoration: none;
  }
  .partner-box .contact-line a:hover {
    text-decoration: underline;
  }

  /* Sources */
  .sources {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    font-size: 0.75rem;
    color: var(--warm-gray);
    line-height: 1.6;
    font-weight: 300;
  }

  /* Reveal Animation */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* 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);
  }

  /* ========== RESPONSIVE ========== */
  @media (max-width: 768px) {
    .nav { padding: 1rem 1.5rem; }
    .nav.scrolled { padding: 0.6rem 1.5rem; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .page-header { padding: 8rem 1.5rem 3rem; }
    .page-header::before { font-size: 10rem; right: 5%; }
    .section { padding: 3rem 1.5rem; }
    .law-box { grid-template-columns: 1fr; padding: 1.5rem; }
    .law-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(0,0,0,0.05); }
    .law-item:last-child { border-bottom: none; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-card.wide { grid-column: span 1; }
    .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; }
    .cta-section { padding: 4rem 1.5rem; }
    .partner-box { padding: 2rem 1.5rem; }
    .cursor-dot, .cursor-ring { display: none; }
  }

  @media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .header-actions { flex-direction: column; align-items: center; }
  }

  /* ========== PRINT STYLES ========== */
  @media print {
    * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }

    body {
      background: white;
      color: #1a1a1a;
      font-size: 9.5pt;
      line-height: 1.5;
    }
    body::after { display: none; }

    .scroll-progress,
    .nav,
    .mobile-menu,
    .cursor-dot,
    .cursor-ring,
    .header-actions,
    .cta-section,
    .footer,
    .no-print { display: none !important; }

    /* Print Header with Logo */
    .print-header {
      display: flex !important;
      align-items: center;
      justify-content: space-between;
      padding: 0 0 12pt;
      border-bottom: 2pt solid #2C2420;
      margin-bottom: 16pt;
    }
    .print-header img {
      height: 32pt;
      width: auto;
    }
    .print-header .print-date {
      font-size: 8pt;
      color: #666;
    }

    .page-header {
      padding: 0;
      background: none;
      text-align: left;
      margin-bottom: 10pt;
    }
    .page-header::before { display: none; }
    .page-header h1 {
      font-size: 18pt;
      margin-bottom: 4pt;
      -webkit-text-fill-color: #1a1a1a;
      background: none;
      color: #1a1a1a;
    }
    .page-header h1 em {
      -webkit-text-fill-color: #4a5a30;
      color: #4a5a30;
    }
    .page-header p {
      font-size: 9.5pt;
      color: #444;
      max-width: none;
    }
    .breadcrumb { display: none; }

    .section { padding: 0; }
    .container { max-width: none; }

    .content-section {
      padding: 10pt 0;
      border-bottom: 0.5pt solid #ddd;
      page-break-inside: avoid;
    }
    .content-section h2 {
      font-size: 12pt;
      margin-bottom: 6pt;
      color: #1a1a1a;
    }
    .content-section h3 {
      font-size: 10.5pt;
      margin-bottom: 4pt;
    }
    .content-section p, .content-section li {
      font-size: 9pt;
      line-height: 1.5;
      color: #333;
    }
    .content-section ul li { padding: 2pt 0 2pt 12pt; }
    .content-section ul li::before { top: 7pt; width: 4pt; height: 4pt; }

    .law-box {
      background: #f5f5f5;
      border-radius: 6pt;
      padding: 10pt;
      gap: 0 12pt;
    }
    .law-item, .law-item-full { padding: 4pt 0; }
    .law-label { font-size: 7pt; }
    .law-value { font-size: 9pt; }

    .timeline { margin: 8pt 0; }
    .timeline-item { gap: 8pt; }
    .timeline-content { padding: 0 0 8pt; }
    .timeline-year { font-size: 9.5pt; }
    .timeline-desc { font-size: 8.5pt; }
    .timeline-dot { width: 10pt; height: 10pt; border-width: 2pt; }
    .timeline-item:last-child .timeline-dot { width: 12pt; height: 12pt; }
    .timeline-line { width: 16pt; }

    .stats-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 6pt;
      margin: 8pt 0;
    }
    .stat-card {
      background: #f5f5f5;
      border-radius: 6pt;
      padding: 8pt;
    }
    .stat-number { font-size: 14pt; color: #4a5a30; }
    .stat-number.warning { color: #b8872e; }
    .stat-desc { font-size: 7pt; }

    .resp-grid { gap: 6pt; margin: 8pt 0; }
    .resp-item {
      background: #f5f5f5;
      border-radius: 6pt;
      padding: 8pt;
      border-left-width: 3pt;
    }
    .resp-title { font-size: 9.5pt; margin-bottom: 2pt; }
    .resp-desc { font-size: 8.5pt; }

    .hessen-box {
      background: #eef2e6;
      border-radius: 6pt;
      padding: 10pt;
      margin: 8pt 0;
    }

    .action-list li {
      padding: 4pt 0 4pt 24pt;
      font-size: 9pt;
    }
    .action-list li::before {
      width: 18pt;
      height: 18pt;
      font-size: 7pt;
      top: 4pt;
    }

    .partner-box {
      background: #2C2420;
      color: white;
      border-radius: 6pt;
      padding: 12pt;
      margin-top: 10pt;
      text-align: center;
    }
    .partner-box h3 {
      font-size: 11pt;
      color: white;
      margin-bottom: 4pt;
    }
    .partner-box p {
      font-size: 8.5pt;
      color: rgba(255,255,255,0.8);
    }
    .partner-box .contact-line {
      font-size: 8.5pt;
      color: white;
      margin-top: 6pt;
    }
    .partner-box .contact-line a { color: #8A9E64; }

    .sources {
      font-size: 7pt;
      margin-top: 10pt;
      padding-top: 6pt;
      color: #888;
    }

    .reveal { opacity: 1; transform: none; }

    @page {
      size: A4;
      margin: 18mm 15mm 15mm 15mm;
    }
  }

  /* Hide print header on screen */
  .print-header { display: none; }

  /* Chalk Canvas */
  canvas.chalk-canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.7s ease;
    border-radius: inherit;
  }
  .chalk-active canvas.chalk-canvas { opacity: 1; }
