/* FOAG site styles. Styles the class names used by the fragments in /_pages. */

:root {
    --ink: #221c15;
    --muted: #6b5f52;
    --bg: #fbf7f0;
    --surface: #fff;
    --tint: #f4ebdc;
    --line: #e7dcc9;
    --amber: #eb9700;
    --amber-soft: #fcefd6;
    --red: #b8293d;
    --red-dark: #8f1f30;
    --night: #1d1812;
    --radius: 16px;
    --shadow: 0 1px 2px rgba(34, 28, 21, .06), 0 8px 24px rgba(34, 28, 21, .08);
    --serif: "Fraunces", Georgia, serif;
    --sans: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font: 400 17px/1.7 var(--sans);
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-underline-offset: 3px; }
a:hover { color: var(--red-dark); }
h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 650;
    line-height: 1.15;
    letter-spacing: -.01em;
    margin: 0 0 .5em;
    text-wrap: balance;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
p { margin: 0 0 1em; }
address { font-style: normal; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }
.narrow { max-width: 760px; }
.sr-only, .skip-link:not(:focus) {
    position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}
.skip-link:focus { position: fixed; top: 8px; left: 8px; z-index: 100; background: #fff; padding: 8px 16px; }

.eyebrow {
    font: 700 .78rem/1.4 var(--sans);
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--red);
    margin: 0 0 .75em;
}

