:root{
  --green-dark:#163C2C;
  --green:#1F6B45;
  --green-mid:#2D8659;
  --green-light:#9DD8B6;
  --gold:#D9A416;
  --gold-dark:#9C7409;
  --cream:#F7F5EC;
  --white:#FFFFFF;
  --text-dark:#1B241D;
  --text-muted:#5C6B5E;
  --border:#E3E1D3;
  --shadow:0 14px 34px rgba(22,60,44,0.14);
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{font-family:'Inter',sans-serif; color:var(--text-dark); background:var(--white); line-height:1.65; -webkit-font-smoothing:antialiased;}
h1,h2,h3,h4{font-family:'Poppins',sans-serif; font-weight:600; line-height:1.25; color:var(--green-dark);}
a{text-decoration:none; color:inherit;}
img{max-width:100%; display:block;}
ul{list-style:none;}
.wrap{max-width:1180px; margin:0 auto; padding:0 24px;}
.eyebrow{display:inline-flex; align-items:center; gap:8px; font-size:13px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--gold-dark); margin-bottom:14px;}
.eyebrow::before{content:""; width:18px; height:2px; background:var(--gold); display:inline-block;}
.section{padding:88px 0;}
.section-alt{background:var(--cream);}
.section-head{max-width:640px; margin-bottom:48px;}
.section-head h2{font-size:32px; margin-bottom:14px;}
.section-head p{color:var(--text-muted); font-size:16px;}
.center{text-align:center; margin-left:auto; margin-right:auto;}
.empty-note{color:var(--text-muted); font-size:15px;}
.btn{display:inline-flex; align-items:center; gap:10px; padding:14px 26px; border-radius:6px; font-weight:600; font-size:15px; transition:all .2s ease; border:1.5px solid transparent; cursor:pointer;}
.btn-primary{background:var(--gold); color:var(--green-dark);}
.btn-primary:hover{background:#c4930f;}
.btn-outline{border-color:rgba(255,255,255,0.55); color:#fff;}
.btn-outline:hover{background:rgba(255,255,255,0.12);}
.btn-green{background:var(--green); color:#fff;}
.btn-green:hover{background:var(--green-dark);}

.topbar{background:var(--green-dark); color:#cfe6da; font-size:13px;}
.topbar .wrap{display:flex; justify-content:space-between; align-items:center; height:38px;}
.topbar-left{display:flex; align-items:center; gap:8px;}
.topbar-right{display:flex; align-items:center; gap:16px;}
.topbar-right a{color:#cfe6da; font-size:14px;}
.topbar-right a:hover{color:var(--gold);}

header{background:#fff; border-bottom:1px solid var(--border); position:sticky; top:0; z-index:50;}
.header-inner{display:flex; align-items:center; justify-content:space-between; padding:14px 24px; gap:16px; max-width:1180px; margin:0 auto;}
.brand{display:flex; align-items:center; gap:14px;}
.brand img{width:54px; height:54px; border-radius:50%; object-fit:cover; flex-shrink:0; background:#f1f1f1;}
.brand-text .line1{font-family:'Poppins',sans-serif; font-weight:700; font-size:15px; color:var(--green-dark); letter-spacing:.01em; white-space:pre-line;}
.brand-text .line2{font-size:12.5px; color:var(--text-muted); font-weight:500;}
nav.mainnav{display:flex; align-items:center; gap:20px; flex-wrap:nowrap;}
nav.mainnav a{font-size:13.5px; font-weight:600; color:var(--text-dark); padding:8px 0; border-bottom:2px solid transparent; white-space:nowrap;}
nav.mainnav a:hover{color:var(--green); border-bottom-color:var(--gold);}
.nav-cta{background:var(--green); color:#fff !important; padding:10px 16px; border-radius:6px; white-space:nowrap; flex-shrink:0;}
.nav-cta:hover{background:var(--green-dark) !important; border-bottom-color:transparent !important;}
.nav-search-btn{display:flex; align-items:center; justify-content:center; width:36px; height:36px;
  border-radius:8px; color:var(--text-muted); font-size:15px; border:1.5px solid var(--border); flex-shrink:0;
  transition:all .2s;}
.nav-search-btn:hover{color:var(--green); border-color:var(--green);}

/* ── Burger button — hidden on desktop ─────────────────────── */
.burger{
  display:none;
  align-items:center; justify-content:center;
  width:38px; height:38px;
  font-size:20px;
  background:none; border:none;
  color:var(--green-dark);
  cursor:pointer;
  opacity:0.65;
  flex-shrink:0;
  border-radius:8px;
  transition:opacity .2s, background .2s;
}
.burger:hover{opacity:1; background:rgba(22,60,44,0.07);}

/* ── Mobile nav drawer backdrop ────────────────────────────── */
#nav-overlay{
  display:none;
  position:fixed; inset:0;
  background:rgba(0,0,0,0.45);
  z-index:55;
  backdrop-filter:blur(2px);
  -webkit-backdrop-filter:blur(2px);
  transition:opacity .25s;
}

/* ── Mobile nav drawer ─────────────────────────────────────── */
@media (max-width:980px){
  nav.mainnav{
    display:none;
    flex-direction:column;
    position:fixed;
    top:0; left:0; bottom:0;
    width:min(300px, 82vw);
    background:#fff;
    padding:0;
    gap:0;
    z-index:60;
    box-shadow:6px 0 32px rgba(22,60,44,0.18);
    overflow-y:auto;
    transform:translateX(-100%);
    transition:transform .28s cubic-bezier(0.4,0,0.2,1);
  }
  nav.mainnav.nav-open{
    display:flex;
    transform:translateX(0);
  }
  .mobile-nav-header{
    display:flex; align-items:center; justify-content:space-between;
    padding:18px 20px 16px;
    border-bottom:1px solid var(--border);
    background:var(--green-dark);
  }
  .mobile-nav-header .brand-name{
    font-family:'Poppins',sans-serif; font-weight:700; font-size:14px;
    color:#fff; line-height:1.3;
  }
  .mobile-nav-close{
    width:32px; height:32px; border:none; background:rgba(255,255,255,0.15);
    border-radius:7px; color:#fff; font-size:18px; cursor:pointer;
    display:flex; align-items:center; justify-content:center;
    line-height:1;
    transition:background .2s;
  }
  .mobile-nav-close:hover{background:rgba(255,255,255,0.25);}
  nav.mainnav a{
    padding:14px 22px;
    border-bottom:1px solid var(--border);
    border-bottom-width:1px;
    font-size:14.5px;
    width:100%;
    color:var(--text-dark);
  }
  nav.mainnav a:hover{
    color:var(--green); background:rgba(31,107,69,0.06);
    border-bottom-color:var(--border);
  }
  .nav-cta{
    margin:16px 22px 20px;
    border-radius:8px;
    padding:13px 18px;
    text-align:center;
    justify-content:center;
    font-size:14.5px;
    width:calc(100% - 44px);
  }
}

/* ── Burger on left (mobile) ───────────────────────────────── */
@media (max-width:980px){
  .burger{display:flex; order:-1;}
  .header-inner{justify-content:flex-start;}
  .brand{flex:1;}
  .nav-search-btn{display:none;}
}

.hero{position:relative; min-height:600px; display:flex; align-items:center; color:#fff; overflow:hidden; background-color:var(--green-dark);}
.hero-bg{position:absolute; top:0; right:0; bottom:0; left:0; background-size:cover; background-position:center; background-repeat:no-repeat;}
.hero-overlay{position:absolute; top:0; right:0; bottom:0; left:0; background:linear-gradient(100deg, rgba(11,28,20,0.92) 8%, rgba(16,38,27,0.72) 45%, rgba(16,46,30,0.35) 85%);}
.hero-content{position:relative; z-index:2; padding:120px 24px 160px; width:100%;}
.hero-content .eyebrow{color:var(--gold);}
.hero-content .eyebrow::before{background:var(--gold);}
.hero-content h1{color:#fff; font-size:46px; max-width:680px; margin-bottom:18px;}
.hero-content p{font-size:17px; max-width:560px; color:#e7efe9; margin-bottom:34px;}
.hero-buttons{display:flex; gap:14px; flex-wrap:wrap;}

.stats-card{position:relative; z-index:3; max-width:1040px; margin:-58px auto 0; background:#fff; border-radius:14px; box-shadow:var(--shadow); display:grid; grid-template-columns:repeat(4,1fr);}
.stat{padding:28px 20px; text-align:center; border-right:1px solid var(--border);}
.stat:last-child{border-right:none;}
.stat i{font-size:22px; color:var(--gold-dark); margin-bottom:10px;}
.stat .num{font-family:'Poppins',sans-serif; font-weight:700; font-size:22px; color:var(--green-dark); display:block; transition:color .3s;}
.stat .lbl{font-size:13px; color:var(--text-muted); margin-top:4px;}

.about-grid{display:grid; grid-template-columns:1.05fr 0.95fr; gap:64px; align-items:center; margin-top:90px;}
.about-text p{color:var(--text-muted); margin-bottom:16px; font-size:15.5px;}
.about-img{position:relative; border-radius:14px; overflow:hidden; box-shadow:var(--shadow);}
.about-img img{height:420px; object-fit:cover; width:100%;}

.mission-grid{display:grid; grid-template-columns:1fr 1fr; gap:28px; margin-top:46px;}
.mv-card{background:var(--green-dark); color:#fff; border-radius:14px; padding:34px 32px; border-top:4px solid var(--gold);}
.mv-card h3{color:#fff; font-size:19px; margin-bottom:12px; display:flex; align-items:center; gap:10px;}
.mv-card h3 i{color:var(--gold);}
.mv-card p{color:#d9e6dd; font-size:15px;}

.svc-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:26px;}
.svc-card{background:#fff; border:1px solid var(--border); border-radius:12px; padding:30px 26px; transition:transform .2s ease, box-shadow .2s ease;}
.svc-card:hover{transform:translateY(-4px); box-shadow:var(--shadow); border-color:transparent;}
.svc-icon{width:50px; height:50px; border-radius:10px; background:rgba(31,107,69,0.1); display:flex; align-items:center; justify-content:center; margin-bottom:18px;}
.svc-icon i{font-size:21px; color:var(--green);}
.svc-card h3{font-size:17px; margin-bottom:8px;}
.svc-card p{font-size:14.5px; color:var(--text-muted);}

.news-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:26px;}
.news-card{background:#fff; border:1px solid var(--border); border-radius:12px; overflow:hidden; transition:box-shadow .2s ease; display:block;}
.news-card:hover{box-shadow:var(--shadow);}
.news-img{height:190px; overflow:hidden;}
.news-img img{height:100%; width:100%; object-fit:cover;}
.news-body{padding:22px 22px 24px;}
.news-date{font-size:12.5px; color:var(--gold-dark); font-weight:700; letter-spacing:.04em; text-transform:uppercase; margin-bottom:8px;}
.news-body h3{font-size:16.5px; margin-bottom:10px;}
.news-body p{font-size:14px; color:var(--text-muted); margin-bottom:14px;}
.news-link{font-size:13.5px; font-weight:700; color:var(--green); display:inline-flex; align-items:center; gap:6px;}

.dl-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:20px;}
.dl-card{background:#fff; border:1px solid var(--border); border-radius:10px; padding:22px; display:flex; gap:14px; align-items:flex-start; transition:border-color .2s ease;}
.dl-card:hover{border-color:var(--green);}
.dl-card i{font-size:22px; color:var(--green); margin-top:2px;}
.dl-card h4{font-size:14.5px; margin-bottom:4px;}
.dl-card span{font-size:12.5px; color:var(--text-muted);}

.cta-banner{background:var(--green); color:#fff; padding:56px 0;}
.cta-inner{display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;}
.cta-inner h2{color:#fff; font-size:26px; margin-bottom:6px;}
.cta-inner p{color:#d9e6dd; font-size:15px;}

/* ── Contact Form Section ───────────────────────────────────────────────── */
.contact-grid{display:grid; grid-template-columns:1fr 1.4fr; gap:60px; align-items:start;}
.contact-info-col .eyebrow{margin-bottom:14px;}
.contact-info-col h2{font-size:30px; margin-bottom:14px;}
.contact-info-col > p{color:var(--text-muted); font-size:15.5px; margin-bottom:32px; line-height:1.7;}
.contact-detail-list{display:flex; flex-direction:column; gap:18px;}
.contact-detail{display:flex; align-items:flex-start; gap:14px; font-size:15px;}
.contact-detail-icon{width:38px; height:38px; background:var(--green-dark); color:var(--gold); border-radius:8px;
  display:flex; align-items:center; justify-content:center; font-size:15px; flex-shrink:0;}
.contact-detail a{color:var(--green);}
.contact-detail a:hover{color:var(--green-dark);}

.contact-form-col{background:#fff; border-radius:14px; padding:36px 32px; box-shadow:var(--shadow);}
.contact-form .cf-row{display:grid; grid-template-columns:1fr 1fr; gap:18px;}
.contact-form .cf-group{display:flex; flex-direction:column; margin-bottom:18px;}
.contact-form label{font-size:13.5px; font-weight:600; margin-bottom:7px; color:var(--text-dark);}
.contact-form .cf-req{color:#c0392b;}
.contact-form input, .contact-form textarea{
  width:100%; padding:11px 14px; border:1.5px solid var(--border); border-radius:8px;
  font-family:inherit; font-size:14.5px; color:var(--text-dark); background:#fff;
  transition:border-color .2s; resize:vertical;
}
.contact-form input:focus, .contact-form textarea:focus{
  outline:none; border-color:var(--green); box-shadow:0 0 0 3px rgba(31,107,69,.08);
}
.contact-form textarea{min-height:120px;}
.cf-submit{width:100%; justify-content:center; font-size:15px; padding:14px;}
.contact-alert{display:flex; align-items:flex-start; gap:12px; padding:14px 18px; border-radius:10px; margin-bottom:22px; font-size:14.5px;}
.contact-alert i{font-size:18px; flex-shrink:0; margin-top:1px;}
.contact-alert-success{background:#E7F5EC; color:var(--green-dark); border:1px solid #b6dfc8;}
.contact-alert-success i{color:#1F6B45;}
.contact-alert-error{background:#FBEAE8; color:#7b1b13; border:1px solid #f5c6c2;}
.contact-alert-error i{color:#c0392b;}

footer{background:var(--green-dark); color:#cfe0d5; padding-top:64px;}
.foot-grid{display:grid; grid-template-columns:1.3fr 1fr 1.1fr 1fr; gap:40px; padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,0.12);}
.foot-brand{display:flex; gap:12px; margin-bottom:16px;}
.foot-brand img{width:46px; height:46px; border-radius:50%;}
.foot-brand-text{font-family:'Poppins',sans-serif; font-weight:600; font-size:14.5px; color:#fff; line-height:1.4; white-space:pre-line;}
footer p{font-size:14px; color:#aec4b7; max-width:280px;}
footer h4{color:#fff; font-size:14px; letter-spacing:.05em; text-transform:uppercase; margin-bottom:18px; font-family:'Poppins',sans-serif;}
footer ul li{margin-bottom:11px; font-size:14px;}
footer ul li a{color:#cfe0d5;}
footer ul li a:hover{color:var(--gold);}
.contact-item{display:flex; gap:10px; margin-bottom:14px; font-size:14px; color:#cfe0d5;}
.contact-item i{color:var(--gold); margin-top:3px;}
.foot-bottom{display:flex; align-items:center; justify-content:space-between; padding:24px 0; font-size:13px; color:#9fb6a8; flex-wrap:wrap; gap:10px;}
.foot-bottom-left{display:flex; align-items:center; gap:12px;}
.social{display:flex; gap:12px;}
.social a{width:34px; height:34px; border-radius:50%; background:rgba(255,255,255,0.08); display:flex; align-items:center; justify-content:center; color:#fff;}
.social a:hover{background:var(--gold); color:var(--green-dark);}

.post-content{font-size:16px; color:var(--text-dark);}
.post-content p{margin-bottom:18px;}
.post-content h2, .post-content h3, .post-content h4{margin:28px 0 14px;}
.post-content ul, .post-content ol{margin:0 0 18px 22px;}
.post-content a{color:var(--green); text-decoration:underline;}
.post-content img{border-radius:8px; margin:18px 0;}

/* ── Announcement banner ── */
.announcement-bar{background:var(--gold); color:var(--green-dark);}
.announcement-inner{display:flex; align-items:center; justify-content:space-between; gap:16px; padding:11px 24px; font-size:14px; font-weight:600;}
.announcement-link{text-decoration:underline; margin-left:10px; white-space:nowrap;}
.announcement-close{background:none; border:none; font-size:20px; line-height:1; color:var(--green-dark); cursor:pointer; padding:0 4px;}

/* ── Staff directory ── */
.staff-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:24px;}
.staff-card{background:#fff; border:1px solid var(--border); border-radius:12px; padding:26px 20px; text-align:center; transition:box-shadow .2s ease;}
.staff-card:hover{box-shadow:var(--shadow);}
.staff-photo{width:84px; height:84px; border-radius:50%; object-fit:cover; margin:0 auto 14px;}
.staff-photo-placeholder{display:flex; align-items:center; justify-content:center; background:var(--cream); color:#c3cec7; font-size:34px;}
.staff-card h4{font-size:15.5px; margin-bottom:4px;}
.staff-position{display:block; font-size:13px; color:var(--gold-dark); font-weight:600; margin-bottom:10px;}
.staff-contact{display:block; font-size:12.5px; color:var(--text-muted); margin-top:4px;}

/* ── Photo gallery (homepage grid) ── */
.gallery-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
.gallery-card{position:relative; display:block; border-radius:12px; overflow:hidden; height:220px; box-shadow:var(--shadow);}
.gallery-card img{width:100%; height:100%; object-fit:cover; transition:transform .3s ease;}
.gallery-card:hover img{transform:scale(1.05);}
.gallery-card-placeholder{width:100%; height:100%; display:flex; align-items:center; justify-content:center; background:var(--cream); color:#c3cec7; font-size:36px;}
.gallery-card-overlay{position:absolute; inset:auto 0 0 0; background:linear-gradient(0deg, rgba(11,28,20,0.85), transparent); padding:34px 18px 14px; color:#fff;}
.gallery-card-overlay h4{color:#fff; font-size:15px; margin-bottom:2px;}
.gallery-card-overlay span{font-size:12.5px; color:#d9e6dd;}

/* ── Album detail page ── */
.album-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:14px;}
.album-photo{display:block; border-radius:10px; overflow:hidden; height:180px; cursor:zoom-in; transition:transform .2s ease;}
.album-photo:hover{transform:scale(1.02);}
.album-photo img{width:100%; height:100%; object-fit:cover; transition:transform .3s ease;}
.album-photo:hover img{transform:scale(1.06);}

/* ── Responsive ── */
@media (max-width:980px){
  .staff-grid{grid-template-columns:repeat(2,1fr);}
  .gallery-grid{grid-template-columns:1fr;}
  .album-grid{grid-template-columns:repeat(2,1fr);}
  .contact-grid{grid-template-columns:1fr;}
  .stats-card{grid-template-columns:repeat(2,1fr);}
  .stat:nth-child(2){border-right:none;}
  .stat{border-bottom:1px solid var(--border);}
  .about-grid, .mission-grid, .svc-grid, .news-grid, .dl-grid, .foot-grid{grid-template-columns:1fr;}
  .hero-content h1{font-size:34px;}
  .section{padding:60px 0;}
  .contact-form .cf-row{grid-template-columns:1fr;}
  .contact-form-col{padding:24px 20px;}
}
