/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/
/* Base (mobile first) */
#hero-81 {
  text-align: center;
  padding: clamp(3rem, 10vw, 7.5rem) 1rem clamp(2.5rem, 8vw, 7.5rem);
  position: relative;
  z-index: 1;
}
#hero-81 .cs-container {
  width: 100%;
  max-width: 67.5rem;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
#hero-81 .cs-hero-image,
#hero-81 .cs-hero-logo {
  display: block;
  width: clamp(17.5rem, 90vw, 46.875rem);
  height: auto;
}
#hero-81 .cs-hero-image {
  width: clamp(13.125rem, 67.5vw, 35.15625rem);
  margin-bottom: -6.25rem;
}
#hero-81 .cs-hero-image img,
#hero-81 .cs-hero-logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
#hero-81 .cs-title {
  font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
  font-weight: 700;
  line-height: 1.2em;
  text-align: center;
  max-width: 51.8125rem;
  margin: 0 auto clamp(1rem, 4vw, 1.5rem);
  color: #fff;
  position: relative;
}
#hero-81 .cs-title:after {
  content: '';
  width: clamp(3.75rem, 9.5vw, 6.25rem);
  height: clamp(0.25rem, 0.8vw, 0.5rem);
  margin: clamp(1rem, 4vw, 1.5rem) auto clamp(1rem, 4vw, 1.5rem);
  background: var(--primary);
  opacity: 1;
  position: relative;
  display: block;
}
#hero-81 .cs-text {
  font-size: clamp(1rem, 1.95vw, 1.5625rem);
  line-height: 1.5em;
  text-align: center;
  width: 100%;
  max-width: clamp(29rem, 60vw, 50rem);
  margin: 0 auto;
  margin-bottom: clamp(2.5rem, 4vw, 3rem);
  color: #fff;
}
/* Small desktop (787px) */
@media only screen and (min-width: 49.1875rem) {
  #hero-81 .cs-hero-image {
    margin-bottom: -13.25rem;
  }
}
/* Large (1300px) — only when necessary */
@media only screen and (min-width: 81.25rem) {
  #hero-81 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
  #hero-81 .cs-background img {
    display: none;
  }
}

/*-- -------------------------- -->
<---     EPK Index Sections     -->
<--- -------------------------- -*/

/* Mobile First Audio Section */
#epk-container {
    padding: 2rem 1rem;
}

.audio-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 100%;
}

.audio-player {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1rem;
    box-sizing: border-box;
}

.audio-player audio {
    width: 100%;
    height: 40px;
}

.audio-title {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
}

/* Bio Section */
#epk-bio {
    padding: 2rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#epk-bio .cs-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Media Preview Section */
#media-preview {
    padding: 2rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

#media-preview .cs-title {
    margin-left: auto;
    margin-right: auto;
}

#media-preview #button-box-838 {
    margin-left: auto;
    margin-right: auto;
}

.media-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.media-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    aspect-ratio: 4 / 3;
    display: block;
    text-decoration: none;
}

.media-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.media-item:hover img {
    transform: scale(1.05);
}

.media-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.media-item:hover .media-overlay {
    opacity: 1;
}

.media-overlay span {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gallery-cta {
    text-align: center;
}

/* Small desktop (787px) */
@media only screen and (min-width: 49.1875rem) {
    #epk-container {
        padding: 3rem 2rem;
    }

    .audio-section {
        gap: 2rem;
        max-width: 600px;
        margin: 0 auto;
    }

    .audio-player {
        padding: 1.5rem;
    }

    .audio-player audio {
        height: 50px;
    }

    .audio-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    #epk-bio {
        padding: 3rem 2rem;
    }

    #media-preview {
        padding: 3rem 2rem;
    }

    .media-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/*-- -------------------------- -->
<---       Contact Strip        -->
<--- -------------------------- -*/
/* Base (mobile first) */
#contact-strip-325 {
  padding: var(--sectionPadding);
  background-color: #1a1a1a;
}
#contact-strip-325 .cs-stat-group {
  width: 100%;
  max-width: 37.5rem;
  margin: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}
#contact-strip-325 .cs-item {
  list-style: none;
  width: 18.125rem;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#contact-strip-325 .cs-item:hover .cs-picture {
  background-color: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transform: scale(1.05);
}
#contact-strip-325 .cs-picture {
  width: 5rem;
  height: 5rem;
  margin-right: clamp(0.75rem, 3vw, 1.25rem);
  border: 1px solid var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s, box-shadow 0.3s, transform 0.6s;
  flex: none;
}
#contact-strip-325 .cs-flex-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
#contact-strip-325 .cs-icon {
  width: 2.0625rem;
  height: auto;
}
#contact-strip-325 .cs-header {
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.2em;
  margin: 0;
  margin-bottom: 0.75rem;
  color: var(--bodyTextColorWhite);
  display: block;
}
#contact-strip-325 .cs-link {
  font-size: var(--bodyFontSize);
  line-height: 1.5em;
  text-decoration: none;
  color: #828282;
  display: block;
  transition: color 0.3s;
}
#contact-strip-325 .cs-link:hover {
  color: var(--primary);
}
/* Tablet (361px) */
@media only screen and (min-width: 22.5625rem) {
  #contact-strip-325 .cs-stat-group {
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 1.25rem;
    row-gap: 2rem;
  }
}
/* Large (1025px) */
@media only screen and (min-width: 64.0625rem) {
  #contact-strip-325 .cs-stat-group {
    max-width: 80rem;
    justify-content: space-evenly;
    flex-wrap: nowrap;
  }
}