:root {
  --green-dark: #143d27;
  --green: #1f5d3a;
  --green-bright: #2e9e5b;
  --gold: #b8860b;
  --gold-light: #d9a520;
  --dark: #1a1a1a;
  --grey: #5b6670;
  --light: #f4f7f5;
  --border: #e2e8e4;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(20, 61, 39, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  color: var(--green-dark);
  line-height: 1.25;
  margin-top: 0;
}

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--gold); }

img { max-width: 100%; display: block; }

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

/* ---------- Header ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1140px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { height: 46px; width: 46px; border-radius: 50%; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text .name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 17px; color: var(--green-dark); letter-spacing: 0.3px; }
.brand-text .tag { font-size: 10.5px; color: var(--gold); letter-spacing: 1px; font-weight: 600; text-transform: uppercase; }

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}
nav.main-nav a {
  color: var(--dark);
  font-weight: 600;
  font-size: 14.5px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}
nav.main-nav a.active,
nav.main-nav a:hover { color: var(--green); border-bottom-color: var(--gold); }

.nav-cta {
  background: var(--green);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
}
.nav-cta:hover { background: var(--green-dark); color: var(--white) !important; }

.menu-toggle { display: none; background: none; border: none; font-size: 26px; color: var(--green-dark); cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 55%, var(--green-bright) 100%);
  color: var(--white);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 40px solid rgba(255,255,255,0.06);
}
.hero-inner {
  display: flex;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}
.hero-text { flex: 1 1 460px; }
.hero-text .eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 14px;
  display: block;
}
.hero-text h1 { color: var(--white); font-size: 42px; margin-bottom: 18px; }
.hero-text p.lead { font-size: 17px; color: rgba(255,255,255,0.9); max-width: 520px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-gold { background: var(--gold); color: var(--white) !important; }
.btn-gold:hover { background: var(--gold-light); color: var(--white) !important; }
.btn-outline { border-color: rgba(255,255,255,0.6); color: var(--white) !important; }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-green { background: var(--green); color: var(--white) !important; }
.btn-green:hover { background: var(--green-dark); color: var(--white) !important; }

.hero-logo {
  flex: 0 0 240px;
  display: flex;
  justify-content: center;
}
.hero-logo img {
  width: 220px; height: 220px;
  border-radius: 50%;
  background: var(--white);
  padding: 14px;
  box-shadow: var(--shadow);
}

/* ---------- Stats strip ---------- */
.stats {
  background: var(--light);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 34px 0;
  text-align: center;
}
.stats-grid .stat b { display: block; font-family: 'Poppins', sans-serif; font-size: 24px; color: var(--green); }
.stats-grid .stat span { font-size: 12.5px; color: var(--grey); text-transform: uppercase; letter-spacing: 0.5px; }

/* ---------- Sections ---------- */
section { padding: 76px 0; }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head .eyebrow { color: var(--gold); font-weight: 700; letter-spacing: 1.5px; font-size: 12.5px; text-transform: uppercase; display: block; margin-bottom: 10px; }
.section-head h2 { font-size: 30px; margin-bottom: 12px; }
.section-head p { color: var(--grey); font-size: 15.5px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.card:hover { transform: translateY(-4px); }
.card .icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green), var(--green-bright));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 22px; font-weight: 700;
  margin-bottom: 18px;
}
.card h3 { font-size: 18px; margin-bottom: 10px; }
.card p { color: var(--grey); font-size: 14.5px; margin-bottom: 0; }

.band-alt { background: var(--light); }

table.data {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
table.data th, table.data td {
  padding: 14px 18px;
  text-align: left;
  font-size: 14.5px;
  border-bottom: 1px solid var(--border);
}
table.data th { background: var(--green); color: var(--white); font-family: 'Poppins', sans-serif; font-weight: 600; }
table.data tr:last-child td { border-bottom: none; }
table.data tr:nth-child(even) td { background: var(--light); }
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.badge-pending { background: #fdf1d6; color: var(--gold); }
.badge-active { background: #e2f5e9; color: var(--green); }

.value-list { list-style: none; padding: 0; margin: 0; }
.value-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.value-list li:last-child { border-bottom: none; }
.value-list .num {
  flex: 0 0 34px; height: 34px; border-radius: 50%;
  background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14px;
}
.value-list h4 { margin: 0 0 4px; font-size: 15.5px; }
.value-list p { margin: 0; color: var(--grey); font-size: 14px; }

.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.team-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  padding: 28px; box-shadow: var(--shadow);
}
.team-card .avatar {
  width: 62px; height: 62px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--gold));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 22px; margin-bottom: 16px;
}
.team-card h3 { font-size: 17px; margin-bottom: 2px; }
.team-card .role { color: var(--gold); font-size: 13px; font-weight: 600; margin-bottom: 12px; }
.team-card p { color: var(--grey); font-size: 14px; margin: 0; }

.cta-band {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white); text-align: center; padding: 64px 0;
}
.cta-band h2 { color: var(--white); font-size: 28px; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.88); max-width: 540px; margin: 0 auto 26px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 46px; align-items: start; }
.contact-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  padding: 28px; box-shadow: var(--shadow); margin-bottom: 18px;
}
.contact-card h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gold); margin-bottom: 8px; }
.contact-card p, .contact-card a { font-size: 15.5px; color: var(--dark); margin: 0; }

form.enquiry { display: flex; flex-direction: column; gap: 16px; }
form.enquiry label { font-size: 13.5px; font-weight: 600; color: var(--green-dark); margin-bottom: 6px; display: block; }
form.enquiry input, form.enquiry select, form.enquiry textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 6px;
  font-family: inherit; font-size: 14.5px; color: var(--dark); background: var(--light);
}
form.enquiry textarea { min-height: 130px; resize: vertical; }
form.enquiry button {
  border: none; cursor: pointer; align-self: flex-start;
}

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--green-dark); color: rgba(255,255,255,0.85);
  padding: 54px 0 24px; font-size: 14px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer-brand { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; }
.footer-brand img { height: 42px; width: 42px; border-radius: 50%; background: var(--white); padding: 3px; }
.footer-brand .name { color: var(--white); font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 16px; }
footer.site-footer h4 { color: var(--white); font-size: 14px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; }
footer.site-footer ul { list-style: none; padding: 0; margin: 0; }
footer.site-footer li { margin-bottom: 10px; }
footer.site-footer a { color: rgba(255,255,255,0.8); }
footer.site-footer a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px; font-size: 12.5px; color: rgba(255,255,255,0.6);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  nav.main-nav { position: fixed; top: 74px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); display: none; }
  nav.main-nav.open { display: block; }
  nav.main-nav ul { flex-direction: column; gap: 0; padding: 10px 24px 20px; }
  nav.main-nav a { display: block; padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav-cta { display: inline-block; margin-top: 10px; }
  .menu-toggle { display: block; }
  .hero-text h1 { font-size: 30px; }
  .hero-inner { flex-direction: column-reverse; text-align: center; }
  .hero-actions { justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .grid-2, .team-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
}
