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

.hero-copy {
  max-width: 640px;
}

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

.hero-note {
  margin-top: var(--space-8);
}

.hero-note p {
  margin-top: var(--space-4);
}

.hero-media {
  max-height: 420px;
}

.events-grid {
  align-items: stretch;
}

.event-card {
  display: flex;
  flex-direction: column;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
  margin-top: var(--space-4);
}

.event-time {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.event-cta {
  margin-top: auto;
  padding-top: var(--space-6);
}

.section-with-media {
  padding-top: var(--space-24);
}

.section-media-grid {
  align-items: center;
}

.section-media {
  max-width: 520px;
}

.section-copy .feature-list {
  display: grid;
  gap: var(--space-4);
}

.section-copy .feature-list h3 {
  margin-bottom: var(--space-2);
}

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

.schedule-section {
  padding-top: var(--space-24);
}

.schedule-card {
  display: grid;
  gap: var(--space-6);
}

.schedule-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: var(--space-6);
}

.schedule-row:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.schedule-main {
  flex: 1 1 240px;
  max-width: 640px;
}

.schedule-main h3 {
  margin-bottom: var(--space-2);
}

.schedule-meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: flex-end;
  justify-content: center;
  min-width: 180px;
}

.schedule-time {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.schedule-footer {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-2);
}

.schedule-footer p {
  max-width: 520px;
}

.booking-grid {
  align-items: flex-start;
  gap: var(--space-12);
}

.booking-form .form-group:last-child {
  margin-bottom: 0;
}

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

  .hero-media {
    order: -1;
  }

  .schedule-meta {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .hero-actions,
  .section-cta,
  .schedule-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .schedule-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .schedule-meta {
    flex-direction: row;
    gap: var(--space-4);
  }
}
