:root{
  --bg:#ffffff;
  --teal-50:#e8f9f7;
  --teal-100:#c6f0ec;
  --teal-200:#8fe1d6;
  --teal-400:#2fbba6;
  --teal-500:#058d7a;
  --teal-700:#046d5c;
  --muted:#6b7280;
  --shadow: 0 6px 20px rgba(5,141,122,0.12);
  --radius:12px;
  --brand-green:#55B685;
}

/* =========================
   Base
   ========================= */
*{ box-sizing:border-box; }

html, body{
  overflow-x:hidden;
}

body{
  font-family: Raleway, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight:400;
  font-size:18px;            /* ⬆️ base size (was ~16) */
  line-height:1.65;
  color:#0f172a;
  background:var(--bg);
  margin:0;
  text-align:center;
}

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

.container{
  max-width:1100px;
  margin:0 auto;
  padding:2.25rem;
}

/* =========================
   Headings
   ========================= */
h1{
  font-size:2.6rem;
}

h2{
  font-size:2rem;
}

h3{
  font-size:1.25rem;
}

/* Section headings */
section h2,
section h3{
  color:var(--brand-green);
}

/* =========================
   Header
   ========================= */
.site-header{
  border-bottom:1px solid rgba(10,10,10,0.04);
  background:linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
  position:sticky;
  top:0;
  backdrop-filter:blur(6px);
  z-index:40;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:1rem;
}

.logo{ height:48px; }
.logo-small{ height:34px;
  display:block;
  margin:0 auto 0.5rem auto;
 }

.nav{
  display:flex;
  gap:1.25rem;
  align-items:center;
}

.nav a{
  color:var(--teal-700);
  text-decoration:none;
  font-weight:600;
  font-size:1rem;
}

.nav-toggle{
  display:none;
  background:none;
  border:0;
  font-size:1.4rem;
}

/* =========================
   Hero
   ========================= */
.hero{
  padding:5rem 0 2rem;
  background:#fff;
}

.hero-inner{
  display:grid;
  grid-template-columns:360px 1fr;
  gap:2.5rem;
  align-items:center;
}

.hero-copy h1{
  color:var(--brand-green);
  margin-bottom:1rem;
  font-weight:700;
  letter-spacing:-0.02em;
}

.lead{
  color:var(--muted);
  font-size:1.2rem;     /* ⬆️ */
  font-weight:300;
  line-height:1.7;
}

.hero-media{
  display:flex;
  justify-content:center;
}

.hero-media img{
  width:100%;
  max-width:360px;
  border-radius:var(--radius);
}

/* =========================
   Vision
   ========================= */
.vision h2{
  margin-bottom:1.25rem;
}

/* Force Raleway inside cards */
.vision-grid,
.vision-grid *{
  font-family: Raleway, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

.vision-grid article{
  background:#fff;
  padding:1.6rem;
  border-radius:var(--radius);
  box-shadow:0 6px 18px rgba(2,6,23,0.06);
  min-width:0;
}

.vision-grid h3{
  margin-top:0;
  margin-bottom:0.5rem;
  color:var(--teal-500);
  font-weight:600;
}

.vision-grid p{
  font-size:1.05rem;    /* ⬆️ */
  font-weight:300;
  line-height:1.65;
  color:#334155;
}

/* =========================
   Team
   ========================= */
.team h2{
  margin-bottom:0.75rem;
}

.team-members{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:1.5rem;
  margin-top:2.5rem;
}

.member-photo{
  width:80px;
  height:80px;
  border-radius:50%;
  margin:0 auto 1rem;
  background:#e2e8f0;
}

.member h4{
  margin:0;
  color:var(--teal-700);
  font-weight:600;
  font-size:1.05rem;
}

.member p{
  margin:0.5rem 0;
  color:var(--muted);
  font-weight:300;
  font-size:0.95rem;
}

/* =========================
   Cards / Features
   ========================= */
.features{
  padding:3.5rem 0;
}

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

.card{
  background:#fff;
  padding:1.6rem;
  border-radius:var(--radius);
  box-shadow:0 6px 18px rgba(2,6,23,0.06);
}

.card h3{
  margin-top:0;
  font-weight:600;
}

/* =========================
   CTA / Misc
   ========================= */
.muted{
  color:var(--muted);
  font-weight:300;
  font-size:1.05rem;
}

/* =========================
   Contact
   ========================= */
.contact-form{
  max-width:640px;
  margin:0 auto;
  text-align:left;
}

.contact-form label{
  display:block;
  margin-bottom:0.75rem;
  color:var(--muted);
  font-weight:400;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:0.8rem;
  font-size:1rem;
  border:1px solid #e6eef0;
  border-radius:8px;
  margin-top:0.4rem;
  font-family:inherit;
}

/* =========================
   Footer
   ========================= */
.site-footer{
  border-top:1px solid rgba(10,10,10,0.04);
  padding:2rem 0;
  margin-top:4rem;
}


.footer-nav a{
  color:var(--muted);
  text-decoration:none;
  font-weight:400;
  font-size:0.95rem;
}

/* =========================
   Buttons
   ========================= */
.btn{
  display:inline-block;
  padding:0.7rem 1.2rem;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
  font-size:0.95rem;
  cursor:pointer;
}

.btn-primary{
  background:var(--teal-500);
  color:#fff;
  box-shadow:var(--shadow);
}

/* =========================
   Responsive
   ========================= */
@media (max-width:900px){
  body{
    font-size:17px;
  }

  .hero-inner{
    grid-template-columns:1fr;
  }

  .vision-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .cards,
  .team-members{
    grid-template-columns:1fr;
  }

  .nav{
    display:none;
  }

  .nav-toggle{
    display:block;
  }
}

@media (max-width:600px){
  body{
    font-size:16.5px;
  }

  h1{
    font-size:2.2rem;
  }

  h2{
    font-size:1.8rem;
  }

  .vision-grid{
    grid-template-columns:1fr;
  }
}
