:root {
  --ink: #17223a;
  --ink-soft: #445065;
  --green: #168052;
  --green-dark: #0b5d3c;
  --green-pale: #e7f3ec;
  --blue: #298bcc;
  --blue-pale: #e8f4fb;
  --cream: #f7f5ee;
  --white: #ffffff;
  --line: #dbe3df;
  --shadow: 0 20px 50px rgba(23, 34, 58, .11);
  --radius: 28px;
  --page: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .34;
  background-image: radial-gradient(rgba(23, 34, 58, .13) .65px, transparent .65px);
  background-size: 8px 8px;
  z-index: -1;
}
img { display: block; max-width: 100%; }
a { color: var(--green-dark); text-underline-offset: .18em; }
a:hover { color: var(--blue); }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 4px solid #ffcb66; outline-offset: 3px; }
.skip-link { position: fixed; left: 16px; top: 14px; z-index: 100; transform: translateY(-160%); background: var(--white); color: var(--ink); padding: 10px 16px; border-radius: 8px; font-weight: 800; }
.skip-link:focus { transform: none; }
.wrap { width: var(--page); margin-inline: auto; }
.eyebrow { margin: 0 0 12px; color: var(--green-dark); font-size: .78rem; line-height: 1.2; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
h1, h2, h3, h4 { margin: 0; line-height: 1.08; letter-spacing: -.035em; text-wrap: balance; }
h1 { font-size: clamp(2.65rem, 6vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.75rem); }
p { margin: 0 0 1.25em; }
.lede { font-size: clamp(1.15rem, 2vw, 1.4rem); line-height: 1.5; color: var(--ink-soft); }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 12px 22px; border: 2px solid var(--green); border-radius: 999px; background: var(--green); color: var(--white); font-weight: 800; text-decoration: none; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); color: var(--white); background: var(--green-dark); border-color: var(--green-dark); }
.button--ghost { color: var(--ink); background: transparent; border-color: rgba(23,34,58,.22); }
.button--ghost:hover { color: var(--ink); background: var(--white); border-color: var(--ink); }
.hero-copy .button--ghost { color: #17628f; border-color: var(--blue); }
.hero-copy .button--ghost:hover { color: var(--white); background: var(--blue); border-color: var(--blue); }

.utility { color: rgba(255,255,255,.9); background: var(--ink); font-size: .82rem; }
.utility .wrap { display: flex; gap: 24px; justify-content: flex-end; align-items: center; min-height: 38px; }
.utility a { color: inherit; text-decoration: none; }
.site-header { position: sticky; top: 0; z-index: 30; background: rgba(247,245,238,.94); border-bottom: 1px solid rgba(23,34,58,.1); backdrop-filter: blur(18px); }
.nav-shell { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; }
.brand img { width: 78px; height: 65px; object-fit: contain; }
.brand span { max-width: 145px; font-size: .78rem; font-weight: 850; line-height: 1.15; letter-spacing: .045em; text-transform: uppercase; }
.menu-button { display: none; border: 0; border-radius: 999px; background: var(--ink); color: var(--white); padding: 10px 16px; font-weight: 800; }
.site-nav, .site-nav ul { margin: 0; padding: 0; list-style: none; }
.site-nav > ul { display: flex; align-items: center; gap: 5px; }
.site-nav a, .submenu-toggle { display: flex; align-items: center; padding: 10px 12px; border: 0; background: transparent; color: var(--ink); font-size: .92rem; font-weight: 760; text-decoration: none; white-space: nowrap; }
.site-nav a[aria-current="page"] { color: var(--green-dark); }
.submenu-toggle.nav-current { color: var(--green-dark); }
.nav-group { position: relative; }
.submenu-toggle::after { content: ""; width: 8px; height: 8px; margin: -2px 2px 0 10px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); transform-origin: center; }
.submenu { position: absolute; top: calc(100% + 12px); left: 0; min-width: 230px; padding: 10px !important; border: 1px solid var(--line); border-radius: 16px; background: var(--white); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-5px); transition: .2s ease; }
.nav-group:hover .submenu, .submenu-toggle[aria-expanded="true"] + .submenu { opacity: 1; visibility: visible; transform: none; }
.submenu a { border-radius: 10px; }
.submenu a:hover { background: var(--green-pale); }

