/* Custom header behavior
   - When the page is scrolled (#header.scrolled), make the header background fully black
   - Preserve transition/animation by using a smooth background-color transition
   - Ensure header text/links contrast as white when scrolled
*/

:root {
  --header-height: 112px;
  --header-anchor-offset: calc(var(--header-height) + 28px);
}

/* Larger header at top: increase min-height so the transparent region is more visible */
/* Header sizing + transitions */
#header {
  transition: background-color 220ms ease, color 220ms ease, min-height 220ms ease, padding 220ms ease;
  min-height: var(--header-height);
  display: flex;
  align-items: center; /* vertically center content */
  padding: 12px 0;
  border-bottom: none;
}

/* Full black when scrolled (site.js toggles this class) */
#header.scrolled {
  background-color: #000 !important;
  color: #fff !important;
}

/* Make links and icons visible when header is scrolled */
#header.scrolled a,
#header.scrolled .navbar a,
#header.scrolled .navbar .dropmenu a,
#header.scrolled .login-status-wrapper,
#header.scrolled .login-status-wrapper i {
  color: #fff !important;
}

/* Keep mobile menu/hamburger contrast as well */
.mobile-container .overlay,
.mobile-menu {
  transition: background-color 220ms ease, color 220ms ease;
}
.mobile-menu {
  display: none;
}

.mobile-container .overlay.open,
.mobile-menu.open,
#header.scrolled .mobile-menu {
  background-color: #000 !important;
  color: #fff !important;
}

@media (max-width: 840px) {
  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    height: var(--header-height);
    padding-right: 1rem;
    width: auto;
  }

  .mobile-menu .button_container {
    position: relative;
    width: 32px;
    height: 24px;
    top: 0;
    transform: none;
  }

  #header.scrolled ~ .mobile-menu {
    height: calc(var(--header-height) * 0.66);
  }
}

.mobile-menu .button_container span {
  background: #fff;
}

/* Top overlay: keep header solid black for first 2/3 and fade to transparent in last 1/3 */
#header {
  position: relative;
  background-color: transparent !important; /* show ::before gradient; become solid on scroll */
}

/* Overlay sits above the header background but behind content */
#header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  /* Keep black for the top 66% and then fade to transparent over the last 34% */
  background: linear-gradient(to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 66%,
    rgba(0,0,0,0) 100%);
  opacity: 1;
  transition: opacity 220ms ease;
}

/* Ensure header content sits above the overlay */
.navbar, .navbar-section, .mobile-logo, .button_container {
  position: relative;
  z-index: 1;
}

/* Center the desktop navigation within the header */
#header .navbar {
  justify-content: center;
}

#header .navbar .navbar-section.desktop-menu {
  flex: 0 1 auto;
  justify-content: center;
}

#header .navbar .navbar-section.desktop-menu .dropmenu {
  margin: 0 auto;
}

/* When scrolled, hide the overlay so the header is pure black */
/* When scrolled: hide overlay and make header fully black (no transparent area)
   Also shrink header to 66% of top height. */
#header.scrolled::before {
  opacity: 0;
  visibility: hidden;
}

#header.scrolled {
  min-height: calc(var(--header-height) * 0.66);
  padding: 6px 0;
  background-color: #000 !important;
}

/* Navigation styling: uppercase, evenly spaced, pipe separators */
.dropmenu > ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0 8px;
  width: 100%;
}
.dropmenu > ul > li {
  display: inline-block;
}
.dropmenu > ul > li > a {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  padding: 6px 8px;
  position: relative;
  text-decoration: none;
}
/* separator between items */
.dropmenu > ul > li:not(:first-child)::before {
  content: "|";
  color: rgba(255,255,255,0.7);
  margin-right: 12px;
  margin-left: 12px;
}

/* Active indicator: small underline at bottom of header under the active link */
.dropmenu > ul > li > a::after {
  content: "";
  position: absolute;
  /* centered under the anchor; JS sets --uw to the text width so the underline centers on the text */
  left: 50%;
  /* shift underline slightly left: adjust --underline-shift as needed (negative = left) */
  transform: translateX(calc(-50% + var(--underline-shift, -9px))) scaleX(0);
  transform-origin: center;
  /* default width fallback; JS will set --uw to the text width */
  width: var(--uw, 40px);
  height: 3px;
  background: #c48d23;
  bottom: -6px; /* sits at bottom edge of header */
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease, width 180ms ease, left 180ms ease;
}
.dropmenu > ul > li.active > a::after {
  transform: translateX(calc(-50% + var(--underline-shift, -6px))) scaleX(1);
  opacity: 1;
}

