/* about-us.php — page-specific styles only. Shared tokens, nav, footer,
   .section/.section-header/.reveal/.btn base styles all come from
   landing.css (loaded first by head.php), so nothing here re-declares them.
   .about-hero and .final-cta used to be redeclared here too (byte-for-byte
   identical to organizations.css's copies) — both now live once in
   landing.css as the shared .page-hero/.about-hero/.org-hero and .final-cta
   rules, so this file only keeps what's actually specific to this page. */

.btn-ghost-dark { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.5); }
.btn-ghost-dark:hover { background: rgba(255,255,255,0.1); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: white; }

/* ── Origin story ── */
.origin-copy { max-width: 720px; margin: 0 auto; font-size: 17px; color: #334155; }
.origin-copy p { margin: 0 0 20px; }
.origin-copy p:last-child { margin-bottom: 0; }
.origin-signoff { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 15px; color: #64748b; }
.origin-signoff strong { color: var(--navy); font-weight: 600; }

/* ── How we help ── */
.help-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.card { background: white; border: 1px solid var(--line); border-radius: 16px; padding: 28px; transition: all 0.2s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.04); }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.tool-icon { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: #dcfce7; color: var(--green); margin-bottom: 16px; }
.tool-icon svg { width: 23px; height: 23px; }
.card h3 { font-size: 17px; color: var(--navy); margin: 0 0 8px; }
.card p { font-size: 14.5px; color: #475569; margin: 0; }

/* ── Principles ── */
.principles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; max-width: 960px; margin: 0 auto; }
.principle { background: white; border: 1px solid var(--line); border-radius: 14px; padding: 24px 26px; }
.principle h3 { font-size: 16px; color: var(--navy); margin: 0 0 8px; display: flex; align-items: center; gap: 10px; }
.principle h3 span { display: inline-flex; width: 28px; height: 28px; border-radius: 8px; background: #dcfce7; color: var(--green); font-size: 13px; font-weight: 700; align-items: center; justify-content: center; flex-shrink: 0; }
.principle p { font-size: 14.5px; color: #475569; margin: 0; }

/* ── Privacy band ── */
.privacy-band { background: var(--ink); color: white; padding: 84px 0; }
.privacy-band .section-eyebrow { color: var(--green-bright); }
.privacy-statement { font-family: 'Playfair Display', Georgia, serif; font-size: 28px; font-weight: 700; line-height: 1.35; max-width: 720px; margin: 0 auto 40px; text-align: center; }
.privacy-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 940px; margin: 0 auto; }
.privacy-point { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 24px; text-align: center; }
.privacy-point .privacy-icon { color: var(--green-bright); margin-bottom: 12px; }
.privacy-point .privacy-icon svg { width: 24px; height: 24px; margin: 0 auto; }
.privacy-point h4 { font-size: 15px; color: white; margin: 0 0 8px; }
.privacy-point p { font-size: 13.5px; color: #94a3b8; margin: 0; line-height: 1.55; }

/* ── Who we serve ── */
.serve-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
.serve-card { background: white; border: 1px solid var(--line); border-radius: 16px; padding: 32px; }
.serve-card h3 { font-size: 18px; color: var(--navy); margin: 0 0 12px; font-family: 'Playfair Display', Georgia, serif; }
.serve-card p { font-size: 15px; color: #475569; margin: 0 0 16px; }
.serve-card ul { margin: 0; padding-left: 18px; font-size: 14.5px; color: #475569; }
.serve-card li { margin-bottom: 6px; }

@media (max-width: 700px) {
    .privacy-statement { font-size: 22px; }
    .privacy-points { grid-template-columns: 1fr; }
    .serve-grid { grid-template-columns: 1fr; }
}
