:root {
  --home-gradient-soft: radial-gradient(circle at top left, rgba(245, 166, 199, 0.18), transparent 55%);
}

.hero {
  background-color: #0b0709;
}

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

.home-welcome__text {
  max-width: 520px;
}

.home-welcome__actions {
  margin-top: var(--space-6);
}

.home-welcome__card {
  align-self: stretch;
}

.home-highlights {
  position: relative;
}

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

.home-highlights__image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.home-highlights__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-highlight-item {
  backdrop-filter: blur(20px);
}

.home-experiences__grid {
  align-items: stretch;
}

.home-experience-item {
  display: flex;
  flex-direction: column;
}

.home-experience-item .card__actions {
  margin-top: auto;
}

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

.home-events__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.home-events__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-events__list {
  display: grid;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.home-events__item h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
}

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

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

.home-reservation__summary {
  align-self: stretch;
}

.home-reservation__steps {
  list-style: decimal;
  padding-left: 1.4rem;
  display: grid;
  gap: var(--space-3);
}

.home-testimonials__grid {
  align-items: stretch;
}

.home-testimonial {
  display: flex;
  flex-direction: column;
}

.home-testimonial__quote {
  font-style: italic;
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.home-testimonial__author {
  font-size: var(--font-size-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}

.home-discover {
  align-items: stretch;
  gap: var(--space-8);
}

.home-discover__intro {
  max-width: 420px;
}

.home-discover__card {
  display: flex;
  flex-direction: column;
}

.home-discover__card .card__actions {
  margin-top: auto;
}

.home-community {
  background-image: radial-gradient(circle at top right, rgba(245, 166, 199, 0.2), transparent 55%);
}

.home-community__card {
  align-self: stretch;
}

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

@media (max-width: 960px) {
  .home-events__grid,
  .home-reservation,
  .home-community .grid-2 {
    row-gap: var(--space-8);
  }
}

@media (max-width: 768px) {
  .section__intro {
    margin-bottom: var(--space-6);
  }

  .home-reservation__actions,
  .home-community__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .home-events__media,
  .home-highlights__image-wrapper {
    border-radius: var(--radius-lg);
  }
}
