/* ===== CSS Variables & Reset ===== */
:root {
    --green: #006400;
    --green-dark: #004a00;
    --green-med: #1a7a1a;
    --gold: #FFD700;
    --gold-dark: #c9a800;
    --gold-mid: #e6b800;
    --black: #0d0d0d;
    --white: #ffffff;
    --bg-light: #f4f6f8;
    --bg-offwhite: #fafafa;
    --text-dark: #1a1a1a;
    --text-med: #4a4a4a;
    --text-light: #767676;
    --border: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
    --shadow: 0 6px 24px rgba(0,0,0,0.10);
    --shadow-lg: 0 16px 50px rgba(0,0,0,0.14);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-offwhite);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 { font-size: 3.2rem; font-weight: 800; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.4rem; }

p {
    margin-bottom: 1.1rem;
    color: var(--text-med);
    font-size: 1.02rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    display: inline-block;
    position: relative;
    padding-bottom: 18px;
    margin-bottom: 1rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--gold));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    background: rgba(0, 100, 0, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 1rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: var(--radius);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--green);
    color: white;
    box-shadow: 0 4px 14px rgba(0, 100, 0, 0.25);
}
.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 100, 0, 0.3);
}

.btn-secondary {
    background: var(--gold);
    color: var(--black);
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(255, 215, 0, 0.3);
}
.btn-secondary:hover {
    background: var(--gold-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--green);
    color: var(--green);
}
.btn-outline:hover {
    background: var(--green);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
}
.btn-outline-white:hover {
    background: white;
    color: var(--green);
    transform: translateY(-2px);
}

/* ===== Top Action Bar ===== */
.top-bar {
    background: var(--green-dark);
    color: white;
    padding: 8px 0;
    font-size: 0.88rem;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
}

.top-bar-left i { color: var(--gold); }

.top-bar-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.top-bar-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    padding: 5px 14px;
    border-radius: 4px;
    transition: var(--transition);
}

.top-bar-btn.dues {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}
.top-bar-btn.dues:hover {
    background: rgba(255,255,255,0.25);
}

.top-bar-btn.donate {
    background: var(--gold);
    color: var(--black);
}
.top-bar-btn.donate:hover {
    background: var(--gold-mid);
}

/* ===== Navigation ===== */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    padding: 0;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo-img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

.logo-text { display: flex; flex-direction: column; }

.logo-main {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--green);
    line-height: 1;
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 3px;
    letter-spacing: 0.5px;
}

/* Desktop nav menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 14px;
    border-radius: var(--radius);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--green);
    background: rgba(0,100,0,0.06);
}

.nav-link .chevron {
    font-size: 0.7rem;
    transition: transform 0.25s ease;
}

.admin-nav-link-pub {
    color: var(--green-dark) !important;
    font-weight: 600;
    border: 1px solid rgba(0,100,0,0.25);
    border-radius: 6px;
    padding: 5px 12px !important;
}

.admin-nav-link-pub:hover {
    background: var(--green-dark) !important;
    color: #fff !important;
    border-color: var(--green-dark);
}

.nav-item:hover .chevron {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    border: 1px solid var(--border);
    overflow: hidden;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 11px 18px;
    text-decoration: none;
    color: var(--text-med);
    font-size: 0.88rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.dropdown a:hover {
    background: rgba(0,100,0,0.05);
    color: var(--green);
    border-left-color: var(--green);
    padding-left: 22px;
}

/* Mobile hamburger */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--green);
    cursor: pointer;
    padding: 8px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.nav-link,
.dropdown a {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* ===== Hero Section ===== */
.hero {
    min-height: calc(100vh - 108px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: heroFade 18s infinite;
    will-change: opacity;
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }

@keyframes heroFade {
    0%   { opacity: 0; }
    5%   { opacity: 1; }
    30%  { opacity: 1; }
    38%  { opacity: 0; }
    100% { opacity: 0; }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(0,40,0,0.88) 0%,
        rgba(0,70,0,0.72) 50%,
        rgba(0,0,0,0.82) 100%
    );
}

.hero::before {
    content: '';
    position: absolute;
    z-index: 2;
    top: 0; right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255,215,0,0.07));
    pointer-events: none;
}

/* ── Hero Promo Lightbox ── */
.hero-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.93);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.18s ease;
}

.hero-lb-close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: rgba(255,255,255,0.12);
    border: none;
    color: white;
    font-size: 1.1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    z-index: 10;
}

.hero-lb-close:hover { background: rgba(255,255,255,0.26); }

