section.section--welcome {
  background: radial-gradient(circle at 0% 0%, rgba(255, 184, 0, 0.16), transparent 55%), radial-gradient(circle at 100% 100%, rgba(0, 194, 255, 0.16), transparent 55%);
}

.section-welcome__grid {
  align-items: center;
  gap: var(--space-8);
}

.section-heading--left {
  text-align: left;
}

.section-heading--left .section-heading__subtitle {
  margin-left: 0;
  margin-right: 0;
}

.welcome-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.welcome-highlights h3 {
  font-size: var(--font-size-lg);
  margin-bottom: 0.15rem;
}

.welcome-card-wrapper {
  max-width: 420px;
  margin-left: auto;
}

.welcome-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.welcome-card h3 {
  margin-top: var(--space-3);
  margin-bottom: var(--space-3);
}

.section--featured {
  background-color: var(--color-bg-soft);
}

.featured-grid {
  max-width: 920px;
  margin: 0 auto;
}

.featured-card__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-md);
}

.featured-card__body h3 {
  margin-bottom: var(--space-3);
}

.featured-points {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: var(--space-3);
  margin-bottom: var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.featured-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.section--upcoming {
  background: linear-gradient(135deg, rgba(255, 75, 139, 0.04), rgba(124, 92, 255, 0.04));
}

.upcoming-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: var(--space-8);
  align-items: center;
}

.upcoming-layout__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.upcoming-layout__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.upcoming-item h3 {
  font-size: var(--font-size-xl);
  margin-bottom: 0.4rem;
}

.upcoming-item p {
  margin-bottom: 0.35rem;
}

.upcoming-cta {
  margin-top: var(--space-2);
}

.advantages-grid {
  margin-top: var(--space-6);
}

.advantage-item h3 {
  margin-bottom: 0.4rem;
}

.section--cta {
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}

.cta-strip__content--home {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.cta-strip__text {
  max-width: 540px;
}

.cta-strip__text h2 {
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.cta-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.section--testimonials {
  background-color: var(--color-bg-soft);
}

.testimonials-grid {
  margin-top: var(--space-4);
}

.testimonial blockquote {
  margin: 0 0 var(--space-3) 0;
}

.testimonial__meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: var(--font-size-sm);
}

.testimonial__name {
  font-weight: 600;
  color: var(--color-text);
}

.testimonial__role {
  color: var(--color-text-soft);
}

.section--gallery {
  padding-top: var(--space-10);
  padding-bottom: var(--space-12);
}

.gallery-moments {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-6);
  align-items: center;
}

.gallery-moments__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.gallery-moments__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-moments__footer {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.gallery-moments__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

@media (max-width: 1023.98px) {
  .upcoming-layout {
    grid-template-columns: 1fr;
  }

  .gallery-moments {
    grid-template-columns: 1fr;
  }

  .welcome-card-wrapper {
    max-width: 100%;
  }
}

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

  .section--gallery {
    padding-top: var(--space-8);
    padding-bottom: var(--space-10);
  }

  .featured-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-strip__content--home {
    align-items: flex-start;
  }
}
