@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --green: #1D6E4F;
  --green-light: #2A8F65;
  --green-pale: #E8F5EE;
  --gold: #C8860A;
  --gold-light: #F0A820;
  --gold-pale: #FEF6E4;
  --dark: #1A1A1A;
  --text: #2D2D2D;
  --muted: #5C5C5C;
  --light: #F7F7F4;
  --white: #FFFFFF;
  --border: #E0E0D8;
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ─── NAVIGATION ─── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
}

.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
}

.nav-logo-icon {
  width: 42px; height: 42px;
  background: var(--green);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 20px;
}

.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-text strong {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700; color: var(--green);
}
.nav-logo-text span { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; }

.nav-links {
  display: flex; align-items: center; gap: 2rem; list-style: none;
}

.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: var(--text);
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover { color: var(--green); }

.nav-links a.active {
  color: var(--green);
}

.nav-links a.active::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--green);
  border-radius: 2px;
}

.nav-cta {
  background: var(--green); color: white !important;
  padding: 8px 20px; border-radius: 8px;
  font-weight: 500; font-size: 0.85rem;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--green-light) !important; }

.nav-cta.active::after { display: none; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}

.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all 0.3s;
}

.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  border-top: 1px solid var(--border);
  padding: 1rem 0;
  list-style: none;
}

.mobile-menu.open { display: flex; }
.mobile-menu li a {
  display: block; padding: 0.75rem 0;
  font-size: 1rem; font-weight: 500; color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu li a:hover { color: var(--green); }

/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, #0D3D28 0%, #1D6E4F 50%, #2A8F65 100%);
  color: white; padding: 6rem 5% 5rem; min-height: 90vh;
  display: flex; align-items: center; position: relative; overflow: hidden;
}

.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}

.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #90E5B0; font-size: 0.8rem; font-weight: 500;
  padding: 6px 14px; border-radius: 50px; margin-bottom: 1.5rem;
  letter-spacing: 0.06em; text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700; line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero h1 em { color: var(--gold-light); font-style: normal; }

.hero p {
  font-size: 1.1rem; line-height: 1.8;
  color: rgba(255,255,255,0.85); max-width: 520px; margin-bottom: 2.5rem;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius); font-weight: 600;
  font-size: 0.95rem; cursor: pointer; border: none;
  transition: all 0.2s; text-decoration: none;
}

.btn-white {
  background: white; color: var(--green);
}
.btn-white:hover { background: var(--green-pale); transform: translateY(-2px); box-shadow: var(--shadow-hover); }

.btn-outline {
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: white; }

.btn-green {
  background: var(--green); color: white;
}
.btn-green:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: var(--shadow-hover); }

.btn-gold {
  background: var(--gold); color: white;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.hero-visual {
  display: flex; flex-direction: column; gap: 1rem;
}

.hero-stat-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}

.stat-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.stat-card .num {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 700; color: var(--gold-light);
}

.stat-card .label {
  font-size: 0.82rem; color: rgba(255,255,255,0.7);
  margin-top: 4px; text-transform: uppercase; letter-spacing: 0.04em;
}

.hero-quote {
  background: rgba(255,255,255,0.1);
  border-left: 4px solid var(--gold-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  font-style: italic; color: rgba(255,255,255,0.9);
  font-size: 1rem; line-height: 1.7;
}

.hero-quote cite {
  display: block; margin-top: 0.5rem;
  font-style: normal; font-size: 0.82rem;
  color: var(--gold-light); font-weight: 600;
}

/* ─── SECTION BASE ─── */
.section { padding: 5rem 5%; }
.section-alt { background: var(--light); }

.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--green); font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: ''; display: block; width: 24px; height: 2px;
  background: var(--green); border-radius: 2px;
}

h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; line-height: 1.2; color: var(--dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem; color: var(--muted); max-width: 620px; line-height: 1.8;
}

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

/* ─── CARDS ─── */
.card {
  background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 2rem; box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}

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

.card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--green-pale); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 1.25rem;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 600; margin-bottom: 0.75rem;
}

.card p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }

/* ─── VALUES / PILLARS ─── */
.pillar {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.5rem; border-radius: var(--radius);
  border: 1px solid var(--border); background: white;
}

.pillar-num {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: var(--green); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700;
}

.pillar h4 { font-weight: 600; margin-bottom: 0.25rem; font-size: 0.98rem; }
.pillar p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* ─── HIGHLIGHT BAND ─── */
.highlight-band {
  background: var(--green);
  color: white; padding: 4rem 5%;
  text-align: center;
}

.highlight-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700; margin-bottom: 1rem;
}

.highlight-band p {
  color: rgba(255,255,255,0.85); max-width: 600px;
  margin: 0 auto 2rem; font-size: 1.05rem; line-height: 1.8;
}

