* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #904528;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: #ffffff;
  text-decoration: none;
}

/* HEADER */

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 24px 42px;

  background: rgba(0, 0, 0, 0.45);

  backdrop-filter: blur(8px);
}

.mini-logo {
  font-size: 22px;
  letter-spacing: 3px;
  font-weight: bold;
}

nav {
  display: flex;
  gap: 28px;

  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

nav a:hover {
  opacity: 0.7;
}

/* HERO */

.hero {
  position: relative;
  min-height: auto;
  padding: 96px 0 0;
  background: linear-gradient(
    180deg,
    #898893 0%,
    #904528 100%
  );
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      rgba(137,136,147,0.72),
      rgba(144,69,40,0.82)
    ),
    url("assets/sonny-jack-take-it-slow-cover.png");

  background-size: cover;
  background-position: center;

  opacity: 0.22;

  filter: blur(2px);

  transform: scale(.80);
}

.hero-art {
  position: relative;
  z-index: 2;
}

.hero-art img {
  width: 100%;
  height: auto;
  display: block;

  box-shadow:
    0 25px 80px rgba(0,0,0,0.45);
}

.hero-art {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* INTRO */

.intro-section {
  display: grid;

  grid-template-columns: 0.8fr 1.2fr;

  gap: 70px;

  align-items: center;

  padding: 80px 8vw 60px;

  background: #904528;
}

.intro-image img {
  width: 100%;

  border-radius: 20px;

  box-shadow:
    0 20px 60px rgba(0,0,0,0.35);
}

.intro-copy h1 {
  font-size: clamp(34px, 5vw, 64px);

  line-height: 1.15;

  text-transform: uppercase;

  letter-spacing: 8px;

  margin-bottom: 30px;
}

.intro-copy p {
  max-width: 680px;

  font-size: 18px;

  margin-bottom: 35px;
}

.identity {
  font-size: 21px;
}

.text-link {
  display: inline-block;

  margin-top: 18px;

  text-transform: uppercase;

  letter-spacing: 4px;

  color: #d98b4a;
}

/* PAGE GRID */

.page-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  border-top:
    1px solid rgba(255,255,255,0.2);

  border-left:
    1px solid rgba(255,255,255,0.2);

  margin: 40px 6vw;
}

.page-card {
  padding: 42px;

  min-height: 280px;

  border-right:
    1px solid rgba(255,255,255,0.18);

  border-bottom:
    1px solid rgba(255,255,255,0.18);

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.page-card:hover {
  background:
    rgba(255,255,255,0.06);

  transform:
    translateY(-4px);
}

.page-card h2 {
  text-transform: uppercase;

  letter-spacing: 3px;

  font-size: 28px;

  margin-bottom: 20px;
}

.page-card p {
  font-size: 15px;

  margin-bottom: 28px;
}

.page-card span {
  display: block;

  text-transform: uppercase;

  letter-spacing: 2px;

  font-size: 12px;

  color: #d98b4a;
}

/* STREAM SECTION */

.stream-section {
  padding: 40px 8vw 80px;

  text-align: center;
}

.stream-section h2 {
  text-transform: uppercase;

  letter-spacing: 5px;

  font-size: 20px;

  margin-bottom: 40px;

  color: #d98b4a;
}

.stream-links {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 40px;
}

.stream-links a {
  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 14px;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.stream-links a:hover {
  transform: translateY(-4px);

  opacity: 0.82;
}

.stream-links img {
  width: 64px;
  height: 64px;

  object-fit: contain;
}

.stream-links span {
  text-transform: uppercase;

  letter-spacing: 2px;

  font-size: 12px;
}

/* FOOTER */

footer {
  padding: 28px;

  background: #111111;

  text-align: center;

  font-size: 12px;

  letter-spacing: 2px;

  text-transform: uppercase;

  opacity: 0.9;
}

/* MOBILE */

@media (max-width: 900px) {

  .site-header {
    position: relative;

    flex-direction: column;

    gap: 18px;

    padding: 22px;
  }

  nav {
    flex-wrap: wrap;

    justify-content: center;

    gap: 14px;
  }

  .intro-section {
    grid-template-columns: 1fr;
  }

  .page-grid {
    grid-template-columns: 1fr;
  }

  .page-card {
    border-right: none;
  }

  .hero {
    min-height: 70vh;

    padding: 100px 20px 40px;
  }

  .intro-copy h1 {
    letter-spacing: 4px;
  }

/* BIO PAGE SPACING FIX */

}

.bio-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}
.bio-content h1 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 8px;
  margin-bottom: 50px;
}

