.site-footer {
  position: relative;
  z-index: 2;
  width: min(100%, 1260px);
  margin: 0 auto;
  padding: clamp(28px, 4.8vh, 62px) 0 clamp(22px, 4vh, 48px);
}

.site-footer-shell {
  width: min(100%, 1160px);
  margin: 0 auto;
  padding-top: clamp(26px, 4vw, 44px);
  display: grid;
  gap: clamp(22px, 2.8vw, 36px);
}

.site-footer-top {
  display: grid;
  grid-template-columns: minmax(340px, 1fr) minmax(360px, 430px);
  align-items: center;
  gap: clamp(26px, 6vw, 110px);
}

.site-footer-left {
  display: grid;
  justify-items: start;
  align-content: start;
}

.site-footer-brand {
  display: inline-flex;
  width: clamp(56px, 3.8vw, 72px);
  height: clamp(56px, 3.8vw, 72px);
  margin-bottom: clamp(12px, 1.6vw, 24px);
}

.site-footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer-title {
  margin: 0;
  color: #f2f2f2;
  font-size: clamp(1.62rem, 2.95vw, 2.7rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.site-footer-address {
  margin: clamp(8px, 1vw, 14px) 0 0;
  color: rgba(242, 242, 242, 0.62);
  font-size: clamp(0.84rem, 0.95vw, 1.02rem);
  font-weight: 400;
}

.site-footer-right {
  width: 100%;
  padding: clamp(14px, 1.8vw, 22px);
  border: 1px solid rgba(242, 242, 242, 0.3);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.site-footer-newsletter-label {
  margin: 0;
  color: rgba(242, 242, 242, 0.86);
  font-size: clamp(0.96rem, 0.98vw, 1.08rem);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.site-footer-newsletter-copy {
  margin: 8px 0 14px;
  color: rgba(242, 242, 242, 0.6);
  font-size: clamp(0.82rem, 0.86vw, 0.94rem);
  line-height: 1.28;
}

.site-footer-newsletter {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(242, 242, 242, 0.68);
  background: transparent;
}

.site-footer-newsletter input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #f2f2f2;
  font-family: inherit;
  font-size: clamp(0.95rem, 0.98vw, 1.1rem);
  padding: 0 16px;
  outline: none;
}

.site-footer-newsletter input::placeholder {
  color: rgba(242, 242, 242, 0.56);
}

.site-footer-newsletter button {
  width: clamp(56px, 4vw, 68px);
  border: 0;
  background: #00a46f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.site-footer-newsletter button img {
  width: clamp(22px, 1.8vw, 28px);
  height: auto;
}

.site-footer-newsletter button:hover {
  filter: brightness(1.06);
}

.site-footer-newsletter:focus-within {
  box-shadow: 0 0 0 2px rgba(0, 200, 139, 0.42);
}

.site-footer-bottom {
  border-top: 1px solid rgba(242, 242, 242, 0.22);
  padding-top: clamp(12px, 1.5vw, 18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.site-footer-copyline {
  margin: 0;
  color: rgba(242, 242, 242, 0.54);
  font-size: clamp(0.76rem, 0.8vw, 0.9rem);
  font-weight: 400;
}

.site-footer-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
}

.site-footer-nav a {
  color: rgba(242, 242, 242, 0.8);
  text-decoration: none;
  font-size: clamp(0.8rem, 0.84vw, 0.95rem);
  font-weight: 500;
}

.site-footer-nav a:hover {
  color: var(--accent);
}

.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;
}

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

  .site-footer-right {
    width: min(100%, 620px);
  }

  .site-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .site-footer {
    padding: 20px 0 36px;
  }

  .site-footer-title {
    font-size: clamp(1.34rem, 6.8vw, 2.08rem);
  }

  .site-footer-right {
    padding: 12px;
  }

  .site-footer-newsletter {
    min-height: 50px;
  }

  .site-footer-newsletter input {
    font-size: 0.9rem;
    padding-inline: 12px;
  }

  .site-footer-nav {
    flex-wrap: wrap;
    gap: 12px 16px;
  }
}