/* Mobile overlay navigation styling */
.overlay {
  background: rgba(0, 0, 0, 0.96);
}

.overlay nav {
  width: 100%;
}

.overlay-menu {
  padding: 4rem 1.5rem;
  text-align: center;
}

.overlay-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.overlay-menu .treemenu {
  margin: 0;
}

.overlay-menu .treemenu li {
  margin: 0.35rem 0;
  background: transparent !important;
  padding: 0;
}

.overlay-menu .treemenu li a {
  margin-left: 0;
}

.overlay-menu .treemenu .toggler {
  display: none;
}

.overlay-menu li {
  list-style: none;
}

.overlay-menu li a {
  display: inline-block;
  position: relative;
  padding: 0.85rem 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  text-decoration: none;
  font-family: inherit;
  font-weight: 600;
  transition: color 160ms ease;
}

.overlay-menu li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  height: 3px;
  width: var(--uw, 48px);
  background: #c48d23;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease, width 180ms ease;
}

.overlay-menu li.active a::after,
.overlay-menu li a:hover::after,
.overlay-menu li a:focus::after {
  transform: translateX(-50%) scaleX(1);
  opacity: 1;
}

.overlay-menu li a:hover,
.overlay-menu li a:focus,
.overlay-menu li.active a {
  color: #c48d23;
}

/* Footer: simple black bar with white icons and separators matching header style */
#footer.section {
  background-color: #000 !important;
  color: #fff;
  padding: 18px 0;
}

.section-divider {
  width: 220px;
  height: 3px;
  margin: 18px auto;
  background: linear-gradient(90deg, transparent, #c48d23, transparent);
  opacity: 0.9;
}

.footer-divider {
  margin-top: 22px;
}

#footer .bottom-bar {
  display: flex;
  justify-content: center;
  align-items: center;
}

#footer .bottom-bar__inner {
  display: flex;
  align-items: center;
  gap: 0;
}

#footer .bottom-bar__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  color: #fff;
  text-decoration: none;
  position: relative;
}

/* separator like header: pipe between items */
#footer .bottom-bar__link + .bottom-bar__link::before {
  content: "|";
  position: absolute;
  left: -6px;
  color: rgba(255,255,255,0.7);
}

#footer .bottom-bar__link i {
  color: #fff;
  font-size: 22px;
}

/* Hover and focus feedback for footer icons */
#footer .bottom-bar__link {
  cursor: pointer;
}

#footer .bottom-bar__link i {
  transition: color 160ms ease, transform 160ms ease;
}

#footer .bottom-bar__link:hover i,
#footer .bottom-bar__link:focus i,
#footer .bottom-bar__link:active i {
  color: #c48d23; /* accent color on hover */
  transform: translateY(-3px);
}

#footer .bottom-bar__link:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(196,141,35,0.12);
  border-radius: 4px;
}

/* Per-icon hover colors and behaviors */
/* Instagram: magenta/pink */
#footer .bottom-bar__link:hover i[class*="instagram"],
#footer .bottom-bar__link:focus i[class*="instagram"],
#footer .bottom-bar__link:active i[class*="instagram"] {
  color: #E1306C;
  transform: translateY(-3px);
}

/* YouTube: red */
#footer .bottom-bar__link:hover i[class*="youtube"],
#footer .bottom-bar__link:focus i[class*="youtube"],
#footer .bottom-bar__link:active i[class*="youtube"] {
  color: #FF0000;
  transform: translateY(-3px);
}

/* Facebook: brand blue */
#footer .bottom-bar__link:hover i[class*="facebook"],
#footer .bottom-bar__link:focus i[class*="facebook"],
#footer .bottom-bar__link:active i[class*="facebook"] {
  color: #1877F2;
  transform: translateY(-3px);
}

/* Spotify: green */
#footer .bottom-bar__link:hover i[class*="spotify"],
#footer .bottom-bar__link:focus i[class*="spotify"],
#footer .bottom-bar__link:active i[class*="spotify"] {
  color: #1DB954;
  transform: translateY(-3px);
}

/* TikTok: only motion, keep color unchanged */
#footer .bottom-bar__link:hover i[class*="tiktok"],
#footer .bottom-bar__link:focus i[class*="tiktok"],
#footer .bottom-bar__link:active i[class*="tiktok"] {
  transform: translateY(-6px) scale(1.03);
  color: #fff; /* preserve white */
}

