/* ======================================== */
/* EFPCA — Global Styles */
/* ======================================== */

:root {
    --green-deep: #45782e;
    --green-bright: #7fbf55;
    --green-mid: #5a9540;
    --green-darker: #2f4a1f;
    --off-black: #1a1a1a;
    --text: #222222;
    --muted: #4a4a4a;
    --cream: #f2f7f1;
    --white: #ffffff;
    --header-h: 120px;
    --header-h-mobile: 74px;
    --max: 1300px;
    --font-display: "Fraunces", Georgia, "Times New Roman", serif;
    --font-body: "Source Sans 3", "Segoe UI", Tahoma, sans-serif;
    --shadow-soft: 0 18px 40px rgba(45, 90, 40, 0.12);
    --radius: 6px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1.5;
    color: var(--green-deep);
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover,
a:focus-visible {
    color: var(--green-mid);
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    margin: 0 0 0.6em;
    color: var(--green-deep);
}

p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.7;
    color: var(--text);
    margin: 0 0 1em;
}

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
    border-radius: var(--radius);
    border: 2px solid transparent;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.btn-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-light:hover,
.btn-light:focus-visible {
    background: var(--white);
    color: var(--green-deep);
    border-color: var(--white);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0.15s;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======================================== */
/* SECTION 1: HEADER SECTION */
/* ======================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: var(--header-h);
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(69, 120, 46, 0.12);
    backdrop-filter: blur(10px);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 8px 24px rgba(26, 26, 26, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 24px;
}

.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo img {
    height: 72px;
    width: auto;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green-deep);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px 18px;
}

.nav-link {
    display: inline-block;
    padding: 8px 2px;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.3;
    color: var(--off-black);
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 2px;
    background: var(--green-bright);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
    color: var(--green-deep);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.facebook-link,
.footer-facebook {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1877f2;
}

.facebook-link:hover,
.facebook-link:focus-visible,
.footer-facebook:hover,
.footer-facebook:focus-visible {
    color: #0f5fcb;
}

.facebook-icon {
    width: 48px;
    height: 48px;
}

/* ======================================== */
/* SECTION 2: HERO SECTION */
/* ======================================== */

.hero {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    color: var(--white);
    border-bottom: 6px solid var(--green-deep);
}

.hero-slides,
.hero-slide,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-slide {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2000ms ease;
}

.hero-slide.is-active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(20, 20, 20, 0.30) 0%, rgba(20, 20, 20, 0.40) 55%, rgba(20, 20, 20, 0.50) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-title {
    max-width: 18ch;
    margin: 0 0 16px;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.12;
    color: var(--white);
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.45),
        0 6px 28px rgba(0, 0, 0, 0.4);
    animation: heroTextIn 1s cubic-bezier(0.25, 1, 0.5, 1) both;
}

.hero-subtitle {
    margin: 0;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0.01em;
    line-height: 1.35;
    color: #f3f8e8;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.45),
        0 6px 24px rgba(0, 0, 0, 0.38);
    animation: heroTextIn 1s cubic-bezier(0.25, 1, 0.5, 1) 0.15s both;
}

@keyframes heroTextIn {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ======================================== */
/* SECTION 3: SCHOLARSHIP BAR */
/* ======================================== */

.scholarship-bar {
    width: 100%;
    background: linear-gradient(120deg, #243f1a 0%, var(--green-darker) 35%, var(--green-deep) 100%);
    color: var(--white);
    padding: 48px 0;
}

.scholarship-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px 48px;
    align-items: center;
}

.scholarship-title {
    margin: 0 0 6px;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: var(--white);
}

.scholarship-org {
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.4;
    text-transform: uppercase;
    color: #d9efb0;
}

.scholarship-text {
    margin: 0;
    max-width: 70ch;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.95);
}

.scholarship-action {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.scholarship-action .btn-light {
    background: rgba(0, 0, 0, 0.18);
    border-color: rgba(255, 255, 255, 0.85);
}

.scholarship-action .btn-light:hover,
.scholarship-action .btn-light:focus-visible {
    background: rgba(255, 255, 255, 0.95);
    color: var(--green-deep);
    border-color: var(--white);
}

/* ======================================== */
/* SECTION 4 & 5: CONTENT SPLITS */
/* ======================================== */

.content-section {
    width: 100%;
    padding: 90px 0;
    background: var(--white);
}

.what-we-do-section {
    background:
        linear-gradient(180deg, var(--cream) 0%, #eef4e4 100%);
}

.split-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px 56px;
    align-items: center;
}

.split-layout-reverse .split-media {
    order: 0;
}

.split-layout-reverse .split-text {
    order: 1;
}

.section-heading {
    margin: 0 0 18px;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--green-deep);
}

