/* Lifestyle transition strip — compact, between hero stats and gateway */
.weather-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-height: 68px;
  padding: 0.875rem 1.5rem;
  box-sizing: border-box;
  background: rgba(4, 12, 8, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(61, 139, 94, 0.2);
  border-bottom: 1px solid rgba(61, 139, 94, 0.2);
  color: rgba(255, 252, 248, 0.92);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.weather-strip--loaded {
  opacity: 1;
}

.weather-strip--updating {
  opacity: 0.55;
}

.weather-strip--error {
  opacity: 0.75;
}

.weather-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  max-width: 1200px;
  width: 100%;
  font-family: var(--font-body, 'DM Sans', sans-serif);
  font-weight: 300;
  line-height: 1.2;
  transition: opacity 0.4s ease;
}

.weather-strip__label {
  font-size: 0.66rem;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 250, 244, 0.78);
  white-space: nowrap;
}

.weather-strip__data {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.65rem;
}

.weather-strip__sep {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(61, 139, 94, 0.45);
  user-select: none;
}

.weather-strip__icon {
  font-size: 1rem;
  line-height: 1;
  opacity: 0.92;
}

.weather-strip__degree {
  font-size: 0.94rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255, 252, 248, 0.96);
  white-space: nowrap;
}

.weather-strip__condition {
  font-size: 0.66rem;
  font-weight: 300;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 248, 240, 0.82);
  white-space: nowrap;
}

@media (max-width: 899px) {
  .weather-strip {
    max-height: none;
    min-height: 52px;
    padding: 0.625rem 1rem;
  }

  .weather-strip__inner {
    flex-direction: column;
    gap: 0.2rem;
  }

  .weather-strip__label {
    font-size: 0.62rem;
    letter-spacing: 0.28em;
  }

  .weather-strip__data {
    gap: 0.45rem;
  }

  .weather-strip__sep--lead {
    display: none;
  }

  .weather-strip__degree {
    font-size: 0.88rem;
  }

  .weather-strip__condition {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .weather-strip,
  .weather-strip__inner {
    transition: none;
  }
}