/* Copyright line under the social icons */
#footer .bottom-bar__copyright {
  text-align: center;
  color: #fff;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.3;
  opacity: 0.95;
}

.videos-divider {
  margin-bottom: 3rem;
}

@media (max-width: 600px) {
  #footer.section { padding: 14px 0; }
  #footer .bottom-bar__link { padding: 6px 8px; }
  #footer .bottom-bar__link i { font-size: 20px; }
}

/* Ensure body content starts below the tall fixed header */
body.header-fixed #body-wrapper {
  padding-top: var(--header-anchor-offset, 140px);
}

body.header-fixed .hero + #start > #body-wrapper {
  padding-top: 0;
}

#body-wrapper.modular-body .container {
  padding-bottom: 0;
}

/* Home hero module with full-bleed background + centered logo */
.home-hero-wrapper.section {
  padding: 0;
}

.home-hero-wrapper.section + #start {
  margin-top: 0;
}

body.header-fixed .home-hero-wrapper.section + #start > #body-wrapper {
  padding-top: 0;
}

.home-hero-banner {
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: center calc(50% + var(--hero-bg-shift, 0px));
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  transition: background-position 320ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: background-position;
}

.home-hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.65) 100%);
  opacity: 0.65;
}

.home-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 3rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
  perspective: 1200px;
  perspective-origin: center;
}

.home-hero-logo {
  width: min(640px, 85vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 34px rgba(0,0,0,0.55));
  transform:
    translate3d(0, var(--hero-logo-parallax, 0px), 0)
    rotateX(var(--hero-logo-tilt-x, 0deg))
    rotateY(var(--hero-logo-tilt-y, 0deg));
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), filter 320ms ease;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-banner {
    transition: none;
  }
  .home-hero-logo {
    transition: none;
  }
}

.home-hero-text {
  color: #fff;
  font-size: clamp(1rem, 2.4vw, 1.45rem);
  line-height: 1.5;
  max-width: 640px;
  text-shadow: 0 3px 14px rgba(0,0,0,0.6);
}

/* Tour section styling */
.tour-section {
  text-align: center;
  padding: 2.5rem 0 4rem;
}

.tour-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
}

.tour-heading::after {
  content: "";
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #c48d23, transparent);
}

.tour-track {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.tour-track a {
  color: #c48d23;
  text-decoration: underline;
}

.tour-track__logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  vertical-align: middle;
}

.tour-track__logo {
  height: 52px;
  width: auto;
  max-width: 240px;
  display: block;
  transition: transform 160ms ease;
}

.tour-track__logo-link:hover .tour-track__logo,
.tour-track__logo-link:focus .tour-track__logo {
  transform: translateY(-2px);
}

.tour-table {
  margin: 0 auto;
  max-width: 980px;
  border-top: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.tour-row {
  display: grid;
  grid-template-columns: minmax(150px, 180px) minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid #000;
}

.tour-row:last-child {
  border-bottom: 0;
}

.tour-date {
  text-align: left;
}

.tour-date .full-date {
  display: block;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
}

.tour-venue {
  text-align: left;
}

.tour-venue .venue {
  display: block;
  font-weight: 600;
  font-size: 1rem;
}

.tour-venue .location {
  display: block;
  font-size: 0.95rem;
  opacity: 0.75;
}

.tour-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

.tour-btn {
  min-width: 120px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 1px solid #000;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  border-radius: 4px;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
  background: #fff;
}

.tour-btn:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

.tour-btn.disabled {
  pointer-events: none;
  border-color: #111;
  color: #111;
  background: rgba(0,0,0,0.12);
}

.tour-section .no-upcoming {
  opacity: 0.8;
  font-size: 1.1rem;
}

@media (max-width: 760px) {
  .tour-row {
    grid-template-columns: 1fr;
  }

  .tour-date {
    width: 100%;
  }

  .tour-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .tour-btn {
    flex: 1;
    text-align: center;
  }
}

/* Anchor offset so scroll targets stop below the fixed header */
.modular .modular-anchor-target {
  position: relative;
  display: block;
  height: 1px;
  scroll-margin-top: var(--header-anchor-offset, 140px);
}

@supports not (scroll-margin-top: 1px) {
  .modular .modular-anchor-target::before {
    content: "";
    display: block;
    height: var(--header-anchor-offset, 140px);
    margin-top: calc(var(--header-anchor-offset, 140px) * -1);
  }
}

/* Discography section */
.discography-section {
  position: relative;
  padding: 3rem 0 4rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.discography-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(6px);
  z-index: 0;
}

.discography-inner {
  position: relative;
  z-index: 1;
}

.discography-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2rem;
}