.section-subheading {
    margin: 28px 0 10px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1.3;
    color: var(--green-mid);
}

.section-lead {
    font-size: 19px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.7;
    color: var(--text);
}

.split-media {
    position: relative;
    align-self: center;
}

.split-media img {
    width: 100%;
    height: auto;
    aspect-ratio: 800 / 701;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
}

.what-we-do-section .split-media img {
    aspect-ratio: 800 / 664;
}

.split-media::after {
    content: "";
    position: absolute;
    inset: 16px -12px -12px 16px;
    background: rgba(127, 191, 85, 0.28);
    border: 0;
    border-radius: 10px;
    z-index: -1;
}

/* ======================================== */
/* SECTION 6: MEETING INFO */
/* ======================================== */

.meeting-section {
    width: 100%;
    padding: 72px 0;
    background:
        radial-gradient(circle at top right, rgba(127, 191, 85, 0.18), transparent 45%),
        linear-gradient(180deg, #ffffff 0%, #f7faf2 100%);
    text-align: center;
}

.meeting-inner {
    max-width: 820px;
}

.meeting-heading {
    margin: 0 0 18px;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--green-deep);
}

.meeting-text {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.65;
    color: var(--text);
}

.meeting-note {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    font-style: italic;
    letter-spacing: normal;
    line-height: 1.5;
    color: var(--green-deep);
}

.meeting-cta {
    margin-top: 28px;
}

.meetings-page-section {
    padding-top: 40px;
    padding-bottom: 72px;
    background: linear-gradient(180deg, #ffffff 0%, #f7faf2 100%);
}

.meetings-intro-block {
    max-width: 720px;
    margin: 0 auto 28px;
    text-align: center;
}

.meetings-intro-block .section-heading {
    margin-bottom: 0;
}

.meetings-details {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
}

.meetings-archive {
    max-width: var(--max);
    margin: 0 auto;
    text-align: center;
}

.meetings-embed {
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(69, 120, 46, 0.14);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(45, 90, 40, 0.08);
}

.meetings-embed iframe {
    display: block;
    width: 100%;
    height: calc(100vh - var(--header-h) - 48px);
    height: calc(100dvh - var(--header-h) - 48px);
    min-height: 70vh;
    border: 0;
}

/* ======================================== */
/* SUBPAGE: VOLUNTEER */
/* ======================================== */

.volunteer-section {
    padding-top: 40px;
    padding-bottom: 72px;
    background: linear-gradient(180deg, #ffffff 0%, #f7faf2 100%);
}

.volunteer-intro-block {
    max-width: 780px;
    margin: 0 auto 40px;
    text-align: center;
}

.volunteer-intro-block .section-heading {
    margin-bottom: 14px;
}

.volunteer-intro {
    margin: 0;
    font-size: 19px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.7;
    color: var(--text);
}

.volunteer-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
    gap: 36px;
    align-items: start;
}

.volunteer-tasks {
    padding: 28px 26px 30px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbf2 100%);
    border: 1px solid rgba(69, 120, 46, 0.14);
    border-radius: 14px;
    box-shadow: 0 14px 32px rgba(45, 90, 40, 0.08);
}

.volunteer-tasks-heading {
    margin: 0 0 16px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.25;
    color: var(--green-deep);
}

.volunteer-tasks-list {
    margin: 0;
    padding: 0 0 0 1.15em;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.7;
    color: var(--text);
}

.volunteer-tasks-list li + li {
    margin-top: 8px;
}

.volunteer-note {
    font-size: 15px;
    font-weight: 600;
    font-style: italic;
    color: var(--green-deep);
}

