:root {
    --brand-primary: #1a1a1a;
    --brand-secondary: #e53935;
    --text: #1a1a1a;
    --muted: #666;
    --bg: #fff;
    --panel: #f7f7f7;
    --border: #e5e5e5;
    --radius: 8px;
    --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: var(--sans);
    color: var(--text);
    background: var(--bg);
    font-size: 17px;
    line-height: 1.55;
}
a { color: var(--brand-secondary); }
a:hover { opacity: .85; }
.container { max-width: 720px; margin: 0 auto; padding: 1.5rem 1.25rem; }

.site-header {
    border-bottom: 1px solid var(--border);
    background: var(--bg);
}
.site-header .container { padding: 1rem 1.25rem; }
.logo-link { color: var(--brand-primary); text-decoration: none; }
.site-logo { max-height: 48px; width: auto; display: block; }

.flash { padding: .75rem 1rem; border-radius: var(--radius); margin: 1rem 0; }
.flash-ok    { background: #e7f5eb; color: #1e5131; border: 1px solid #bfe3c8; }
.flash-error { background: #fdeaea; color: #7a1414; border: 1px solid #f3c4c4; }

.action-title { font-size: 2rem; margin: 0 0 .25rem; line-height: 1.15; color: var(--brand-primary); }
.action-subtitle { color: var(--muted); font-size: 1.1rem; margin: 0 0 1.25rem; }
.action-body { margin: 1.5rem 0; }
.action-body h2 { font-size: 1.35rem; margin-top: 2rem; }
.action-body img { max-width: 100%; height: auto; }

.action-form {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-top: 2rem;
}
.action-form label { display: block; margin-bottom: 1rem; }
.action-form label span { display: block; font-weight: 600; margin-bottom: .35rem; font-size: .95rem; }
.action-form input,
.action-form textarea {
    width: 100%;
    padding: .7rem .85rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg);
}
.action-form input:focus,
.action-form textarea:focus {
    outline: 2px solid var(--brand-secondary);
    outline-offset: 1px;
    border-color: transparent;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }

.btn {
    display: inline-block;
    padding: .7rem 1.1rem;
    background: var(--brand-secondary);
    color: #fff;
    text-decoration: none;
    border: 0;
    border-radius: var(--radius);
    font: 600 1rem/1 var(--sans);
    cursor: pointer;
}
.btn-primary { background: var(--brand-secondary); }
.btn-lg { padding: 1rem 1.5rem; font-size: 1.1rem; width: 100%; }

.thankyou .ty-headline { font-size: 2rem; color: var(--brand-primary); margin: 1.5rem 0 1rem; }
.ty-block { margin: 2.5rem 0; padding: 1.5rem; background: var(--panel); border-radius: var(--radius); }
.ty-block h2 { margin-top: 0; color: var(--brand-primary); }

.share-buttons { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0; }
.share-btn {
    padding: .6rem 1rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: .95rem;
}
.share-btn:hover { border-color: var(--brand-secondary); color: var(--brand-secondary); }

.forward-form-wrap { margin-top: 1rem; }
.forward-form-wrap summary { cursor: pointer; font-weight: 600; color: var(--brand-secondary); }
.forward-form { margin-top: 1rem; }
.forward-form label { display: block; margin-bottom: .85rem; }
.forward-form label span { display: block; font-weight: 600; margin-bottom: .3rem; font-size: .95rem; }
.forward-form input, .forward-form textarea {
    width: 100%; padding: .6rem .8rem; border: 1px solid var(--border); border-radius: var(--radius); font: inherit;
}

.contrib-buttons { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .5rem; }
.btn-contribute {
    background: var(--brand-primary);
    min-width: 80px;
    text-align: center;
}
.btn-contribute-other { background: transparent; color: var(--brand-primary); border: 2px solid var(--brand-primary); }

.site-footer {
    border-top: 1px solid var(--border);
    margin-top: 3rem;
    padding: 1.5rem 0;
    color: var(--muted);
    font-size: .85rem;
}
.site-footer .footer-entity { font-weight: 600; color: var(--text); margin: 0 0 .25rem; }
.fec-disclaimer { margin-top: 1rem; font-size: .8rem; padding: .75rem; background: var(--panel); border-radius: var(--radius); }
