: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;
}

/* ── CONTAINER ── */
.container {
    max-width: 860px;
    background: var(--white);
    padding: 3.5rem 4rem;
    margin-top: 100px;
    margin-bottom: 3rem;
    border: none;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid var(--cream-mid);
}

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

.text-muted {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mid) !important;
    font-weight: 500;
}

.lead {
    font-size: 14px;
    color: var(--mid);
    font-weight: 300;
    line-height: 1.85;
    max-width: 560px;
    margin: 0 auto;
}

/* ── SECTION HEADINGS ── */
h4 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--ink) !important;
    margin-top: 2.8rem;
    margin-bottom: .8rem;
    padding-bottom: .6rem;
    border-bottom: 1px solid var(--cream-mid);
}

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

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

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

/* ── LISTS ── */
ul,
ol {
    padding-left: 0;
    list-style: none;
    margin-bottom: 1rem;
}

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

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

ol {
    counter-reset: item;
}

ol li {
    counter-increment: item;
}

ol li::before {
    content: counter(item, decimal-leading-zero);
    position: absolute;
    left: 0;
    font-size: 10px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 1px;
    top: .55rem;
}

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

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

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

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

.legal-notice h5,
.legal-notice h6,
.important-box h5,
.important-box h6,
.policy-highlight h5,
.policy-highlight h6 {
    margin-top: 0;
}

.legal-notice p,
.important-box p,
.policy-highlight p {
    margin-bottom: 0;
}

/* ── FOOTER ── */
footer.bg-dark {
    background: var(--ink) !important;
    padding: 2.5rem 3rem;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

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: 2rem 1.5rem;
        margin-top: 80px;
    }
}