.volunteer-form-card {
    position: relative;
    padding: 32px 30px 36px;
    background: linear-gradient(180deg, #f3f7ec 0%, #e8f0dc 100%);
    border: 1px solid rgba(69, 120, 46, 0.18);
    border-radius: 14px;
    box-shadow: 0 14px 32px rgba(45, 90, 40, 0.08);
}

.volunteer-form-heading {
    margin: 0 0 10px;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.25;
    color: var(--green-deep);
}

.volunteer-form-intro {
    margin: 0 0 24px;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.6;
    color: var(--text);
}

.volunteer-form {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    overflow: hidden !important;
}

.form-status {
    margin: 4px 0 0;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1.5;
    color: var(--text);
}

.form-status.is-success {
    background: #f7e7b0;
    border: 1px solid #c9a227;
    color: #5c4810;
}

.form-status.is-error {
    background: rgba(140, 60, 60, 0.1);
    border: 1px solid rgba(140, 60, 60, 0.35);
    color: #5c2b2b;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 0.7fr;
    gap: 14px;
}

.form-row-2 {
    grid-template-columns: 1fr 1fr;
}

.form-fieldset {
    border: 0;
    padding: 0;
    margin: 0;
    min-width: 0;
}

.form-fieldset .form-label {
    margin-bottom: 4px;
}

.form-label {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.35;
    color: var(--green-deep);
}

.form-required {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1.35;
    color: var(--muted, #5a5a5a);
}

.form-input {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.4;
    color: var(--text);
    background: #ffffff;
    border: 1px solid rgba(69, 120, 46, 0.28);
    border-radius: 8px;
    padding: 12px 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--green-deep);
    box-shadow: 0 0 0 3px rgba(127, 191, 85, 0.35);
}

.form-select {
    background-image: linear-gradient(45deg, transparent 50%, var(--green-deep) 50%),
        linear-gradient(135deg, var(--green-deep) 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 36px;
}

.form-textarea {
    resize: vertical;
    min-height: 110px;
}

.form-checkboxes {
    display: grid;
    gap: 10px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.45;
    color: var(--text);
    cursor: pointer;
}

.form-check input {
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    accent-color: var(--green-deep);
}

.volunteer-form .btn {
    align-self: flex-start;
    margin-top: 6px;
}

/* ======================================== */
/* SUBPAGE: PAGE TITLE BAR */
/* ======================================== */

.page-title-bar {
    width: 100%;
    min-height: 130px;
    display: flex;
    align-items: center;
    background: linear-gradient(120deg, #243f1a 0%, var(--green-darker) 40%, var(--green-deep) 100%);
    border-bottom: 4px solid var(--green-bright);
}

.page-title-inner {
    width: 100%;
    padding-top: 28px;
    padding-bottom: 28px;
}

.page-title {
    margin: 0;
    font-size: 39px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--white);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

/* ======================================== */
/* SUBPAGE: LEADERSHIP */
/* ======================================== */

.leadership-section {
    background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
}

.leadership-intro-block {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.leadership-intro-block .section-heading {
    margin-bottom: 14px;
}

.leadership-intro {
    max-width: 62ch;
    margin: 0 auto;
    text-align: center;
    font-size: 19px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.7;
    color: var(--text);
}

.leadership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.leadership-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbf2 100%);
    border: 1px solid rgba(69, 120, 46, 0.14);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(45, 90, 40, 0.1);
    padding: 36px 36px 28px;
    position: relative;
    overflow: hidden;
}

.leadership-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--green-darker), var(--green-deep), var(--green-bright));
}

.leadership-card-title {
    margin: 0 0 22px;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.2;
    color: var(--green-deep);
}

.leadership-list {
    display: grid;
    gap: 14px;
}

.leadership-list li {
    display: grid;
    gap: 2px;
    padding: 14px 16px;
    background: rgba(127, 191, 85, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--green-mid);
}

.leadership-list-board li {
    grid-template-columns: 1fr;
}

.leadership-role {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.3;
    text-transform: uppercase;
    color: var(--green-mid);
}

.leadership-name {
    display: block;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1.35;
    color: var(--off-black);
}

.leadership-list-board .leadership-name {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1.35;
}

/* ======================================== */
/* SUBPAGE: NEWS & EVENTS */
/* ======================================== */

.news-section {
    background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
}

.news-intro-block {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
}

.news-intro-block .section-heading {
    margin-bottom: 12px;
}

.news-intro {
    margin: 0 auto;
    max-width: 58ch;
    font-size: 19px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.7;
    color: var(--text);
}

