body {
  background-image: radial-gradient(circle at top left, #faf4eb, #f7f3ed);
}

.hero--home {
  min-height: 72vh;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.5fr);
  background: #0f0b07;
  color: #fdfaf6;
}

.hero-media {
  position: relative;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.hero-inner--home {
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 32rem;
  margin-left: auto;
}

.hero-kicker {
  font-family: var(--font-decorative);
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 244, 236, 0.85);
}

.hero-title {
  margin-top: var(--space-4);
}

.hero-subtitle {
  margin-top: var(--space-4);
}

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

.hero-meta {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.section-text {
  align-self: center;
}

.section-text .lead {
  margin-bottom: var(--space-4);
}

.section-links {
  margin-top: var(--space-4);
}

.section-media {
  align-self: stretch;
  display: flex;
  align-items: center;
}

.section-header {
  margin-bottom: var(--space-7);
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr);
  justify-content: center;
  gap: var(--space-5);
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
}

.cta-card {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

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

  .hero-media {
    max-height: 320px;
  }

  .hero-inner--home {
    padding-top: var(--space-8);
    padding-bottom: var(--space-9);
  }

  .hero-content {
    margin: 0 auto;
  }
}

@media (max-width: 767.98px) {
  .hero-inner--home {
    padding-top: var(--space-7);
    padding-bottom: var(--space-8);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

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