/* -------- GOOGLE FONTS -------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&family=Playfair+Display:wght@500;600&display=swap');

/* ---------- VARIABLES & RESET ---------- */
:root{
  --bg: #010903;            /* Deep forest green background */
  --card: #113706;          /* Slightly lighter card green */
  --muted: #f1f7f2;         /* Muted mint text */  
  --accent: #ffffff;        /* Bright Lyme green accent */
  --white: #f5f5f5;         /* Clean white */
  --glass: rgba(181, 50, 50, 0.05);
  --max-width: 1000px;
  --radius: 10px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:"Poppins",system-ui,Arial,sans-serif;
  background:var(--bg);
  color:var(--white);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.5;
}

/* ---------- CONTAINERS ---------- */
.container{
  width:90%;
  max-width:var(--max-width);
  margin:0 auto;
}

/* ---------- HEADER ---------- */
.site-header{
  border-bottom:1px solid rgba(255,255,255,0.05);
  background:linear-gradient(180deg, rgba(0,0,0,0.08), transparent);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
  gap:16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.site-logo{
  width:56px;
  height:auto;
  border-radius:8px;
  background:var(--glass);
  padding:6px;
}
.brand-text .site-title{
  margin:0;
  font-weight:700;
  letter-spacing:1px;
  font-size:18px;
  color:var(--accent);
}
.tagline{
  margin:0;
  font-size:12px;
  color:var(--muted);
}

/* NAV */
.site-nav{
  display:flex;
  gap:14px;
  align-items:center;
}
.site-nav .nav-link{
  color:var(--muted);
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  padding:8px 10px;
  border-radius:6px;
}
.site-nav .nav-link:hover{
  color:var(--accent);
  background:rgba(88,196,114,0.1);
}

/* mobile toggle */
.nav-toggle{
  display:none;
  background:transparent;
  border:0;
  color:var(--muted);
  font-size:20px;
}

/* ---------- HERO ---------- */
.hero{
  padding:64px 0 48px;
  text-align:center;
  background:linear-gradient(180deg, rgba(88,196,114,0.08) 0%, transparent 60%);
}
.hero-inner{max-width:820px;margin:0 auto}
.hero-title{
  color:var(--accent);
  margin:0 0 12px;
  font-size:26px;
  font-weight:700;
}
.hero-lead{
  color:var(--muted);
  margin:0 0 20px;
  font-size:16px;
}
.hero-cta .btn{margin:0 8px}

/* ---------- SECTIONS ---------- */
.section{
  padding:36px 0;
}
.section.alt{
  background:linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  border-top:1px solid rgba(255,255,255,0.05);
  border-bottom:1px solid rgba(255,255,255,0.05);
}
.section-title{
  color:var(--accent);
  margin:0 0 8px;
  font-size:20px;
  font-weight:700;
}
.section-sub{
  color:var(--muted);
  margin:0 0 20px;
}

/* ---------- CARDS GRID ---------- */
.cards-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:16px;
}
.card{
  background:var(--card);
  padding:18px;
  border-radius:var(--radius);
  box-shadow:0 6px 18px rgba(0,0,0,0.4);
}
.card h4{margin:0 0 8px}
.card p{margin:0 0 12px;color:var(--muted)}
.card-link{color:var(--accent);text-decoration:none;font-weight:600}

/* ---------- TEAM GRID ---------- */
.team-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:18px;
  margin-top:18px;
}
.team-card{
  background:var(--card);
  padding:18px;
  border-radius:var(--radius);
  text-align:center;
}
.team-photo{
  width:88px;
  height:88px;
  border-radius:14px;
  object-fit:cover;
  background:var(--glass);
  margin-bottom:12px;
}
.team-card h4{margin:0 0 6px}
.muted{color:var(--muted);font-size:13px;margin-bottom:8px}
.small{color:var(--muted);font-size:13px}

/* ---------- SPLIT CONTACT AREA ---------- */
.split{
  display:flex;
  gap:20px;
  align-items:flex-start;
  flex-wrap:wrap;
}
.contact-box{
  flex:1 1 300px;
  min-width:260px;
}
.contact-form-box{
  flex:1 1 360px;
  min-width:300px;
  background:var(--card);
  padding:18px;
  border-radius:var(--radius);
  box-shadow:0 6px 18px rgba(0,0,0,0.4);
}

/* FORM */
form label{display:block;color:var(--muted);font-size:13px;margin:10px 0 6px}
form input, form textarea{
  width:100%;
  padding:10px 12px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  color:var(--white);
  font-size:14px;
}
.form-actions{display:flex;gap:10px;margin-top:12px;align-items:center}
.form-note{color:var(--muted);margin-top:10px}

/* SOCIAL LIST */
.social-list{list-style:none;padding:0;margin:12px 0 0}
.social-list li{margin-bottom:8px}
.social-list a{color:var(--accent);text-decoration:none;font-weight:600}

/* ---------- BUTTONS ---------- */
.btn{
  display:inline-block;
  background:var(--accent);
  color:var(--bg);
  padding:10px 16px;
  border-radius:8px;
  text-decoration:none;
  font-weight:700;
  transition:transform .12s ease, background .12s ease;
}
.btn:hover{transform:translateY(-3px)}
.btn.outline{
  background:transparent;
  color:var(--muted);
  border:1px solid rgba(255,255,255,0.06);
}

/* ---------- FOOTER ---------- */
.site-footer{
  padding:22px 0;
  border-top:1px solid rgba(255,255,255,0.04);
  margin-top:28px;
  text-align:center;
  color:var(--muted);
  font-size:13px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width:860px){
  .header-inner{flex-direction:row;align-items:center}
  .site-nav{display:none}
  .nav-toggle{display:block}
  .hero{padding:42px 0}
  .split{flex-direction:column}
}