.news-status {
    max-width: 720px;
    margin: 0 auto;
    padding: 28px 32px;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.7;
    color: var(--text);
    background: #ffffff;
    border: 1px solid rgba(69, 120, 46, 0.14);
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(45, 90, 40, 0.08);
}

.news-status.is-error {
    color: #5c2b2b;
    border-color: rgba(140, 60, 60, 0.25);
}

.news-feed {
    display: grid;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-post {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbf2 100%);
    border: 1px solid rgba(69, 120, 46, 0.14);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(45, 90, 40, 0.1);
    padding: 36px 40px;
    overflow: hidden;
    scroll-margin-top: calc(var(--header-h) + 56px);
    transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.blog-post.is-hash-target {
    border-color: rgba(69, 120, 46, 0.45);
    box-shadow: 0 18px 40px rgba(45, 90, 40, 0.16), 0 0 0 3px rgba(127, 191, 85, 0.35);
}

.blog-post::after {
    content: "";
    display: table;
    clear: both;
}

.blog-post-date {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.3;
    text-transform: uppercase;
    color: var(--green-mid);
}

.blog-post-title {
    margin: 0 0 16px;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.25;
    color: var(--green-deep);
}

.blog-post-image {
    float: right;
    max-width: 520px;
    width: 48%;
    height: auto;
    margin: 4px 0 20px 32px;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(45, 90, 40, 0.12);
}

.blog-post-body {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.7;
    color: var(--text);
}

.blog-post-body p {
    margin: 0 0 1em;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.7;
    color: var(--text);
}

.blog-post-body p:last-child {
    margin-bottom: 0;
}

.blog-post-body strong,
.blog-post-body b {
    font-size: inherit;
    font-weight: 700;
    letter-spacing: normal;
    line-height: inherit;
    color: inherit;
}

.blog-post-body em,
.blog-post-body i {
    font-size: inherit;
    font-weight: inherit;
    font-style: italic;
    letter-spacing: normal;
    line-height: inherit;
    color: inherit;
}

.blog-post-body .text-lg {
    font-size: 22px;
    font-weight: inherit;
    letter-spacing: normal;
    line-height: 1.5;
    color: inherit;
}

.blog-post-body .text-sm {
    font-size: 15px;
    font-weight: inherit;
    letter-spacing: normal;
    line-height: 1.6;
    color: inherit;
}

.leadership-section {
    padding-bottom: 40px;
}

.leadership-meeting-section {
    padding-top: 24px;
}

/* ======================================== */
/* SECTION 7: HOME NEWS TEASERS */
/* ======================================== */

.home-news-section {
    width: 100%;
    padding: 64px 0 72px;
    background: linear-gradient(180deg, #f7faf2 0%, #ffffff 100%);
}

.home-news-intro {
    max-width: 640px;
    margin: 0 auto 40px;
    text-align: center;
}

.home-news-intro .section-heading {
    margin-bottom: 12px;
}

.home-news-sub {
    margin: 0;
    font-size: 19px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.65;
    color: var(--text);
}

.home-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.home-news-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 26px 30px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbf2 100%);
    border: 1px solid rgba(69, 120, 46, 0.14);
    border-radius: 14px;
    box-shadow: 0 14px 32px rgba(45, 90, 40, 0.08);
}

.home-news-card-title {
    margin: 0 0 14px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.3;
    color: var(--green-deep);
}

.home-news-card-summary {
    margin: 0 0 22px;
    flex: 1;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.65;
    color: var(--text);
}

.home-news-card-btn {
    margin-top: auto;
}

/* ======================================== */
/* SECTION 8: MEMBERSHIP CTA */
/* ======================================== */