.hero-lb-img-wrap {
    position: relative;
    max-width: calc(100vw - 140px);
    max-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-lb-img-wrap img {
    max-width: 100%;
    max-height: 92vh;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.hero-content-wrap {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 80px 0;
}

.hero-content {
    color: white;
    flex: 1;
    min-width: 0;
}

.hero-content-wrap.has-promo .hero-content {
    max-width: none;
}

.hero-promo-slot {
    flex-shrink: 0;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-promo-link {
    display: block;
    text-decoration: none;
    position: relative;
    cursor: pointer;
}

.hero-promo-img {
    width: 100%;
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.45);
    border: 2px solid rgba(255,255,255,0.15);
    display: block;
    object-fit: cover;
    transition: transform 0.25s, box-shadow 0.25s;
}

.hero-promo-link:hover .hero-promo-img {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.55);
}

.hero-promo-zoom-hint {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.5);
    color: white;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}

.hero-promo-link:hover .hero-promo-zoom-hint {
    opacity: 1;
}

.hero-lb-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    background: var(--green);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.18s;
}

.hero-lb-link:hover { background: var(--green-dark); }

.hero-promo-caption {
    color: rgba(255,255,255,0.8);
    font-size: 0.82rem;
    text-align: center;
    margin: 0;
    font-style: italic;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,215,0,0.15);
    border: 1px solid rgba(255,215,0,0.4);
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    color: white;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-title span {
    color: var(--gold);
}

.hero-subtitle-org {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero-tagline {
    font-size: 1.35rem;
    color: rgba(255,255,255,0.88);
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 580px;
    line-height: 1.6;
    border-left: 3px solid var(--gold);
    padding-left: 16px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* ===== Stats Bar ===== */
.stats-bar {
    background: var(--green-dark);
    padding: 28px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    color: white;
    padding: 8px;
}

.stat-item + .stat-item {
    border-left: 1px solid rgba(255,255,255,0.15);
}

.stat-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
}

/* ===== Home Preview Section (upcoming event + memorial) ===== */
.home-preview-section {
    padding: 70px 0 60px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.home-preview-grid {
    display: grid;
    gap: 28px;
    margin-bottom: 36px;
}

.home-preview-grid.cards-1 { grid-template-columns: minmax(0, 560px); justify-content: center; }
.home-preview-grid.cards-2 { grid-template-columns: repeat(2, 1fr); }

.hp-card {
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 3px 16px rgba(0,0,0,0.10);
    border: 1px solid #e5e7eb;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
    background: #fff;
}

.hp-card-thumb {
    position: relative;
    width: 100%;
    padding-top: 65%;
    overflow: hidden;
    background-color: #1a3a1a;
    flex-shrink: 0;
}

.hp-card-thumb.memorial {
    background-color: #1e3a5f;
}

.hp-thumb-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.hp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.28);
}

.hp-card-overlay { display: none; }

.hp-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--green-dark);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    z-index: 2;
}

.hp-card-badge.memorial {
    background: #1e3a5f;
}

.hp-card-body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    background: #fff;
}

.hp-card-countdown {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.hp-card-countdown.memorial {
    color: #1e3a5f;
}

.hp-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.35;
}

.hp-card-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.83rem;
    color: #6b7280;
}

.hp-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hp-card-meta i {
    width: 14px;
    text-align: center;
    color: #9ca3af;
}

.hp-card-desc {
    font-size: 0.88rem;
    color: #374151;
    line-height: 1.55;
    margin: 2px 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hp-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--green);
}

.hp-card--memorial .hp-card-link {
    color: #1e3a5f;
}

.home-preview-cta {
    text-align: center;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .home-preview-grid.cards-2 { grid-template-columns: 1fr; }
}

/* ===== Mission & Vision Section ===== */
.mv-section {
    padding: 90px 0;
    background: white;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 1rem;
}

.mv-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 5px;
    background: linear-gradient(90deg, var(--green), var(--gold));
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.mv-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--green), var(--green-med));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(0,100,0,0.2);
}

