/* ============================================================
   Problemkiddz — site.css
   Hand-written stylesheet replacing the Elementor main.css dump.
   Matches the live design (problemkiddz.com).
   Sections:
     1. Fonts (self-hosted Montserrat + Font Awesome brands)
     2. Tokens, reset, base
     3. Header
     4. Social icons
     5. Home page blocks
     6. Producers page
     7. Releases page
     8. Digital Museum page
     9. Gallery
    10. Footer
    11. Lightbox, audio, a11y
    12. Responsive
   ============================================================ */

/* ---------- 1. Fonts ---------- */

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/montserrat-jtusjig1_i6t8kchkm459wlhyw.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/montserrat-jtusjig1_i6t8kchkm459wlhyw.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/montserrat-jtusjig1_i6t8kchkm459wlhyw.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/montserrat-jtusjig1_i6t8kchkm459wlhyw.woff2') format('woff2');
}
@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('../fonts/fa-brands-400.woff2') format('woff2');
}

.fab {
  display: inline-block;
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-facebook-f:before { content: "\f39e"; }
.fa-soundcloud:before { content: "\f1be"; }
.fa-instagram:before  { content: "\f16d"; }
.fa-apple:before      { content: "\f179"; }
.fa-youtube:before    { content: "\f167"; }

/* ---------- 2. Tokens, reset, base ---------- */

:root {
  --pk-orange: #FF7900;
  --pk-white: #FFFFFF;
  --pk-ink: #000000;
  --pk-blue: #00426A;
  --pk-blue-soft: rgba(0, 66, 106, 0.75);
  --pk-container: 1140px;
  --pk-gap: 20px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--pk-ink);
  background: var(--pk-white);
}

h1, h2, h3, h4, h5, h6,
p, ul, ol, figure, blockquote { margin: 0; }

ul, ol { padding: 0; }
li { list-style: none; }

img {
  max-width: 100%;
  height: auto;
  border: 0;
}

a { color: inherit; }
a:focus-visible { outline: 2px solid var(--pk-orange); outline-offset: 2px; }

:where(button, input, select, textarea) {
  font: inherit;
  color: inherit;
}

.container {
  max-width: var(--pk-container);
  margin-inline: auto;
  padding-inline: 15px;
}

main {
  display: flow-root;
}