.bio-content p {
  width: 100%;
  max-width: 100%;
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 50px;
}

/* BIO PAGE */

.bio-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 80px;
}

.bio-content h1 {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 35px;
}

.bio-content p {
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 32px;
}

/* LISTEN PAGE */

.listen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.listen-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.listen-platforms a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.listen-platforms a:hover {
  transform: translateY(-4px);
  opacity: 0.82;
}

.listen-platforms img {
  width: 72px;
  height: 72px;
  object-fit: contain;

  transition:
    transform 0.25s ease,
    filter 0.25s ease,
    box-shadow 0.25s ease;
}

.listen-platforms a:hover img {
  transform: scale(1.06);
  filter: brightness(1.08);

  box-shadow:
    0 18px 40px rgba(0,0,0,0.35);
}

.listen-platforms a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.listen-platforms a:hover {
  transform: translateY(-4px);
  opacity: 0.82;
}

.listen-platforms img {
  width: 72px;
  height: 72px;
  object-fit: contain;

  transition:
    transform 0.25s ease,
    filter 0.25s ease,
    box-shadow 0.25s ease;
}

.listen-platforms a:hover img {
  transform: scale(1.06);
  filter: brightness(1.08);

  box-shadow:
    0 18px 40px rgba(0,0,0,0.35);
}

.listen-platforms span {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}

@media (max-width: 900px) {
  .listen-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* PRESS / EPK PAGE */

.press-content h2 {
  font-size: clamp(24px, 3vw, 38px);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin: 70px 0 30px;
  color: #d98b4a;
}

/* =========================
   PRESS / EPK PAGE
========================= */

.compact-text p {
  margin-bottom: 12px;
  line-height: 1.45;
}

.press-content h2 {
  font-size: clamp(24px, 3vw, 36px);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin: 70px 0 24px;
  color: #d98b4a;
}

.press-content h3 {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 45px 0 22px;
  color: #ffffff;
}

.press-facts {
  margin-bottom: 55px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.16);
  backdrop-filter: blur(4px);
}

.press-facts p {
  margin-bottom: 10px;
  font-size: 15px;
  letter-spacing: 0.3px;
}

.press-top-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}

.press-intro p {
  font-size: 17px;
  max-width: 700px;
}

.press-resources h2 {
  margin-top: 0;
}

.press-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.press-link-list li {
  margin-bottom: 18px;
}

.press-link-list a {
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 3px;
  transition: 0.25s ease;
}

.press-link-list a:hover {
  color: #d98b4a;
  border-color: #d98b4a;
}

/* =========================
   LOGOS
========================= */

.asset-grid.small-assets {
  display: grid;
  grid-template-columns: repeat(2, 180px);
  gap: 50px;
  margin-bottom: 80px;
}

.asset-grid.small-assets a {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.asset-grid.small-assets img {
  width: 100%;
  max-width: 140px;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.asset-grid.small-assets img:hover {
  transform: scale(1.05);
}

.asset-grid.small-assets span {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  text-align: center;
}

/* =========================
   RELEASE ART GRID
========================= */

.refined-release-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-bottom: 90px;
}

.refined-release-grid a {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.12);
  transition: 0.25s ease;
}

.refined-release-grid a:hover {
  background: rgba(255,255,255,0.05);
  transform: translateY(-3px);
}

.refined-release-grid img {
  width: 82px;
  height: 82px;
  object-fit: cover;
  flex-shrink: 0;
}

.refined-release-grid span {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.refined-release-grid strong {
  display: block;
  font-size: 13px;
  margin-bottom: 3px;
}

/* =========================
   BIO + RIDER BOXES
========================= */

.press-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.press-card-grid .page-card {
  min-height: 320px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 1000px) {

  .press-top-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .refined-release-grid {
    grid-template-columns: 1fr;
  }

  .press-card-grid {
    grid-template-columns: 1fr;
  }

  .asset-grid.small-assets {
    grid-template-columns: 1fr;
    justify-items: center;
  }

}

/* =========================
   VISUAL WORLD PAGE
========================= */

.visual-content h2 {
  font-size: clamp(24px, 3vw, 36px);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin: 80px 0 28px;
  color: #d98b4a;
}

.visual-intro {
  max-width: 100%;
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 70px;
}

.visual-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
  margin-bottom: 90px;
}

.visual-copy p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.visual-list {
  list-style: none;
  margin-top: 34px;
  padding: 0;
}

