body {
  background-color: var(--color-background);
}

.home-hero {
  position: relative;
}

.home-hero-layout {
  align-items: center;
}

.home-hero-content {
  max-width: 640px;
}

.home-hero-lead {
  font-size: var(--font-size-lg);
}

.home-hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

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

.home-hero-note {
  font-size: var(--font-size-sm);
}

.home-hero-media {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.home-hero-figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border-strong);
  box-shadow: var(--shadow-elevated);
}

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

.home-hero-stats-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

.home-hero-stat-label {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
}

.home-hero-stat-value {
  font-size: var(--font-size-xl);
  font-weight: 600;
}

.home-program-grid {
  margin-top: var(--space-10);
}

.home-program-card {
  height: 100%;
}

.home-program-links a {
  min-width: 220px;
}

.home-upcoming-layout {
  gap: var(--space-10);
  align-items: center;
}

.home-upcoming-figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border-strong);
  box-shadow: var(--shadow-elevated);
}

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

.home-poker-layout {
  gap: var(--space-10);
  align-items: center;
}

.home-poker-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-top: var(--space-6);
}

.home-poker-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--space-5);
  align-items: flex-start;
}

.home-poker-subtitle {
  margin-bottom: var(--space-2);
}

.home-poker-figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border-strong);
  box-shadow: var(--shadow-elevated);
}

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

.home-formats-layout {
  gap: var(--space-10);
}

.home-format-grid {
  margin-top: var(--space-6);
  gap: var(--space-6);
}

.home-format-title {
  margin-bottom: var(--space-3);
}

.home-format-list {
  margin-top: var(--space-4);
  list-style: disc;
  padding-left: var(--space-8);
  color: var(--color-text-soft);
  font-size: var(--font-size-sm);
}

.home-formats-card {
  height: 100%;
}

.home-format-aside-title {
  margin-bottom: var(--space-4);
}

.home-format-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.home-format-steps li span {
  display: block;
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.home-venues-layout {
  gap: var(--space-10);
  align-items: center;
}

.home-venues-figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border-strong);
  box-shadow: var(--shadow-elevated);
}

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

.home-venue-tags {
  margin-top: var(--space-6);
  gap: var(--space-6);
}

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

.home-faq-contact-layout {
  gap: var(--space-10);
}

.home-faq-list {
  margin-top: var(--space-4);
}

.home-contact-form {
  margin-top: var(--space-4);
}

.home-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
}

.home-contact-field {
  margin-bottom: var(--space-4);
}

.home-contact-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.home-contact-privacy {
  font-size: var(--font-size-xs);
}

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

.home-final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

@media (max-width: 900px) {
  .home-hero-layout {
    gap: var(--space-10);
  }

  .home-hero-stats-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-poker-list li {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .home-final-cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .home-hero {
    padding-top: var(--space-16);
  }

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

  .home-hero-stats-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-final-cta-actions {
    width: 100%;
  }

  .home-final-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