.hero { padding: clamp(30px, 5vw, 64px) 0 76px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); align-items: center; gap: clamp(38px, 6vw, 76px); }
.hero-copy h1 { max-width: 720px; }
.hero-line { display: block; }
.hero-line--accent { position: relative; width: max-content; max-width: 100%; color: var(--green-dark); }
.hero-line--accent::after { content: ""; position: absolute; left: 0; right: 0; bottom: -.06em; height: .12em; border-radius: 999px; background: #8fcf5b; z-index: -1; transform: rotate(-1deg); }
.hero-copy .lede { max-width: 650px; margin: 26px 0 32px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-media { position: relative; min-height: 560px; }
.hero-media::before { content: ""; position: absolute; inset: 36px -22px -20px 36px; border-radius: var(--radius); background: var(--green); }
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 55% center; border-radius: var(--radius); box-shadow: var(--shadow); }
.hero-badge { position: absolute; left: -35px; bottom: 32px; z-index: 2; width: 170px; padding: 16px; border-radius: 18px; background: var(--white); box-shadow: var(--shadow); font-size: .85rem; line-height: 1.35; font-weight: 800; }
.hero-badge::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 5px; border-radius: 18px 0 0 18px; background: var(--blue); }
.hero-badge strong { display: block; color: var(--blue); font-size: 2rem; line-height: 1; }