.visual-list li {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding-bottom: 8px;
}

/* PHOTO STACK */

.photo-stack {
  position: relative;
  min-height: 520px;
}

.stack-card {
  position: absolute;
  display: block;
  width: 240px;
  height: 240px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,0.45);
  transition: transform 0.25s ease, z-index 0.25s ease;
  border: 1px solid rgba(255,255,255,0.16);
}

.stack-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stack-card:hover {
  transform: scale(1.06) rotate(0deg);
  z-index: 20;
}

.card-one {
  top: 20px;
  left: 120px;
  z-index: 5;
  transform: rotate(-7deg);
}

.card-two {
  top: 70px;
  left: 260px;
  z-index: 4;
  transform: rotate(8deg);
}

.card-three {
  top: 150px;
  left: 40px;
  z-index: 6;
  transform: rotate(5deg);
}

.card-four {
  top: 230px;
  left: 220px;
  z-index: 3;
  transform: rotate(-10deg);
}

.card-five {
  top: 300px;
  left: 90px;
  z-index: 2;
  transform: rotate(11deg);
}

/* IMAGE GALLERIES */

.visual-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-bottom: 70px;
}

.visual-gallery a {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.16);
  transition: 0.25s ease;
}

.visual-gallery a:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.06);
}

.visual-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

/* VIDEO GALLERIES */

.visual-video-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 80px;
}

.visual-video-grid video {
  width: 100%;
  max-width: 260px;
  background: #000000;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

/* MOBILE */

@media (max-width: 1000px) {

  .visual-split {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .photo-stack {
    min-height: 520px;
  }

  .visual-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .visual-video-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 600px) {
  .photo-stack {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stack-card {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    transform: none;
  }

  .stack-card img {
    aspect-ratio: 4 / 5;
  }

  .visual-gallery {
    grid-template-columns: 1fr;
  }
}

.contact-content h1 {
  margin-bottom: 10px;
}

.contact-content .listen-grid {
  align-items: start;
}


/* =========================
   MOBILE SPACING REFINEMENT
   Purpose: tighten homepage banner-to-profile gap and reduce oversized mobile spacing
========================= */

@media (max-width: 900px) {

  /* The old mobile hero used 70vh + heavy padding, which created dead space
     between the homepage banner and the profile section. */
  .hero {
    min-height: auto;
    padding: 0;
    display: block;
  }

  .hero-art {
    width: 100%;
    margin: 0;
  }

  .hero-art img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
  }

  /* Pull the profile section much closer to the banner on mobile */
  .intro-section {
    padding: 32px 7vw 44px;
    gap: 30px;
  }

  .intro-image img {
    border-radius: 14px;
  }

  .intro-copy h1 {
    font-size: clamp(30px, 9vw, 44px);
    letter-spacing: 4px;
    margin-bottom: 22px;
  }

  .intro-copy p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .identity {
    font-size: 18px;
  }

  .text-link {
    margin-top: 8px;
  }

  /* Tighten subpage mobile spacing without changing desktop layout */
  .bio-content {
    padding: 36px 22px 48px;
  }

  .bio-content h1 {
    font-size: clamp(30px, 9vw, 42px);
    letter-spacing: 3px;
    margin-bottom: 24px;
  }

  .bio-content p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .listen-grid {
    gap: 30px;
  }

  .page-grid {
    margin: 22px 6vw 34px;
  }

  .page-card {
    padding: 30px 26px;
    min-height: auto;
  }

  .stream-section {
    padding: 32px 8vw 56px;
  }

  .stream-section h2 {
    margin-bottom: 28px;
  }

  .stream-links {
    gap: 26px;
  }
}

@media (max-width: 600px) {

  .site-header {
    padding: 18px 16px;
  }

  nav {
    gap: 12px;
    font-size: 11px;
    letter-spacing: 1.4px;
  }

  .mini-logo {
    font-size: 20px;
  }

  .intro-section {
    padding-top: 24px;
  }

  .bio-content {
    padding-top: 30px;
  }

  .press-content h2,
  .visual-content h2 {
    margin-top: 44px;
    margin-bottom: 20px;
  }

  .visual-intro {
    margin-bottom: 38px;
  }

  .visual-split {
    gap: 36px;
    margin-bottom: 54px;
  }

  .visual-gallery {
    gap: 14px;
    margin-bottom: 46px;
  }

  .visual-video-grid {
    margin-bottom: 50px;
  }
}

