/* ==========================================================
   BOLDUS BIOFACTORY
   PRIVACY POLICY
========================================================== */


/* ==========================================================
   PAGE VARIABLES
========================================================== */

.privacy-page {
    background: #F8F8F4;
    color: #173F2E;
}


/* ==========================================================
   SHARED CONTAINER
========================================================== */

.privacy-container {
    width: min(100% - 48px, 980px);
    margin: 0 auto;
}


/* ==========================================================
   PRIVACY HERO
========================================================== */

.privacy-hero {
    padding: 96px 0 72px;
    background: #F8F8F4;
    border-bottom: 1px solid rgba(23, 63, 46, 0.10);
}

.privacy-eyebrow {
    display: inline-block;
    margin-bottom: 18px;

    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: #6B8D45;
}

.privacy-title {
    max-width: 820px;
    margin: 0 0 24px;

    font-family: "Playfair Display", serif;
    font-size: clamp(48px, 6vw, 76px);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.035em;

    color: #173F2E;
}

.privacy-intro {
    max-width: 760px;
    margin: 0;

    font-family: "Inter", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.75;

    color: #56645C;
}

.privacy-meta {
    margin: 24px 0 0;

    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;

    color: #7A857F;
}


/* ==========================================================
   CONTENT AREA
========================================================== */

.privacy-content-section {
    padding: 78px 0 100px;
    background: #FFFFFF;
}

.privacy-content {
    max-width: 860px;
}


/* ==========================================================
   INDIVIDUAL SECTIONS
========================================================== */

.privacy-section {
    padding: 0 0 48px;
    margin: 0 0 48px;

    border-bottom: 1px solid rgba(23, 63, 46, 0.10);
}

.privacy-section:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}


/* ==========================================================
   HEADINGS
========================================================== */

.privacy-section h2 {
    margin: 0 0 20px;

    font-family: "Playfair Display", serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.015em;

    color: #173F2E;
}


/* ==========================================================
   PARAGRAPHS
========================================================== */

.privacy-section p {
    max-width: 820px;
    margin: 0 0 18px;

    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;

    color: #56645C;
}

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


/* ==========================================================
   LISTS
========================================================== */

.privacy-section ul {
    max-width: 800px;
    margin: 8px 0 22px;
    padding-left: 22px;
}

.privacy-section li {
    margin-bottom: 11px;
    padding-left: 5px;

    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;

    color: #56645C;
}

.privacy-section li:last-child {
    margin-bottom: 0;
}


/* ==========================================================
   CONTACT EMAIL
========================================================== */

.privacy-contact-highlight {
    display: inline-block;
    margin-top: 4px !important;
}

.privacy-contact-highlight a {
    display: inline-block;

    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 600;

    color: #55743B;
    text-decoration: none;

    border-bottom: 1px solid rgba(85, 116, 59, 0.35);

    transition:
        color 0.2s ease,
        border-color 0.2s ease;
}

.privacy-contact-highlight a:hover {
    color: #173F2E;
    border-color: #173F2E;
}


/* ==========================================================
   FINAL CTA
========================================================== */

.privacy-page + .final-cta-section {
    margin-top: 0;
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 700px) {

    .privacy-container {
        width: calc(100% - 32px);
    }


    /* ------------------------------------------------------
       HERO
    ------------------------------------------------------ */

    .privacy-hero {
        padding: 58px 0 48px;
    }

    .privacy-eyebrow {
        margin-bottom: 14px;
        font-size: 10px;
    }

    .privacy-title {
        margin-bottom: 20px;

        font-size: 43px;
        line-height: 1.06;
    }

    .privacy-intro {
        font-size: 15px;
        line-height: 1.7;
    }

    .privacy-meta {
        margin-top: 20px;
        font-size: 11px;
    }


    /* ------------------------------------------------------
       CONTENT
    ------------------------------------------------------ */

    .privacy-content-section {
        padding: 52px 0 68px;
    }

    .privacy-section {
        padding-bottom: 36px;
        margin-bottom: 36px;
    }

    .privacy-section h2 {
        margin-bottom: 16px;

        font-size: 27px;
        line-height: 1.18;
    }

    .privacy-section p {
        font-size: 14px;
        line-height: 1.75;
    }

    .privacy-section ul {
        padding-left: 20px;
    }

    .privacy-section li {
        font-size: 14px;
        line-height: 1.65;
    }

    .privacy-contact-highlight a {
        font-size: 14px;
    }

}


/* ==========================================================
   SMALL PHONES
========================================================== */

@media (max-width: 420px) {

    .privacy-container {
        width: calc(100% - 28px);
    }

    .privacy-hero {
        padding: 48px 0 42px;
    }

    .privacy-title {
        font-size: 37px;
    }

    .privacy-intro {
        font-size: 14px;
        line-height: 1.7;
    }

    .privacy-content-section {
        padding: 44px 0 58px;
    }

    .privacy-section {
        padding-bottom: 32px;
        margin-bottom: 32px;
    }

    .privacy-section h2 {
        font-size: 24px;
    }

    .privacy-section p,
    .privacy-section li {
        font-size: 13.5px;
    }

}

/* ==========================================================
   PRIVACY POLICY — GLOBAL COMPONENT COMPATIBILITY
========================================================== */

/*
   The Header and Footer are global components controlled by
   css/style.css. They are intentionally not styled here.
*/
