:root {
    --bg: #F5EFE0;
    --ink: #1a1a1a;
    --cream: #EDE8D8;
    --cream-mid: #D9D1BC;
    --mid: #7a7570;
    --white: #FFFFFF;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    margin-top: 20px;
}

/* ── CONTAINER ── */
.container {
    max-width: 860px;
    margin: 0 auto;
    padding: 80px 2rem 4rem;
}

/* ── HEADER ── */
.text-center.mb-5 h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 0.95;
    color: var(--ink);
    text-align: center;
    margin-bottom: 1rem;
}

.lead {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mid);
    font-weight: 500;
    text-align: center;
}

.text-center.mb-5>p:last-child {
    font-size: 14px;
    color: var(--mid);
    font-weight: 300;
    line-height: 1.85;
    text-align: center;
    max-width: 560px;
    margin: .6rem auto 0;
}

/* ── SECTION HEADINGS ── */
h1,
h2,
h3 {
    text-align: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 2.5vw, 30px) !important;
    font-weight: 900 !important;
    letter-spacing: -0.5px;
    color: var(--ink) !important;
    margin-top: 3rem;
    margin-bottom: 1rem;
    padding-bottom: .7rem;
    border-bottom: 1px solid var(--cream-mid);
    text-align: left !important;
}

h4 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--ink);
    margin-top: 1.8rem;
    margin-bottom: .8rem;
}

h5 {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink);
    margin-top: 0;
    margin-bottom: .6rem;
}

/* ── BODY TEXT ── */
.section-content,
p {
    font-size: 13px;
    line-height: 1.9;
    color: var(--mid);
    font-weight: 300;
    margin-bottom: .8rem;
    text-align: left;
}

/* ── LISTS ── */
.privacy-policy-content ul,
.privacy-policy-content ol {
    padding-left: 0;
    list-style: none;
    margin-bottom: 1rem;
    margin-left: 0 !important;
}

.privacy-policy-content ul li,
.privacy-policy-content ol li {
    font-size: 13px;
    line-height: 1.9;
    color: var(--mid);
    font-weight: 300;
    padding: .3rem 0 .3rem 1.4rem;
    position: relative;
    margin-bottom: 0 !important;
}

.privacy-policy-content ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--mid);
    font-size: 11px;
    top: .38rem;
}

li strong,
li a {
    color: var(--ink);
    font-weight: 600;
}

li a {
    text-decoration: none;
    border-bottom: 1px solid var(--cream-mid);
    transition: border-color .2s;
}

li a:hover {
    border-color: var(--ink);
    color: var(--ink);
}

/* ── INFO BOXES ── */
.highlight-box {
    background: var(--cream);
    border-left: 3px solid var(--ink);
    padding: 1.4rem 1.8rem;
    margin: 1.6rem 0;
    border-radius: 0;
}

.important-notice {
    background: #fdf6ec;
    border-left: 3px solid #c8a96e;
    padding: 1.4rem 1.8rem;
    margin: 1.6rem 0;
    border-radius: 0;
}

.gdpr-compliance {
    background: var(--cream);
    border-left: 3px solid var(--cream-mid);
    padding: 1.4rem 1.8rem;
    margin: 1.6rem 0;
    border-radius: 0;
}

.highlight-box h4,
.highlight-box h5,
.important-notice h4,
.important-notice h5,
.gdpr-compliance h4,
.gdpr-compliance h5 {
    margin-top: 0;
}

.highlight-box p,
.important-notice p,
.gdpr-compliance p {
    margin-bottom: 0;
}

.highlight-box strong,
.important-notice strong,
.gdpr-compliance strong {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink);
    display: block;
    margin-bottom: .4rem;
}

.highlight-box span,
.important-notice span,
.gdpr-compliance span {
    font-size: 13px;
    color: var(--mid);
    font-weight: 300;
    line-height: 1.85;
}

/* ── FOOTER ── */
footer {
    background: var(--ink) !important;
    background-color: var(--ink) !important;
    color: rgba(255, 255, 255, 0.4);
    padding: 2.5rem 3rem;
    text-align: center;
    font-size: 12px;
    font-family: 'DM Sans', sans-serif;
}

footer a {
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none !important;
    letter-spacing: 1px;
}

footer a:hover {
    color: var(--white) !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .container {
        padding: 60px 1.5rem 3rem;
    }
}