body {
  background-color: var(--color-bg-forest);
}

.home-hero__grid {
  align-items: center;
}

.home-hero__content {
  max-width: 40rem;
}

.home-hero__title-highlight {
  color: var(--color-primary);
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-6);
  margin-bottom: var(--space-4);
}

.home-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
}

.home-hero__meta-text {
  font-size: var(--font-size-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}

.home-hero__media {
  min-height: 320px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-xl);
}

.home-world__grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: var(--space-12);
}

.home-world__image {
  border-radius: var(--radius-xl);
  min-height: 260px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-elevated);
}

.home-world__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.home-section-header__lead {
  max-width: 44rem;
  margin-inline: auto;
}

.home-features-grid .home-feature__list,
.home-gallery__text .home-feature__list,
.home-first-steps__list {
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
  padding-left: 1.25rem;
  color: var(--color-text-muted);
}

.home-features-grid .home-feature__list li,
.home-gallery__text .home-feature__list li,
.home-first-steps__list li {
  margin-bottom: var(--space-2);
}

.home-feature__link {
  font-size: var(--font-size-sm);
}

.home-first-steps__grid {
  gap: var(--space-10);
}

.home-first-steps__block {
  align-self: stretch;
}

.home-first-steps__list {
  counter-reset: steps;
}

.home-first-steps__list li {
  position: relative;
  padding-left: 1.75rem;
  color: black !important;
}

.home-first-steps__list li::before {
  counter-increment: steps;
  content: counter(steps) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--color-primary-dark);
}

.home-gallery__card {
  overflow: hidden;
}

.home-gallery__content {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.3fr);
  gap: var(--space-10);
  align-items: center;
}

.home-gallery__image {
  border-radius: var(--radius-xl);
  min-height: 260px;
  background-size: cover;
  background-position: center;
}

.home-gallery__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.home-updates__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.home-updates-grid {
  align-items: stretch;
}

.home-updates__image {
  border-radius: var(--radius-lg);
  min-height: 160px;
  background-size: cover;
  background-position: center;
  margin-bottom: var(--space-4);
}

.home-updates__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-3);
}

.home-contact-cta__card {
  border-radius: var(--radius-xl);
}

.home-contact-cta__content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.home-contact-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

@media (max-width: 960px) {
  .home-world__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-gallery__content {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .home-hero__media {
    min-height: 260px;
  }

  .home-contact-cta__content {
    align-items: flex-start;
  }
}