.trust-strip { background: var(--ink); color: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { position: relative; padding: 28px 34px 28px 58px; border-left: 1px solid rgba(255,255,255,.15); }
.trust-item::before { content: ""; position: absolute; left: 32px; top: 37px; width: 10px; height: 10px; border-radius: 50%; background: #8fcf5b; box-shadow: 0 0 0 6px rgba(143,207,91,.12); }
.trust-item:nth-child(2)::before { background: var(--blue); box-shadow: 0 0 0 6px rgba(41,139,204,.14); }
.trust-item:last-child { border-right: 1px solid rgba(255,255,255,.15); }
.trust-item strong { display: block; font-size: 1.12rem; }
.trust-item span { color: rgba(255,255,255,.72); font-size: .9rem; }
.section { padding: clamp(72px, 8vw, 112px) 0; }
.section--white { background: var(--white); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 44px; }
.section-head > div { max-width: 750px; }
.prose { max-width: 790px; }
.prose p:last-child { margin-bottom: 0; }
.intro-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(36px, 7vw, 92px); align-items: start; }
.intro-heading { position: sticky; top: 145px; }
.intro-heading img { width: 100%; height: 280px; margin-top: 38px; object-fit: cover; object-position: center; border-radius: 22px; box-shadow: var(--shadow); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature-card { position: relative; overflow: hidden; min-height: 255px; display: flex; flex-direction: column; justify-content: space-between; padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); color: var(--ink); text-decoration: none; box-shadow: 0 10px 30px rgba(23,34,58,.05); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.feature-card::after { content: ""; position: absolute; inset: auto 0 0; height: 5px; background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform .22s ease; }
.feature-card:nth-child(2)::after { background: var(--blue); }
.feature-card:nth-child(3)::after { background: #8caf40; }
.feature-card:nth-child(4)::after { background: #d18b3b; }
.feature-card:hover { transform: translateY(-6px); color: var(--ink); border-color: var(--green); }
.feature-card:hover::after { transform: scaleX(1); }
.feature-card span { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--green-pale); color: var(--green-dark); font-weight: 900; }
.feature-card:nth-child(2) span { color: #17628f; background: var(--blue-pale); }
.feature-card p { margin: 12px 0 0; color: var(--ink-soft); font-size: .94rem; }
.feature-card b { color: var(--green-dark); }
.feature-card h3 em { display: block; color: var(--blue); font-style: normal; }
.photo-band { display: grid; grid-template-columns: 1.25fr .75fr; min-height: 600px; background: var(--ink); }
.photo-band img { width: 100%; height: 100%; object-fit: cover; }
.photo-band-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 7vw, 90px); color: var(--white); }
.photo-band-copy .eyebrow { color: #94ddb8; }
.photo-band-copy p { color: rgba(255,255,255,.76); }
.photo-band-copy .button { align-self: flex-start; margin-top: 12px; background: var(--white); border-color: var(--white); color: var(--ink); }

.page-hero { position: relative; overflow: hidden; padding: clamp(36px, 3vw, 42px) 0; }
.page-hero::before { content: ""; position: absolute; width: 180px; height: 180px; right: 28%; top: -115px; border-radius: 50%; background: rgba(41,139,204,.1); pointer-events: none; }
.page-hero::after { content: ""; position: absolute; width: 430px; height: 430px; right: -180px; bottom: -260px; border-radius: 50%; background: rgba(22,128,82,.08); pointer-events: none; }
.page-hero-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 60px; align-items: center; }
.page-hero h1 { max-width: 600px; }
.page-hero p { max-width: 520px; margin-top: 22px; }
.page-hero img { position: relative; z-index: 1; width: 100%; height: 440px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.content-shell { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: clamp(36px, 5vw, 64px); align-items: start; }
.rich-copy { min-width: 0; max-width: 800px; padding: clamp(36px, 5vw, 68px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); box-shadow: 0 18px 45px rgba(23,34,58,.07); overflow-wrap: anywhere; }
.rich-copy h2, .rich-copy h3 { margin: 1.8em 0 .65em; }
.rich-copy h2:first-child, .rich-copy h3:first-child { margin-top: 0; }
.rich-copy ul { padding-left: 1.2em; }
.rich-copy li { margin: .35em 0; }
.callout { position: sticky; top: 145px; min-width: 0; padding: 28px; border-radius: 22px; background: var(--green-pale); overflow-wrap: anywhere; }
.callout h3 { margin-bottom: 12px; }
.callout p { font-size: .95rem; }
.callout .button { width: 100%; margin-top: 8px; }
.stat-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 46px 0; }
.stat-card { padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.stat-card strong { display: block; color: var(--green-dark); font-size: 2rem; line-height: 1.1; }
.stat-card span { font-size: .9rem; color: var(--ink-soft); }
.article-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.article-card { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--white); }
.article-card img { width: 100%; height: 280px; object-fit: cover; }
.article-card div { padding: 28px; }
.article-card time { color: #17628f; font-size: .82rem; font-weight: 800; }
.article-card h2 { margin: 10px 0 16px; font-size: 1.65rem; }
.news-intro { display: grid; grid-template-columns: 1fr 330px; gap: 70px; align-items: start; margin-bottom: 54px; }
.facebook-card { display: block; overflow: hidden; border-radius: 22px; box-shadow: var(--shadow); }
.facebook-card img { width: 100%; height: auto; object-fit: contain; }

.source-form { max-width: 1040px; }
.legal-copy { max-width: 900px; overflow-wrap: anywhere; }
.legal-page { padding-top: clamp(54px, 7vw, 92px); }
.legal-page h1 { margin: 0 0 clamp(34px, 5vw, 58px); color: var(--ink); font-size: clamp(2.8rem, 6vw, 5.2rem); line-height: .96; letter-spacing: -.055em; }
.source-form .elementor-section, .source-form .elementor-container, .source-form .elementor-column, .source-form .elementor-widget-wrap, .source-form .elementor-widget-container,
.legal-copy .elementor-section, .legal-copy .elementor-container, .legal-copy .elementor-column, .legal-copy .elementor-widget-wrap, .legal-copy .elementor-widget-container { display: block !important; width: 100% !important; margin: 0 !important; padding: 0 !important; }
.source-form h2, .legal-copy h2 { margin-bottom: 28px; }
.form-membership-note { margin: -8px 0 14px; padding: 20px 22px; border-left: 4px solid var(--blue); border-radius: 0 14px 14px 0; background: var(--blue-pale); color: var(--ink-soft); }
.form-help-note { margin: 0 0 34px; color: var(--ink-soft); }
.source-form h3, .legal-copy h3 { margin: 42px 0 14px; }
.source-form .gform_page { display: block !important; margin-bottom: 30px; padding: clamp(28px, 4vw, 48px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); box-shadow: 0 16px 40px rgba(23,34,58,.06); }
.source-form .gform_wrapper, .source-form form { display: block !important; }
.source-form .gform_page_footer { display: none; }
.source-form--individual-membership-application-form #gform_page_1_4 > .gform_page_footer { display: flex; justify-content: flex-end; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); }
.source-form--individual-membership-application-form #gform_page_1_4 > .gform_page_footer .gform_previous_button { display: none; }
.source-form--group-membership-application #gform_page_3_3 > .gform_page_footer { display: flex; justify-content: flex-end; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); }
.source-form--group-membership-application #gform_page_3_3 > .gform_page_footer .gform_previous_button { display: none; }
.source-form .gform_fields { display: grid !important; min-width: 0; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 22px !important; margin: 0 !important; padding: 0 !important; list-style: none !important; }
.source-form .gfield { grid-column: 1 / -1; min-width: 0; margin: 0 !important; padding: 0 !important; }
.source-form .gfield--width-half,
.source-form .gfield--type-select,
.source-form .gfield--type-phone,
.source-form .gfield--type-email,
.source-form .gfield--type-text,
.source-form .gfield--type-radio,
.source-form .gfield--type-date { grid-column: span 1; }
.source-form .gfield--type-html,
.source-form .gfield--type-name,
.source-form .gfield--type-address,
.source-form .gfield--type-textarea,
.source-form .gfield--type-checkbox,
.source-form .gfield--type-captcha,
.source-form .gfield--width-full { grid-column: 1 / -1; }
.source-form .gfield--type-html { margin: -4px 0 4px !important; padding: 0 0 20px !important; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 1.05rem; }
.source-form .gfield--type-html h3 { margin: 0 0 8px; color: var(--ink); font-size: 1.4rem; }
.source-form .gfield--type-html p { margin: 6px 0 0; }
.source-form fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.source-form label, .source-form legend { display: block; margin-bottom: 7px; color: var(--ink); font-weight: 760; }
.source-form .gfield_required { margin-left: 3px; color: #b44343; }
.source-form input:not([type="radio"]):not([type="checkbox"]):not([type="hidden"]), .source-form select, .source-form textarea,
.contact-form input, .contact-form textarea { width: 100%; min-height: 52px; padding: 12px 14px; border: 1px solid #b9c5bf; border-radius: 11px; background: var(--white); color: var(--ink); }
.source-form input:not([type="radio"]):not([type="checkbox"]):not([type="hidden"]):focus, .source-form select:focus, .source-form textarea:focus { outline: 3px solid rgba(41,139,204,.18); border-color: var(--blue); }
.source-form textarea, .contact-form textarea { min-height: 140px; resize: vertical; }
.source-form input[type="radio"], .source-form input[type="checkbox"] { width: 20px; height: 20px; margin-right: 7px; accent-color: var(--green); }
.source-form .gchoice { display: inline-flex; align-items: center; margin: 5px 8px 5px 0; padding: 8px 13px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); }
.source-form .gchoice label { display: inline; margin: 0; font-weight: 500; }
.source-form .gfield_radio, .source-form .gfield_checkbox { margin: 0; padding: 0; list-style: none; }
.source-form .ginput_complex { display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 20px; }
.source-form .ginput_complex > span { display: flex; flex-direction: column; }
.source-form .ginput_complex > span > label { order: -1; margin-bottom: 7px; color: var(--ink-soft); font-size: .84rem; font-weight: 650; }
.source-form .ginput_container_address > .ginput_full { grid-column: 1 / -1; }
.source-form .gfield--type-date .ginput_complex { display: block !important; }
.source-form .clear-multi { display: grid; grid-template-columns: minmax(100px, .8fr) minmax(120px, 1fr) minmax(140px, 1.15fr); gap: 12px; width: 100%; max-width: 440px; }
.source-form .gchoice--other { flex-wrap: wrap; }
.source-form .gchoice--other .other-detail { flex: 1 1 180px; width: 190px !important; min-height: 40px !important; margin-left: 6px; padding: 7px 11px !important; }
.source-form .gfield_description { margin-top: 8px; color: var(--ink-soft); font-size: .88rem; }
.source-form .gf_progressbar_wrapper { display: none; }
.source-form .gform_footer { margin-top: 30px; }
.source-form input[type="submit"], .contact-form button { min-height: 52px; padding: 12px 24px; border: 0; border-radius: 999px; background: var(--green); color: var(--white); font-weight: 800; cursor: pointer; }
.source-form .gform_page_footer input[type="submit"] { width: auto !important; min-width: 180px; border: 0 !important; background: var(--green) !important; color: var(--white) !important; }
.source-form .gform_page_footer input[type="submit"]:hover { background: var(--green-dark) !important; }
.source-form img { border-radius: 18px; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-turnstile { min-height: 65px; margin-top: 8px; }
.form-status { margin: 12px 0 0; padding: 12px 14px; border-radius: 10px; background: var(--blue-pale); color: var(--ink); }
.form-status[data-state="error"] { background: #fff1f0; color: #8b2525; }
.form-status[data-state="sending"] { border-left: 4px solid var(--blue); }
[data-enquiry-form] [type="submit"]:disabled { cursor: wait; opacity: .62; }
.donate-banner { width: min(100%, 800px); height: auto; margin: 0 auto; border-radius: 22px; box-shadow: var(--shadow); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; }
.contact-list { list-style: none; padding: 0; }
.contact-list li { padding: 17px 0; border-bottom: 1px solid var(--line); }
.contact-list strong { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.contact-form { display: grid; gap: 18px; padding: 32px; border-radius: 24px; background: var(--white); box-shadow: var(--shadow); }
.contact-form label { font-weight: 760; }
.contact-form label span { display: block; margin-bottom: 7px; }
.form-note { margin-top: 22px; font-size: .88rem; color: var(--ink-soft); }

.volunteer-strip { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); border-top: 6px solid var(--blue); background: var(--blue-pale); }
.volunteer-strip__image { min-height: 530px; }
.volunteer-strip__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.volunteer-strip__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(46px, 6vw, 82px); background: var(--ink); color: var(--white); }
.volunteer-strip__copy .eyebrow { color: #8bcdf5; }
.volunteer-strip__copy h2 { max-width: 720px; color: var(--white); }
.volunteer-strip__intro { max-width: 720px; margin: 24px 0 20px; color: rgba(255,255,255,.78); font-size: 1.08rem; font-weight: 400; text-transform: none; }
.volunteer-strip__copy h3 { margin: 4px 0 10px; color: var(--white); font-size: 1.12rem; letter-spacing: 0; }
.volunteer-strip__copy ul { max-width: 720px; margin: 0 0 28px; padding-left: 1.2em; color: rgba(255,255,255,.88); }
.volunteer-strip__copy li { margin: 4px 0; }
.volunteer-strip__copy .button { align-self: flex-start; min-width: 210px; background: var(--white); border-color: var(--white); color: var(--ink); text-transform: uppercase; }
.volunteer-strip__copy .button:hover { background: var(--blue-pale); border-color: var(--blue-pale); color: var(--ink); }
.cta { padding: 76px 0; background: linear-gradient(110deg, #2076ad 0%, var(--blue) 28%, var(--green) 74%, #0b6c46 100%); color: var(--white); }
.cta .wrap { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.cta-actions { display: flex; align-items: center; gap: 24px; }
.cta .cta-actions .cta-call { color: var(--white); background: transparent; border-color: rgba(255,255,255,.9); }
.cta .cta-actions .cta-call:hover { color: var(--green-dark); background: var(--white); border-color: var(--white); }
.cta p { margin: 10px 0 0; color: rgba(255,255,255,.8); }
.cta .button { flex: 0 0 auto; background: var(--white); border-color: var(--white); color: var(--ink); }
.site-footer { padding: 64px 0 30px; color: rgba(255,255,255,.78); background: #101a2e; }
.site-footer { border-top: 5px solid var(--blue); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .7fr; gap: 60px; }
.footer-brand { max-width: 410px; }
.footer-logos { display: flex; align-items: center; gap: 16px; }
.footer-logo { width: 105px; padding: 8px; border-radius: 12px; background: var(--white); }
.footer-fundraising { display: block; width: 112px; line-height: 0; transition: transform .2s ease; }
.footer-fundraising:hover { transform: translateY(-3px); }
.footer-fundraising img { display: block; width: 100%; height: auto; }
.footer-brand p { margin-top: 20px; }
.site-footer h2 { margin-bottom: 18px; color: var(--white); font-size: 1rem; letter-spacing: .02em; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin: 8px 0; }
.site-footer a { color: inherit; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); font-size: .82rem; }
.cookie-settings-link { padding: 0; border: 0; background: transparent; color: inherit; font: inherit; text-decoration: underline; cursor: pointer; }
.cookie-panel { position: fixed; z-index: 120; right: 24px; bottom: 24px; width: min(560px, calc(100vw - 32px)); padding: 24px; border: 1px solid rgba(255,255,255,.16); border-radius: 20px; background: var(--ink); color: var(--white); box-shadow: 0 22px 70px rgba(0,0,0,.3); }
.cookie-panel[hidden], .cookie-embed-placeholder[hidden] { display: none; }
.cookie-panel strong { display: block; margin-bottom: 8px; font-size: 1.3rem; }
.cookie-panel p { margin: 0; color: rgba(255,255,255,.8); }
.cookie-panel a { color: var(--white); }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.cookie-actions .button { min-height: 44px; padding: 9px 16px; }
.cookie-actions .button--ghost { border-color: rgba(255,255,255,.7); background: transparent; color: var(--white); }
.map-card[data-cookie-embed] { position: relative; }
.map-card[data-cookie-embed] iframe:not([src]) { visibility: hidden; }
.narrow-page { max-width: 840px; }
.policy-table-wrap { width: 100%; margin: 28px 0; overflow-x: auto; }
.policy-table { width: 100%; min-width: 760px; border-collapse: collapse; background: var(--white); }
.policy-table th, .policy-table td { padding: 14px 16px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.policy-table th { background: var(--green-pale); color: var(--ink); }
.policy-table code { color: var(--blue); font-weight: 750; }

@media (max-width: 1050px) {
  .menu-button { display: block; }
  .site-nav { position: absolute; inset: calc(100% + 1px) 20px auto; padding: 14px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: var(--shadow); display: none; }
  .site-nav[data-open="true"] { display: block; }
  .site-nav > ul { display: block; }
  .site-nav a, .submenu-toggle { width: 100%; justify-content: space-between; padding: 13px 14px; }
  .submenu { position: static; display: none; min-width: 0; margin: 0 8px 8px !important; padding: 5px !important; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; background: var(--green-pale); }
  .submenu-toggle[aria-expanded="true"] + .submenu { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 790px; }
  .hero-media { min-height: 520px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .page-hero img { height: 500px; }
  .content-shell { grid-template-columns: 1fr; }
  .source-form .gfield--type-date { grid-column: 1 / -1; }
  .callout { max-width: 600px; }
  .news-intro { grid-template-columns: 1fr 280px; gap: 40px; }
  .volunteer-strip { grid-template-columns: 1fr; }
  .volunteer-strip__image { min-height: 460px; }
}

@media (max-width: 720px) {
  :root { --page: min(100% - 28px, 1180px); }
  body { font-size: 17px; }
  .utility { display: none; }
  .nav-shell { min-height: 78px; }
  .brand img { width: 60px; height: 52px; }
  .brand span { display: none; }
  .hero { padding-top: 26px; }
  .hero-media { min-height: 420px; }
  .hero-media::before { inset: 18px -7px -12px 18px; }
  .hero-line { display: inline; }
  .hero-badge { left: 14px; bottom: 14px; width: auto; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { padding: 19px 0 19px 28px; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .trust-item::before { left: 4px; top: 29px; width: 8px; height: 8px; box-shadow: 0 0 0 5px rgba(143,207,91,.12); }
  .trust-item:last-child { border-right: 0; }
  .section-head, .cta .wrap, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .cookie-panel { right: 16px; bottom: 16px; padding: 20px; }
  .cookie-actions { flex-direction: column; }
  .cookie-actions .button { width: 100%; }
  .intro-grid, .photo-band, .contact-grid { grid-template-columns: 1fr; }
  .intro-heading { position: static; }
  .intro-heading img { height: 220px; margin-top: 28px; }
  .feature-grid, .stat-cards, .article-grid { grid-template-columns: 1fr; }
  .photo-band img { min-height: 440px; }
  .photo-band-copy { min-height: 440px; }
  .page-hero img { height: 360px; }
  .news-intro { grid-template-columns: 1fr; gap: 24px; }
  .facebook-card { max-width: 330px; }
  .volunteer-strip__image { min-height: 330px; }
  .volunteer-strip__copy { padding: 46px 24px 54px; }
  .rich-copy { padding: 30px 24px; }
  .volunteer-strip__intro { font-size: .98rem; }
  .source-form .gform_fields { grid-template-columns: 1fr; }
  .source-form .gfield--width-half { grid-column: 1 / -1; }
  .source-form .gform_page { padding: 26px 20px; }
  .source-form .gfield--type-name .ginput_complex, .source-form .gfield--type-address .ginput_complex { grid-template-columns: 1fr; }
  .source-form .clear-multi { grid-template-columns: 80px 90px minmax(105px, 1fr); gap: 8px; }
  .source-form .gchoice--other .other-detail { flex-basis: 150px; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .cta-actions { align-items: flex-start; flex-direction: column; gap: 14px; }
}

@media (max-width: 360px) {
  .source-form .clear-multi { grid-template-columns: 60px 72px minmax(90px, 1fr); gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