/* ---------- Buttons ---------- */
.btn, .primary-button, .secondary-button, input[type=submit], .btn-success {
    display: inline-flex; align-items: center; justify-content: center; gap: .4em;
    font: 700 .95rem/1 var(--sans);
    padding: .95em 1.6em;
    border-radius: 999px;
    border: 2px solid transparent;
    background: var(--amber);
    color: var(--night);
    text-decoration: none;
    cursor: pointer;
    transition: background .2s, color .2s, transform .2s, border-color .2s;
}
.btn:hover, .primary-button:hover, input[type=submit]:hover { background: #ffad1f; color: var(--night); transform: translateY(-1px); }
.primary-button { background: var(--red); color: #fff; padding: .8em 1.4em; font-size: .88rem; }
.primary-button:hover { background: var(--red-dark); color: #fff; }
.secondary-button, .btn-ghost { background: transparent; border-color: currentColor; color: var(--ink); }
.secondary-button:hover, .btn-ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.text-link { font-weight: 700; text-decoration: none; color: var(--red); }

/* ---------- Grid (replaces Bootstrap's for the page fragments) ---------- */
.row { display: flex; flex-wrap: wrap; margin: 0 -16px; }
.row > [class*="col-"] { width: 100%; padding: 0 16px; }
@media (min-width: 768px) {
    .col-sm-4 { max-width: 33.333%; } .col-sm-5 { max-width: 41.666%; } .col-sm-6 { max-width: 50%; }
    .col-sm-7 { max-width: 58.333%; } .col-sm-8 { max-width: 66.666%; }
    .row > .col-sm-4, .row > .col-sm-5, .row > .col-sm-6, .row > .col-sm-7, .row > .col-sm-8 { flex: 0 0 auto; }
    .col-md-3 { max-width: 25%; } .col-md-4 { max-width: 33.333%; } .col-md-5 { max-width: 41.666%; }
    .col-md-6 { max-width: 50%; } .col-md-7 { max-width: 58.333%; }
}

/* ---------- Header ---------- */
.thanks-banner {
    background: var(--red); color: #fff; text-align: center; padding: 14px 16px; font-weight: 700;
}
.topbar { background: var(--night); color: #d8cdbb; font-size: .82rem; }
.topbar .container { display: flex; justify-content: space-between; gap: 16px; padding-top: 7px; padding-bottom: 7px; }
.topbar a { color: #fff; text-decoration: none; }
@media (max-width: 767px) { .topbar span:first-child { display: none; } .topbar .container { justify-content: center; } }

.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(251, 247, 240, .92);
    backdrop-filter: saturate(1.4) blur(10px);
    -webkit-backdrop-filter: saturate(1.4) blur(10px);
    border-bottom: 1px solid var(--line);
}
.site-header > .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 76px; }
.brand img { height: 50px; width: auto; }

.site-nav { display: flex; align-items: center; gap: 12px; }
.site-nav ul { list-style: none; margin: 0; padding: 0; }
.site-nav > ul { display: flex; gap: 2px; }
.site-nav li { position: relative; }
.site-nav > ul > li > a {
    display: block; padding: 10px 12px; border-radius: 8px;
    color: var(--ink); text-decoration: none; font-weight: 500; font-size: .95rem;
}
.site-nav > ul > li > a:hover, .site-nav a[aria-current] { color: var(--red); }
.site-nav > ul > li > a[aria-current]::after {
    content: ""; display: block; height: 2px; background: var(--amber); border-radius: 2px; margin-top: 2px;
}
.site-nav li ul {
    position: absolute; top: 100%; left: 0; min-width: 260px;
    background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
    box-shadow: var(--shadow); padding: 8px;
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: opacity .15s, transform .15s, visibility .15s;
}
.site-nav li:hover > ul, .site-nav li:focus-within > ul { opacity: 1; visibility: visible; transform: none; }
.site-nav li ul a {
    display: block; padding: 8px 12px; border-radius: 8px; color: var(--ink);
    text-decoration: none; font-size: .92rem; line-height: 1.35;
}
.site-nav li ul a:hover { background: var(--tint); color: var(--red); }
.btn-donate { padding: .8em 1.5em; }

.nav-toggle { display: none; }

@media (max-width: 1023px) {
    .nav-toggle {
        display: grid; place-items: center; width: 44px; height: 44px;
        border: 1px solid var(--line); border-radius: 10px; background: var(--surface); cursor: pointer;
    }
    .nav-toggle span:first-child, .nav-toggle span:first-child::before, .nav-toggle span:first-child::after {
        display: block; width: 20px; height: 2px; background: var(--ink); position: relative; content: "";
        transition: transform .2s;
    }
    .nav-toggle span:first-child::before { position: absolute; left: 0; top: -6px; }
    .nav-toggle span:first-child::after { position: absolute; left: 0; top: 6px; }
    .nav-open .nav-toggle span:first-child { background: transparent; }
    .nav-open .nav-toggle span:first-child::before { transform: translateY(6px) rotate(45deg); }
    .nav-open .nav-toggle span:first-child::after { transform: translateY(-6px) rotate(-45deg); }

    .site-nav {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; align-items: stretch;
        background: var(--bg); border-bottom: 1px solid var(--line);
        padding: 8px 16px 20px; max-height: calc(100vh - 110px); overflow-y: auto;
    }
    .nav-open .site-nav { display: flex; }
    .site-nav > ul { flex-direction: column; }
    .site-nav > ul > li { border-bottom: 1px solid var(--line); }
    .site-nav > ul > li > a { padding: 14px 4px; font-size: 1.05rem; }
    .site-nav > ul > li > a[aria-current]::after { display: none; }
    .site-nav li ul {
        position: static; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; border: 0; background: none; padding: 0 0 10px 12px; min-width: 0;
    }
    .site-nav li ul a { padding: 6px 4px; color: var(--muted); }
    .btn-donate { margin-top: 16px; }
    .brand img { height: 42px; }
}

/* ---------- Homepage ---------- */
.home-hero { padding: clamp(32px, 6vw, 72px) 0; }
.home-hero .container { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) { .home-hero .container { grid-template-columns: 1fr 1.15fr; gap: 56px; } }
.home-hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 1.02; }
.home-hero h1 em { font-style: italic; font-weight: 500; color: var(--red); }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 34em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-image { position: relative; margin: 0; }
.hero-image img {
    width: 100%; aspect-ratio: 5 / 4; object-fit: cover; object-position: 60% center;
    border-radius: 24px; box-shadow: var(--shadow);
}
.hero-badge {
    position: absolute; left: -16px; bottom: 24px; max-width: 250px;
    background: var(--surface); border-radius: 14px; box-shadow: var(--shadow);
    padding: 14px 18px; font-size: .9rem; line-height: 1.4;
}
.hero-badge strong { display: block; font: 650 1.9rem/1.1 var(--serif); color: var(--red); }
@media (max-width: 899px) { .hero-badge { left: 12px; bottom: 12px; } }

.stats-strip { background: var(--night); color: #fff; padding: 36px 0; }
.stats-strip .container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.stats-strip strong { display: block; font: 650 2.4rem/1.1 var(--serif); color: var(--amber); }
.stats-strip span { color: #d8cdbb; font-size: .95rem; }

.home-section { padding: clamp(56px, 8vw, 104px) 0; }
.home-section.tinted { background: var(--tint); }
.section-head { max-width: 640px; margin-bottom: 40px; }

.home-intro { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) { .home-intro { grid-template-columns: 340px 1fr; gap: 72px; } }
.intro-image {
    background: radial-gradient(circle at 50% 58%, var(--amber-soft) 0 165px, transparent 166px);
    display: flex; justify-content: center;
}
.intro-image img { max-height: 520px; width: auto; }
.partner-points { display: grid; gap: 16px; margin: 28px 0; }
@media (min-width: 600px) { .partner-points { grid-template-columns: 1fr 1fr; } }
.partner-points > div {
    display: flex; gap: 14px; align-items: flex-start;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px;
}
.partner-points img { width: 52px; flex: none; filter: brightness(0) saturate(100%) invert(19%) sepia(58%) saturate(3000%) hue-rotate(335deg); }
.partner-points p { margin: 0; font-size: .95rem; line-height: 1.5; }
.partner-points strong { display: block; }

.pillars { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.pillar {
    display: flex; flex-direction: column; background: var(--surface); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow); color: var(--ink); text-decoration: none;
    transition: transform .25s, box-shadow .25s;
}
.pillar:hover { transform: translateY(-4px); color: var(--ink); box-shadow: 0 16px 40px rgba(34, 28, 21, .14); }
.pillar img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; }
.pillar > div { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.pillar h3 { font-size: 1.7rem; }
.pillar p:not(.eyebrow) { color: var(--muted); font-size: .98rem; }
.pillar .text-link { margin-top: auto; }

.home-projects { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) { .home-projects { grid-template-columns: 1fr 1fr; gap: 64px; } }
.project-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 8px; }
@media (min-width: 600px) { .project-list { grid-template-columns: 1fr 1fr; } }
.project-list a {
    display: flex; align-items: center; gap: 10px; height: 100%;
    padding: 10px 14px; border-radius: 10px; background: var(--surface); border: 1px solid var(--line);
    color: var(--ink); text-decoration: none; font-weight: 500; font-size: .93rem; line-height: 1.35;
    transition: border-color .2s, color .2s;
}
.project-list a::before { content: ""; flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--amber); }
.project-list a:hover { border-color: var(--amber); color: var(--red); }
.map-card { margin: 0; background: var(--surface); padding: 12px; border-radius: 24px; box-shadow: var(--shadow); }
.map-card img { border-radius: 14px; width: 100%; }

.impact-band {
    background: var(--red) radial-gradient(circle at 85% 20%, rgba(235, 151, 0, .35), transparent 50%);
    color: #fff; text-align: center; padding: clamp(56px, 8vw, 96px) 0;
}
.impact-band .eyebrow { color: #ffd48a; }
.impact-figure { font: 500 clamp(1.8rem, 4vw, 3rem)/1.2 var(--serif); max-width: 22em; margin: 0 auto .6em; text-wrap: balance; }
.impact-figure strong { color: #ffd48a; font-weight: 650; }
.impact-band p { opacity: .95; }

/* ---------- Inner pages ---------- */
.standard-page, .listing-outer { padding-top: 24px; }
.page-homepage .bottom-common-block { padding-top: clamp(56px, 8vw, 96px); }

.breadcrumb-outer { margin-bottom: 24px; }
.breadcrumb { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; font-size: .85rem; color: var(--muted); }
.breadcrumb li:first-child { display: none; }
.breadcrumb-item + .breadcrumb-item::before { content: "/"; margin-right: 6px; color: var(--line); }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--red); }

.standard-top-left h1 { margin-bottom: 24px; }
.standard-page > .container > .row { row-gap: 32px; margin-bottom: 40px; }

.highlighted-block {
    display: grid; grid-template-columns: 84px 1fr; gap: 0 18px; align-items: center;
    background: var(--amber-soft); border-radius: var(--radius); padding: 20px 24px 20px 16px;
    font-size: .95rem; line-height: 1.5;
}
.block-image-wrap { grid-row: span 2; align-self: end; margin-bottom: -20px; }
.highlighted-block h4 { font-style: italic; font-weight: 500; font-size: 1.2rem; margin: 0 0 .3em; }
.highlighted-block p { margin: 0; }

/* photo gallery: horizontal scroll-snap strip */
.standard-top-slider { position: relative; }
.standard-top-slider ul {
    list-style: none; margin: 0; padding: 0;
    display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
    border-radius: var(--radius);
}
.standard-top-slider ul::-webkit-scrollbar { display: none; }
.standard-top-slider li { flex: 0 0 85%; scroll-snap-align: start; }
@media (min-width: 768px) { .standard-top-slider li { flex-basis: calc(50% - 6px); } }
.standard-top-slider li:only-child { flex-basis: 100%; max-width: 480px; }
.slider-image-outer img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); }
.slider-caption { font-size: .85rem; color: var(--muted); padding: 8px 4px 0; line-height: 1.4; }
.slider-caption p { margin: 0; }
.slider-caption span { display: none; }
.gallery-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%; border: 0; cursor: pointer;
    background: rgba(255, 255, 255, .92); box-shadow: var(--shadow);
    font-size: 1.8rem; line-height: 1; color: var(--ink); padding-bottom: 4px;
}
.gallery-btn:hover { background: var(--amber); }
.gallery-prev { left: 10px; }
.gallery-next { right: 10px; }

