/* ============================================================
   PINTXO CHILD THEME — privacy-policy.css
   Styles for: privacy policy hero and content layout.
   Depends on: header.css for theme variables and type scale.
   ============================================================ */

/* ============================================================
   HERO
   ============================================================ */
.privacy-hero {
    position: relative;
    height: clamp(340px, 52vh, 540px);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.privacy-hero__bg {
    position: absolute;
    inset: -8%;
    background-image: var(--privacy-hero-bg);
    background-size: cover;
    background-position: center 40%;
    will-change: transform;
    z-index: 0;
}

.privacy-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(10, 4, 4, 0.90) 0%,
            rgba(10, 4, 4, 0.62) 55%,
            rgba(10, 4, 4, 0.28) 100%);
    z-index: 1;
}

.privacy-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
}

.privacy-hero__title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.1;
    margin: 0;
}

.privacy-hero__divider {
    width: 48px;
    height: 2px;
    background: var(--color-burgundy);
    margin: 10px auto 0;
}

/* ============================================================
   CONTENT WRAPPER
   ============================================================ */
.privacy-policy-points {
    background: var(--color-cream);
    padding: 30px 20px;
}

.privacy-policy__inner {
    max-width: 980px;
    margin: 0 auto;
}

.privacy-policy__header {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.privacy-policy__intro {
    max-width: 880px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--color-burgundy);
}

/* ============================================================
   RICH TEXT CONTENT
   ============================================================ */
.privacy-policy__content {
    background: var(--color-white);
    padding: clamp(1.5rem, 4vw, 3rem);
    border: 1px solid rgba(115, 8, 4, 0.12);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.04);
}

.privacy-policy__content>*:first-child {
    margin-top: 0;
}

.privacy-policy__content>*:last-child {
    margin-bottom: 0;
}

.privacy-policy__content h2,
.privacy-policy__content h3,
.privacy-policy__content h4 {
    color: var(--color-burgundy);
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.35;
    margin: 2.2rem 0 0.9rem;
}

.privacy-policy__content h2 {
    font-size: clamp(1.25rem, 2.2vw, 1.6rem);
}

.privacy-policy__content h3 {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.privacy-policy__content h4 {
    font-size: 1rem;
}

.privacy-policy__content p,
.privacy-policy__content li,
.privacy-policy__content address {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--color-text);
}

.privacy-policy__content p,
.privacy-policy__content ul,
.privacy-policy__content ol,
.privacy-policy__content blockquote,
.privacy-policy__content table,
.privacy-policy__content address {
    margin: 0 0 1.15rem;
}

.privacy-policy__content ul,
.privacy-policy__content ol {
    padding-left: 1.4rem;
}

.privacy-policy__content li+li {
    margin-top: 0.45rem;
}

.privacy-policy__content a {
    color: var(--color-burgundy);
    text-decoration: underline;
    text-underline-offset: 0.14em;
    word-break: break-word;
}

.privacy-policy__content a:hover {
    color: var(--color-burgundy-light);
}

.privacy-policy__content strong {
    font-weight: 700;
}

.privacy-policy__content blockquote {
    border-left: 2px solid rgba(115, 8, 4, 0.25);
    padding-left: 1rem;
    color: var(--color-text-light);
}

.privacy-policy__content table {
    width: 100%;
    border-collapse: collapse;
}

.privacy-policy__content th,
.privacy-policy__content td {
    border: 1px solid rgba(115, 8, 4, 0.12);
    padding: 0.75rem;
    text-align: left;
    vertical-align: top;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .privacy-policy__intro {
        font-size: 0.98rem;
    }

    .privacy-policy__content {
        padding: 1.4rem 1.1rem;
    }
}

@media (max-width: 480px) {
    .privacy-hero__title {
        font-size: 1.6rem;
    }
}