/* 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 and .btn-outline (dark-hero variants) now live in
   landing.css as the one canonical version — see that file's comment. */

/* ── Origin story ──
   Real 2-column layout (2026-08-25) — was .origin-copy alone, max-width:
   720px, margin:0 auto: a single centered island of prose in the middle
   of a 1280px .container. Kept the same ~720px-equivalent readable line
   length on the prose itself (that part of the old rule was correct,
   long-form text shouldn't stretch edge to edge) but moved it into a
   real grid column next to a sidebar, instead of floating alone. */
.origin-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: start; max-width: 1160px; margin: 0 auto; }
.origin-copy { font-size: 17px; color: #334155; }
.origin-copy p { margin: 0 0 20px; }
.origin-copy p:last-child { margin-bottom: 0; }
.origin-sidebar { position: sticky; top: 24px; }
.origin-pullquote { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; font-weight: 700; line-height: 1.4; color: var(--navy); border-left: 4px solid var(--amber); padding-left: 22px; margin: 0 0 28px; }
.origin-signoff { padding-top: 24px; border-top: 1px solid var(--line); font-size: 15px; color: #64748b; }
.origin-signoff strong { color: var(--navy); font-weight: 600; }

@media (max-width: 860px) {
    .origin-grid { grid-template-columns: 1fr; }
    .origin-sidebar { position: static; }
}

/* ── 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: var(--green-light); 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; }

/* ── Team ──
   Two capability cards (Engineering / Reentry Support & Coaching) rather
   than one card per person — reads as org functions, like the rest of the
   site's card grids, instead of a headcount roster. No max-width cap, same
   as .track-grid (landing.css) and .benefits-grid (organizations.css), so
   it fills the 1160px .container instead of floating in a narrow column. */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.team-card { background: white; border: 1px solid var(--line); border-radius: 16px; padding: 36px 34px; box-shadow: var(--shadow); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.team-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -18px rgba(12,24,38,0.22); }
.team-icon { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: var(--green-light); color: var(--green); margin-bottom: 18px; }
.team-icon svg { width: 23px; height: 23px; }
.team-card h3 { font-size: 18px; color: var(--navy); margin: 0 0 10px; font-family: 'Playfair Display', Georgia, serif; }
.team-card p { font-size: 15px; color: #475569; margin: 0; line-height: 1.6; }

/* ── Principles ──
   No max-width cap (see .team-grid comment above) — was 960px, which left
   wide empty gutters next to the 1160px .container on anything but a
   narrow laptop screen. */
.principles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.principle { background: white; border: 1px solid var(--line); border-radius: 14px; padding: 24px 26px; box-shadow: var(--shadow); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.principle:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -18px rgba(12,24,38,0.22); }
.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: var(--green-light); 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 ── */
/* position:relative so index.php-style .section-wave dividers (see
   landing.css) can anchor to this section's own top/bottom edges —
   about-us.php now carries one on each side of this band. */
.privacy-band { position: relative; 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; }
.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; }
.serve-card { background: white; border: 1px solid var(--line); border-radius: 16px; padding: 32px; box-shadow: var(--shadow); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.serve-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -18px rgba(12,24,38,0.22); }
.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; }
}