/* ─── ABOUT PAGE ─── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}

.about-text h2 { margin-bottom: 1rem; }
.about-text p { color: var(--muted); margin-bottom: 1rem; line-height: 1.8; }

.value-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-pale); color: var(--green);
  padding: 6px 14px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; margin: 4px;
}

.about-image-block {
  background: var(--green-pale);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1.5rem;
}

.fact-row {
  display: flex; gap: 1rem; align-items: center;
  padding: 1rem; background: white; border-radius: var(--radius);
  border: 1px solid var(--border);
}

.fact-row .icon { font-size: 1.5rem; }
.fact-row p { font-size: 0.9rem; color: var(--muted); }
.fact-row strong { display: block; color: var(--dark); font-weight: 600; }

/* ─── TEAM CARD ─── */
.team-card {
  background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow); transition: all 0.2s;
}

.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.team-avatar {
  height: 160px; display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; background: var(--green-pale);
}

.team-info { padding: 1.25rem; }
.team-info h4 { font-weight: 600; font-size: 1rem; margin-bottom: 2px; }
.team-info .role { font-size: 0.82rem; color: var(--green); font-weight: 500; }

/* ─── GET INVOLVED ─── */
.involve-card {
  background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 2.5rem;
  box-shadow: var(--shadow);
}

.involve-card .badge {
  display: inline-block; padding: 4px 12px;
  border-radius: 50px; font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

.badge-green { background: var(--green-pale); color: var(--green); }
.badge-gold { background: var(--gold-pale); color: var(--gold); }

.involve-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin-bottom: 0.75rem; }
.involve-card p { color: var(--muted); line-height: 1.8; margin-bottom: 1.5rem; }

/* ─── UPDATES (NEWS) ─── */
.update-card {
  background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow); transition: all 0.2s;
}

.update-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }

.update-img {
  height: 180px; background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}

.update-body { padding: 1.5rem; }
.update-body .date { font-size: 0.8rem; color: var(--muted); font-weight: 500; margin-bottom: 0.5rem; }
.update-body h4 { font-weight: 600; margin-bottom: 0.5rem; font-size: 1rem; }
.update-body p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; }

.contact-info h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 1rem; }
.contact-info p { color: var(--muted); margin-bottom: 2rem; line-height: 1.8; }

.contact-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
}

.contact-item:last-child { border-bottom: none; }

.contact-item .icon {
  width: 40px; height: 40px; background: var(--green-pale);
  color: var(--green); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}

.contact-item .label { font-size: 0.78rem; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; }
.contact-item .value { font-weight: 500; color: var(--dark); font-size: 0.95rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

label { font-size: 0.85rem; font-weight: 600; color: var(--dark); }

input, textarea, select {
  padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-family: var(--font-body);
  font-size: 0.95rem; color: var(--text); background: white;
  transition: border-color 0.2s;
}

input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(29, 110, 79, 0.1);
}

textarea { resize: vertical; min-height: 130px; }

.submit-btn {
  background: var(--green); color: white;
  padding: 14px 32px; border-radius: var(--radius);
  font-weight: 600; font-size: 1rem; cursor: pointer;
  border: none; transition: all 0.2s; align-self: flex-start;
}

.submit-btn:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ─── FOOTER ─── */
footer {
  background: var(--dark); color: rgba(255,255,255,0.8);
  padding: 4rem 5% 2rem;
}

.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  font-size: 0.9rem; line-height: 1.8; color: rgba(255,255,255,0.6);
  margin-top: 1rem; max-width: 280px;
}

.footer-col h5 {
  font-size: 0.82rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: white; margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6); font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: 1200px; margin: 2rem auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
}

.footer-cic {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  padding: 4px 12px; border-radius: 50px; font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: linear-gradient(135deg, #0D3D28, #1D6E4F);
  color: white; padding: 4rem 5%;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  margin-bottom: 0.75rem;
}

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

/* ─── BREADCRUMB ─── */
.breadcrumb {
  padding: 1rem 5%; max-width: 1200px; margin: 0 auto;
  font-size: 0.82rem; color: var(--muted); display: flex; gap: 0.5rem; align-items: center;
}

.breadcrumb a { color: var(--green); }
.breadcrumb span { color: var(--border); }

/* ─── ASSET LOCK / LEGAL NOTICE ─── */
.legal-notice {
  background: var(--gold-pale); border: 1px solid #F0C060;
  border-radius: var(--radius); padding: 1.5rem 2rem;
  margin: 2rem 0;
}

.legal-notice h4 { color: var(--gold); font-weight: 700; margin-bottom: 0.5rem; font-size: 0.95rem; }
.legal-notice p { font-size: 0.875rem; color: #7A5A00; line-height: 1.7; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 4rem 5%; }
  .hero-btns { flex-direction: column; }
  .btn { justify-content: center; }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate { animation: fadeUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* Active nav highlight */
nav a[href].current { color: var(--green); }
