/* ==========================================================================
   Privacy Policy page
   ========================================================================== */

.privacy-policy {
    background: var(--c-bg-white);
    color: var(--c-text-dark);
}

.privacy-policy .container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 var(--container-px);
}

/* ── Hero ── */
.privacy-policy__hero {
    padding: 120px 0 24px;
    border-bottom: 1px solid var(--c-border-light);
}

.privacy-policy__hero-title {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -0.5px;
    line-height: 52px;
    color: rgb(15, 15, 16);
    margin: 0;
}

/* ── Intro ── */
.privacy-policy__intro {
    padding: 48px 0 0;
}

.privacy-policy__page-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.3px;
    line-height: 36px;
    color: rgb(23, 23, 25);
    margin: 0 0 20px;
}

.privacy-policy__intro p {
    font-family: var(--font-display);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    color: rgb(23, 23, 25);
    margin: 0 0 16px;
}

.privacy-policy__intro p:last-child {
    margin-bottom: 0;
}

.privacy-policy__effective {
    font-size: 15px !important;
    color: var(--c-text-muted) !important;
}

/* ── Section wrapper ── */
.privacy-policy__section {
    padding: 56px 0;
}

.privacy-policy__section + .privacy-policy__section {
    padding-top: 0;
}

.privacy-policy__number {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--c-text-muted);
    margin-bottom: 8px;
}

.privacy-policy__section-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.3px;
    line-height: 36px;
    color: rgb(23, 23, 25);
    margin: 0 0 20px;
}

/* ── Bullet heading (■) ── */
.privacy-policy__bullet-heading {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    color: rgb(23, 23, 25);
    margin: 18px 0 8px;
}

/* ── Sub heading (parenthesised (1) (2) …) ── */
.privacy-policy__sub-heading {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 28px;
    color: rgb(23, 23, 25);
    margin: 28px 0 12px;
}

/* ── Body paragraphs ── */
.privacy-policy p {
    font-family: var(--font-display);
    font-size: 15px;
    line-height: 24px;
    color: rgb(64, 64, 68);
    margin: 0 0 12px;
}

/* ── Dash bullets ── */
.privacy-policy__list {
    list-style: none;
    margin: 0 0 12px;
    padding: 0 0 0 12px;
}

.privacy-policy__list li {
    position: relative;
    padding-left: 14px;
    font-family: var(--font-display);
    font-size: 15px;
    line-height: 24px;
    color: rgb(64, 64, 68);
    margin: 0 0 6px;
}

.privacy-policy__list li::before {
    content: "-";
    position: absolute;
    left: 0;
    top: 0;
    color: rgb(64, 64, 68);
}

/* ── Footer block (updated + contact) ── */
.privacy-policy__footer-block {
    padding: 32px 0 72px;
}

.privacy-policy__updated {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--c-text-muted);
    margin: 0 0 32px;
}

.privacy-policy__contact-block {
    padding-top: 24px;
    border-top: 1px solid var(--c-border-light);
}

.privacy-policy__contact-block p {
    font-family: var(--font-display);
    font-size: 15px;
    line-height: 24px;
    color: rgb(23, 23, 25);
    margin: 0 0 16px;
}

.privacy-policy__contact-block p:last-child {
    margin-bottom: 0;
}

.privacy-policy a {
    color: var(--c-accent-purple);
    text-decoration: none;
}

.privacy-policy a:hover {
    text-decoration: underline;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .privacy-policy__hero {
        padding: 96px 0 20px;
    }

    .privacy-policy__hero-title {
        font-size: 30px;
        line-height: 38px;
    }

    .privacy-policy__page-title {
        font-size: 22px;
        line-height: 30px;
    }

    .privacy-policy__section {
        padding: 40px 0;
    }

    .privacy-policy__section-title {
        font-size: 22px;
        line-height: 30px;
    }

    .privacy-policy__sub-heading {
        font-size: 16px;
        line-height: 26px;
    }
}
