<style>
  /* ---------- Custom Font ---------- */
  @font-face {
    font-family: 'Lumios Marker';
    src: url('https://go.apbbuilders.com/hubfs/APB%202023/Fonts/Lumios%20Marker.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
  }

  /* ---------- Wrapper & container ---------- */
  .hero-wrapper {
    /* Changed: light gradient background instead of photo */
    background: linear-gradient(180deg, #fff 0%, #f4f4f4 100%);
    color: #191925; /* Dark text for light bg */
    padding: 120px 0 80px;
    text-align: center;
  }
  .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* ---------- Eyebrow ---------- */
  .hero-eyebrow {
    font-family: 'Lumios Marker', cursive;
    font-size: 35px;
    text-transform: none;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #F2182E, #BA0930);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  /* ---------- Main Heading ---------- */
  .hero-heading {
    font-size: 70px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 30px;
    background: linear-gradient(90deg, #191925, #000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  /* ---------- Event Info Row ---------- */
  .hero-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 24px; /* tightened for new paragraph */
    flex-wrap: wrap;
  }
  .hero-info-item {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    color: #191925;
  }
  .hero-info-item img {
    height: 15px;
    width: auto;
    margin-right: 8px;
  }

  /* ---------- Subtext Paragraph (NEW) ---------- */
  .hero-subtext {
    max-width: 900px;
    margin: 0 auto 28px; /* space below paragraph before CTA */
    color: #3a3a3a;
    font-size: 20px;
    line-height: 1.5;
  }

  /* ---------- CTA Button (moved above video) ---------- */
  .hero-cta-wrap {
    margin: 0 0 36px; /* space before video */
  }
  .hero-button {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    background-image: linear-gradient(90deg, #F2182E, #BA0930);
    color: #fff !important;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 20px;
    transition: opacity .2s, transform .06s ease;
  }
  .hero-button:hover {
    opacity: 0.9;
    background-image: linear-gradient(90deg, #191925, #000000);
    color: #fff !important;
  }
  .hero-button:active { transform: scale(0.98); }

  /* ---------- Video ---------- */
  .hero-video-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
    transition: transform .75s ease-out;
    will-change: transform;
  }
  .hero-video-wrapper video,
  .hero-video-wrapper iframe,
  .hero-video-wrapper wistia-player {
    display: block;
    width: 100%;
    height: auto;
  }

  /* ---------- Responsive ---------- */
  @media (max-width: 768px) {
    .hero-wrapper {
      padding: 60px 0 40px;
    }
    .hero-eyebrow {
      font-size: 18px;
      margin-bottom: 15px;
    }
    .hero-heading {
      font-size: 36px;
      margin-bottom: 20px;
    }
    .hero-info {
      flex-direction: column;
      gap: 20px;
      margin-bottom: 16px;
    }
    .hero-info-item {
    justify-content: center;
    text-align: center;
  }
    .hero-subtext {
      font-size: 18px;
      margin-bottom: 22px;
      padding: 0 8px;
    }
    .hero-cta-wrap {
      margin-bottom: 24px;
    }
  }
</style>