.discography-scroller {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 0 1rem 1rem;
  scroll-snap-type: x mandatory;
  position: relative;
  z-index: 1;
  justify-content: flex-start;
}

@media (min-width: 900px) {
  .discography-scroller {
    justify-content: center;
    margin: 0 auto;
  }
}

.discography-scroller::-webkit-scrollbar {
  height: 6px;
}

.discography-scroller::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.4);
  border-radius: 3px;
}

.album-card {
  flex: 0 0 260px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  padding: 1rem;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.album-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0,0,0,0.2);
}

.album-cover img,
.album-cover__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.album-cover__placeholder {
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.album-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
  color: #fff;
}

.album-title {
  font-size: 1.1rem;
  margin: 0;
  color: #fff;
}

.album-release {
  font-size: 0.9rem;
  opacity: 0.75;
  margin: 0;
}

.album-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.album-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.7rem;
  text-decoration: none;
  transition: color 160ms ease;
  text-decoration: none;
}

.album-link--spotify:hover {
  text-decoration: none;
  color: #1DB954;
}

.album-link--apple:hover {
  text-decoration: none;
  color: #000;
}

.discography-empty {
  text-align: center;
  opacity: 0.7;
}

.footer-section {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 2rem;
}

/* Videos section */
.videos-section {
  padding: 3rem 0 4rem;
  text-align: center;
}

.videos-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.videos-carousel {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.videos-frame {
  flex: 1;
  max-width: 960px;
  position: relative;
  overflow: hidden;
}

.videos-embed {
  width: 100%;
  height: 540px;
  display: none;
}

.videos-embed.active {
  display: block;
}

.videos-nav {
  background: transparent;
  color: #000;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  transition: color 160ms ease;
}

.videos-nav:hover {
  color: #c48d23;
}

@media (max-width: 840px) {
  .videos-embed {
    height: 320px;
  }
}

/* About section */
.about-needless-section {
  position: relative;
  padding: 3rem 0 4rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-bottom: 0;
  overflow: hidden;
}

.about-needless-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
  z-index: 0;
}

.about-needless-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #111;
}

.about-band-photo {
  margin: 0 auto 1.5rem;
  max-width: 1170px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.about-band-photo img {
  width: 100%;
  display: block;
  height: auto;
}

.about-label {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 1.5rem 0;
}

.about-members {
  margin: 0 auto 2rem;
  max-width: 640px;
}

.about-members__heading {
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.about-members__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}

.about-member {
  background: rgba(255,255,255,0.7);
  border-radius: 10px;
  padding: 0.85rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.about-member__name {
  display: block;
  font-weight: 600;
}

.about-member__instrument {
  display: block;
  font-size: 0.9rem;
  opacity: 0.8;
}

.about-member__since {
  display: block;
  font-size: 0.85rem;
  opacity: 0.7;
}

.about-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 720px) {
  .about-needless-inner {
    padding: 0 1.5rem;
  }
  .about-members__list {
    grid-template-columns: 1fr;
  }
  .about-content {
    padding: 0 1.25rem;
    word-break: break-word;
    hyphens: auto;
  }
}

/* ---------- EPK PAGE STYLING ---------- */
body.epk-page {
  background-color: #050505;
  color: #f5f5f5;
}

.epk-intro {
  padding-top: calc(var(--header-anchor-offset));
}

.epk-intro__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.epk-kicker {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.25rem;
}

.epk-intro__header h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 3.6rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.epk-intro__body {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.epk-intro__body p {
  margin-bottom: 1.25rem;
}

.epk-presskit-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1.8rem;
  background: #c48d23;
  color: #000 !important;
  border: 1px solid #c48d23;
  border-radius: 999px;
  text-decoration: none;
  text-decoration-color: transparent;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
  align-self: flex-end;
}

.epk-presskit-link i {
  font-size: 0.95rem;
}

.epk-presskit-link:hover,
.epk-presskit-link:focus {
  background: #2ec27e;
  border-color: #2ec27e;
  color: #000 !important;
  text-decoration: none;
  transform: translateY(-2px);
}

.epk-content {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.epk-section-label {
  text-align: left;
  margin-bottom: 1rem;
  align-self: flex-start;
  width: 100%;
}

.epk-section-label h2 {
  margin: 0;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 1.2rem;
}

.epk-embed-block {
  margin-bottom: 2.5rem;
}

.epk-reviews {
  padding: 2rem 0 1rem;
}

.epk-reviews__header {
  text-align: left;
  margin-bottom: 2rem;
}

.epk-reviews__header h2 {
  margin: 0;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 1.4rem;
}

.epk-reviews__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.epk-review {
  width: min(100%, 760px);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 0 auto;
  align-items: stretch;
}

.epk-review__bubble {
  position: relative;
  background: rgba(15,15,16,0.85);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 1.5rem 1.5rem 3rem;
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(0,0,0,0.45);
  text-align: left !important;
  width: 100%;
}

.epk-review__bubble * {
  text-align: left !important;
}

.epk-review__bubble i {
  position: absolute;
  top: 1.1rem;
  left: 1.2rem;
  color: #c48d23;
  opacity: 0.9;
}

.epk-review__quote {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.86);
  text-align: left !important;
  width: 100%;
}

.epk-review__meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.epk-review__author {
  font-weight: 600;
}

.epk-review__outlet {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.75;
  display: block;
  text-align: center;
  margin-bottom: 0.75rem;
}

.epk-flex {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.epk-embeds {
  width: min(100%, 860px);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.epk-card {
  background: rgba(13, 13, 14, 0.8);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 1.25rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.epk-card h2 {
  margin-top: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
}

.embed-responsive {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}

.embed-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.bandcamp-player {
  padding-top: 0;
  height: 720px;
  max-width: 460px;
  margin: 0 auto;
  position: relative;
}

.bandcamp-player iframe {
  position: static;
  width: 100%;
  height: 100%;
}

.video-player {
  padding-top: 56.25%;
}

.epk-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 1.25rem;
  width: min(100%, 1100px);
  margin: 0 auto;
}

.epk-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.45);
  cursor: zoom-in;
}

.epk-gallery__item:nth-child(3n) {
  grid-row: span 2;
}

.epk-gallery__item:nth-child(4n) {
  grid-column: span 2;
}

.epk-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.1);
  transition: transform 220ms ease;
}

