        /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
               PAGE HERO
            ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
        .page-hero {
            padding: 140px 0 72px;
            background: radial-gradient(ellipse 60% 50% at 70% 40%, rgba(124, 58, 237, 0.15) 0%, transparent 65%),
                radial-gradient(ellipse 40% 40% at 20% 70%, rgba(232, 184, 75, 0.07) 0%, transparent 55%),
                var(--bg);
            border-bottom: 1px solid var(--border);
        }

        .page-hero-label {
            display: inline-block;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 16px;
        }

        .page-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.9rem, 4vw, 3rem);
            font-weight: 900;
            line-height: 1.12;
            margin-bottom: 16px;
        }

        .page-hero p {
            color: var(--muted);
            font-size: 0.92rem;
        }

        /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
               POLICY CONTENT
            ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
        .policy-wrap {
            padding: 80px 0 100px;
        }

        .policy-grid {
            display: grid;
            grid-template-columns: 240px 1fr;
            gap: 60px;
            align-items: start;
        }

        /* Sticky table of contents */
        .policy-toc {
            position: sticky;
            top: 88px;
        }

        .toc-title {
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 18px;
        }

        .toc-list {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .toc-list a {
            font-size: 0.82rem;
            color: var(--muted);
            padding: 6px 10px;
            border-radius: 6px;
            transition: all var(--t);
            border-left: 2px solid transparent;
        }

        .toc-list a:hover {
            color: var(--white);
            background: rgba(232, 184, 75, 0.06);
            border-left-color: var(--gold);
        }

        .toc-list a.is-active {
            color: var(--gold);
            background: rgba(232, 184, 75, 0.06);
            border-left-color: var(--gold);
        }

        /* Policy body */
        .policy-body {
            min-width: 0;
        }

        .policy-intro {
            color: var(--muted);
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 48px;
        }

        .policy-section {
            margin-bottom: 56px;
            scroll-margin-top: 88px;
        }

        .policy-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 18px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--border-soft);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .policy-section h2 .sec-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--gold-dim);
            color: var(--gold);
            font-size: 0.75rem;
            font-weight: 800;
            font-family: 'Inter', sans-serif;
            flex-shrink: 0;
        }

        .policy-section p {
            color: var(--muted);
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 14px;
        }

        .policy-section p:last-child {
            margin-bottom: 0;
        }

        .policy-section ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 9px;
            margin-top: 10px;
            margin-bottom: 14px;
        }

        .policy-section ul li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.92rem;
            color: var(--muted);
            line-height: 1.65;
        }

        .policy-section ul li::before {
            content: '—';
            color: var(--gold);
            flex-shrink: 0;
            font-weight: 700;
            margin-top: 1px;
        }

        .policy-section strong {
            color: var(--white);
            font-weight: 600;
        }

        .policy-section a {
            color: var(--gold);
            transition: color var(--t);
        }

        .policy-section a:hover {
            color: var(--gold-light);
        }

        /* Info card */
        .info-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 20px 24px;
            margin-bottom: 14px;
            display: flex;
            flex-direction: column;
            gap: 7px;
        }

        .info-card-row {
            display: flex;
            gap: 10px;
            font-size: 0.9rem;
        }

        .info-card-label {
            color: var(--gold);
            font-weight: 600;
            min-width: 100px;
            flex-shrink: 0;
        }

        .info-card-value {
            color: var(--muted);
        }

        .info-card-value a {
            color: var(--gold);
        }

        .info-card-value a:hover {
            color: var(--gold-light);
        }

        /* Highlight note */
        .policy-note {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-left: 3px solid var(--gold);
            border-radius: var(--radius-sm);
            padding: 18px 22px;
            margin-top: 16px;
            font-size: 0.88rem;
            color: var(--muted);
            line-height: 1.7;
        }

        /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
               RESPONSIVE
            ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
        @media (max-width: 900px) {
            .policy-grid {
                grid-template-columns: 1fr;
            }

            .policy-toc {
                display: none;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

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

            .page-hero {
                padding: 120px 0 56px;
            }
        }