body.home-page {
  background-color: var(--pk-white);
  background-image: url('../images/2025/06/Cover_Problemkiddz_Background_25.png');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* ---------- 3. Header ---------- */

.site-header {
  min-height: 255px;
  display: flex;
  align-items: flex-start;
  padding-top: 36px;
  background-color: var(--pk-ink);
  background-image: url('../images/2025/06/Cover_Problemkiddz_Background_25.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.site-header__inner {
  width: 100%;
  max-width: var(--pk-container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 15px;
  background: var(--pk-orange);
}

.site-nav { display: flex; align-items: center; }

.site-nav__menu {
  display: flex;
  margin: 0;
  padding: 0;
}

.site-nav__link {
  display: inline-block;
  padding: 10px 5px;
  color: var(--pk-white);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}
.site-nav__link:hover,
.site-nav__link:focus,
.site-nav__link[aria-current='page'] { color: var(--pk-white); }
.site-nav__link[aria-current='page'] { font-weight: 600; }

.site-nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 3px;
  background: var(--pk-white);
  color: var(--pk-orange);
  cursor: pointer;
}
.site-nav__icon {
  position: relative;
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: background 0.2s;
}
.site-nav__icon::before,
.site-nav__icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s;
}
.site-nav__icon::before { top: -7px; }
.site-nav__icon::after  { top: 7px; }
.site-nav.is-open .site-nav__icon { background: transparent; }
.site-nav.is-open .site-nav__icon::before { transform: translateY(7px) rotate(45deg); }
.site-nav.is-open .site-nav__icon::after  { transform: translateY(-7px) rotate(-45deg); }

.site-header__sound {
  margin: 0;
  color: var(--pk-white);
  font-size: 1rem;
  white-space: nowrap;
}
.site-audio {
  color: var(--pk-white);
  text-decoration: none;
  cursor: pointer;
}
.site-audio:hover { color: var(--pk-white); }
.site-audio[data-audio='on'] { font-weight: 700; }
.site-header.is-sound-off .site-audio[data-audio='on'] { font-weight: 400; }
.site-header.is-sound-off .site-audio[data-audio='off'] { font-weight: 700; }

/* ---------- 4. Social icons ---------- */

.site-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.social-icon {
  --icon-size: 25px;
  --icon-padding: 0.5em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(var(--icon-size) + (var(--icon-padding) * 2));
  height: calc(var(--icon-size) + (var(--icon-padding) * 2));
  border-radius: 50%;
  background: #69727d;
  color: var(--pk-white);
  text-decoration: none;
  transition: opacity 0.2s;
}
.social-icon i { color: var(--pk-white); font-size: var(--icon-size); }
.social-icon svg { width: var(--icon-size); height: var(--icon-size); fill: currentColor; }
.social-icon:hover { color: var(--pk-white); opacity: 0.9; }

/* Home hero socials — white circles, orange glyphs */
.hero__socials .social-icon {
  --icon-size: 30px;
  background: var(--pk-white);
  color: var(--pk-orange);
  border: 1px solid var(--pk-orange);
}
.hero__socials .social-icon i { color: var(--pk-orange); }
.hero__socials .social-icon svg { fill: var(--pk-orange); }

/* Museum socials — orange circles, white glyphs */
.museum-head__youtube {
  --icon-size: 35px;
  background: var(--pk-orange);
}

/* Footer socials — white circles, orange glyphs */
.site-footer__socials .social-icon {
  --icon-size: 30px;
  background: var(--pk-white);
  color: var(--pk-orange);
}
.site-footer__socials .social-icon i { color: var(--pk-orange); }
.site-footer__socials .social-icon svg { fill: var(--pk-orange); }

/* ---------- 5. Home page blocks ---------- */

/* Hero split */
.hero {
  position: relative;
  display: flex;
  align-items: stretch;
  background: var(--pk-white);
  padding-inline: max(calc((100% - var(--pk-container)) / 2), 15px);
}
.hero__media { flex: 0 0 64%; }
.hero__media figure { margin: 0; line-height: 0; }
.hero__media img { margin-top: -95px; display: block; width: 100%; }
.hero__copy {
  flex: 0 0 36%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 10px;
}
.hero__copy h1 {
  margin: 0 0 0 -186px;
  font-size: 6.7rem;
  font-weight: 700;
  line-height: 0.9em;
  color: var(--pk-orange);
}
.hero__tagline {
  margin: 20px 0;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--pk-ink);
}
.hero__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Digital Theatre Stage band */
.stage {
  padding: 65px 15px;
  background: var(--pk-blue-soft);
  text-align: center;
}
.stage > * {
  max-width: var(--pk-container);
  margin-inline: auto;
}
.stage > h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--pk-white);
}
.stage > h3 {
  margin-top: 30px;
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--pk-white);
}
.stage .release figure { margin: 0; line-height: 0; }
.stage .release--featured {
  max-width: 320px;
  margin-inline: auto;
}
.stage .release img { width: 100%; }
.release-grid .release-card img {
  display: block;
  width: 320px;
  max-width: 100%;
  margin-inline: auto;
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.release-card figure { margin: 0; line-height: 0; }
.release-card img { width: 100%; }
.release-card h3 {
  margin-top: 10px;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--pk-white);
  text-align: center;
}
.release-card h3 a { color: inherit; text-decoration: none; }

/* About section */
.about {
  padding: 65px 15px;
  background: var(--pk-white);
}
.about > * {
  max-width: var(--pk-container);
  margin-inline: auto;
}
.about__title-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.35em;
  align-items: start;
}
.about__mark {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
  color: var(--pk-ink);
}
.about__title-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about__title-stack h2 {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
  color: var(--pk-ink);
}
.about__tagline {
  margin: 0 0 45px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
  color: var(--pk-ink);
}
.about__body {
  font-size: 1.125rem;
  color: var(--pk-ink);
}
.about__body p { margin-bottom: 1em; }