.membership-section {
    width: 100%;
    padding: 40px 0 90px;
    background: linear-gradient(180deg, #f7faf2 0%, var(--cream) 100%);
}

.membership-page-section {
    background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
}

.membership-intro-block {
    max-width: 720px;
    margin: 0 auto 36px;
    text-align: center;
}

.membership-intro-block .section-heading {
    margin-bottom: 0;
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.membership-page-section .support-card {
    max-width: none;
    margin: 0;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.membership-page-section .membership-card .membership-heading {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.25;
}

.membership-page-section .membership-text {
    margin-bottom: 16px;
}

.membership-page-section .membership-note {
    margin-bottom: 28px;
    font-size: 17px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: normal;
    line-height: 1.5;
    color: var(--green-deep);
}

.membership-page-section .support-card .btn {
    margin-top: auto;
}

.membership-card {
    max-width: 1040px;
    margin: 0 auto;
    padding: 48px 64px;
    text-align: center;
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fbf2 100%);
    border: 1px solid rgba(69, 120, 46, 0.16);
    border-radius: 14px;
    box-shadow: 0 20px 48px rgba(45, 90, 40, 0.12);
    position: relative;
    overflow: hidden;
}

.membership-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--green-darker), var(--green-deep), var(--green-bright));
}

.membership-heading {
    margin: 0 0 16px;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.25;
    color: var(--green-deep);
    text-wrap: balance;
}

.membership-text {
    margin: 0 auto 28px;
    max-width: 58ch;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.7;
    color: var(--text);
}

.btn-primary {
    background: transparent;
    color: var(--green-deep);
    border-color: var(--green-deep);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--green-deep);
    border-color: var(--green-deep);
    color: var(--white);
    transform: translateY(-1px);
}

/* ======================================== */
/* SECTION 9: FAT FOOTER SECTION */
/* ======================================== */

.fat-footer {
    width: 100%;
    padding: 72px 0;
    background: linear-gradient(135deg, #243f1a 0%, var(--green-darker) 40%, var(--green-deep) 100%);
    color: var(--white);
}

.fat-footer-inner {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 40px 56px;
    align-items: stretch;
}

.footer-heading {
    margin: 0 0 18px;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: var(--white);
}

.footer-email a {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1.4;
    color: #e7f5c8;
}

.footer-email a:hover,
.footer-email a:focus-visible {
    color: var(--white);
}

.footer-facebook {
    margin: 18px 0 28px;
    gap: 10px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1.3;
    color: var(--white);
}

.footer-facebook .facebook-icon {
    width: 52px;
    height: 52px;
    color: #1877f2;
    background: var(--white);
    border-radius: 50%;
    padding: 4px;
}

.footer-facebook:hover,
.footer-facebook:focus-visible {
    color: #d9efb0;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links a {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: #d9efb0;
}

.footer-map {
    min-height: 280px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
    border: 3px solid rgba(255, 255, 255, 0.18);
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    min-height: 280px;
    border: 0;
    display: block;
}

/* ======================================== */
/* SECTION 9: COPYRIGHT FOOTER BAR */
/* ======================================== */

.copyright-bar {
    width: 100%;
    background: #111111;
    color: rgba(255, 255, 255, 0.82);
    padding: 16px 0;
}

.copyright-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px 24px;
}

.copyright-text,
.copyright-credit {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.82);
}

.copyright-credit a {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1.5;
    color: var(--green-bright);
}

.copyright-credit a:hover,
.copyright-credit a:focus-visible {
    color: var(--white);
}

/* ======================================== */
/* RESPONSIVE */
/* ======================================== */

@media (max-width: 1100px) {
    .nav-list {
        gap: 4px 12px;
    }

    .nav-link {
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 0.01em;
        line-height: 1.3;
    }

    .hero-title {
        font-size: 46px;
        font-weight: 700;
        letter-spacing: -0.02em;
        line-height: 1.12;
    }

    .split-layout {
        gap: 36px;
    }
}

@media (max-width: 900px) {
    .scholarship-inner,
    .split-layout,
    .fat-footer-inner,
    .leadership-grid,
    .support-grid,
    .volunteer-layout {
        grid-template-columns: 1fr;
    }

    .home-news-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 720px;
    }

    .split-layout-reverse .split-media,
    .split-layout-reverse .split-text {
        order: initial;
    }

    .split-layout-reverse .split-media {
        order: -1;
    }

    .scholarship-action {
        justify-self: start;
    }

    .hero {
        height: 560px;
    }

    .hero-title {
        font-size: 40px;
        font-weight: 700;
        letter-spacing: -0.02em;
        line-height: 1.15;
        max-width: 18ch;
    }

    .hero-subtitle {
        font-size: 22px;
        font-weight: 600;
        letter-spacing: 0.01em;
        line-height: 1.35;
    }
}

