:root {
  --green-dark: #2d5016;
  --green: #6b9b37;
  --green-light: #a4c66d;
  --navy: #1b3a5c;
  --teal: #3d8b8b;
  --text: #1f2937;
  --text-light: #6b7280;
  --bg: #ffffff;
  --bg-alt: #f7f9f5;
  --border: #e5e7eb;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: var(--green); text-decoration: none; }
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.logo { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 1.15rem; }
.logo-mark {
  width: 40px; height: 40px; border-radius: 8px;
  background: linear-gradient(135deg, var(--navy), var(--teal), var(--green-light));
  flex-shrink: 0;
}
nav { display: flex; gap: 28px; font-size: 0.95rem; font-weight: 500; }

.hero {
  background:
    linear-gradient(160deg, rgba(20,35,20,0.82) 0%, rgba(20,50,45,0.72) 100%),
    url('images/western-street.jpg') center 30% / cover no-repeat;
  padding: 88px 0 76px;
}
.hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: #fff; margin-bottom: 12px; }
.hero .subtitle { font-size: 1.15rem; color: #e4ece0; margin-bottom: 20px; }
.hero .tag {
  display: inline-block; background: var(--green); color: #fff;
  padding: 5px 14px; border-radius: 999px; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 18px;
}
.hero p.lede { max-width: 640px; font-size: 1.02rem; color: #f1f5ee; }

.hero.hero--plain {
  background: linear-gradient(160deg, var(--bg-alt) 0%, #eef3e6 100%);
  padding: 64px 0 48px;
}
.hero.hero--plain h1 { color: var(--green-dark); }
.hero.hero--plain .subtitle { color: var(--text-light); }
.hero.hero--plain p.lede { color: var(--text); }

.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px;
}
.gallery figure { margin: 0; border-radius: 10px; overflow: hidden; border: 1px solid var(--border); background: #fff; }
.gallery img { width: 100%; height: 200px; object-fit: cover; display: block; }
.gallery figcaption { padding: 10px 14px; font-size: 0.85rem; color: var(--text-light); }
@media (max-width: 720px) {
  .gallery { grid-template-columns: 1fr; }
}

section { padding: 56px 0; }
section.alt { background: var(--bg-alt); }
h2 { font-size: 1.6rem; color: var(--green-dark); margin-bottom: 8px; }
h2 + .section-sub { color: var(--text-light); margin-bottom: 32px; font-size: 1rem; }

.facts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px; margin-top: 32px;
}
.fact { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 20px; }
.fact .num { font-size: 1.6rem; font-weight: 700; color: var(--green); }
.fact .label { color: var(--text-light); font-size: 0.9rem; margin-top: 4px; }

.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 28px; }
.why-card { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 22px; }
.why-card h3 { font-size: 1.05rem; color: var(--green-dark); margin-bottom: 8px; }
.why-card p { color: var(--text-light); font-size: 0.95rem; }

table { width: 100%; border-collapse: collapse; margin-top: 20px; background: #fff; }
th, td { text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--border); font-size: 0.92rem; }
th { background: var(--bg-alt); color: var(--green-dark); font-weight: 600; }
.table-scroll { overflow-x: auto; border: 1px solid var(--border); border-radius: 10px; }
.table-scroll table { margin-top: 0; }

.cert-box {
  display: flex; align-items: flex-start; gap: 16px;
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  padding: 22px; margin-top: 24px;
}
.cert-box .badge {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem;
}

.projects {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; margin-top: 28px;
}
.project-pill {
  background: #fff; border: 1px solid var(--border); border-radius: 8px;
  padding: 14px 16px; font-size: 0.92rem; font-weight: 500;
}

/* Policy/legal page content */
.policy h2 { margin-top: 36px; }
.policy h2:first-child { margin-top: 0; }
.policy p, .policy li { color: var(--text); margin-bottom: 12px; }
.policy ul { padding-left: 22px; margin-bottom: 16px; }
.policy .updated { color: var(--text-light); font-size: 0.9rem; margin-bottom: 32px; }
.policy .note-box {
  background: var(--bg-alt); border: 1px solid var(--border); border-left: 4px solid var(--green);
  border-radius: 8px; padding: 16px 20px; margin: 20px 0; font-size: 0.92rem; color: var(--text-light);
}

footer {
  background: var(--navy); color: #cbd5c0; padding: 44px 0 32px; margin-top: 24px;
}
footer h3 { color: #fff; font-size: 1.05rem; margin-bottom: 14px; }
footer .cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
footer a { color: #cbd5c0; }
.placeholder { color: #b8860b; font-style: italic; }
footer .placeholder { color: #e8b64a; }
footer .bottom { border-top: 1px solid #2e4a68; margin-top: 32px; padding-top: 20px; font-size: 0.85rem; color: #93a591; }

@media (max-width: 640px) {
  nav { display: none; }
}
