:root {
  --green-main: #3f8f1f;
  --green-dark: #22551c;
  --green-deep: #143d12;
  --blue-oil: #007b98;
  --blue-green: #0795a2;
  --aqua: #10aaa3;
  --green-soft: #61bd7c;
  --lime: #a3d32f;
  --white: #fff;
  --ink: #13280f;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--green-deep);
}

html,
body {
  overflow-x: hidden;
}

body {
  color: var(--white);
  font-family: Montserrat, Poppins, "Arial Rounded MT Bold", Arial, sans-serif;
  letter-spacing: 0;
}

.site-shell {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  background: var(--green-deep);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  background:
    radial-gradient(circle at 38% 18%, rgba(255, 255, 255, .12), transparent 24%),
    radial-gradient(circle at 82% 68%, rgba(0, 0, 0, .38), transparent 36%),
    linear-gradient(90deg, #56ad1f, #32891d 48%, #154614);
}

.hero img {
  width: 100%;
  height: auto;
}

.social-banner,
.projects-call,
.bio-banner,
.whatsapp-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.social-banner {
  background: #294b25;
}

.projects-call {
  background: var(--lime);
}

.bio-banner {
  background: linear-gradient(90deg, var(--blue-oil) 0 33.33%, var(--lime) 33.33%);
}

.whatsapp-banner {
  background: linear-gradient(90deg, var(--aqua) 0 67.4%, #63ad73 67.4%);
}

.projects-call a,
.whatsapp-link {
  display: block;
  cursor: pointer;
}

.social-hotspots {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hotspot {
  position: absolute;
  top: 0;
  height: 100%;
  display: block;
  cursor: pointer;
}

.hotspot.instagram {
  left: 21%;
  width: 26%;
}

.hotspot.facebook {
  left: 48%;
  width: 24%;
}

.hotspot.youtube {
  left: 72%;
  width: 26%;
}

.hotspot:focus-visible,
.projects-call a:focus-visible,
.whatsapp-link:focus-visible,
.almg-button:focus-visible {
  outline: 4px solid var(--lime);
  outline-offset: -4px;
}

.inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(38px, 5.4vw, 58px) clamp(18px, 3vw, 28px);
}

.approved-list {
  position: relative;
  background: linear-gradient(135deg, var(--blue-oil), var(--aqua));
}

.approved-list::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .12) .7px, transparent .7px);
  background-size: 4px 4px;
  opacity: .32;
}

.approved-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 4vw, 36px);
}

.approved-list span {
  display: block;
  margin-bottom: 10px;
  color: var(--lime);
  font-size: clamp(.7rem, 1.6vw, .78rem);
  font-weight: 900;
  letter-spacing: .12em;
}

.approved-list h1 {
  max-width: 820px;
  margin: 0 0 16px;
  font-size: clamp(2rem, 7.2vw, 4.8rem);
  line-height: .92;
  font-weight: 900;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.approved-list p {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.45;
  font-weight: 800;
}

.almg-button {
  display: grid;
  min-width: min(260px, 100%);
  min-height: 62px;
  place-items: center;
  padding: 0 22px;
  border-radius: 8px;
  background: linear-gradient(#1b7a18, #0f4f0e);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .12), 0 10px 20px rgba(0, 0, 0, .24);
  font-size: clamp(.92rem, 2.4vw, 1.05rem);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.identity-band {
  background: linear-gradient(110deg, var(--green-deep), var(--green-dark));
}

.band-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.band-grid article {
  min-height: 168px;
  padding: clamp(18px, 2.6vw, 22px);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .08);
}

.band-grid b {
  display: block;
  margin-bottom: 12px;
  color: var(--lime);
  font-size: clamp(1rem, 2vw, 1.06rem);
  font-weight: 900;
}

.band-grid p {
  margin: 0;
  font-size: clamp(.95rem, 1.7vw, 1rem);
  font-weight: 800;
  line-height: 1.35;
}

.footer-strip {
  background: var(--green-deep);
  text-align: center;
}

.palette {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1.5fr 1.05fr 1.05fr;
  height: clamp(24px, 4vw, 34px);
}

.palette i:nth-child(1) { background: var(--blue-oil); }
.palette i:nth-child(2) { background: var(--blue-green); }
.palette i:nth-child(3) { background: var(--aqua); }
.palette i:nth-child(4) { background: var(--green-soft); }
.palette i:nth-child(5) { background: var(--lime); }

.footer-strip p {
  margin: 0;
  padding: 22px 18px;
  color: var(--white);
  font-size: clamp(.74rem, 2.4vw, .86rem);
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.35;
}

@media (max-width: 980px) {
  .approved-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .almg-button {
    justify-self: start;
  }

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

@media (max-width: 760px) {
  .hero img,
  .social-banner img,
  .projects-call img,
  .bio-banner img,
  .whatsapp-banner img {
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .social-banner img {
    min-height: 44px;
    object-fit: contain;
  }

  .approved-list h1 {
    font-size: clamp(2rem, 11vw, 3.25rem);
  }

  .almg-button {
    width: 100%;
    white-space: normal;
  }

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

  .band-grid article {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .inner {
    padding: 34px 18px;
  }

  .social-banner {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .social-banner img,
  .social-hotspots {
    width: 640px;
    max-width: none;
  }

  .social-hotspots {
    right: auto;
  }

  .projects-call img,
  .bio-banner img,
  .whatsapp-banner img {
    min-width: 100%;
  }

  .approved-list p,
  .band-grid p {
    font-weight: 750;
  }
}