@media (max-width: 768px) {
    .site-header {
        height: var(--header-h-mobile);
    }

    .meetings-embed iframe {
        height: calc(100vh - var(--header-h-mobile) - 32px);
        height: calc(100dvh - var(--header-h-mobile) - 32px);
        min-height: 60vh;
    }

    .volunteer-section {
        padding-top: 28px;
        padding-bottom: 48px;
    }

    .volunteer-layout,
    .form-row,
    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .volunteer-form-card {
        padding: 26px 20px 30px;
    }

    .page-title-bar {
        min-height: 100px;
    }

    .page-title-inner {
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .page-title {
        font-size: 30px;
        font-weight: 700;
        letter-spacing: -0.02em;
        line-height: 1.15;
    }

    .leadership-card {
        padding: 28px 22px 22px;
    }

    .leadership-card-title {
        font-size: 24px;
        font-weight: 700;
        letter-spacing: -0.015em;
        line-height: 1.2;
    }

    .leadership-intro-block {
        margin-bottom: 32px;
    }

    .leadership-intro {
        font-size: 17px;
        font-weight: 400;
        letter-spacing: normal;
        line-height: 1.7;
    }

    .blog-post {
        padding: 24px 20px;
        scroll-margin-top: calc(var(--header-h-mobile) + 48px);
    }

    .blog-post-title {
        font-size: 24px;
        font-weight: 700;
        letter-spacing: -0.015em;
        line-height: 1.25;
    }

    .blog-post-image {
        float: none;
        width: 100%;
        max-width: 100%;
        margin: 0 0 16px;
    }

    .news-intro {
        font-size: 17px;
        font-weight: 400;
        letter-spacing: normal;
        line-height: 1.7;
    }

    .site-logo img {
        height: 50px;
    }

    .nav-toggle {
        display: flex;
        z-index: 1002;
    }

    .primary-nav {
        position: fixed;
        top: var(--header-h-mobile);
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid rgba(69, 120, 46, 0.15);
        box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.35s ease, opacity 0.25s ease;
    }

    .primary-nav.is-open {
        max-height: calc(100vh - var(--header-h-mobile));
        opacity: 1;
        overflow-y: auto;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        padding: 12px 20px 24px;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: 14px 0;
        font-size: 17px;
        font-weight: 600;
        letter-spacing: normal;
        line-height: 1.3;
        border-bottom: 1px solid rgba(69, 120, 46, 0.1);
    }

    .nav-link::after {
        display: none;
    }

    .nav-social {
        padding-top: 16px;
    }

    .hero {
        height: 480px;
    }

    .hero-title {
        font-size: 34px;
        font-weight: 700;
        letter-spacing: -0.02em;
        line-height: 1.15;
        max-width: 14ch;
    }

    .hero-subtitle {
        font-size: 20px;
        font-weight: 600;
        letter-spacing: 0.01em;
        line-height: 1.35;
    }

    .content-section {
        padding: 64px 0;
    }

    .meetings-page-section {
        padding-top: 28px;
        padding-bottom: 48px;
    }

    .section-heading {
        font-size: 32px;
        font-weight: 700;
        letter-spacing: -0.02em;
        line-height: 1.15;
    }

    .scholarship-bar,
    .fat-footer {
        padding: 40px 0;
    }

    .scholarship-title {
        font-size: 26px;
        font-weight: 700;
        letter-spacing: -0.01em;
        line-height: 1.2;
    }

    .split-media::after {
        display: none;
    }

    .meeting-section {
        padding: 56px 0 24px;
    }

    .home-news-section {
        padding: 40px 0 48px;
    }

    .home-news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 560px;
    }

    .home-news-card-title {
        font-size: 20px;
    }

    .membership-section {
        padding: 24px 0 64px;
    }

    .membership-card {
        padding: 36px 24px;
    }

    .membership-heading {
        font-size: 24px;
        font-weight: 700;
        letter-spacing: -0.015em;
        line-height: 1.25;
    }

    .meeting-heading {
        font-size: 28px;
        font-weight: 700;
        letter-spacing: -0.02em;
        line-height: 1.2;
    }

    .meeting-text {
        font-size: 18px;
        font-weight: 400;
        letter-spacing: normal;
        line-height: 1.65;
    }

    .copyright-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 420px;
    }

    .hero-title {
        font-size: 30px;
        font-weight: 700;
        letter-spacing: -0.02em;
        line-height: 1.15;
    }

    .btn {
        width: 100%;
    }

    .scholarship-action {
        width: 100%;
    }
}

