* {
    box-sizing: border-box;
}

.privacy-policy-page {
    background: #f7f3ee;
}

.privacy-policy-shell {
    width: min(920px, 100%);
    margin: 0 auto;
}

/* ---------------------------------------------------------------- */
/* Hero                                                             */
/* ---------------------------------------------------------------- */

.privacy-policy-hero {
    position: relative;
    padding: 62px 24px 46px;
    border-bottom: 1px solid #eadfd6;
    background: #ffffff;
    text-align: center;
}

.privacy-policy-eyebrow {
    margin: 0 0 12px;
    color: #c46e43;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.privacy-policy-title {
    margin: 0;
    color: #1f1c1a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 4.2vw, 58px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.privacy-policy-intro {
    max-width: 760px;
    margin: 22px auto 0;
    color: #49433f;
    font-size: 18px;
    line-height: 1.75;
}

/* ---------------------------------------------------------------- */
/* Body                                                             */
/* ---------------------------------------------------------------- */

.privacy-policy-body {
    padding: 48px 24px 76px;
    background: #f8f4ef;
}

.privacy-policy-card {
    margin: 0 0 22px;
    padding: 34px 36px;
    border: 1px solid #e5ddd7;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(70, 48, 34, 0.04);
}

.privacy-policy-card:last-child {
    margin-bottom: 0;
}

.privacy-policy-card-title {
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #efe6de;
    color: #211d1a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(23px, 2.4vw, 31px);
    font-weight: 700;
    line-height: 1.25;
}

.privacy-policy-card-content {
    color: #3f3a36;
    font-size: 16px;
    line-height: 1.8;
}

.privacy-policy-card-content p {
    margin: 0 0 16px;
}

.privacy-policy-card-content p:last-child {
    margin-bottom: 0;
}

.privacy-policy-card-content ul,
.privacy-policy-card-content ol {
    display: grid;
    gap: 10px;
    margin: 0 0 18px;
    padding-left: 22px;
}

.privacy-policy-card-content li {
    padding-left: 4px;
}

.privacy-policy-card-content strong {
    color: #2a2420;
}

.privacy-policy-card-content a {
    color: #9b4f2d;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.privacy-policy-card-content a:hover {
    color: #c96e43;
}

/* ---------------------------------------------------------------- */
/* Responsive                                                       */
/* ---------------------------------------------------------------- */

@media (max-width: 700px) {
    .privacy-policy-hero {
        padding: 46px 18px 36px;
    }

    .privacy-policy-title {
        font-size: clamp(32px, 10vw, 44px);
    }

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

    .privacy-policy-body {
        padding: 32px 16px 56px;
    }

    .privacy-policy-card {
        padding: 24px 20px;
        border-radius: 14px;
    }

    .privacy-policy-card-content {
        font-size: 15px;
        line-height: 1.75;
    }
}
