:root {
    --bg: #000000;
    --text: #ffffff;
    --link: #1d5fff;
    --accent: #ff4b4b;
    --muted: #d9d9d9;
    --line: #6a6a6a;
    --maxw: 1150px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
}

a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }

.site-header,
.site-main,
.site-footer {
    width: min(calc(100% - 44px), var(--maxw));
    margin: 0 auto;
}

.report-bar {
    text-align: center;
    padding: 34px 0 22px;
}

.report-bar a {
    color: var(--accent);
    font-weight: 800;
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    letter-spacing: 0.01em;
}

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 34px;
    flex-wrap: wrap;
    padding: 12px 0 28px;
}

.main-nav a {
    color: var(--text);
    font-size: clamp(1.1rem, 2.1vw, 1.35rem);
    font-weight: 800;
}

.hero-brand {
    text-align: center;
    padding: 16px 0 56px;
}

.hero-logo {
    display: block;
    width: min(100%, 520px);
    height: auto;
    margin: 0 auto 24px;
}

.hero-tagline {
    max-width: 1120px;
    margin: 0 auto;
    font-size: clamp(1rem, 1.35vw, 1.15rem);
    color: var(--text);
}

.content-section {
    padding: 0 0 22px;
}

.content-section h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2.2rem, 3vw, 3rem);
    line-height: 1.1;
    margin: 0 0 26px;
}

.content-section h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.15rem;
    margin: 0 0 18px;
    text-transform: uppercase;
}

.content-section p,
.content-section li {
    font-size: clamp(1rem, 1.3vw, 1.1rem);
}

.content-section p {
    margin: 0 0 22px;
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin: 22px 0 26px;
    text-align: center;
}

.board-card img {
    width: 185px;
    height: 185px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto 18px;
}

.board-card strong,
.advisory-name {
    display: block;
    font-size: 1.05rem;
}

.board-card span,
.advisory-role {
    display: block;
    margin-top: 4px;
    font-size: 0.95rem;
}

.centered-block {
    text-align: center;
}

.service-list,
.volunteer-list {
    padding-left: 36px;
    margin: 0 0 22px;
}

.service-list li,
.volunteer-list li {
    margin: 0 0 12px;
}

.donation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    margin: 16px 0 28px;
}

.donation-card h4 {
    margin: 0 0 18px;
    font-size: 1rem;
}

.paypal-button {
    display: inline-block;
    background: #ffc439;
    color: #111;
    border-radius: 18px;
    padding: 10px 24px;
    font-weight: 700;
}

.note-italic {
    font-style: italic;
}

.contact-intro {
    margin-bottom: 28px;
}

.contact-form {
    max-width: 100%;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 26px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
}

.form-group small {
    display: block;
    margin-top: 8px;
}

input,
textarea {
    width: 100%;
    background: #f4f4f4;
    color: #111;
    border: 1px solid #1d5fff;
    padding: 14px 12px;
    font-size: 1rem;
}

textarea {
    min-height: 170px;
    resize: vertical;
}

.submit-btn {
    display: inline-block;
    background: #2f63ff;
    color: #fff;
    border: 0;
    padding: 12px 18px;
    font-size: 1rem;
    border-radius: 3px;
    cursor: pointer;
}

.footer-divider {
    border-top: 1px solid var(--line);
    margin: 34px 0 42px;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
}

.footer-col h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.15rem;
    margin: 0 0 28px;
}

.footer-col p,
.footer-col li {
    font-size: 1rem;
    margin: 0 0 14px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-divider-bottom {
    margin-top: 40px;
    margin-bottom: 18px;
}

.copyright {
    text-align: center;
    color: #d3d3d3;
    margin: 0 0 36px;
}

@media (max-width: 900px) {
    .board-grid,
    .donation-grid,
    .footer-columns,
    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .main-nav {
        gap: 16px 24px;
    }

    .site-header,
    .site-main,
    .site-footer {
        width: min(calc(100% - 28px), var(--maxw));
    }
}
