.home-hero {
  position: relative;
}

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

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

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

.home-hero__meta {
  margin-top: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.home-hero__note {
  margin-bottom: 0;
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.home-hero__media {
  position: relative;
}

.home-hero__image {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-elevated);
  border: 1px solid var(--color-border-strong);
  object-fit: cover;
  height: 100%;
}

.home-section {
  display: grid;
  align-items: center;
  gap: var(--space-10);
}

.home-section__content p:last-of-type {
  margin-bottom: 0;
}

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

.home-section__media {
  position: relative;
}

.home-media-card img {
  border-radius: var(--radius-xl);
}

.home-poker__grid,
.home-offers__grid,
.home-testimonials__grid,
.home-why__grid {
  margin-top: var(--space-8);
}

.home-testimonial__text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.home-testimonial__meta {
  font-size: var(--font-size-xs);
  color: var(--color-text-soft);
}

.home-gallery__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.home-gallery__item img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-elevated);
}

.home-booking__quicklinks {
  display: flex;
  align-items: stretch;
}

.home-booking__card {
  width: 100%;
}

.home-booking__list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.home-booking__list a {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.home-why__cta {
  display: flex;
  justify-content: center;
}

@media (max-width: 1024px) {
  .home-hero__layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
}

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

  .home-hero__media {
    order: -1;
  }

  .home-hero__actions {
    justify-content: flex-start;
  }

  .home-section,
  .home-booking {
    gap: var(--space-8);
  }
}

@media (max-width: 480px) {
  .home-hero__actions {
    flex-direction: column;
  }
}
