.home { }

.home-hero-content {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.home-hero-text { max-width: 65ch; }

.home-hero-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  justify-content: center;
}

.home-intro-grid { text-align: center; }
.home-intro-block { max-width: 50ch; margin-inline: auto; }

.home-dinner-grid { align-items: start; }
.home-dinner-text { max-width: 65ch; }

.home-poker-grid > div { max-width: 50ch; }

.home-themed-grid > div { text-align: center; max-width: 55ch; margin-inline: auto; }

.home-events-grid > div { max-width: 60ch; }

.home-quote-wrap {
  text-align: center;
  max-width: 50ch;
  margin-inline: auto;
}

.home-discover-grid a {
  text-decoration: none;
}

.home-cta-wrap {
  text-align: center;
  max-width: 45ch;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

@media (max-width: 900px) {
  .home-hero-content { grid-template-columns: 1fr; }
}