.site-footer {
  margin-top: 52px;
  padding: 34px 0;
  background: linear-gradient(180deg, #24351d 0%, #1d2b18 100%);
  color: rgba(255, 255, 255, 0.92);
}

.site-footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-footer__logo {
  width: 78px;
  height: 78px;
  object-fit: contain;
  flex-shrink: 0;
}

.site-footer__brand-copy {
  display: grid;
  gap: 6px;
}

.site-footer__title {
  margin: 0;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 0.95;
}

.site-footer__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.4;
}

.site-footer__meta {
  display: grid;
  gap: 8px;
  justify-items: end;
  text-align: right;
}

.site-footer__meta p {
  margin: 0;
  line-height: 1.45;
}

.site-footer__meta a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.site-footer__meta a:hover,
.site-footer__meta a:focus-visible {
  opacity: 0.8;
}

.site-footer__weather {
  display: grid;
  gap: 4px;
  margin-top: 4px;
}

.site-footer__weather-topline {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.site-footer__weather-icon {
  display: inline-flex;
  width: 15px;
  height: 15px;
  color: rgba(255, 255, 255, 0.88);
  flex-shrink: 0;
}

.site-footer__weather-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer__weather-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.site-footer__weather-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  line-height: 1.2;
}

.site-footer__powered {
  opacity: 0.88;
}

@media (max-width: 900px) {
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__meta {
    justify-items: start;
    text-align: left;
  }

  .site-footer__weather-topline,
  .site-footer__weather-stats {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .site-footer {
    padding: 28px 0;
  }

  .site-footer__brand {
    align-items: flex-start;
  }

  .site-footer__logo {
    width: 68px;
    height: 68px;
  }

  .site-footer__title {
    font-size: 1.6rem;
  }
}