.mv-card h3 {
    color: var(--green);
    font-size: 1.25rem;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mv-card p {
    color: var(--text-med);
    line-height: 1.8;
    font-size: 1rem;
}

/* ===== Programs Section ===== */
.programs-section {
    padding: 90px 0;
    background: var(--bg-light);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 1rem;
}

.program-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.program-icon-bar {
    height: 120px;
    background: linear-gradient(135deg, var(--green-dark), var(--green-med));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.program-icon-bar::after {
    content: '';
    position: absolute;
    bottom: -20px; right: -20px;
    width: 80px; height: 80px;
    background: rgba(255,215,0,0.12);
    border-radius: 50%;
}

.program-body {
    padding: 28px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-body h3 {
    color: var(--green);
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.program-body p {
    font-size: 0.95rem;
    flex: 1;
    color: var(--text-med);
    line-height: 1.7;
}

/* ===== Meetings Section ===== */
.meetings-section {
    padding: 80px 0;
    background: white;
}

.meetings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.meetings-info h2 {
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 1rem;
}

.meetings-info h2::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 50px; height: 4px;
    background: linear-gradient(90deg, var(--green), var(--gold));
    border-radius: 2px;
}

.meetings-info p { margin-bottom: 1.5rem; }

.meetings-highlight {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: white;
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
}

.meetings-highlight .big-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.meetings-highlight .schedule {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    line-height: 1.3;
    margin-bottom: 16px;
}

.meetings-highlight p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, var(--green-med) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    background: rgba(255,215,0,0.06);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 350px; height: 350px;
    background: rgba(255,215,0,0.04);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
}

.cta-content .section-label {
    background: rgba(255,215,0,0.2);
    color: var(--gold);
}

.cta-content h2 {
    color: white;
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255,255,255,0.82);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* ===== About Page Specific ===== */
.page-hero {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: white;
    padding: 70px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 100%; height: 40px;
    background: var(--bg-offwhite);
    clip-path: ellipse(60% 100% at 50% 100%);
}

.page-hero h1 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
}

.page-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
    max-width: 580px;
    margin: 0 auto;
}

.about-section {
    padding: 90px 0;
    background: var(--bg-offwhite);
}

.about-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
    align-items: start;
}

.about-text h2 {
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 1.5rem;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 50px; height: 4px;
    background: linear-gradient(90deg, var(--green), var(--gold));
    border-radius: 2px;
}

.about-text p { color: var(--text-med); line-height: 1.8; }

.about-list {
    list-style: none;
    margin: 1rem 0 1.5rem;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-med);
    font-size: 0.97rem;
    line-height: 1.6;
}

.about-list li:last-child { border-bottom: none; }

.about-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--green);
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 0.95rem;
}

.about-sidebar .sidebar-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    margin-bottom: 24px;
}

.about-sidebar .sidebar-card h3 {
    color: var(--green);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--bg-light);
}

.facts-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.fact-item { text-align: center; }

.fact-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
}

.fact-label {
    font-size: 0.78rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
    display: block;
}

/* Statement sections (verbatim) */
.statement-section {
    padding: 80px 0;
    background: white;
}

.statement-section.alt { background: var(--bg-light); }

.statement-card {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.statement-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin: 0 auto 24px;
    box-shadow: 0 6px 20px rgba(0,100,0,0.2);
}

.statement-card h2 {
    color: var(--green);
    margin-bottom: 1.5rem;
}

.statement-text {
    font-size: 1.12rem;
    line-height: 1.9;
    color: var(--text-med);
    font-style: italic;
    border-left: 4px solid var(--gold);
    padding: 20px 28px;
    background: var(--bg-light);
    border-radius: 0 var(--radius) var(--radius) 0;
    text-align: left;
    margin-top: 1rem;
}

/* President Section */
.president-section {
    padding: 90px 0;
    background: white;
}

.president-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: flex-start;
    margin-top: 1rem;
}

.president-photo-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: sticky;
    top: 100px;
}

.president-photo-wrap {
    width: 240px;
    height: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--gold);
}

.president-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.president-id {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.president-id strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: var(--green);
}

.president-id span {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.5;
}

.president-message p {
    font-size: 1.02rem;
    color: var(--text-med);
    line-height: 1.75;
    margin-bottom: 0.55rem;
}

.president-list {
    margin: 0.5rem 0 1.2rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.president-list li {
    font-size: 1.02rem;
    color: var(--text-med);
    line-height: 1.7;
    padding-left: 6px;
}

.president-list li::marker {
    color: var(--green);
}

.president-sign {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border);
}

.sign-off {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--green);
    margin-bottom: 0.4rem !important;
}

.sign-closing {
    font-size: 0.97rem;
    color: var(--text-light);
    margin-bottom: 0.6rem !important;
}

.sign-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.2rem !important;
}

.sign-title {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0 !important;
}