/* ---------- 6. Producers page ---------- */

.producers {
  display: flow-root;
  padding: 0 15px 65px;
  background: var(--pk-blue);
}
.producers > .producer:first-of-type {
  margin-top: 65px;
}
.producers > .producer,
.producers > .container {
  max-width: var(--pk-container);
  margin-inline: auto;
}
.producer {
  display: flex;
  align-items: flex-start;
}
.producer__media { flex: 0 0 50%; }
.producer__media figure { margin: 0; line-height: 0; }
.producer__media img { display: block; width: 100%; }
.producer__bio {
  flex: 0 0 50%;
  padding-left: 40px;
  font-size: 1rem;
  font-weight: 400;
  color: var(--pk-white);
}
.producer__bio h2,
.producer__bio h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--pk-white);
}
.producer__bio h2 { margin-bottom: 1em; }
.producer__bio h3 { margin: 1.5em 0 0.5em; }
.producer__bio p { margin-bottom: 1em; }
.producer__bio blockquote { margin: 0; }
.producer--reverse {
  flex-direction: row-reverse;
  margin-top: 65px;
}
.producer--reverse .producer__bio {
  padding-left: 0;
  padding-right: 40px;
}

/* ---------- 7. Releases page ---------- */

.page-banner {
  margin-top: -108px;
  padding-left: 65%;
  text-align: start;
}
.page-banner__title {
  font-size: 3.175rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--pk-orange);
}

.releases { background: var(--pk-white); }
.releases--stage2 { padding: 0 0 25px; }
.releases--stage1 {
  background: var(--pk-ink);
  padding: 25px 0;
}
.releases__stage {
  margin: 0 0 30px;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: var(--pk-ink);
}
.releases--stage1 .releases__stage { color: var(--pk-white); }

.release { text-align: center; }
.release__link { display: block; }
.release--latest { margin: 0 0 30px; }
.release--latest .release__link { max-width: 300px; margin-inline: auto; }
.release__cover { display: block; width: 100%; }
.release__title {
  margin-top: 12px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--pk-ink);
}
.release__title a { color: inherit; text-decoration: none; }
.release__title a:hover,
.release__title a:focus { text-decoration: underline; }
.releases--stage1 .release__title { color: var(--pk-white); }

.releases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 20px;
}

/* ---------- 8. Digital Museum page ---------- */

body.museum-page {
  background-color: var(--pk-ink);
  background-image: url('../images/2025/06/Cover_Problemkiddz_Background_25.png');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.museum-head {
  display: flow-root;
  margin-bottom: 10px;
  padding: 0 0 65px;
  background: var(--pk-blue);
}
.museum-head__videos {
  margin-top: 40px;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--pk-white);
}
.museum-head__get {
  margin-top: 8px;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--pk-white);
}
.museum-head__youtube { margin-top: 16px; }
.museum-head__img {
  margin-top: 40px;
  margin-bottom: -565px;
}
.museum-head__img img {
  display: block;
  width: 100%;
}

.museum-gallery {
  margin-top: 565px;
  padding: 65px 0;
  background: var(--pk-white);
}

/* ---------- 9. Gallery ---------- */

.pk-gallery {
  column-count: 3;
  column-gap: 20px;
}
.pk-gallery a {
  display: block;
  margin: 0 0 20px;
  break-inside: avoid;
  overflow: hidden;
}
.pk-gallery img {
  display: block;
  width: 100%;
}
.pk-gallery a:hover img,
.pk-gallery a:focus img {
  opacity: 0.85;
}

/* ---------- 10. Footer ---------- */

.site-footer {
  min-height: 206px;
  display: flex;
  align-items: flex-end;
  background-color: var(--pk-ink);
  background-image: url('../images/2025/06/Cover_Problemkiddz_Background_25.png');
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}
.site-footer__inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 16px max(calc((100% - var(--pk-container)) / 2), 15px) 24px;
  background: var(--pk-blue-soft);
}
.site-footer__copyright {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--pk-white);
  text-align: center;
}

/* ---------- 11. Lightbox, audio, a11y ---------- */

