/* ── PAGE CONTENT ── */
    .page-content {
      padding: clamp(120px, 14vw, 160px) 0 clamp(72px, 9vw, 108px);
      background: var(--bg);
      min-height: 60vh;
    }
    .page-content h1 {
      font-family: var(--ff-d); font-weight: 700;
      font-size: clamp(28px, 3.5vw, 48px); letter-spacing: -0.02em;
      color: var(--forest); line-height: 1.15; margin-bottom: 32px;
    }
    .page-content p {
      font-size: clamp(15px, 1.5vw, 17px); line-height: 1.8;
      color: var(--muted); max-width: 60ch; margin-bottom: 20px;
    }
    .page-content a { color: var(--orange); }
    .page-content a:hover { text-decoration: underline; }
    .page-content .lbl {
      font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
      display: flex; align-items: center; gap: 10px; color: var(--orange); margin-bottom: 16px;
    }
    .page-content .lbl::before { content: ''; width: 24px; height: 1px; background: currentColor; flex-shrink: 0; }
