/*
Theme Name: OLFHSAA
Theme URI: https://olfhsaa.org
Author: Our Lady of Fatima High School Alumni Association
Author URI: https://olfhsaa.org
Description: Official WordPress theme for the Our Lady of Fatima High School Alumni Association (OLFHSAA), Maryland County, Liberia. A Legacy of Excellence, A Future of Inspiration. Navy blue and olive green identity drawn from the association seal.
Version: 1.1.1
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: olfhsaa
Tags: alumni, nonprofit, education, custom-menu, featured-images, custom-logo, blog
*/

/* ============================================================
   OLFHSAA THEME — colours extracted from the association seal
   Royal blue ........ #1e3d8f
   Olive green ....... #4a5e30
   Light green accent  #a5c47a
   White ............. #ffffff
   ============================================================ */

:root{
  --navy:#1e3d8f;
  --navy-dark:#0f2255;
  --olive:#4a5e30;
  --olive-light:#6b8c47;
  --green-accent:#a5c47a;
  --cream:#f4f7ef;
  --border-green:#c5d4aa;
  --text-dark:#2a3320;
  --text-body:#5a6a4a;
  --white:#ffffff;
  --font-display:'Playfair Display',Georgia,serif;
  --font-body:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--font-body);
  color:var(--text-dark);
  background:var(--white);
  line-height:1.7;
  font-size:16px;
  -webkit-font-smoothing:antialiased;
}
a{text-decoration:none;color:var(--navy);transition:color .2s}
a:hover{color:var(--olive)}

/* Visible keyboard focus — works on both navy and cream backgrounds.
   Never remove an outline without providing this replacement. */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.btn-primary:focus-visible,
.btn-ghost:focus-visible,
.btn-navy:focus-visible,
.nav-cta:focus-visible,
.main-nav a:focus-visible,
.menu-toggle:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.gallery-item:focus-visible,
.leader-social a:focus-visible,
.footer-socials a:focus-visible{
  outline:2px solid var(--green-accent);
  outline-offset:2px;
  border-radius:2px;
}
/* On the cream/white surfaces, add a subtle navy ring behind the green for extra clarity */
.section-cream a:focus-visible,
.form-card input:focus-visible,
.form-card select:focus-visible,
.form-card textarea:focus-visible{
  outline:2px solid var(--olive);
  outline-offset:2px;
}
img{max-width:100%;height:auto;display:block}
h1,h2,h3,h4{font-family:var(--font-display);font-weight:400;color:var(--navy);line-height:1.25}

.container{max-width:1140px;margin:0 auto;padding:0 1.5rem}
.text-center{text-align:center}