@media (max-width: 860px) {
    .president-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .president-photo-col {
        position: static;
        flex-direction: row;
        align-items: flex-start;
        gap: 24px;
    }

    .president-photo-wrap {
        width: 140px;
        height: 165px;
        flex-shrink: 0;
    }

    .president-id {
        text-align: left;
        justify-content: center;
    }
}

@media (max-width: 500px) {
    .president-photo-col {
        flex-direction: column;
        align-items: center;
    }

    .president-id { text-align: center; }
}

/* Objectives */
.objectives-section {
    padding: 90px 0;
    background: var(--bg-offwhite);
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 1rem;
}

.objective-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.objective-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.objective-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(to bottom, var(--green), var(--gold));
}

.obj-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: rgba(0,100,0,0.08);
    line-height: 1;
    margin-bottom: 8px;
}

.objective-card h3 {
    color: var(--green);
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.objective-card p {
    font-size: 0.93rem;
    color: var(--text-med);
    line-height: 1.7;
    margin: 0;
}

/* Board Section */
.board-section {
    padding: 80px 0;
    background: white;
}

.board-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 1rem;
}

.board-card {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.board-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
    border-color: var(--gold);
}

.board-photo-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--bg-light);
}

.board-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.4s ease;
}

.board-card:hover .board-photo {
    transform: scale(1.04);
}

.board-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--border);
}

.board-info {
    padding: 14px 12px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.board-info strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.board-info span {
    font-size: 0.8rem;
    color: var(--green);
    font-weight: 600;
    line-height: 1.4;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(160deg, #0d1f0d, #111);
    color: white;
    padding: 72px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-col h3 {
    color: white;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255,215,0,0.25);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
}

.footer-logo .logo-main { color: white; font-size: 1.3rem; }
.footer-logo .logo-sub { color: rgba(255,255,255,0.55); font-size: 0.73rem; }

.footer-about {
    color: rgba(255,255,255,0.6);
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 22px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--green);
    color: white;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover { color: var(--gold); }

.footer-links a::before {
    content: '›';
    font-size: 1.1rem;
    color: var(--green-med);
}

.footer-contact { list-style: none; }

.footer-contact li {
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact i {
    color: var(--gold);
    width: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-action-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

.footer-action-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 9px 16px;
    border-radius: var(--radius);
    transition: var(--transition);
    text-align: center;
    justify-content: center;
}

.footer-action-link.dues {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}
.footer-action-link.dues:hover { background: rgba(255,255,255,0.18); }

.footer-action-link.donate {
    background: var(--gold);
    color: var(--black);
}
.footer-action-link.donate:hover { background: var(--gold-mid); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

.footer-bottom p + p { margin-top: 6px; font-size: 0.78rem; }

/* ===== Page Header (for inner pages) ===== */
.page-header {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    padding: 60px 0;
    text-align: center;
}

.page-header h1 { color: white; font-size: 2.5rem; margin-bottom: 0.5rem; }
.page-header p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin: 0; }

/* ===== Animations ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.7s ease forwards;
}

/* ===== Utilities ===== */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* ===== Get Involved Page ===== */
.gi-ways-section {
    padding: 90px 0;
    background: var(--bg-offwhite);
}

.gi-ways-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 1rem;
}

.chapters-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.gi-way-card {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gi-way-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
    border-color: var(--gold);
}

.gi-way-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.gi-way-card h3 {
    color: var(--text-dark);
    margin-bottom: 0;
}

.gi-way-card p {
    flex: 1;
}

.gi-way-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Gallery placeholder grid */
.gi-gallery-section {
    padding: 80px 0;
    background: white;
}

.gi-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 1rem;
}

.gi-gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.gi-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gi-gallery-item:hover img {
    transform: scale(1.05);
}

.gi-gallery-placeholder {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    background: var(--bg-light);
    border: 2px dashed var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.88rem;
}

.gi-gallery-placeholder i {
    font-size: 2rem;
    color: var(--border);
}

/* Membership section */
.gi-membership-section {
    padding: 90px 0;
    background: var(--bg-offwhite);
}

.gi-membership-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 60px;
    align-items: flex-start;
}

.gi-membership-types {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 1.5rem 0;
}