.epk-gallery__item:hover img {
  transform: scale(1.05);
}

.epk-gallery__item:focus {
  outline: 2px solid #c48d23;
  outline-offset: 4px;
}

.epk-gallery__item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  padding: 0.9rem 1.15rem;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0.9) 100%);
}

.epk-gallery__download {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
  text-decoration: none;
  text-decoration-thickness: 0;
  text-underline-offset: 0;
  text-decoration-color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.epk-gallery__download:hover,
.epk-gallery__download:focus {
  background: rgba(196,141,35,0.9);
  border-color: rgba(196,141,35,1);
  color: #000;
  transform: translateY(-2px);
  text-decoration: none;
}

.epk-gallery__download i {
  margin: 0;
}

.epk-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.epk-lightbox.is-active {
  display: flex;
}

.epk-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
}

.epk-lightbox__body {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.epk-lightbox__image {
  max-width: 100%;
  max-height: 72vh;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.55);
  position: relative;
}

.epk-lightbox__close {
  position: fixed;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
}

.epk-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0,0,0,0.5);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 180ms ease;
}

.epk-lightbox__nav:hover {
  background: rgba(0,0,0,0.75);
}

.epk-lightbox__nav--prev {
  left: -60px;
}

.epk-lightbox__nav--next {
  right: -60px;
}

.epk-lightbox__caption {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.epk-lightbox__text {
  margin: 0;
  max-width: 60ch;
}

.epk-lightbox__download-icon {
  position: absolute;
  right: 0.5rem;
  bottom: 2rem;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.epk-lightbox__download-icon:hover,
.epk-lightbox__download-icon:focus {
  background: rgba(196,141,35,0.9);
  border-color: rgba(196,141,35,1);
  color: #000;
  transform: translateY(-2px);
}

body.epk-lightbox-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .epk-flex {
    align-items: stretch;
  }
  .epk-embeds {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .epk-intro__header h1 {
    font-size: 2.2rem;
  }
  .epk-presskit-link {
    width: 100%;
    justify-content: center;
  }
  .epk-gallery {
    grid-auto-rows: 180px;
  }
  .epk-gallery__item:nth-child(4n),
  .epk-gallery__item:nth-child(3n) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .epk-lightbox__nav--prev {
    left: -20px;
  }
  .epk-lightbox__nav--next {
    right: -20px;
  }
.epk-review__bubble {
    padding-left: 2.5rem;
  }
}