/* body copy */
.standard-content-left, .main-content { max-width: 70ch; overflow-wrap: anywhere; }
.standard-content-left h2, .standard-content-left h3, .main-content h3 { margin-top: 1.4em; }
.standard-content-left ul, .main-content ul { padding-left: 0; list-style: none; }
.standard-content-left ul li, .main-content ul li { position: relative; padding-left: 26px; margin-bottom: .5em; }
.standard-content-left ul li::before, .main-content ul li::before {
    content: ""; position: absolute; left: 4px; top: .7em; width: 8px; height: 8px; border-radius: 50%; background: var(--amber);
}
.standard-content-left img { border-radius: 12px; margin: 1em 0; }
.standard-content-left iframe { max-width: 100%; border-radius: 12px; }
.standard-content-left table { border-collapse: collapse; width: 100%; margin: 1em 0; font-size: .95rem; }
.standard-content-left td, .standard-content-left th { border-bottom: 1px solid var(--line); padding: 8px; text-align: left; vertical-align: top; }

.quote-outer { margin: 2em 0; }
.quote-outer blockquote {
    margin: 0; padding: 4px 0 4px 24px; border-left: 4px solid var(--amber);
    font: italic 500 1.4rem/1.45 var(--serif);
}

/* sidebar */
.standard-sidebar { display: grid; gap: 24px; }
.standard-sidebar .sidebar-content { margin-top: 0 !important; }
.download-box, .sidebar-content {
    background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden;
}
.box-header { padding: 20px 24px 0; }
.box-header h3 { font-size: 1.25rem; margin: 0; }
.download-content ul { list-style: none; margin: 0; padding: 12px 24px 20px; }
.download-content li { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: .92rem; line-height: 1.45; }
.download-content li:last-child { border: 0; }
.download-content li img { flex: none; margin-top: 2px; }
.download-content a { text-decoration: none; font-weight: 500; }
.standard-sidebar > a { text-decoration: none; color: inherit; display: block; }
.sidebar-content { position: relative; transition: transform .25s; }
.standard-sidebar > a:hover .sidebar-content { transform: translateY(-3px); }
.sidebar-content .header-block { padding: 20px 24px; background: var(--night); color: #fff; }
.sidebar-content .header-block h3 { margin: 0; font-size: 1.3rem; }
.sidebar-content .header-block span { display: block; font: 700 .75rem/1.4 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--amber); margin-bottom: 4px; }
.sidebar-content .image-block img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.related-pages { margin-top: 24px; }

