:root {
    --navy: #1b2a4e;
    --brick: #b5372e;
    --brick-dark: #8f2b24;
    --cream: #ece8e2;
    --brown: #5b4747;
    --yellow: #f4c828;
    --text: #262421;
    --max-width: 1200px;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.55;
}

a { color: inherit; }

.announce-bar {
    background: var(--navy);
    color: #fff;
    text-align: center;
    font-size: 0.9rem;
    padding: 10px 16px;
}
.announce-bar a { color: #fff; text-decoration: underline; font-weight: 600; }

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 18px 24px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--yellow);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
}
.brand-mark-img { height: 44px; width: auto; display: block; }
.brand-name { font-weight: 700; font-size: 1.05rem; color: var(--text); line-height: 1.15; }

.main-nav { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.main-nav a {
    text-decoration: none; font-weight: 600; font-size: 0.85rem;
    letter-spacing: 0.03em; text-transform: uppercase; color: var(--text);
}
.main-nav a:hover, .main-nav a.active { color: var(--brick); }

.btn {
    display: inline-block;
    background: var(--brick);
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}
.btn:hover { background: var(--brick-dark); }
.btn-outline {
    background: transparent; color: var(--brick); border: 2px solid var(--brick);
}

.hero {
    background: var(--cream);
    padding: 60px 24px;
}
.hero-inner { max-width: var(--max-width); margin: 0 auto; }
.hero h1 { font-size: 3rem; margin: 0 0 8px; line-height: 1.05; }
.hero .highlight { background: var(--brick); color: #fff; padding: 4px 14px; display: inline-block; }
.hero p.lede { font-size: 1.1rem; font-weight: 600; color: var(--brick); max-width: 480px; }

.section { max-width: var(--max-width); margin: 0 auto; padding: 64px 24px; }
.section h2 { font-size: 2rem; margin-bottom: 24px; }
.section-narrow { max-width: 800px; }

.img-fluid { max-width: 100%; height: auto; display: block; }
.img-rounded { border-radius: 10px; }

.img-text-row {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: center;
}
.img-text-row.reverse { grid-template-columns: 1.2fr 1fr; }
.img-text-row.reverse img { order: 2; }
.img-text-row h2 { margin-top: 0; }

.icon-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 24px;
    max-width: var(--max-width); margin: 0 auto; text-align: center;
}
.icon-item { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.icon-circle { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; }
.icon-item span { font-weight: 600; }

.brand-strip {
    display: flex; align-items: center; justify-content: center; gap: 56px;
    flex-wrap: wrap; opacity: 0.85;
}
.brand-strip img { height: 40px; width: auto; }

.press-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    max-width: var(--max-width); margin: 0 auto;
}
.press-grid img {
    width: 100%; height: 160px; object-fit: cover; object-position: top;
    border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
@media (max-width: 720px) {
    .press-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
    .img-text-row, .img-text-row.reverse { grid-template-columns: 1fr; }
    .img-text-row.reverse img { order: 0; }
    .icon-grid { grid-template-columns: repeat(2, 1fr); }
}

.site-footer {
    background: var(--brown);
    color: #f2ece7;
    padding: 56px 24px 28px;
}
.footer-inner {
    max-width: var(--max-width); margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr; gap: 40px;
}
.site-footer a { color: #f2ece7; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-legal { max-width: var(--max-width); margin: 24px auto 0; padding: 0 24px; font-size: 0.8rem; opacity: 0.75; }

.news-list { display: flex; flex-direction: column; }
.news-item { border-top: 1px solid #ddd; padding: 24px 0; display: flex; gap: 24px; align-items: baseline; }
.news-item time { font-size: 0.85rem; color: #888; min-width: 110px; }
.news-item a { text-decoration: none; font-weight: 600; font-size: 1.1rem; }
.news-item a:hover { color: var(--brick); }

.story-body { max-width: 720px; margin: 0 auto; padding: 48px 24px; }
.story-body img.hero { width: 100%; border-radius: 8px; margin-bottom: 24px; padding: 0; }
.story-meta { color: #888; font-size: 0.9rem; margin-bottom: 24px; }

.share-row { display: flex; gap: 10px; margin: 32px 0; }
.share-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 16px; border-radius: 6px; font-weight: 600; font-size: 0.85rem;
    text-decoration: none; color: #fff;
}
.share-btn.fb { background: #1877f2; }
.share-btn.x { background: #000; }
.share-btn.email { background: #555; }

.donate-box {
    background: var(--cream); border-radius: 10px; padding: 32px; max-width: 480px; margin: 0 auto;
}
.donate-amounts { display: flex; gap: 10px; flex-wrap: wrap; margin: 16px 0; }
.donate-amounts button {
    padding: 12px 20px; border-radius: 6px; border: 2px solid var(--brick);
    background: #fff; color: var(--brick); font-weight: 700; cursor: pointer;
}
.donate-amounts button.selected, .donate-amounts button:hover { background: var(--brick); color: #fff; }

.admin-nav { display: flex; gap: 18px; padding: 16px 24px; background: var(--navy); }
.admin-nav a { color: #fff; text-decoration: none; font-weight: 600; }
table.admin-table { width: 100%; border-collapse: collapse; }
table.admin-table th, table.admin-table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid #eee; }
.status-pill { padding: 2px 10px; border-radius: 12px; font-size: 0.75rem; font-weight: 700; }
.status-pill.published { background: #dcf5df; color: #1e7a2e; }
.status-pill.draft { background: #eee; color: #777; }

@media (max-width: 720px) {
    .site-header { flex-direction: column; gap: 16px; }
    .main-nav { flex-wrap: wrap; justify-content: center; gap: 14px; }
    .hero h1 { font-size: 2rem; }
    .footer-inner { grid-template-columns: 1fr; }
}