.gi-type {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.gi-type-icon {
    width: 48px;
    height: 48px;
    background: rgba(0,100,0,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.gi-type strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.gi-type p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.gi-note {
    font-size: 0.88rem;
    color: var(--text-light);
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 12px 16px;
    border-left: 3px solid var(--green);
    margin-bottom: 0 !important;
}

.gi-note i {
    color: var(--green);
    margin-right: 6px;
}

.gi-cta-box {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.gi-cta-logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: block;
}

.gi-cta-box h3 {
    color: var(--green);
    margin-bottom: 10px;
}

.gi-cta-box p {
    font-size: 0.93rem;
    margin-bottom: 24px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .programs-grid { grid-template-columns: repeat(2, 1fr); }
    .objectives-grid { grid-template-columns: repeat(2, 1fr); }
    .board-cards { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .mv-grid { grid-template-columns: 1fr; }
    .meetings-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid .stat-item:nth-child(3) { border-left: none; }
    .hero-promo-slot { width: 220px; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.4rem; }
    h2 { font-size: 1.9rem; }
    .hero-title { font-size: 2.4rem; }
    .hero-tagline { font-size: 1.1rem; }
    .hero-content-wrap { padding: 60px 0; flex-direction: column; }
    .hero-promo-slot { width: 100%; max-width: 280px; }
    .top-bar-left { display: none; }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 12px 0;
        box-shadow: 0 12px 30px rgba(0,0,0,0.12);
        gap: 0;
    }
    .nav-menu.mobile-open { display: flex; }
    .nav-item { width: 100%; }
    .nav-link {
        width: 100%;
        padding: 14px 24px;
        border-radius: 0;
        border-bottom: 1px solid var(--border);
        justify-content: space-between;
    }
    .dropdown {
        position: static;
        opacity: 1;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        border: none;
        border-top: 1px solid var(--border);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, visibility 0.3s ease;
        background: var(--bg-light);
    }
    .nav-item.open .dropdown {
        visibility: visible;
        max-height: 400px;
    }
    .menu-toggle { display: block; }
    .programs-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; text-align: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 576px) {
    .container { padding: 0 16px; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }
    .hero-title { font-size: 2rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .objectives-grid { grid-template-columns: 1fr; }
    .board-cards { grid-template-columns: repeat(2, 1fr); }
    .facts-list { grid-template-columns: repeat(2, 1fr); }
    .page-hero h1 { font-size: 2rem; }
    .gi-ways-grid { grid-template-columns: 1fr; }
    .gi-gallery-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid .stat-item + .stat-item { border-left: none; }
    .gi-membership-grid { grid-template-columns: 1fr; }
    .gi-cta-box { position: static; top: auto; }
    .statement-text { padding: 16px 18px; font-size: 1rem; }
    .hero-promo-slot { max-width: 100%; }
    .home-preview-section { padding: 50px 0 40px; }
    .hp-card-body { padding: 16px 18px 18px; }
}

/* ── Extra small screens ── */
@media (max-width: 400px) {
    .container { padding: 0 12px; }
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    .hero-title { font-size: 1.8rem; }
    .board-cards { grid-template-columns: 1fr 1fr; }
    .gi-gallery-grid { grid-template-columns: 1fr; }
    .btn { padding: 12px 20px; font-size: 0.88rem; }
    .hero-eyebrow { font-size: 0.74rem; letter-spacing: 1px; }
    .meetings-highlight { padding: 24px 18px; }
    .meetings-highlight .schedule { font-size: 1.3rem; }
    .hp-card-title { font-size: 1.05rem; }
}

/* ── Touch device: disable sticky hover effects ── */
@media (hover: none) {
    .hp-card:hover {
        transform: none;
        box-shadow: 0 3px 16px rgba(0,0,0,0.10);
    }
    .hero-promo-link:hover .hero-promo-img {
        transform: none;
        box-shadow: 0 8px 32px rgba(0,0,0,0.45);
    }
}

/* ── Missing 768px responsive additions ── */
@media (max-width: 768px) {
    .gi-ways-grid { grid-template-columns: repeat(2, 1fr); }
    .gi-membership-grid { grid-template-columns: 1fr; }
    .gi-cta-box { position: static; top: auto; }
    .about-grid { grid-template-columns: 1fr; }
    .page-hero { padding: 50px 0 40px; }
    .page-hero p { font-size: 1rem; }
    .mv-section, .programs-section, .meetings-section,
    .cta-section, .about-section, .gi-ways-section,
    .gi-gallery-section, .gi-membership-section,
    .objectives-section, .board-section,
    .statement-section, .president-section { padding: 60px 0; }
    .mem-tabs-bar { top: 0; }
    .footer { padding: 48px 0 24px; }
    .footer-grid { gap: 28px; margin-bottom: 32px; }
}