/* ══════════════════════════════════════════════════════════
   privacy.css
   ══════════════════════════════════════════════════════════ */

:root {
    --brand: #c67529;
    --brand-2: #ff8f0c;
    --brand-3: #b07219;
    --brand-grad: linear-gradient(135deg, #c67529 0%, #ff8f0c 30%, #ac5c21 50%, #b07219 70%, #e8820a 100%);
    --ink: #111;
    --muted: #414141;
    --line: rgba(0, 0, 0, .08);
    --cream: #faf7f1;
}

.kf-divider--center {
    margin-left: auto;
    margin-right: auto;
}


/* ═══════════════════════════════════════════
   HERO — dark editorial header, no property
   photo (doesn't suit legal content)
   ═══════════════════════════════════════════ */
.pp-hero {
    position: relative;
    padding: 170px 0 90px;
    background: #0f0d0a;
    color: #fff;
    overflow: hidden;
}

.pp-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(198, 117, 41, .16), transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(255, 143, 12, .12), transparent 50%);
}

.pp-hero-content {
    position: relative;
    z-index: 1;
}

.pp-breadcrumb {
    font-size: 12px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 26px;
}

.pp-breadcrumb a {
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
}

.pp-breadcrumb a:hover {
    color: var(--brand-2);
}

.pp-breadcrumb span {
    margin: 0 8px;
}

.pp-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 5vw, 64px);
    color: #fff;
    margin-bottom: 16px;
}

.pp-updated {
    font-size: 12.5px;
    letter-spacing: .5px;
    color: rgba(255, 255, 255, .5);
}


/* ═══════════════════════════════════════════
   INTRO
   ═══════════════════════════════════════════ */
.pp-intro-section {
    padding: 80px 0 20px;
    background: #fff;
}

.pp-intro {
    max-width: 820px;
    margin: 0 auto;
}

.pp-intro p {
    font-size: 15px;
    line-height: 2;
    color: var(--muted);
    margin-bottom: 22px;
}

.pp-intro strong {
    color: var(--ink);
}


/* ═══════════════════════════════════════════
   BODY — sticky TOC + sections
   ═══════════════════════════════════════════ */
.pp-body-section {
    padding: 40px 0 110px;
    background: #fff;
}

.pp-body-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 70px;
    align-items: start;
}

/* ── TOC ── */
.pp-toc {
    position: sticky;
    top: 110px;
}

.pp-toc-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 20px;
}

.pp-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-left: 1px solid var(--line);
}

.pp-toc-list li {
    margin-bottom: 4px;
}

.pp-toc-list a {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 10px 0 10px 20px;
    margin-left: -1px;
    border-left: 2px solid transparent;
    font-size: 14.5px;
    color: var(--muted);
    text-decoration: none;
    transition: color .3s ease, border-color .3s ease;
}

.pp-toc-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: rgba(198, 117, 41, 0.938);
}

.pp-toc-list a:hover {
    color: var(--ink);
}

.pp-toc-list a.active {
    color: var(--ink);
    font-weight: 600;
    border-left-color: var(--brand);
}

.pp-toc-list a.active .pp-toc-num {
    color: var(--brand);
}

/* ── Sections ── */
.pp-sections {
    max-width: 760px;
}

.pp-section {
    position: relative;
    padding: 46px 0 46px 66px;
    border-bottom: 1px solid var(--line);
    scroll-margin-top: 110px;
}

.pp-section:first-child {
    padding-top: 0;
}

.pp-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pp-section-num {
    position: absolute;
    left: 0;
    top: 46px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--cream);
    border: 1px solid rgba(198, 117, 41, .2);
    display: grid;
    place-items: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: var(--brand);
}

.pp-section:first-child .pp-section-num {
    top: 0;
}

.pp-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 27px;
    color: #000;
    font-weight: 600;
    letter-spacing: .3px;
    margin-bottom: 0;
}

.pp-section .kf-divider {
    margin: 16px 0 22px;
}

.pp-section p {
    font-size: 14.5px;
    line-height: 1.95;
    color: var(--muted);
    margin-bottom: 18px;
}

.pp-section p:last-child {
    margin-bottom: 0;
}


/* ═══════════════════════════════════════════
   CONTACT CTA
   ═══════════════════════════════════════════ */
.pp-cta-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background:#1b3228;
    color: #fff;
}

.pp-cta-bg {
    position: absolute;
    inset: 0;
    background: url("../image/director-bg.webp") center/cover no-repeat;
    opacity: .15;
    filter: grayscale(1);
}

.pp-cta-section .sub-heading {
    color: #e8c896;
}

.pp-cta-section .main-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.pp-cta-text {
    max-width: 480px;
    margin: 0 auto 34px;
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255, 255, 255, .7);
}

.pp-cta-btn {
    border-color: #fff;
    color: #fff;
}

.pp-cta-btn:hover {
    border-color: var(--brand);
}


/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 991px) {
    .pp-hero {
        padding: 140px 0 70px;
    }
    .pp-section{
        padding-top: 25px;
    }

    .pp-body-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pp-toc {
        position: static;
        border-bottom: 1px solid var(--line);
        padding-bottom: 30px;
    }

    .pp-toc-list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        border-left: none;
    }

    .pp-toc-list a {
        padding: 8px 16px;
        border: 1px solid var(--line);
        border-left: 1px solid var(--line);
        border-radius: 30px;
    }

    .pp-toc-list a.active {
        border-color: var(--brand);
        background: rgba(198, 117, 41, .06);
    }

    .pp-section {
        padding-left: 58px;
    }

    .pp-section-num {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .pp-intro-section,
    .pp-body-section {
        padding-top: 30px;
    }

    .pp-section {
        padding-left: 0;
        
    }

    .pp-section:first-child {
        padding-top: 0;
    }

    .pp-section-num {
        position: static;
        margin-bottom: 16px;
    }

    .pp-cta-section {
        padding: 80px 0;
    }
}