/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark: #1E3B26;
  --green:      #2F6B3A;
  --green-mid:  #4C8C4A;
  --green-light:#8BC34A;
  --gold:       #C9962C;
  --cream:      #F7F5EC;
  --grey:       #62695F;
  --text:       #26301F;
  --white:      #fff;
  --font-head: 'Poppins', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  background: var(--white);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 14px 42px;
  border-radius: 30px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  border: 2px solid var(--green);
  color: var(--green);
  padding: 12px 34px;
  border-radius: 30px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--green); color: var(--white); }

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--green);
  padding: 14px 42px;
  border-radius: 30px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-white:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.75);
  color: var(--white);
  padding: 12px 34px;
  border-radius: 30px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  transition: all 0.2s;
}
.btn-ghost:hover { background: var(--white); color: var(--green-dark); border-color: var(--white); }

/* ===== LOGO ===== */
.logo { display: flex; align-items: center; gap: 10px; }
.logo svg { width: 34px; height: 34px; flex-shrink: 0; }
.logo-text { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: var(--green-dark); line-height: 1.1; }
.logo-text span { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.62rem; letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; margin-top: 2px; }
.footer-about .logo-text { color: var(--white); }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--grey);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-links a.active { color: var(--green); }
.nav-links .btn-nav {
  background: var(--green);
  color: var(--white) !important;
  padding: 10px 26px;
  border-radius: 30px;
}
.nav-links .btn-nav:hover { background: var(--green-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO (home) ===== */
.hero-img {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-img .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-img .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(15,30,18,0.88) 0%, rgba(20,45,25,0.62) 45%, rgba(47,107,58,0.35) 100%);
  z-index: 1;
}
.hero-img .container { position: relative; z-index: 2; }
.hero-content { max-width: 720px; }
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero-content h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  max-width: 580px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== PAGE BANNER (inner pages) ===== */
.page-banner {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.page-banner .banner-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.page-banner .banner-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(15,30,18,0.87), rgba(30,70,40,0.55)); z-index: 1; }
.page-banner .container { position: relative; z-index: 2; padding-top: 40px; padding-bottom: 40px; }
.page-banner h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: var(--white); letter-spacing: 0.01em; margin-bottom: 12px; }
.page-banner p { color: rgba(255,255,255,0.9); max-width: 580px; font-weight: 400; }
.breadcrumb { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; color: rgba(255,255,255,0.8); margin-bottom: 16px; text-transform: uppercase; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 8px; opacity: 0.6; }

/* ===== SECTION HELPERS ===== */
.section { padding: 96px 0; }
.section.alt { background: var(--cream); }
.section.tight { padding: 64px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.section-head.left { text-align: left; margin-left: 0; }
.eyebrow { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; margin-bottom: 12px; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--text); line-height: 1.2; letter-spacing: 0.01em; }
.section-head p { margin-top: 16px; color: var(--grey); font-weight: 400; font-size: 0.98rem; }
.underline { width: 48px; height: 3px; background: var(--gold); margin: 12px 0 24px; border-radius: 2px; }
.underline.centered { margin: 12px auto 0; }

/* ===== INTRO SPLIT ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-text h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--green); line-height: 1.2; }
.split-text p { color: var(--grey); font-weight: 400; margin-bottom: 16px; font-size: 0.96rem; }
.split-media { border-radius: 14px; overflow: hidden; box-shadow: 0 22px 56px rgba(20,50,25,0.16); aspect-ratio: 4/3; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.check-list { margin: 18px 0 26px; display: flex; flex-direction: column; gap: 10px; }
.check-list li { position: relative; padding-left: 30px; font-size: 0.92rem; font-weight: 700; color: var(--text); }
.check-list li::before {
  content: '';
  position: absolute; left: 0; top: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12l5 5 9-10' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 13px; background-repeat: no-repeat; background-position: center;
}

/* ===== STATS BAR ===== */
.stats { background: linear-gradient(120deg, var(--green) 0%, var(--green-dark) 100%); padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-num { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--white); line-height: 1; }
.stat-label { margin-top: 10px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; color: rgba(255,255,255,0.88); text-transform: uppercase; }

/* ===== FEATURE / MV CARDS ===== */
.feature-grid, .mv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.mv-grid { grid-template-columns: repeat(2, 1fr); }
.feature-card, .mv-card {
  background: var(--white);
  border-radius: 14px;
  padding: 34px 28px;
  box-shadow: 0 6px 26px rgba(20,50,25,0.07);
  border-top: 4px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.feature-card:hover, .mv-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(47,107,58,0.16); border-top-color: var(--green); }
.feature-card .f-icon, .mv-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(47,107,58,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-card .f-icon svg, .mv-icon svg { width: 30px; height: 30px; stroke: var(--green); fill: none; }
.feature-card h3, .mv-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.feature-card p, .mv-card p { font-size: 0.9rem; color: var(--grey); font-weight: 400; line-height: 1.65; }

/* ===== CTA BAND ===== */
.cta-band { position: relative; padding: 90px 0; text-align: center; color: var(--white); overflow: hidden; }
.cta-band .cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.cta-band .cta-overlay { position: absolute; inset: 0; background: linear-gradient(rgba(14,30,18,0.85), rgba(30,70,40,0.72)); z-index: 1; }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.92); max-width: 580px; margin: 0 auto 30px; font-weight: 400; }
.cta-band .hero-actions { justify-content: center; }