/* Skip link for accessibility */
.skip-link{position:absolute;left:-9999px;top:0;background:var(--navy);color:#fff;padding:10px 16px;z-index:9999}
.skip-link:focus{left:8px;top:8px}

/* ---------- HEADER / NAV ---------- */
.site-header{background:var(--navy);border-bottom:3px solid var(--olive);position:sticky;top:0;z-index:1000}
.nav-inner{display:flex;align-items:center;justify-content:space-between;height:74px}
.brand{display:flex;align-items:center;gap:14px}
.brand-logo{width:54px;height:54px;border-radius:50%;border:2px solid var(--olive);background:#fff;overflow:hidden;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.brand-logo img{width:100%;height:100%;object-fit:contain}
.brand-text{line-height:1.2}
.brand-title{font-family:var(--font-display);color:#fff;font-size:15px;font-weight:700;letter-spacing:.3px}
.brand-sub{color:rgba(255,255,255,.7);font-size:11px;letter-spacing:2px;margin-top:2px}

.main-nav ul{list-style:none;display:flex;align-items:center;gap:1.6rem;margin:0}
.main-nav a{color:rgba(255,255,255,.78);font-size:13px;letter-spacing:.5px}
.main-nav a:hover,.main-nav .current-menu-item>a{color:#fff}
.nav-cta{background:var(--olive)!important;color:#fff!important;padding:9px 20px;border-radius:2px;font-weight:500;border:1px solid var(--olive-light)}
.nav-cta:hover{background:var(--olive-light)!important}

.menu-toggle{display:none;background:none;border:1px solid rgba(255,255,255,.3);color:#fff;font-size:20px;padding:6px 10px;border-radius:3px;cursor:pointer}

/* ---------- HERO ---------- */
.hero{background:var(--navy);text-align:center;padding:5rem 1.5rem 4.5rem}
.hero-crest{width:96px;height:96px;border-radius:50%;border:3px solid var(--olive);background:#fff;margin:0 auto 1.5rem;overflow:hidden;display:flex;align-items:center;justify-content:center}
.hero-crest img{width:100%;height:100%;object-fit:contain}
.hero-eyebrow{color:var(--green-accent);font-size:11px;letter-spacing:4px;font-weight:500;margin-bottom:1rem}
.hero-title{color:#fff;font-size:46px;line-height:1.18;max-width:700px;margin:0 auto 1rem}
.hero-title em{font-style:italic;color:var(--green-accent)}
.hero-motto{display:flex;align-items:center;justify-content:center;gap:12px;margin:1.25rem auto 1.5rem}
.hero-motto .line{width:45px;height:1px;background:var(--olive)}
.hero-motto .diamond{width:6px;height:6px;background:var(--green-accent);transform:rotate(45deg)}
.hero-motto span{color:rgba(255,255,255,.65);font-size:12px;letter-spacing:2.5px;font-style:italic}
.hero-sub{color:rgba(255,255,255,.62);font-size:15px;max-width:560px;margin:0 auto 2.5rem;line-height:1.8}
.hero-btns{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}

.btn{display:inline-block;padding:13px 30px;font-size:12px;letter-spacing:1.5px;border-radius:2px;font-weight:500;cursor:pointer;border:none;font-family:var(--font-body)}
.btn-primary{background:var(--olive);color:#fff;border:1px solid var(--olive-light)}
.btn-primary:hover{background:var(--olive-light);color:#fff}
.btn-ghost{border:1px solid rgba(255,255,255,.35);color:#fff;background:transparent}
.btn-ghost:hover{background:rgba(255,255,255,.08);color:#fff}
.btn-navy{background:var(--navy);color:#fff}
.btn-navy:hover{background:var(--navy-dark);color:#fff}

.hero-project{margin-top:2.5rem;display:inline-flex;align-items:center;gap:10px;background:rgba(74,94,48,.25);border:1px solid rgba(107,140,71,.5);border-radius:2px;padding:10px 20px}
.hero-project i{color:var(--green-accent)}
.hero-project span{color:rgba(255,255,255,.75);font-size:12.5px}
.hero-project strong{color:var(--green-accent);font-weight:500}

/* ---------- BANNER ---------- */
.banner{background:var(--olive);padding:11px 1.5rem;text-align:center}
.banner-text{color:rgba(255,255,255,.9);font-size:12.5px;letter-spacing:.3px}
.banner-star{color:var(--green-accent);margin:0 .6rem;font-size:11px}

/* ---------- SECTION HEADERS ---------- */
.section{padding:4.5rem 0}
.section-cream{background:var(--cream)}
.section-navy{background:var(--navy)}
.section-hdr{text-align:center;margin-bottom:2.75rem}
.section-eye{color:var(--olive);font-size:11px;letter-spacing:3.5px;font-weight:500;margin-bottom:.75rem;text-transform:uppercase}
.section-title{font-size:31px}
.section-rule{width:40px;height:2px;background:var(--olive);margin:1rem auto 0}
.section-navy .section-eye{color:var(--green-accent)}
.section-navy .section-title{color:#fff}
.section-navy .section-rule{background:var(--green-accent)}

/* ---------- STATS ---------- */
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);max-width:880px;margin:0 auto}
.stat{text-align:center;padding:1.5rem 1rem}
.stat+.stat{border-left:.5px solid var(--border-green)}
.stat-num{font-family:var(--font-display);font-size:40px;color:var(--navy);line-height:1}
.stat-num sup{font-size:18px}
.stat-label{color:var(--olive);font-size:11px;letter-spacing:2px;margin-top:8px;font-weight:500;text-transform:uppercase}
.stat-sub{color:#8aaa6a;font-size:11px;margin-top:4px}

/* ---------- MISSION CARDS ---------- */
.cards-3{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;max-width:960px;margin:0 auto}
.mission-card{background:#fff;border:.5px solid var(--border-green);border-radius:4px;padding:1.85rem 1.6rem}
.mission-icon{width:46px;height:46px;border-radius:50%;background:var(--navy);display:flex;align-items:center;justify-content:center;margin-bottom:1rem}
.mission-icon i{color:#fff;font-size:21px}
.mission-card h3{font-size:18px;margin-bottom:.6rem}
.mission-card p{color:var(--text-body);font-size:13.5px;line-height:1.7}

/* ---------- PROJECT SPOTLIGHT ---------- */
.project-inner{display:grid;grid-template-columns:1.2fr 1fr;gap:3.5rem;align-items:center;max-width:960px;margin:0 auto}
.project-inner .section-hdr{text-align:left;margin-bottom:1.25rem}
.project-inner .section-rule{margin:1rem 0 0}
.project-body{color:rgba(255,255,255,.65);font-size:14.5px;line-height:1.8;margin-top:1.5rem}
.project-items{margin-top:2rem;display:flex;flex-direction:column;gap:1rem}
.project-item{display:flex;align-items:flex-start;gap:12px}
.project-item-ic{width:38px;height:38px;border-radius:50%;background:var(--olive);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.project-item-ic i{color:var(--green-accent);font-size:17px}
.project-item strong{display:block;color:#fff;font-size:13.5px;margin-bottom:2px;font-weight:500}
.project-item span{color:rgba(255,255,255,.55);font-size:12.5px}
.project-visual{background:rgba(74,94,48,.2);border:1px solid rgba(107,140,71,.4);border-radius:4px;padding:2rem;text-align:center}
.project-visual>i{font-size:46px;color:var(--green-accent);margin-bottom:1rem;display:block}
.project-visual h3{color:#fff;font-size:21px;margin-bottom:.5rem}
.project-visual p{color:rgba(255,255,255,.5);font-size:12.5px;line-height:1.6}
.progress-label{display:flex;justify-content:space-between;margin:1.5rem 0 .5rem}
.progress-label span{color:rgba(255,255,255,.6);font-size:11px;letter-spacing:1px}
.progress-label strong{color:var(--green-accent);font-size:11px}
.progress-bg{background:rgba(255,255,255,.1);border-radius:2px;height:6px;overflow:hidden}
.progress-fill{background:var(--olive);height:6px;border-radius:2px}

/* ---------- LEADERS ---------- */
.leaders-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;max-width:1000px;margin:0 auto}
.leader-card{background:#fff;border:.5px solid var(--border-green);border-radius:6px;overflow:hidden;text-align:center;transition:transform .2s,box-shadow .2s}
.leader-card:hover{transform:translateY(-4px);box-shadow:0 12px 28px rgba(30,61,143,.1)}
.leader-photo{width:100%;aspect-ratio:1/1;background:var(--navy);display:flex;align-items:center;justify-content:center;overflow:hidden}
.leader-photo img{width:100%;height:100%;object-fit:cover}
.leader-initials{font-family:var(--font-display);font-size:54px;color:var(--green-accent)}
/* Softer "coming soon" treatment for placeholder cards (no uploaded photo yet) */
.leader-photo.is-placeholder{background:var(--cream);flex-direction:column;gap:6px;border-bottom:1px solid var(--border-green)}
.leader-photo.is-placeholder .leader-initials{color:var(--olive);opacity:.8}
.leader-photo.is-placeholder .leader-photo-note{font-size:11px;letter-spacing:2px;text-transform:uppercase;color:var(--olive);opacity:.9}
.leader-body{padding:1.5rem 1.25rem}
.leader-role{color:var(--olive);font-size:11px;letter-spacing:2.5px;font-weight:500;text-transform:uppercase;margin-bottom:.5rem}
.leader-name{font-family:var(--font-display);font-size:21px;color:var(--navy);margin-bottom:.35rem}
.leader-title{color:var(--text-body);font-size:12.5px;margin-bottom:1rem}
.leader-bio{color:var(--text-body);font-size:13px;line-height:1.65;border-top:.5px solid #e8f0df;padding-top:1rem;text-align:left}
.leader-social{margin-top:1rem;display:flex;gap:.75rem;justify-content:center}
.leader-social a{width:32px;height:32px;border-radius:50%;background:var(--cream);display:flex;align-items:center;justify-content:center;color:var(--olive);font-size:15px}
.leader-social a:hover{background:var(--navy);color:#fff}
.leaders-featured{grid-column:1 / -1;max-width:340px;margin:0 auto}

/* ---------- GALLERY ---------- */
.gallery-filter{display:flex;gap:.75rem;justify-content:center;flex-wrap:wrap;margin-bottom:2.5rem}
.gallery-filter button{background:#fff;border:.5px solid var(--border-green);color:var(--text-body);padding:8px 18px;border-radius:20px;font-size:12.5px;letter-spacing:.5px;cursor:pointer;font-family:var(--font-body);transition:all .2s}
.gallery-filter button:hover{border-color:var(--navy);color:var(--navy)}
.gallery-filter button.active{background:var(--navy);color:#fff;border-color:var(--navy)}
.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;max-width:1040px;margin:0 auto}
.gallery-item{position:relative;aspect-ratio:4/3;border-radius:6px;overflow:hidden;cursor:pointer;background:var(--navy)}
.gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
.gallery-item:hover img{transform:scale(1.06)}
.gallery-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(15,34,85,.85),transparent 55%);display:flex;align-items:flex-end;padding:1rem 1.1rem;opacity:0;transition:opacity .3s}
.gallery-item:hover .gallery-overlay{opacity:1}
.gallery-overlay-text{color:#fff}
.gallery-overlay-cat{color:var(--green-accent);font-size:11px;letter-spacing:2px;text-transform:uppercase;margin-bottom:3px}
.gallery-overlay-title{font-family:var(--font-display);font-size:15px}
.gallery-placeholder{display:flex;align-items:center;justify-content:center;height:100%;color:rgba(165,196,122,.4);font-size:34px}

/* Lightbox */
.lightbox{display:none;position:fixed;inset:0;background:rgba(15,34,85,.94);z-index:9999;align-items:center;justify-content:center;padding:2rem}
.lightbox.open{display:flex}
.lightbox img{max-width:90%;max-height:85vh;border-radius:6px;border:3px solid var(--olive)}
.lightbox-close{position:absolute;top:1.5rem;right:1.5rem;color:#fff;font-size:28px;background:none;border:none;cursor:pointer}

/* ---------- EVENTS ---------- */
.events-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;max-width:960px;margin:0 auto}
.event-card{background:#fff;border:.5px solid var(--border-green);border-radius:4px;overflow:hidden}
.event-top{background:var(--navy);padding:1.25rem 1.5rem;display:flex;justify-content:space-between;align-items:flex-start}
.event-date-num{font-family:var(--font-display);color:var(--green-accent);font-size:30px;line-height:1}
.event-date-mo{color:rgba(255,255,255,.7);font-size:11px;letter-spacing:2px;margin-top:4px}
.event-tag{background:var(--olive);color:#c5e0a0;font-size:11px;letter-spacing:1.5px;padding:4px 8px;border-radius:1px;font-weight:500}
.event-body{padding:1.25rem 1.5rem}
.event-body h3{font-size:16px;margin-bottom:.5rem}
.event-loc{color:var(--olive);font-size:12px;display:flex;align-items:center;gap:5px;margin-bottom:.75rem}
.event-desc{color:var(--text-body);font-size:13px;line-height:1.6;margin-bottom:1rem}
.event-link{color:var(--navy);font-size:12px;letter-spacing:.5px;font-weight:500;display:inline-flex;align-items:center;gap:5px;border-top:.5px solid #e8f0df;padding-top:.9rem;width:100%}

/* ---------- CTA JOIN ---------- */
.join-cta{background:var(--olive);text-align:center;padding:4rem 1.5rem}
.join-cta h2{color:#fff;font-size:32px;margin-bottom:1rem}
.join-cta p{color:rgba(255,255,255,.8);font-size:15px;max-width:480px;margin:0 auto 2rem;line-height:1.7}

/* ---------- PAGE CONTENT (generic) ---------- */
.page-hero{background:var(--navy);text-align:center;padding:3.5rem 1.5rem}
.page-hero .hero-eyebrow{margin-bottom:.75rem}
.page-hero h1{color:#fff;font-size:38px}
.page-hero .section-rule{margin-top:1rem}
.page-content{max-width:820px;margin:0 auto;padding:3.5rem 1.5rem}
.page-content h2{font-size:26px;margin:1.75rem 0 1rem}
.page-content h3{font-size:20px;margin:1.5rem 0 .75rem}
.page-content p{color:var(--text-body);margin-bottom:1.1rem}
.page-content ul,.page-content ol{color:var(--text-body);margin:0 0 1.1rem 1.5rem}
.page-content li{margin-bottom:.5rem}
.page-content blockquote{border-left:3px solid var(--olive);padding-left:1.25rem;font-family:var(--font-display);font-style:italic;font-size:19px;color:var(--navy);margin:1.5rem 0}

/* ---------- BLOG / POSTS ---------- */
.posts-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.post-card{background:#fff;border:.5px solid var(--border-green);border-radius:6px;overflow:hidden}
.post-thumb{aspect-ratio:16/9;background:var(--navy);overflow:hidden}
.post-thumb img{width:100%;height:100%;object-fit:cover}
.post-body{padding:1.4rem}
.post-cat{color:var(--olive);font-size:11px;letter-spacing:2px;text-transform:uppercase;font-weight:500;margin-bottom:.5rem}
.post-body h2,.post-body h3{font-size:18px;margin-bottom:.5rem;line-height:1.35}
.post-meta{color:#8aaa6a;font-size:11.5px;margin-top:.75rem}
.post-excerpt{color:var(--text-body);font-size:13.5px;line-height:1.6;margin-top:.5rem}

/* ---------- FORM ---------- */
.form-card{background:#fff;border:.5px solid var(--border-green);border-radius:6px;overflow:hidden;max-width:680px;margin:2.5rem auto}

/* Membership form progress tracker (scroll-synced, non-gating) */
.form-progress{position:sticky;top:74px;z-index:5;background:#fff;border-bottom:1px solid var(--border-green);padding:1rem 2rem .85rem}
.form-progress-track{height:4px;background:var(--cream);border-radius:2px;overflow:hidden;margin-bottom:.85rem}
.form-progress-fill{display:block;height:100%;width:20%;background:var(--olive);border-radius:2px;transition:width .35s ease}
.form-progress-steps{list-style:none;display:flex;justify-content:space-between;margin:0;padding:0}
.form-progress-step{display:flex;flex-direction:column;align-items:center;gap:5px;flex:1;text-align:center}
.form-progress-dot{width:26px;height:26px;border-radius:50%;background:var(--cream);border:1.5px solid var(--border-green);color:var(--text-body);font-size:12px;font-weight:600;display:flex;align-items:center;justify-content:center;transition:background .25s,border-color .25s,color .25s}
.form-progress-name{font-size:11px;letter-spacing:.3px;color:var(--text-body);transition:color .25s}
.form-progress-step.is-active .form-progress-dot{background:var(--navy);border-color:var(--navy);color:#fff}
.form-progress-step.is-active .form-progress-name{color:var(--navy);font-weight:600}
.form-progress-step.is-done .form-progress-dot{background:var(--olive);border-color:var(--olive);color:#fff}
.form-section{padding:1.75rem 2rem;border-bottom:.5px solid #e8f0df}
.form-section:last-of-type{border-bottom:none}
.form-section-title{display:flex;align-items:center;gap:10px;margin-bottom:1.5rem}
.form-section-num{width:28px;height:28px;border-radius:50%;background:var(--navy);color:#fff;font-size:12px;font-weight:500;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.form-section-label{font-family:var(--font-display);font-size:18px;color:var(--navy)}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-bottom:1rem}
.field-row.single{grid-template-columns:1fr}
.field-group{display:flex;flex-direction:column;gap:6px}
.field-label{font-size:12px;color:var(--olive);letter-spacing:.5px;font-weight:500}
.field-label .req{color:#c0392b;margin-left:2px}
.form-card input,.form-card select,.form-card textarea{width:100%;padding:10px 12px;border:.5px solid var(--border-green);border-radius:4px;font-size:13.5px;font-family:var(--font-body);background:#fff;color:var(--text-dark)}
.form-card input:focus:not(:focus-visible),.form-card select:focus:not(:focus-visible),.form-card textarea:focus:not(:focus-visible){outline:none;border-color:var(--navy)}
.form-card input:focus,.form-card select:focus,.form-card textarea:focus{border-color:var(--navy)}
.form-card textarea{resize:vertical;min-height:80px}
.check-opt{display:flex;align-items:flex-start;gap:9px;cursor:pointer;margin-bottom:.6rem}
.check-opt input{width:16px;height:16px;margin-top:2px;accent-color:var(--navy)}
.check-opt span{font-size:13px;color:var(--text-body);line-height:1.5}
.radio-opt{display:inline-flex;align-items:center;gap:7px;cursor:pointer;margin-right:1rem}
.radio-opt input{width:16px;height:16px;accent-color:var(--navy)}
.radio-opt span{font-size:13.5px}
.form-footer{background:var(--cream);border-top:1px solid var(--border-green);padding:1.5rem 2rem;display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap}
.form-note{font-size:12px;color:#8aaa6a;display:flex;align-items:center;gap:6px}

/* ---------- FOOTER ---------- */
.site-footer{background:var(--navy-dark);padding:3rem 0 1.5rem}
.footer-top{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem;margin-bottom:2.5rem}
.footer-seal{width:58px;height:58px;border-radius:50%;border:2px solid var(--olive);overflow:hidden;background:#fff;display:flex;align-items:center;justify-content:center;margin-bottom:.75rem}
.footer-seal img{width:100%;height:100%;object-fit:contain}
.footer-name{font-family:var(--font-display);color:#fff;font-size:16px;font-weight:700;margin-bottom:.25rem}
.footer-tagline{color:rgba(255,255,255,.6);font-size:12px;line-height:1.7;margin-top:.5rem;max-width:220px}
.footer-col-title{color:var(--green-accent);font-size:11px;letter-spacing:3px;font-weight:500;margin-bottom:1rem;text-transform:uppercase}
.footer-col a{display:block;color:rgba(255,255,255,.5);font-size:12.5px;margin-bottom:.6rem}
.footer-col a:hover{color:#fff}
.footer-bottom{border-top:.5px solid rgba(74,94,48,.4);padding-top:1.25rem;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:.5rem}
.footer-copy{color:rgba(255,255,255,.62);font-size:11px}
.footer-socials{display:flex;gap:1rem}
.footer-socials a{color:rgba(255,255,255,.4);font-size:16px}
.footer-socials a:hover{color:var(--green-accent)}

/* Unconfigured social/contact links — visibly a placeholder, not a real link */
.footer-socials a.is-placeholder,
.leader-social a.is-placeholder{opacity:.4;cursor:not-allowed}
.footer-socials a.is-placeholder:hover,
.leader-social a.is-placeholder:hover{color:inherit}

/* ---------- WORDPRESS CORE CLASSES ---------- */
.alignleft{float:left;margin:0 1.5rem 1rem 0}
.alignright{float:right;margin:0 0 1rem 1.5rem}
.aligncenter{margin:0 auto 1rem;display:block}
.wp-caption{max-width:100%}
.wp-caption-text{font-size:12.5px;color:#8aaa6a;text-align:center;margin-top:.4rem}
.screen-reader-text{position:absolute;clip:rect(1px,1px,1px,1px);width:1px;height:1px;overflow:hidden}
.sticky,.gallery-caption,.bypostauthor{display:block}
.pagination{display:flex;gap:.5rem;justify-content:center;margin-top:2.5rem}
.pagination .page-numbers{padding:8px 14px;border:.5px solid var(--border-green);border-radius:4px;color:var(--navy)}
.pagination .current{background:var(--navy);color:#fff;border-color:var(--navy)}

/* ---------- RESPONSIVE ---------- */
@media(max-width:900px){
  .stats-grid{grid-template-columns:repeat(2,1fr)}
  .stat:nth-child(3){border-left:none}
  .cards-3,.leaders-grid,.gallery-grid,.events-grid,.posts-grid{grid-template-columns:repeat(2,1fr)}
  .project-inner,.footer-top{grid-template-columns:1fr;gap:2rem}
}
@media(max-width:680px){
  .menu-toggle{display:block}
  .main-nav{display:none;position:absolute;top:74px;left:0;right:0;background:var(--navy);border-bottom:3px solid var(--olive);padding:1rem 1.5rem}
  .main-nav.open{display:block}
  .main-nav ul{flex-direction:column;align-items:flex-start;gap:1rem}
  .hero-title{font-size:34px}
  .section-title{font-size:26px}
  .cards-3,.leaders-grid,.gallery-grid,.events-grid,.posts-grid,.stats-grid{grid-template-columns:1fr}
  .stat+.stat{border-left:none;border-top:.5px solid var(--border-green)}
  .field-row{grid-template-columns:1fr}
  .form-progress{padding:.85rem 1.25rem .7rem;top:74px}
  .form-progress-name{font-size:11px}
  .form-progress-dot{width:24px;height:24px}
}