.map-outer-container { margin: 16px 0 48px; }
.map-outer-container iframe { width: 100%; height: 400px; border: 0; background: var(--tint); border-radius: var(--radius); display: block; }
.gmap-info { display: flex; gap: 12px; align-items: center; }
.gmap-image img { border-radius: 8px; }

/* listings (news, projects, team) */
.main-header-block { margin-bottom: 8px; }
.main-content { color: var(--muted); margin-bottom: 40px; }
.main-content h3 { color: var(--ink); }
.listing-innermain { margin-bottom: 64px; }
.isotope { display: grid; gap: 24px; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); }
.grid-sizer, .gutter-sizer { display: none; }
.isotope .item {
    display: flex; flex-direction: column; background: var(--surface); border-radius: var(--radius);
    box-shadow: var(--shadow); overflow: hidden; transition: transform .25s, box-shadow .25s;
}
.isotope .item:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(34, 28, 21, .14); }
.isotope .header-block { padding: 24px 24px 0; order: 1; }
.isotope .header-block h3 { margin: 0 0 .3em; }
.isotope .header-block h4 { font: 700 .75rem/1.4 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--red); margin: 0; }
.isotope .image-block { order: 0; }
.isotope .image-block img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.isotope .content-block { padding: 12px 24px 24px; order: 2; display: flex; flex-direction: column; align-items: flex-start; flex: 1; }
.isotope .content-block p { color: var(--muted); font-size: .96rem; }
.isotope .content-block .primary-button { margin-top: auto; }
.archive-link { margin-top: 32px; }