/* ======================================== */
/* ACCESSIBILITY WIDGET */
/* ======================================== */

.a11y-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 950;
}

.a11y-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--green-deep);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.a11y-toggle:hover,
.a11y-toggle:focus-visible {
    background-color: var(--green-mid);
    transform: translateY(-2px);
    outline: none;
}

.a11y-panel {
    position: absolute;
    bottom: 68px;
    right: 0;
    width: 280px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.22);
    overflow: hidden;
}

.a11y-panel[hidden] {
    display: none;
}

.a11y-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--green-deep);
    color: var(--white);
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.a11y-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.a11y-panel-body {
    padding: 16px;
}

.a11y-row {
    margin-bottom: 16px;
}

.a11y-row-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1.3;
    color: var(--text);
    margin-bottom: 8px;
}

.a11y-btn-group {
    display: flex;
    gap: 6px;
}

.a11y-btn-group button {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1;
    color: var(--green-deep);
    background-color: var(--cream);
    border: 1px solid rgba(69, 120, 46, 0.28);
    border-radius: 4px;
    padding: 8px 6px;
    cursor: pointer;
}

.a11y-btn-group button:hover {
    background-color: #e4eedc;
}

.a11y-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1.3;
    color: var(--text);
    margin-bottom: 14px;
    cursor: pointer;
}

.a11y-toggle-row input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--green-deep);
}

.a11y-reset-all {
    width: 100%;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1;
    color: var(--white);
    background-color: var(--green-deep);
    border: none;
    border-radius: 4px;
    padding: 10px;
    cursor: pointer;
    margin-top: 4px;
}

.a11y-reset-all:hover {
    background-color: var(--green-mid);
}

html.a11y-contrast body {
    background-color: #000000 !important;
    color: #ffffff !important;
}

html.a11y-contrast .site-header,
html.a11y-contrast .a11y-panel,
html.a11y-contrast .page-title-bar,
html.a11y-contrast .scholarship-bar,
html.a11y-contrast .home-news-section,
html.a11y-contrast .content-section,
html.a11y-contrast .meeting-section,
html.a11y-contrast .membership-section,
html.a11y-contrast .volunteer-section,
html.a11y-contrast .fat-footer,
html.a11y-contrast .copyright-bar {
    background-image: none !important;
    background-color: #000000 !important;
    border-color: #ffff00 !important;
}

html.a11y-contrast p,
html.a11y-contrast h1,
html.a11y-contrast h2,
html.a11y-contrast h3,
html.a11y-contrast .a11y-row-label,
html.a11y-contrast .a11y-toggle-row,
html.a11y-contrast .section-heading,
html.a11y-contrast .section-lead,
html.a11y-contrast .nav-link,
html.a11y-contrast .copyright-text,
html.a11y-contrast .copyright-credit {
    color: #ffffff !important;
}

html.a11y-contrast a,
html.a11y-contrast .nav-link {
    color: #ffff00 !important;
}

html.a11y-contrast .btn,
html.a11y-contrast .a11y-reset-all,
html.a11y-contrast .a11y-toggle {
    background-color: #ffff00 !important;
    color: #000000 !important;
    border: 2px solid #ffffff !important;
}

html.a11y-underline a {
    text-decoration: underline !important;
}

html.a11y-reduce-motion *,
html.a11y-reduce-motion *::before,
html.a11y-reduce-motion *::after {
    transition: none !important;
    animation: none !important;
}

html.a11y-reduce-motion .fade-in-up {
    opacity: 1 !important;
    transform: none !important;
}

@media (max-width: 768px) {
    .a11y-widget {
        bottom: 16px;
        right: 16px;
    }

    .a11y-panel {
        width: calc(100vw - 32px);
        max-width: 300px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .fade-in-up,
    .hero-slide,
    .hero-title,
    .hero-subtitle,
    .nav-toggle-bar,
    .nav-link::after {
        transition: none !important;
        animation: none !important;
    }

    .fade-in-up {
        opacity: 1;
        transform: none;
    }
}