.pk-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.92);
  cursor: zoom-out;
}
.pk-lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.pk-lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  border: 0;
  background: none;
  color: var(--pk-white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99998;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 2px solid var(--pk-orange);
  border-radius: 50%;
  background: var(--pk-orange);
  color: var(--pk-white);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s, background 0.2s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}
.scroll-top svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.scroll-top:hover,
.scroll-top:focus {
  background: var(--pk-white);
  color: var(--pk-orange);
  outline: none;
}
.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  white-space: nowrap;
  word-wrap: normal;
}
.screen-reader-text:focus {
  width: auto;
  height: auto;
  margin: 0;
  padding: 15px 23px 14px;
  clip: auto;
  clip-path: none;
  background: #f1f1f1;
  color: #21759b;
  font-size: 0.875rem;
  font-weight: 700;
  left: 5px;
  top: 5px;
  z-index: 100000;
}

/* ---------- 12. Responsive ---------- */

@media (max-width: 1024px) {
  .hero__media { flex-basis: 60%; }
  .hero__copy { flex-basis: 40%; }
  .hero__copy h1 { font-size: 6rem; }
}

@media (max-width: 767px) {
  .container { padding-inline: 15px; }

  /* Header */
  .site-header { min-height: 180px; }
  .site-header__inner {
    flex-wrap: wrap;
    position: relative;
    gap: 0 16px;
    padding: 10px 15px;
  }
  .site-nav { position: relative; flex: 1 1 auto; }
  .site-nav__toggle { display: flex; }
  .site-nav__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -15px;
    right: -15px;
    z-index: 999;
    flex-direction: column;
    background: var(--pk-white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  }
  .site-nav.is-open .site-nav__menu { display: flex; }
  .site-nav__link {
    display: block;
    padding: 12px 15px;
    color: var(--pk-orange);
    border-bottom: 1px solid rgba(0, 66, 106, 0.12);
  }
  .site-nav__link:hover,
  .site-nav__link:focus {
    color: var(--pk-blue);
    background: rgba(0, 66, 106, 0.06);
  }
  .site-nav__link[aria-current='page'],
  .site-nav__link.is-active {
    color: var(--pk-orange);
    font-weight: 700;
    background: rgba(255, 121, 0, 0.08);
  }

  /* Home hero */
  .hero {
    flex-direction: column;
    padding: 0 15px;
  }
  .hero__media { flex-basis: auto; width: 100%; }
  .hero__media img { margin-top: -40px; }
  .hero__copy { flex-basis: auto; width: 100%; align-items: center; text-align: center; padding-bottom: 45px; }
  .hero__copy h1 { margin-left: 0; font-size: 1.68rem; }

  /* Digital Theatre band */
  .stage { padding: 65px 15px; }
  .stage > h2,
  .stage > h3 { font-size: 1.8rem; }
  .release-grid { grid-template-columns: 1fr; }
  .release-card h3 { font-size: 1.4rem; }

  /* Producers */
  .producer { flex-direction: column; margin-top: 0; }
  .producer + .producer { margin-top: 45px; }
  .producer__media { flex-basis: auto; width: 100%; }
  .producer__bio { flex-basis: auto; width: 100%; padding: 25px 0 0; }
  .producer--reverse .producer__bio { padding: 25px 0 0; }
  .producer--reverse { flex-direction: column-reverse; margin-top: 45px; }

  /* Page banner */
  .page-banner {
    margin-top: -74px;
    padding-left: 52%;
  }
  .page-banner__title { font-size: 2rem; }

  /* Releases */
  .releases__stage { font-size: 1.8rem; }
  .releases__grid { grid-template-columns: 1fr; }

  /* Museum */
  .museum-head__img { margin-bottom: -200px; }
  .museum-gallery { margin-top: 170px; padding: 65px 15px; }

  /* Gallery */
  .pk-gallery { column-count: 2; column-gap: 10px; }
  .pk-gallery a { margin-bottom: 10px; }

  /* Footer */
  .site-footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .site-footer__socials { justify-content: center; }

  .scroll-top {
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .pk-gallery { column-count: 1; }
}