/* forms */
.standard-form, form.standard-form { display: grid; gap: 4px; }
.form-group { margin-bottom: 14px; }
.form-group label, .standard-form label { display: block; font-weight: 500; font-size: .92rem; margin-bottom: 6px; }
.form-control, .standard-form input[type=text], .standard-form input[type=email], .standard-form select, .standard-form textarea {
    width: 100%; font: inherit; padding: 12px 14px; border-radius: 10px;
    border: 1px solid var(--line); background: var(--surface); color: var(--ink);
}
.form-control:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 4px var(--amber-soft); }
.g-recaptcha { float: none !important; padding: 0 !important; margin: 4px 0 14px; }
.btn-block { width: 100%; }
.field-note { font-size: .85rem; color: var(--muted); }

/* Donate / Join tiles, present at the foot of most pages */
.bottom-common-block { padding: 24px 0 clamp(56px, 8vw, 96px); }
.bottom-common-block .row { row-gap: 24px; }
.common-block-outer a {
    position: relative; display: flex; align-items: flex-end; height: 280px; border-radius: 20px; overflow: hidden;
    text-decoration: none; isolation: isolate;
}
.common-block-outer .image-wrap { position: absolute; inset: 0; z-index: -2; }
.common-block-outer .image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.common-block-outer a:hover img { transform: scale(1.05); }
.common-block-outer .image-overlay { position: absolute; inset: 0; z-index: -1; }
.block1 .image-overlay { background: linear-gradient(20deg, rgba(143, 31, 48, .95) 25%, rgba(184, 41, 61, .45)); }
.block2 .image-overlay { background: linear-gradient(20deg, rgba(29, 24, 18, .92) 25%, rgba(235, 151, 0, .45)); }
.common-block-outer h2 {
    color: #fff; margin: 0; padding: 28px 32px; font-size: clamp(2rem, 4vw, 2.8rem);
    display: flex; align-items: center; gap: 14px;
}
.common-block-outer h2::after { content: "→"; font-family: var(--sans); font-size: .7em; transition: transform .25s; }
.common-block-outer a:hover h2::after { transform: translateX(6px); }

/* ---------- Newsletter + footer ---------- */
.signup-band { background: var(--tint); padding: 56px 0; border-top: 1px solid var(--line); }
.signup-band .container { display: grid; gap: 24px; align-items: center; }
@media (min-width: 900px) { .signup-band .container { grid-template-columns: 1.2fr 1fr; gap: 64px; } }
.signup-band h2 { margin-bottom: .3em; }
.signup-band p:last-child { margin: 0; color: var(--muted); }
.signup-form { display: flex; gap: 8px; background: var(--surface); padding: 6px; border-radius: 999px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.signup-form input { flex: 1; min-width: 0; border: 0; background: none; font: inherit; padding: 0 16px; }
.signup-form input:focus { outline: none; }

.site-footer { background: var(--night); color: #cfc4b2; padding: 64px 0 28px; font-size: .95rem; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { color: var(--amber); }
.site-footer h4 { color: #fff; font-family: var(--sans); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.2em; }
.footer-grid { display: grid; gap: 40px; }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1.4fr; gap: 64px; } }
.footer-logo { height: 54px; width: auto; margin-bottom: 20px; }
.footer-grid > div:first-child p { max-width: 32em; }
.footer-links { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 24px; }
.footer-links li { margin-bottom: 8px; break-inside: avoid; }
.footer-bottom {
    display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center;
    border-top: 1px solid rgba(255, 255, 255, .12); margin-top: 48px; padding-top: 24px; font-size: .85rem;
}
.social { display: flex; align-items: center; gap: 10px; }
.social a:not(.stewardship) {
    display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255, 255, 255, .08); transition: background .2s;
}
.social a:not(.stewardship):hover { background: var(--amber); }
.social svg { width: 18px; height: 18px; fill: #fff; }
.stewardship { margin-left: 12px; }
.stewardship img { height: 26px; width: auto; filter: brightness(0) invert(1); opacity: .8; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition: none !important; scroll-behavior: auto !important; }
}
.where-we-work { margin-bottom: 64px; }
.where-we-work > div > p { color: var(--muted); }
