.global-footer {
  --footer-green: #39b04a;
  --footer-ink: rgba(57, 176, 74, 0.92);
  --footer-line: rgba(57, 176, 74, 0.55);
  --footer-wordmark: rgba(146, 146, 146, 0.28);
  background: #040404;
  color: var(--footer-green);
  width: 100%;
  margin-top: 72px;
  padding: 28px 24px 24px;
  box-sizing: border-box;
  font-family: "Neutra Text", "Neutra Display", sans-serif;
}

.global-footer-frame {
  padding: clamp(28px, 3vw, 48px) clamp(26px, 4vw, 72px) 18px;
}

.global-footer a {
  color: var(--footer-ink);
  text-decoration: none;
}

.global-footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: clamp(32px, 6vw, 120px);
}

.global-footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.global-footer-col-left {
  justify-self: start;
  align-items: flex-start;
}

.global-footer-col-right {
  justify-self: end;
  align-items: flex-start;
}

.global-footer-col a {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(18px, 1.2vw, 24px);
  line-height: 1.04;
}

.global-footer-col .footer-big-link {
  font-family: "Neutra Display", sans-serif;
  font-size: clamp(38px, 2.9vw, 62px);
  letter-spacing: 0.06em;
  line-height: 0.9;
}

.global-footer-newsletter {
  justify-self: center;
  width: min(420px, 100%);
  text-align: center;
}

.global-footer-newsletter h4 {
  margin-bottom: 12px;
}

.global-footer-newsletter p {
  margin: 0 0 16px;
  color: var(--footer-ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(13px, 0.92vw, 16px);
  line-height: 1.35;
}

.global-footer-form {
  display: grid;
  grid-template-columns: 1fr 86px;
  border: 1px solid var(--footer-green);
  width: 100%;
  align-items: stretch;
}

.global-footer-form input,
.global-footer-form button {
  background: transparent;
  border: none;
  color: var(--footer-green);
  font-family: "Neutra Text", sans-serif;
}

.global-footer-form input {
  padding: 12px 14px;
  font-size: 16px;
  border-right: 1px solid var(--footer-green);
  outline: none;
}

.global-footer-form input::placeholder {
  color: rgba(57, 176, 74, 0.58);
}

.global-footer-form button {
  font-size: 16px;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.global-footer-wordmark {
  margin: clamp(44px, 5vw, 88px) auto clamp(24px, 3vw, 44px);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  text-align: center;
  max-width: 1180px;
}

.global-footer-wordmark span {
  font-family: "Neutra Display", sans-serif;
  font-size: clamp(84px, 10vw, 176px);
  line-height: 0.82;
  color: var(--footer-wordmark);
  font-weight: 800;
  letter-spacing: 0.1em;
}

.global-footer-contact {
  margin: 0 auto 18px;
  max-width: 980px;
  text-align: center;
  color: var(--footer-ink);
}

.global-footer-contact p {
  margin: 0;
  font-size: clamp(14px, 1vw, 24px);
  line-height: 1.25;
  letter-spacing: 0.03em;
}

.global-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  padding-top: 8px;
  border-top: 1px solid var(--footer-line);
}

.global-footer-bottom a {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: clamp(18px, 1.2vw, 24px);
  line-height: 1;
}

.footer-sep {
  width: clamp(28px, 5vw, 82px);
  height: 1px;
  background: var(--footer-line);
  display: inline-block;
}

@media (max-width: 980px) {
  .global-footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .global-footer-col-left,
  .global-footer-col-right,
  .global-footer-newsletter {
    justify-self: center;
    align-items: center;
    text-align: center;
  }

  .global-footer-wordmark {
    gap: 10px;
  }

  .global-footer-bottom {
    flex-wrap: wrap;
  }
}

@media (max-width: 620px) {
  .global-footer {
    padding-inline: 12px;
  }

  .global-footer-frame {
    padding-inline: 16px;
  }

  .global-footer-bottom {
    gap: 10px;
  }

  .footer-sep {
    width: 18px;
  }
}
