.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.main-nav {
  position: relative;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle__bar {
  width: 100%;
  height: 2px;
  background: #ffffff;
  display: block;
}

.nav-list {
  position: absolute;
  top: 64px;
  right: 0;
  width: 220px;
  background: #ffffff;
  list-style: none;
  display: none;
  flex-direction: column;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.nav-list.active {
  display: flex;
}

.nav-item {
  margin-bottom: 1rem;
}

.nav-item:last-child {
  margin-bottom: 0;
}

.nav-item a {
  text-decoration: none;
  color: #0f302a;
  font-weight: 500;
}

.nav-item--cta a {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid #0f302a;
  border-radius: 4px;
}

.hero {
  min-height: 70vh;
}

.hero__inner {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 120px;
}

.hero__content {
  max-width: 680px;
  padding: 4rem 0;
  color: #ffffff;
}

.hero__eyebrow {
  margin-bottom: 1rem;
  color: #6ba292;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__title {
  max-width: 760px;
  margin-bottom: 1.5rem;
  font-size: clamp(2.4rem, 3vw, 5.25rem);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.hero__break {
  display: none;
}

.hero__text {
  max-width: 580px;
  margin-bottom: 2rem;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.6;
}

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


/* ===== Impact ===== */

.impact {
  background: #eef5f2;
}

.impact__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.impact__title {
  margin-bottom: 1.25rem;
  color: #0f302a;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.impact__text {
  max-width: 420px;
  margin-bottom: 2rem;
  color: #4f625d;
  line-height: 1.7;
}

.btn--outline {
  color: #2f5d50;
  border-color: rgba(47, 93, 80, 0.45);
  background: transparent;
}

.impact__map img {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  margin: 0 auto;
  opacity: 0.6;
}

/* ===== Featured Project ===== */

.featured-project__eyebrow {
  margin-bottom: 1rem;
  color: #2f5d50;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.featured-project__card {
  overflow: hidden;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(15, 48, 42, 0.08);
}

.featured-project__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.featured-project__content {
  padding: 1.5rem;
}

.featured-project__title {
  margin-bottom: 1rem;
  color: #0f302a;
  font-size: 1.4rem;
  line-height: 1.2;
}

.featured-project__text {
  margin-bottom: 1.25rem;
  color: #4f625d;
  line-height: 1.6;
}

.featured-project__list {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  list-style: none;
  color: #4f625d;
  font-size: 0.95rem;
}

.featured-project__list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.featured-project__list i {
  color: #2f5d50;
}

.featured-project__link {
  color: #2f5d50;
  font-weight: 700;
  text-decoration: none;
}


/* ===== Partners ===== */

.partners {
  background: #ffffff;
}

.partners__inner {
  text-align: center;
}

.partners__eyebrow {
  margin-bottom: 1.5rem;
  color: #2f5d50;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.partners__logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: center;
}

.partner {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.7;
}

.partner img {
  max-width: 140px;
  height: auto;
  display: block;
}


/* ===== CTA ===== */

.cta {
  background: linear-gradient(
    90deg,
    #2f5d50 0%,
    #0f302a 100%
  );
  color: #ffffff;
}

.cta__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

.cta__title {
  max-width: 520px;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.cta__text {
  max-width: 440px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
}

.btn--cta {
  justify-self: start;
  color: #ffffff;
  border-color: #e0b84c;
  background: transparent;
}

/* ===== Footer ===== */

.site-footer {
  background: #0f302a;
  color: #ffffff;
}

.footer__inner {
  display: grid;
  gap: 2.5rem;
}

.footer__brand img {
  width: 180px;
  height: auto;
  display: block;
}

.footer__nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer__group {
  display: grid;
  gap: 0.5rem;
}

.footer__group h3 {
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  color: #ffffff;
}

.footer__group a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer__social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #6ba292;
  color: #0f302a !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.footer__bottom {
  display: grid;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
}

.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__legal a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
}

/* ===== Section Heading ===== */

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading__eyebrow {
  margin-bottom: 0.75rem;
  color: #2f5d50;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading__title {
  margin-bottom: 1rem;
  color: #0f302a;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.section-heading__text {
  color: #4f625d;
  font-size: 1rem;
  line-height: 1.7;
}

/* ===== Services ===== */

.services {
  background: #f5f8f6;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.service-card {
  background: #ffffff;
  padding: 1.5rem;
  border: 1px solid rgba(47, 93, 80, 0.12);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(15, 48, 42, 0.06);
}

.service-card__icon {
  width: 46px;
  height: 46px;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  background: rgba(47, 93, 80, 0.1);
  color: #2f5d50;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.service-card__title {
  margin-bottom: 0.75rem;
  color: #0f302a;
  font-size: 1.25rem;
  line-height: 1.2;
}

.service-card__text {
  color: #4f625d;
  line-height: 1.65;
}


/* ===== Hero Stats Banner ===== */

.hero {
  position: relative;
}

.hero__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(
    90deg,
    #2f5d50 0%,
    #3f7a6b 100%
  );
}

.hero__stats-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1rem 0;
}

.stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
}

.stat__icon {
  flex-shrink: 0;
  font-size: 1.2rem;
  opacity: 0.85;
}

.stat__content {
  display: flex;
  flex-direction: column;
}

.stat__value {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.1;
}

.stat__label {
  font-size: 0.8rem;
  opacity: 0.8;
}

.stats,
.services,
.process,
.projects,
.map,
.partners,
.cta {
  padding: 3rem 0;
}

.site-footer {
  padding: 2rem 0;
}

.project-map {
  height: 100vh;
}

.map-label {
  font-size: 0.7rem;
  padding: 3px 7px;
}

/* ===== Team ===== */

.team {
  background: #ffffff;
  padding: 3rem 0;
}

.team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.team-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(47, 93, 80, 0.12);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(15, 48, 42, 0.06);
}

.team-card__image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.team-card__content {
  padding: 1.5rem;
}

.team-card__name {
  margin-bottom: 0.35rem;
  color: #0f302a;
  font-size: 1.25rem;
  line-height: 1.2;
}

.team-card__role {
  margin-bottom: 1rem;
  color: #2f5d50;
  font-weight: 700;
}

.team-card__text {
  color: #4f625d;
  line-height: 1.65;
}

.team {
  background: #ffffff;
  padding: 4rem 0;
}

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

.team-mini-card {
  display: block;
  overflow: hidden;
  background: #f5f8f6;
  border: 1px solid rgba(47, 93, 80, 0.12);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 18px 45px rgba(15, 48, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(15, 48, 42, 0.1);
}

.team-mini-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.team-mini-card__content {
  padding: 1.25rem;
}

.team-mini-card__company {
  margin-bottom: 0.4rem;
  color: #2f5d50;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-mini-card h3 {
  margin-bottom: 0.25rem;
  color: #0f302a;
  font-size: 1.25rem;
}

.team-mini-card p {
  color: #4f625d;
}

.team__actions {
  margin-top: 2rem;
}

.team__grid--collapsed {
  max-height: 830px; /* adjust to suit 2.5 rows */
  overflow: hidden;
  position: relative;
}

.team__grid--collapsed::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0),
    #ffffff
  );
}

.team-toggle {
  margin-top: 2rem;
  min-height: 48px;
  padding: 0.85rem 1.5rem;
  color: #0f302a;
  background: transparent;
  border: 1px solid rgba(47, 93, 80, 0.35);
  font-weight: 700;
  cursor: pointer;
}

.team-toggle:hover {
  border-color: #0f302a;
  background: #eef5f2;
}

.team__grid:not(.team__grid--collapsed)::after {
  display: none;
}

/* ===== Contact Form ===== */

.contact-form {
  width: 100%;
  display: grid;
  gap: 1rem;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.form-group {
  display: grid;
  gap: 0.45rem;
}

.form-group label {
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-weight: 700;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  color: #0f302a;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 8px;
  font: inherit;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e0b84c;
  box-shadow: 0 0 0 3px rgba(224,184,76,0.25);
}

.contact-form__honeypot {
  display: none;
}

.contact-form__actions {
  display: grid;
  gap: 0.85rem;
  align-items: center;
}

.contact-form__status {
  min-height: 1.4rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}

.contact-form__status.is-success {
  color: #d7f5df;
}

.contact-form__status.is-error {
  color: #ffd6d6;
}

.contact-form .btn {
  width: 100%;
  border-color: #e0b84c;
}