/* ===== GET INVOLVED CARDS ===== */
.involve-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.involve-card {
  background: var(--white);
  border: 2px solid #eee;
  border-radius: 14px;
  padding: 30px 24px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.involve-card:hover { border-color: var(--green); box-shadow: 0 12px 32px rgba(47,107,58,0.12); transform: translateY(-3px); }
.involve-icon {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.involve-icon svg { width: 26px; height: 26px; stroke: var(--white); fill: none; }
.involve-card h3 { font-size: 0.98rem; font-weight: 800; margin-bottom: 8px; }
.involve-card p { font-size: 0.86rem; color: var(--grey); line-height: 1.6; }

/* ===== ACTIVITIES ACCORDION ===== */
.accordion { display: flex; flex-direction: column; gap: 14px; }
.accordion-item {
  background: var(--white);
  border: 1px solid #e8e6dd;
  border-radius: 12px;
  overflow: hidden;
}
.accordion-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text);
  transition: background 0.15s;
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary:hover { background: var(--cream); }
.accordion-item .acc-num { color: var(--gold); font-weight: 800; margin-right: 14px; }
.accordion-item summary .acc-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--green);
  transition: transform 0.2s;
}
.accordion-item[open] summary .acc-icon { transform: rotate(45deg); }
.accordion-item .acc-body { padding: 0 26px 24px 66px; color: var(--grey); font-size: 0.92rem; line-height: 1.7; }

/* ===== MEMBERSHIP TABLE ===== */
.table-scroll { overflow-x: auto; border-radius: 14px; box-shadow: 0 6px 26px rgba(20,50,25,0.08); }
.membership-table { width: 100%; border-collapse: collapse; min-width: 920px; background: var(--white); }
.membership-table th {
  background: var(--green-dark);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 16px;
  text-align: left;
  white-space: nowrap;
}
.membership-table td {
  padding: 14px 16px;
  font-size: 0.86rem;
  color: var(--text);
  border-bottom: 1px solid #eee;
  vertical-align: top;
}
.membership-table tr:nth-child(even) td { background: var(--cream); }
.membership-table td.num { color: var(--gold); font-weight: 800; }
.membership-table .reps { font-size: 0.82rem; color: var(--grey); }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--cream);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(rgba(20,50,25,0) 55%, rgba(15,35,18,0.55));
  opacity: 0;
  transition: opacity 0.25s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .zoom-icon {
  position: absolute; right: 10px; bottom: 10px;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.25s, transform 0.25s;
  z-index: 2;
}
.gallery-item:hover .zoom-icon { opacity: 1; transform: translateY(0); }
.gallery-item .zoom-icon svg { width: 15px; height: 15px; stroke: var(--green-dark); fill: none; }

.lightbox {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(10,20,12,0.94);
  display: none;
  align-items: center; justify-content: center;
  padding: 40px 20px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 85vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.12);
  border: none;
  color: var(--white);
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.3rem;
  transition: background 0.2s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.28); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-counter {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.75); font-size: 0.85rem; letter-spacing: 0.06em;
}

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px 0; border-bottom: 1px solid #eee;
}
.contact-card:last-child { border-bottom: none; }
.contact-card .c-icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px;
  background: rgba(47,107,58,0.1);
  display: flex; align-items: center; justify-content: center;
}
.contact-card .c-icon svg { width: 22px; height: 22px; stroke: var(--green); fill: none; }
.contact-card h4 { font-size: 0.95rem; font-weight: 800; margin-bottom: 4px; }
.contact-card p, .contact-card a { font-size: 0.9rem; color: var(--grey); }
.contact-card a:hover { color: var(--green); }

.social-row { display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap; }
.social-row a {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.social-row a:hover { background: var(--green); transform: translateY(-2px); }
.social-row a:hover svg { stroke: var(--white); fill: var(--white); }
.social-row svg { width: 19px; height: 19px; stroke: var(--green-dark); fill: var(--green-dark); }

.map-embed { border-radius: 14px; overflow: hidden; box-shadow: 0 20px 50px rgba(20,50,25,0.14); aspect-ratio: 4/3; background: var(--cream); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

.resource-list { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.resource-item { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--grey); }
.resource-item svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; flex-shrink: 0; }

/* ===== RICH FOOTER ===== */
.footer-rich { background: #12241a; color: #aab5a5; padding-top: 60px; }
.footer-cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 44px; }
.footer-about p { font-size: 0.88rem; line-height: 1.7; margin: 16px 0; color: #96a390; }
.footer-col h4 { color: var(--white); font-size: 0.86rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col li { font-size: 0.86rem; color: #96a390; transition: color 0.18s; }
.footer-col a:hover { color: var(--green-light); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; line-height: 1.5; }
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; stroke: var(--green-light); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.footer-social a:hover { background: var(--green); }
.footer-social svg { width: 16px; height: 16px; fill: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; color: #7c8877; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .feature-grid, .involve-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split-media { order: -1; }
  .split.reverse .split-media { order: -1; }
  .mv-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .nav-links { display: none; flex-direction: column; align-items: flex-start; gap: 0; }
  .nav-links.open {
    display: flex;
    position: absolute; top: 76px; left: 0; right: 0;
    background: var(--white);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    padding: 20px 24px; gap: 16px; z-index: 99;
  }
  .hamburger { display: flex; }
  .section, .section.tight { padding: 56px 0; }
  .feature-grid, .involve-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1fr; }
  .accordion-item .acc-body { padding: 0 20px 22px 20px; }
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; }
}

@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
