:root {
    --brand-primary: #581851;
    --brand-primary-light: #78216f;
    --brand-primary-lighter: #a02c94;
    --brand-primary-dark: #40123b;
    --brand-primary-rgb: 88, 24, 81;
    --brand-accent: #007a53;
    --brand-accent-rgb: 0, 122, 83;
    --banner-bg: #3a3a3a;
    --banner-bg-light: #474747;
    --banner-bg-lighter: #525252;
    --banner-rgb: 58, 58, 58;
    --text-dark: #2e2e2e;
    --brand-dark: #3a3a3a;
    --brand-dark-light: #474747;
    --brand-dark-lighter: #525252;
    --brand-dark-rgb: 58, 58, 58;
    --brand-tint: #f6ecf5;
    --page-bg: #f4f4f4;
    --text-color: #222222;
    --disclaimer-text: #444444;
    --focus-color: #b35c00;
}

/* High-visibility keyboard focus indicator (WCAG 2.4.7) */
:focus-visible {
    outline: 3px solid var(--focus-color);
    outline-offset: 2px;
}

/* Shared disclaimer styling: full-width band */
.site-disclaimer {
    width: 100%;
    margin: 30px 0 0 0;
    padding: 18px 30px;
    background: #ffffff;
    border-top: 3px solid var(--brand-primary);
    color: var(--disclaimer-text);
    font-size: 9pt;
    line-height: 1.5;
    box-sizing: border-box;
}

.site-disclaimer p {
    margin: 0 0 8px 0;
    max-width: 1100px;
}

.site-disclaimer p:last-child {
    margin-bottom: 0;
}

/* Homepage variant: lives inside the dark page footer */
.site-disclaimer--footer {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    color: #d5dde3;
    margin: 0;
    padding: 18px 40px;
}

.site-disclaimer--footer p {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* Visually hidden, but still read by screen readers */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media print {
    .site-disclaimer {
        border-top: 1px solid #000;
        color: #000;
    }
}
