:root {
    --ink: #071c27;
    --paper: #f3f4ee;
    --white: #fbfcf8;
    --green: #3f6f1d;
    --red: #b73237;
    --muted: #596a70;
    --line: #cdd4cf;
    --mono: 'DM Mono', monospace;
    --sans: 'Manrope', system-ui, sans-serif;
}

* { box-sizing: border-box; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }

.about-container { width: min(920px, calc(100% - 48px)); margin: 0 auto; padding: 85px 0 115px; }
.about-heading { padding-bottom: 55px; border-bottom: 2px solid var(--ink); }
.about-heading > p:first-child { margin: 0 0 20px; color: var(--green); font: 500 12px var(--mono); letter-spacing: .11em; text-transform: uppercase; }
.about-heading h1 { margin: 0; font-size: clamp(52px, 7vw, 82px); line-height: 1; letter-spacing: -.06em; font-weight: 650; }
.about-summary { max-width: 760px; margin: 28px 0 0; color: var(--muted); font-size: 21px; line-height: 1.65; }

.about-section { display: grid; grid-template-columns: 75px 1fr; gap: 28px; padding: 55px 0; border-bottom: 1px solid var(--line); }
.section-number { padding-top: 8px; color: var(--red); font: 500 12px var(--mono); }
.about-section h2 { margin: 0 0 22px; font-size: clamp(29px, 3.5vw, 42px); line-height: 1.15; letter-spacing: -.04em; font-weight: 650; }
.about-section p { max-width: 740px; margin: 0 0 17px; color: var(--muted); font-size: 16px; line-height: 1.82; }
.about-section p:last-child { margin-bottom: 0; }
.about-section a { color: #315d19; font-weight: 700; text-underline-offset: 3px; }

.mission-list { margin: 28px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.mission-list li { position: relative; padding: 16px 0 16px 31px; border-bottom: 1px solid var(--line); color: #40545c; font-size: 15px; line-height: 1.65; }
.mission-list li::before { content: '✓'; position: absolute; left: 2px; top: 16px; color: var(--green); font-weight: 800; }

.get-involved { border-bottom: 0; padding-bottom: 0; }
.about-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 30px; }
.about-actions a { display: flex; justify-content: space-between; align-items: center; gap: 15px; min-height: 56px; padding: 13px 15px; border: 1px solid #aebbb4; color: var(--ink); text-decoration: none; font: 500 11px var(--mono); text-transform: uppercase; transition: background .2s, color .2s, transform .2s; }
.about-actions a:hover { transform: translateY(-2px); background: var(--ink); color: white; }

@media (max-width: 680px) {
    .about-container { width: calc(100% - 30px); padding: 60px 0 85px; }
    .about-heading { padding-bottom: 42px; }
    .about-summary { font-size: 18px; }
    .about-section { grid-template-columns: 1fr; gap: 13px; padding: 42px 0; }
    .section-number { padding: 0; }
    .about-section p { font-size: 16px; }
    .about-actions { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) { *,*::before,*::after { transition-duration: .01ms !important; } }
