/* Global Resets & Basic Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* Typography */
.martian-mono {
  font-family: "Martian Mono", monospace;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

a {
  color: #010100;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* Logo */
.logo img {
  width: 100px;
}

/* HEADER + NAVIGATION */
.main-header {
  position: sticky;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1000;
}

/* ✅ UPDATED: Header layout */
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  flex: 0 0 auto;
}

/* ✅ nav-menu now aligned to right */
.nav-menu {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav-menu ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-menu ul li a {
  font-family: "Martian Mono", monospace;
  color: #000;
  text-decoration: none;
  padding: 0.5rem 0.8rem;
  border-radius: 4px;
}

.main-header nav ul li a.active,
.main-header nav ul li a:hover {
  /* Add hover styles if needed */
}

/* ✅ Hamburger */
.menu-toggle {
  display: none;
  margin-left: 1rem;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  align-self: center;
}

/* ✅ MOBILE NAV */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fefeff;
    z-index: 10;
    text-align: center;
  }

  .nav-menu.active {
    display: block !important;
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
  }

  .nav-menu ul li {
    margin: 0.5rem 0;
  }
}

@media (max-width: 480px) {
  .main-header {
    flex-direction: column;
    align-items: center;
  }

  .hero-content h1.bebas-neue-regular {
    font-size: 3rem;
  }

  .btn-primary {
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
  }
}

/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 85vh;
  padding: 3rem 1rem;
  background: url("back2life\ index.jpg") center center no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  flex-direction: column;
}

/* Dark overlay to boost contrast */
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* ✅ Responsive, wrapping heading */
.hero-content h1.bebas-neue-regular {
  font-size: 4.5rem;
  line-height: 1.1;
  color: #ffffff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  text-align: center;
}

/* Call-to-action button */
.btn-primary {
  display: inline-block;
  background-color: transparent;
  color: #ffffff;
  padding: 1rem 1.6rem;
  border: 4px solid #ffffff;
  border-radius: 40px;
  font-weight: bold;
  font-family: "Martian Mono", monospace;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #ffffff;
  color: #8e3ec4;
}

/* ✅ Responsive breakpoints */
@media (max-width: 768px) {
  .hero-section {
    min-height: 70vh;
    padding: 2rem 1rem;
  }

  .hero-content h1.bebas-neue-regular {
    font-size: 3rem;
    line-height: 1.2;
  }

  .btn-primary {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: 60vh;
  }

  .hero-content h1.bebas-neue-regular {
    font-size: 2.3rem;
  }
}


/* HIGHLIGHT SECTION */
.highlight {
  padding: 2rem;
}

.highlight-info {
  text-align: center;
  margin-bottom: 2rem;
}

.highlight-info h2,
.highlight-info p {
  text-align: left;
}

.highlight-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.highlight-info p {
  font-size: 1.2rem;
  color: #414140;
  margin-bottom: 1rem;
}

/* Releases */
.release-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.release-card {
  width: 200px;
  text-align: center;
}

.release-card img {
  width: 100%;
  border-radius: 4px;
}

.page-banner {
  padding: 2rem 2rem;
  background-color: #fefeff;
  text-align: center;
}

.page-banner h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

/* Swiper / Release Slider Container */
.release-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 1rem 0;
  overflow: hidden;
}

/* Slide wrapper */
.swiper-wrapper {
  display: flex;
  align-items: center;
}

/* Individual slide */
.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}

/* Slide content */
.release-item {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.release-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

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

/* Text Overlay */
.release-info {
  position: absolute;
  bottom: 5%;
  left: 5%;
  right: 5%;
  z-index: 2;
  color: #fefeff;
  font-family: "Martian Mono", monospace;
  font-size: 1rem;
  line-height: 1.2;
  padding: 10px;
  text-align: left;
  box-sizing: border-box;
  border-radius: 4px;
}

.release-info h3 {
  margin: 0;
  font-size: 2rem;
  font-weight: normal;
}

/* Dark overlay behind text */
.dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  transition: opacity 0.3s ease;
}

.release-item:hover .dark-overlay {
  opacity: 0;
}

/* Swiper nav buttons */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  color: #fff;
  font-size: 2rem;
  padding: 0.5rem;
  border-radius: 50%;
}

/* Left/right positions */
.swiper-button-prev {
  left: 10px;
}

.swiper-button-next {
  right: 10px;
}

/* Pagination (disabled) */
.swiper-pagination {
  display: none !important;
}

/* Responsive: scale text, hide arrows */
@media (max-width: 1024px) {
  .release-info h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .release-slider {
    padding: 1rem 0 2rem;
    min-height: 300px;
  }

  .release-item {
    max-width: 90%;
  }

  .release-info h3 {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  /* ❌ Hide nav arrows on mobile */
  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
    /* ← force override Swiper's inline styles */
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }
}

@media (max-width: 480px) {
  .release-info h3 {
    font-size: 1.2rem;
  }
}


/* Artist Grid */
.artist-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  padding: 2rem;
}

@media (min-width: 768px) {
  .artist-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .artist-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.artist-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  text-align: left;
  margin: 0 auto;
}

/* This stays general for all cards */
.artist-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 20px;
}

.artist-card.reverse-crop {
  height: 500px; /* or match other cards */
}

.artist-card.reverse-crop img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: bottom; /* crop from bottom up */
}
.artist-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff;
  padding: 1rem;
  box-sizing: border-box;
}

.artist-info h3 {
  font-size: 3.5rem;
  margin: 0 0 0.25rem;
}

.artist-info p {
  display: inline-block;
  background-color: #414140;
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 40px;
  font-size: 0.6rem;
  margin: 0;
  margin-bottom: 0.1rem;
}

/* --------------------
   HERO SECTION
--------------------- */
.artist-hero.dark {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 3rem 5%;
}

.artist-hero.dark img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(45%);
  z-index: 1;
}

/* CONTAINER */
.artist-hero-text {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  z-index: 2;
  position: relative;
  flex-wrap: wrap;
  gap: 2rem;
}

/* LEFT SIDE */
.artist-left {
  color: white;
  max-width: 60%;
}

.left-text {
  font-size: 1.2rem;
  line-height: 1.6;
}

.left-text h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 8rem;
  letter-spacing: 0.2px;
  margin-bottom: 0.2rem;
  line-height: 1;
  /* ← key line */
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
  font-weight: 400;
}

.artist-tags {
  display: flex;
  gap: 0.6rem;
  /* slightly tighter gap between tags */
  flex-wrap: wrap;
  margin-top: 0;
}

.artist-tags span {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-family: "Martian Mono", monospace;
  font-size: 0.7rem;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}

/* RIGHT SIDE */
.artist-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}

.right-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 1rem;
  color: #fff;
  border-radius: 40px;
  font-family: "Martian Mono", monospace;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.right-buttons a i {
  font-size: 3rem;
}

.artist-buttons a:hover {
  background-color: #000;
  color: #fff;
  border: 1px solid #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .artist-hero.dark {
    padding: 2rem;
    align-items: flex-end;
  }

  .artist-hero-text {
    flex-direction: column;
    align-items: flex-start;
  }

  .artist-left {
    max-width: 100%;
  }

  .artist-left h1 {
    font-size: 4rem;
  }

  .artist-tags span {
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
  }

  .right-buttons {
    justify-content: flex-start;
  }

  .right-buttons a {
    padding: 0.2rem 0.6rem;
  }

  .right-buttons a i {
    font-size: 3rem;
  }
}

/* --------------------
   CLEAN WHITE SECTION
--------------------- */
.artist-profile {
  background-color: #fff;
  padding: 3rem 2rem;
  text-align: center;
}

.artist-profile h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* Tracks */
.release-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.release-card {
  width: 180px;
  text-align: center;
}

.release-card img {
  width: 100%;
}

/* Bio */
.artist-bio {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.artist-bio h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 900;
}

.artist-bio p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.artist-profile .btn-primary{
  background-color: #fff;
  color: #010100;
  padding: 1rem 1.6rem;
  border: none;
  border-radius: 40px;
  font-weight: bold;
  font-family: "Martian Mono", monospace;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.artist-profile .btn-primary:hover {
  background-color: #010100;
  color: #fff;
}


/* Artist Details */
.artist-details {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem;
}

.bio,
.tracks {
  flex: 1;
  margin: 1rem;
}

.bio h2,
.tracks h2 {
  margin-bottom: 1rem;
}

.tracks ul li {
  margin-bottom: 0.5rem;
}

.release-card-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

@media (max-width: 768px) {
  .artist-img {
    height: 100vh;
    /* or a custom shorter value like 80vh */
    object-fit: cover;
    /* Increase negative value to crop more */
  }
}

.beat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.beat-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: 0.3s;
}

.beat-card img {
  width: 100%;
  object-fit: cover;
  height: 200px;
}

.beat-info {
  padding: 1rem;
  text-align: center;
}

.beat-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.buy-now-btn {
  background: black;
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  padding: 2rem;
  border-radius: 16px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
}

/* Beats */

.page-banner {
  text-align: center;
  padding: 3rem 1rem;
  background: #fff;
}

.page-banner h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.beat-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  padding: 2rem;
  justify-content: center;
}

/* Large tablets */
@media (max-width: 1200px) {
  .beats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablets */
@media (max-width: 768px) {
  .beats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .beats-grid {
    grid-template-columns: 1fr;
  }
}


.beat-card {
  width: 100%;
  max-width: 280px;
  margin: auto;
  padding: 1.5rem;
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Square image wrapper */
.beat-image-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.beat-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

audio {
  width: 100%;
  margin: 0.8rem 0;
}

.beat-card h2 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.beat-card p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.beat-card button {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 40px;
  background-color: #000;
  color: #fff;
  font-family: "Martian Mono", monospace;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.beat-card button:hover {
  background-color: #333;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 2rem;
  border-radius: 12px;
  max-width: 400px;
  position: relative;
}

.close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 1.5rem;
  color: #000;
  cursor: pointer;
}

.modal-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.modal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.modal-content ul li {
  margin-bottom: 0.5rem;
}

.modal-content button {
  width: 100%;
  margin: 0.5rem 0;
  background: #000;
  color: #fff;
  border: none;
  padding: 0.8rem;
  border-radius: 40px;
  font-family: 'Martian Mono', monospace;
  font-weight: bold;
  cursor: pointer;
}

.modal-content button:hover {
  background-color: #333;
}

.wrapper {
  width: 100%;
  max-width: none;
  overflow-x: hidden;
}


/*cart*/
.cart-container {
  margin-left: 1rem; /* adjust as needed */
  position: relative;
}

.cart-icon {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  position: relative;
}

.cart-icon span {
  position: absolute;
  top: -6px;
  right: -8px;
  background: red;
  color: white;
  font-size: 0.65rem;
  padding: 2px 5px;
  border-radius: 50%;
}

#cart-count {
  position: absolute;
  top: -5px;
  right: -10px;
  background: red;
  color: white;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 50%;
}

.cart-modal {
  position: absolute;
  top: 135px;
  right: 10px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 1.2rem 1.5rem;
  width: 240px;
  z-index: 999;
  font-family: 'Martian Mono', monospace;
}

.cart-modal h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
}

.cart-modal.hidden {
  display: none;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
}

.cart-item button {
  background: none;
  border: none;
  color: red;
  font-size: 1.2rem;
  cursor: pointer;
}

.bomboclat {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 40px;
  font-family: 'Martian Mono', monospace;
  font-weight: bold;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.bomboclat:hover {
  background-color: #fff;
  color: #000;
  border: 2px solid #000;
}


/* Footer */
.main-footer {
  background-color: #414140;
  color: #fefeff;
  padding: 1rem 2rem;
  margin-top: 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-logo {
  max-height: 50px;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  border-radius: 20px;
  padding: 0.5rem;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.2s;
  margin: 0 5px;
}

.social-icons .fa {
  font-size: 40px;
  text-align: center;
  color: #fefeff;
  padding: 0.5rem;
}

.social-icons a:hover {
  background-color: #fefeff;
  color: #414140;
}

.footer-divider {
  border: none;
  border-top: 1px solid #fefeff;
  margin: 1rem 0;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
}

/* Other Responsive Adjustments */
@media (max-width: 600px) {
  .release-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    padding: 1rem;
  }

  .page-banner h1 {
    font-size: 1.8rem;
  }

  .social-icons a:hover {
    background-color: transparent !important;
    color: inherit !important;
  }
}

/* CONTACT PAGE */
.contact-banner {
  background: #fff;
  padding: 3rem 1rem 1.5rem;
}
.contact-banner h1 {
  font-size: 3.2rem;
}
.contact-subtitle {
  margin-top: 0.4rem;
  color: #414140;
  font-size: 0.9rem;
}

/* Layout */
.contact-section {
  padding: 2rem 1.25rem 3rem;
  background: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Cards */
.contact-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  padding: 1.5rem;
}
.contact-heading {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

/* Form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
}
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.8rem;
  letter-spacing: 0.2px;
}

.input,
.textarea {
  width: 100%;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 0.9rem 0.9rem;
  font-family: "Martian Mono", monospace;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
}
.input:focus,
.textarea:focus {
  border-color: #000;
  box-shadow: 0 0 0 4px rgba(0,0,0,0.05);
}

.error-text {
  display: none;
  margin-top: 0.35rem;
  color: #d8000c;
  font-size: 0.75rem;
}
.form-group.error .error-text { display: block; }
.form-group.error .input,
.form-group.error .textarea { border-color: #d8000c; }

.honeypot {
  display: none !important;
  opacity: 0;
  height: 0;
  width: 0;
  position: absolute;
  left: -9999px;
}

.submit-btn {
  margin-top: 0.8rem;
}

/* Status message */
.form-status {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  line-height: 1.4;
}

/* Right column: info */
.contact-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin: 0.5rem 0 1.25rem;
  padding: 0;
}
.contact-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0.75rem;
  align-items: start;
}
.contact-list .fa {
  font-size: 1.4rem;
  line-height: 1;
  color: #000;
}
.contact-list .label {
  display: block;
  font-size: 0.75rem;
  opacity: 0.7;
  margin-bottom: 0.15rem;
}
.contact-address { margin: 0; }

/* Buttons row */
.contact-cta {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 0.5rem 0 1.25rem;
}

/* Map */
.map-embed iframe {
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .contact-banner h1 { font-size: 2.4rem; }
  .form-grid { grid-template-columns: 1fr; }
}


/* Two-column, aligned contact list */
.contact-2col {
  list-style: none;
  padding: 0;
  margin: 2rem auto 0;
  max-width: 720px;
  display: grid;
  grid-template-columns: 160px 1fr;   /* label / value */
  column-gap: 2rem;
  row-gap: 1.2rem;
}

.contact-2col li {
  display: contents; /* each label/value occupies the grid cells */
}

/* Label column */
.contact-2col .label {
  justify-self: end;
  opacity: 0.6;
  font-size: 0.95rem;
  letter-spacing: 0;           /* tighten Martian Mono */
  font-variation-settings: "wdth" 100, "wght" 400;
}

/* Value column */
.contact-2col .value {
  justify-self: start;
  font-size: 1.02rem;
  color: #000;
  text-decoration: none;
  line-height: 1.5;
}
.contact-2col .value:hover { text-decoration: underline; }

/* Mobile: stack cleanly */
@media (max-width: 600px) {
  .contact-2col {
    grid-template-columns: 1fr;
    row-gap: 0.6rem;
  }
  .contact-2col .label {
    justify-self: start;
    margin-top: 0.8rem;
  }
}

/* ===== Modern case page layout ===== */
.case-hero {
  position: relative;
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1.25rem;
  background: radial-gradient(1000px 400px at 50% 0%, #111 0%, #000 60%);
  color: #fff;
  overflow: hidden;
}
.case-hero .hero-fade {
  position: absolute; inset: 0;
  background: radial-gradient(60% 40% at 50% 20%, rgba(255,255,255,0.08), transparent 60%);
  pointer-events: none;
}
.case-hero-inner { max-width: 900px; z-index: 1; }
.case-hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); margin-bottom: .3rem; }
.case-hero p { opacity: .9; margin-bottom: 1rem; }
.hero-pills { display:flex; gap:.5rem; flex-wrap:wrap; justify-content:center; margin: .5rem 0 1.2rem; }

.pill {
  display:inline-block; padding:.35rem .8rem; border-radius:999px;
  background:#fff; color:#000; font-family:"Martian Mono", monospace; font-size:.8rem;
}

/* Sections */
.case-wrap { padding: 3rem 1.25rem; }
.case-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 1200px; margin: 0 auto;
}
.case-grid.three { grid-template-columns: repeat(3, 1fr); }
.case-grid.four  { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px){ .case-grid.four { grid-template-columns: 1fr 1fr; } }
@media (max-width: 900px){
  .case-grid, .case-grid.three { grid-template-columns: 1fr; }
}
.section-title { text-align:center; margin-bottom: 1.25rem; }

.case-card, .mini-card, .tile {
  background:#fff; border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  padding: 1.5rem;
}
.mini-card h3, .tile h4 { margin-bottom: .5rem; }

.callout {
  background:#fefeff; border-left:5px solid #000;
  padding: 1rem 1.2rem; border-radius: 8px; margin-top: .75rem;
}
.small-note { margin-top: .8rem; opacity: .85; }

/* Lists */
.checklist, .dotlist { list-style: none; padding: 0; margin: .5rem 0 0; }
.checklist li::before {
  content:"\f00c"; font-family:"FontAwesome"; margin-right:.6rem;
}
.dotlist li { margin:.35rem 0; }
.steplist { padding-left: 1rem; }
.steplist li { margin:.35rem 0; }

/* CTA */
.case-cta {
  text-align:center; padding: 3rem 1.25rem 4rem;
  background: linear-gradient(180deg, #fff 0%, #f6f6f6 100%);
}
.case-cta h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .4rem; }

/* ===== Button animation fix (Contact Us & CTAs) ===== */
.btn-primary {
  display:inline-block; background: transparent; color:#000;
  padding: 1rem 1.6rem; border: 2.5px solid #000; border-radius: 40px;
  font-family: "Martian Mono", monospace; font-weight: 700; font-size: 1rem;
  text-decoration: none; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
  will-change: transform;
}

/* Use this class for animated buttons */
.btn-animate { position: relative; }
.btn-animate:hover, .btn-animate:focus {
  transform: translateY(-1px) scale(1.02);
  background-color:#000; color:#fff; border-color:#000;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}
.btn-animate:active { transform: translateY(0) scale(.99); box-shadow: 0 6px 16px rgba(0,0,0,.15); }

/* Focus accessibility */
.btn-primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(0,0,0,.15);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .btn-primary { transition: none; }
  .btn-animate:hover, .btn-animate:focus, .btn-animate:active { transform: none; box-shadow:none; }
}


/* Stacked layout */
.stack-wrap { padding: 2.5rem 1.25rem; max-width: 900px; margin: 0 auto; }
.stack-section { margin: 2rem 0; }
.stack-section h2 { margin-bottom: .6rem; }
.simple-list { list-style: none; padding: 0; margin: .5rem 0 0; }
.simple-list li { margin: .4rem 0; line-height: 1.5; }
.steps { margin: .5rem 0 0; padding-left: 1.2rem; }
.steps li { margin: .35rem 0; line-height: 1.5; }

.tiles { display: grid; gap: 1rem; }
.tile { background: #fff; border-radius: 16px; box-shadow: 0 6px 22px rgba(0,0,0,.06); padding: 1rem 1.1rem; }
.tile h4 { margin-bottom: .3rem; }

.callout {
  background:#fefeff; border-left:4px solid #000;
  padding: .9rem 1.1rem; border-radius: 8px;
}
.small-note { opacity:.9; margin-top:.6rem; }

/* Hero (kept minimal) */
.case-hero { position: relative; min-height: 54vh; display: grid; place-items: center; text-align:center; color:#fff; padding: 4rem 1.25rem; background: radial-gradient(1000px 400px at 50% 0%, #111 0%, #000 60%); }
.case-hero .hero-fade { position:absolute; inset:0; background: radial-gradient(60% 40% at 50% 20%, rgba(255,255,255,0.08), transparent 60%); pointer-events:none; }
.case-hero-inner { max-width: 820px; z-index:1; }
.hero-pills { display:flex; flex-wrap:wrap; gap:.5rem; justify-content:center; margin: .6rem 0 1.2rem; }
.pill { display:inline-block; padding:.35rem .8rem; border-radius:999px; background:#fff; color:#000; font-family:"Martian Mono", monospace; font-size:.8rem; }

/* CTA spacing */
.case-cta { text-align:center; padding: 3rem 1.25rem 4rem; background: linear-gradient(180deg, #fff 0%, #f6f6f6 100%); }
.case-cta p { max-width: 720px; margin: 0 auto 1.4rem; }

/* Button animation already exists (btn-primary + btn-animate).
   Keep your earlier rules; no changes needed here. */

/* Bigger, bolder subheadings with accent underline */
.stack-section h2 {
  font-size: 2rem;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.stack-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #000, #ff004f);
  border-radius: 3px;
}

.tiles h4 {
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
  margin-bottom: 0.75rem;
}

.tiles h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 40px;
  height: 2px;
  background: #ff004f;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .stack-section h2 {
    font-size: 1.6rem;
  }
  .tiles h4 {
    font-size: 1.2rem;
  }
}

.tiles strong {
  color: #ff004f;
  font-weight: 700;
}

/* ===== TYPOGRAPHY TUNE (paste at end) ===== */

/* Make Bebas look lighter across browsers */
.bebas-neue-regular{
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-synthesis-weight: none;          /* stop synthetic bold */
  -webkit-font-smoothing: antialiased;  /* thinner look */
  -moz-osx-font-smoothing: grayscale;
}

/* All Bebas headings—lighter, airier, crisper */
.case-hero h1,
.stack-section h2,
.artist-left h1,
.artist-info h3 {
  font-weight: 400;
  letter-spacing: 0.5px;   /* tiny tracking reduces heaviness */
  text-shadow: none;       /* shadows add perceived weight */
  line-height: 1.08;       /* a bit more air */
}

/* Hero H1: avoid super-bright white to reduce weight */
.case-hero h1 { color: #f3f3f3; }

/* Artist page big H1 previously forced to line-height:1 */
.artist-left h1 { line-height: 1.06; }

/* Section headings: slimmer underline */
.stack-section h2::after{
  height: 2px;             /* was 3px */
  width: 56px;             /* slightly shorter */
}

/* Tile headings: slimmer accent rule */
.tiles h4::after{
  height: 2px;             /* was 2px but ensure consistency */
}

/* Optional: ensure all Bebas headings don’t get bolded by UA styles */
.case-hero h1 b,
.case-hero h1 strong,
.stack-section h2 b,
.stack-section h2 strong,
.artist-left h1 b,
.artist-left h1 strong,
.artist-info h3 b,
.artist-info h3 strong {
  font-weight: 400;
}

.case-hero {
  position: relative;
  height: 80vh; /* adjust as needed */
  background: url('concert.png') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.case-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.case-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* dark overlay for text contrast */
  z-index: 1;
}

.hero-pills .pill {
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  padding: 6px 12px;
  margin: 5px;
  display: inline-block;
}

/* Brand Placements page - Contact Us button */
.case-hero .btn-primary {
  display: inline-block;
  padding: 12px 28px;
  font-weight: bold;
  font-size: 1rem;
  color: white;
  background-color: #ff0055; /* bright accent */
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.case-hero .btn-primary:hover {
  background-color: #e6004d; /* darker shade on hover */
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Optional pulsing animation */
.case-hero .btn-animate {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 0, 85, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(255, 0, 85, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 0, 85, 0); }
}

/* Center section container (keep yours) */
.contact-section {
  padding: 3rem 1rem;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-info-centered {
  max-width: 640px;
  width: 100%;
  text-align: center;
}

/* Definition list layout */
.contact-table {
  margin: 2rem auto 0;
  display: grid;
  gap: 1.2rem;
}

/* Each row stacks label above value on mobile, grids on larger screens */
.contact-table .row {
  display: grid;
  row-gap: .35rem;
}

.contact-table .label {
  font-size: .9rem;
  opacity: .7;
  letter-spacing: 0;
}

.contact-table .value {
  font-size: 1rem;
  line-height: 1.5;
}

/* Links in values */
.contact-table .value a {
  color: #000;
  text-decoration: none;
}
.contact-table .value a:hover {
  text-decoration: underline;
}

/* Wider screens: show as two columns but keep centered feel */
@media (min-width: 560px) {
  .contact-table .row {
    grid-template-columns: 1fr 2fr;
    align-items: baseline;
    text-align: left;                 /* align text neatly */
  }
  .contact-info-centered {
    text-align: left;                 /* headings still centered by default; this only affects rows */
  }
}

/* Map */
.map-embed {
  margin-top: 2rem;
}
.map-embed iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 14px;
}

/* ========== GLOBAL: Artist hero long-name safety ========== */

/* Let the title flow outside the image crop and give breathing room */
.artist-hero.dark{
  overflow: visible;           /* was hidden */
  padding-bottom: 5.5rem;      /* space so the title isn't cut at the bottom */
  min-height: 92vh;            /* keeps the hero tall across screens */
}

/* Slightly looser layout so name/tags/buttons don't collide */
.artist-hero-text{
  gap: 1.25rem;
}

/* Make names scale responsively and never clip */
.artist-hero .left-text h1{
  /* Scales from mobile to desktop without wrapping oddly */
  font-size: clamp(2.6rem, 9vw + 0.2rem, 7.6rem);
  line-height: 0.96;
  margin: 0 0 .25rem;
  text-transform: uppercase;

  /* Prevent hard clipping on extreme words */
  word-break: break-word;
  hyphens: auto;

  /* Nice-to-have: balances multi-line headings when supported */
  text-wrap: balance;
}

/* Mobile tune-up */
@media (max-width: 600px){
  .artist-hero.dark{
    padding-bottom: 3.75rem;
    min-height: 85vh;
  }
  .artist-hero .left-text h1{
    font-size: clamp(2.2rem, 11vw, 4.9rem);
  }
}

/* ===== HOME: Hero ===== */
.home-hero{
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: center;
  text-align: center;
  background: url("back2life index.jpg") center/cover no-repeat;
  overflow: hidden;
}

.home-hero__overlay{
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 500px at 50% 0%, rgba(0,0,0,.45), rgba(0,0,0,.9)),
    linear-gradient(to bottom, rgba(0,0,0,.15), rgba(0,0,0,.55));
  z-index: 1;
}

.home-hero__content{
  position: relative;
  z-index: 2;
  padding: 1rem 1.25rem;
  max-width: 980px;
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.home-hero__title{
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 6.2vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: .5px;
  color: #fff;
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
  text-wrap: balance;
}

.home-hero__tagline{
  color: rgba(255,255,255,.88);
  font-size: .95rem;
  letter-spacing: .5px;
}

/* Glassy CTA (re-usable) */
.home-cta{
  display: inline-block;
  padding: .95rem 1.8rem;
  border-radius: 999px;
  font-family: "Martian Mono", monospace;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 2px solid rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(0,0,0,.25), inset 0 0 0 1px rgba(255,255,255,.12);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}
.home-cta:hover,
.home-cta:focus{
  transform: translateY(-2px) scale(1.02);
  background: #fff;
  color: #121212;
  border-color: #fff;
  box-shadow: 0 16px 36px rgba(0,0,0,.28);
}
.home-cta:active{
  transform: translateY(0) scale(.99);
}

/* Subtle scroll cue */
.scroll-cue{
  margin-top: 1rem;
  font-size: .75rem;
  color: rgba(255,255,255,.7);
  position: relative;
  padding-top: 1.6rem;
}
.scroll-cue::before{
  content:"";
  position: absolute;
  top: 0; left: 50%;
  width: 14px; height: 22px;
  margin-left: -7px;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 10px;
}
.scroll-cue::after{
  content:"";
  position: absolute;
  top: 6px; left: 50%;
  width: 3px; height: 6px;
  margin-left: -1.5px;
  background: rgba(255,255,255,.75);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot{
  0%{ transform: translateY(0); opacity: 1; }
  70%{ transform: translateY(7px); opacity: .3; }
  100%{ transform: translateY(0); opacity: 1; }
}

/* Tighten highlight section for homepage */
.highlight{
  padding: 3rem 1.25rem 2.2rem;
  background: #fff;
}
.highlight .highlight-info{
  max-width: 900px;
  margin: 0 auto;
}
.highlight .highlight-info h2{
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  margin-bottom: .6rem;
}
.highlight .highlight-info p{
  color: #3a3a39;
  font-size: clamp(.98rem, 1.4vw, 1.08rem);
}

:root{
      --ink:#000;
      --paper:#fff;
      --muted:#414140;
      --accent:#8e3ec4;          /* primary brand pop for CTAs */
      --accent-2:#ff0055;        /* supporting accent (brand placements callout) */
      --radius-xl:22px;
      --radius-lg:16px;
      --shadow:0 14px 40px rgba(0,0,0,.16);
    }

    *{box-sizing:border-box;margin:0;padding:0}
    html,body{height:100%}
    body{
      font-family:"Martian Mono",monospace;
      color:var(--ink);
      background:#fff;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}

    /* Header */
    .header{
      position:sticky; top:0; z-index:40;
      display:flex; align-items:center; justify-content:space-between;
      padding:14px 20px;
      backdrop-filter:saturate(160%) blur(6px);
      background:rgba(255,255,255,.86);
      border-bottom:1px solid rgba(0,0,0,.06);
    }
    .logo img{height:46px}
    .nav ul{display:flex;gap:18px;list-style:none}
    .nav a{
      padding:8px 10px;border-radius:10px;transition:.2s;
    }
    .nav a:hover{background:#f2f2f2}

    /* Mobile nav */
    .menu-toggle{display:none;background:none;border:0;font-size:1.6rem}
    @media(max-width:760px){
      .nav{display:none}
      .menu-toggle{display:block}
      .nav.open{
        position:absolute; left:0; right:0; top:64px;
        background:#fff; border-top:1px solid #eee;
        display:block; padding:10px 14px;
      }
      .nav.open ul{flex-direction:column; gap:6px}
      .nav.open a{display:block; padding:10px 12px}
    }

    /* Hero */
    .hero{
      position:relative; min-height:78vh; display:grid; place-items:center; overflow:hidden;
    }
    .hero::after{
      content:""; position:absolute; inset:0;
      background:linear-gradient(180deg,rgba(0,0,0,.42),rgba(0,0,0,.58));
      z-index:1;
    }
    .hero-bg{
      position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
      transform:scale(1.02);
    }
    .hero-inner{
      position:relative; z-index:2; text-align:center; color:#fff; padding:0 16px; max-width:980px;
    }
    .pill{
      display:inline-block; background:rgba(255,255,255,.18);
      color:#fff; padding:6px 12px; border-radius:999px; margin-bottom:8px;
      backdrop-filter:saturate(160%) blur(2px); font-size:.8rem;
    }
    .hero h1{
      font-family:"Bebas Neue",sans-serif;
      font-size:clamp(2.4rem,6vw,5rem); letter-spacing:.5px; margin:.25rem 0 .35rem;
    }
    .hero p{
      opacity:.95; max-width:760px; margin:0 auto 1.05rem; line-height:1.6;
    }

    /* Buttons */
    .cta-row{display:flex; gap:12px; justify-content:center; flex-wrap:wrap}
    .btn{
      display:inline-flex; align-items:center; gap:.5rem;
      padding:12px 22px; border-radius:999px;
      border:2px solid #fff; color:#fff; background:transparent;
      font-weight:700; letter-spacing:.3px; font-size:.95rem;
      transition:transform .22s ease, box-shadow .22s ease, background-color .22s ease, color .22s ease, border-color .22s ease;
      will-change:transform;
    }
    .btn i{font-size:1.05em}
    .btn:hover{transform:translateY(-3px); box-shadow:0 10px 24px rgba(0,0,0,.28); background:rgba(255,255,255,.12)}
    .btn:active{transform:translateY(-1px)}

    .btn--fill{
      background:#fff; color:var(--accent); border-color:#fff;
    }
    .btn--fill:hover{
      background:linear-gradient(90deg, var(--accent), #a86cdf);
      color:#fff; box-shadow:0 10px 28px rgba(142,62,196,.42);
      border-color:transparent;
    }

    /* Sections */
    .section{padding:48px 16px}
    .wrap{max-width:1180px; margin:0 auto}

    .title{
      font-family:"Bebas Neue",sans-serif;
      font-size:clamp(1.9rem,4vw,3rem); letter-spacing:.4px; margin-bottom:10px;
    }

    /* Featured */
    .feat{display:grid; grid-template-columns:1.2fr .8fr; gap:18px}
    .card{
      position:relative; border-radius:var(--radius-xl); overflow:hidden; box-shadow:var(--shadow); background:#000;
    }
    .ratio-16x9{aspect-ratio:16/9; width:100%; display:block; object-fit:cover; filter:brightness(.92)}
    .badge{
      position:absolute; left:14px; bottom:14px; background:rgba(0,0,0,.62); color:#fff;
      padding:8px 12px; border-radius:999px; font-size:.8rem;
    }
    .meta{
      background:#fff; border-radius:var(--radius-xl); padding:18px; box-shadow:0 8px 24px rgba(0,0,0,.06);
    }
    .meta h3{font-size:1.15rem; margin-bottom:6px}
    .meta p{color:#555; line-height:1.6; margin-bottom:12px}
    .meta .row{display:flex; gap:8px; flex-wrap:wrap}
    .link-btn{
      display:inline-flex; align-items:center; gap:.5rem; background:#000; color:#fff; padding:10px 14px; border-radius:999px; transition:.2s;
    }
    .link-btn:hover{opacity:.92; transform:translateY(-2px)}
    .chips{display:flex; flex-wrap:wrap; gap:10px; margin-top:6px}
    .chip{border:1px solid #e8e8e8; border-radius:999px; padding:8px 12px; background:#fff}
    .nums{display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:18px}
    .num{background:#f8f8f8; border-radius:var(--radius-lg); padding:16px; text-align:center}
    .num b{font-size:1.15rem}

    /* Artist cards */
    .grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:16px}
    .artist-card{
      position:relative; border-radius:18px; overflow:hidden; box-shadow:var(--shadow); cursor:pointer; transition:transform .22s ease, box-shadow .22s ease;
    }
    .artist-card:hover{transform:translateY(-4px); box-shadow:0 16px 46px rgba(0,0,0,.18)}
    .artist-card img{width:100%; height:100%; object-fit:cover; aspect-ratio:4/5; display:block; filter:brightness(.92)}
    .artist-card .label{
      position:absolute; left:12px; bottom:12px; color:#fff; background:rgba(0,0,0,.55);
      padding:8px 12px; border-radius:12px; font-family:"Bebas Neue",sans-serif; font-size:1.25rem; letter-spacing:.3px
    }

    /* Brand placements teaser */
    .cta-band{
      background:linear-gradient(180deg, #fff 0, #f6f6f6 100%);
      border-radius:22px; padding:24px; display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:12px;
      box-shadow:0 10px 36px rgba(0,0,0,.06);
    }
    .cta-band p{max-width:720px; color:#333}

    /* Social / mailing */
    .socials{display:flex; gap:14px; margin-top:12px}
    .sbtn{
      width:44px; height:44px; border-radius:50%; display:grid; place-items:center;
      border:1px solid #ddd; transition:.2s;
    }
    .sbtn:hover{background:#000; color:#fff; border-color:#000}

    /* Responsive */
    @media(max-width:960px){
      .feat{grid-template-columns:1fr}
      .grid-3{grid-template-columns:1fr 1fr}
    }
    @media(max-width:620px){
      .grid-3{grid-template-columns:1fr}
      .nums{grid-template-columns:1fr 1fr}
      .btn{padding:11px 18px}
    }

    /* === HEADER OVERRIDE === */
.header {
  backdrop-filter: none !important;
  background: #fff !important;
  padding: 20px 30px !important;
}

.logo img {
  height: 80px !important; /* adjust as needed */
  max-height: 100% !important;
}

.nav a {
  padding: 10px 14px !important;
}

/* ===== Sticky transparent header (index page only) ===== */
body.home .main-header,
body.home .header {
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 10000;

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;

  background: rgba(255,255,255,0.12) !important;
  backdrop-filter: saturate(160%) blur(6px) !important;
  -webkit-backdrop-filter: saturate(160%) blur(6px) !important;

  border-bottom: 1px solid rgba(255,255,255,0.14);
}

body.home {
  /* offset so content isn't hidden under header */
  padding-top: 74px;
}

body.home .logo img {
  height: 58px;
  max-height: 100%;
}

body.home .nav a, 
body.home .nav-menu a {
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
}

body.home .nav a:hover, 
body.home .nav-menu a:hover {
  background: rgba(255,255,255,0.15);
}

/* Black border + white background button */
.btn-invert {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 22px;
  border: 2px solid #000;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-weight: 700;
  letter-spacing: 0.3px;
  font-size: 0.95rem;
  transition: all 0.22s ease;
}

.btn-invert:hover {
  background: #000;
  color: #fff;
}

.team-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.team-card {
  background: #f9f9f9;
  border-radius: 15px;
  overflow: hidden;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.team-socials {
  margin-top: 10px;
}

.team-socials a {
  display: inline-block;
  margin: 0 6px;
  font-size: 18px;
  color: black;
  background: white;
  border-radius: 50%;
  padding: 8px;
  transition: all 0.3s ease;
}

.team-socials a:hover {
  background: black;
  color: white;
}

/* === Album Art: size + marquee layout (final) === */
.art-gallery{
  --album-tile: 150px;        /* change this one number to taste */
  --album-gap: 16px;
}

@media (min-width: 768px){  .art-gallery{ --album-tile: 140px; } }
@media (min-width: 1200px){ .art-gallery{ --album-tile: 160px; } }

/* viewport just clips the row */
.art-gallery .art-viewport{
  overflow: hidden;
  padding: 8px 0;
}

/* the row must be flex + no wrap + long width + animation */
.art-gallery .art-rail{
  display: flex;
  flex-wrap: nowrap;
  gap: var(--album-gap);
  min-width: max-content;
  will-change: transform;
  animation: artScroll linear infinite;   /* JS sets duration */
}

/* fixed-size square tiles */
.art-gallery .art-viewport .tile{
  flex: 0 0 var(--album-tile);
  width: var(--album-tile);
  height: var(--album-tile);
}

.art-gallery .art-viewport .art-item{
  width: 100%; height: 100%;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
  overflow: hidden;
}
.art-gallery .art-viewport .art-img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}
.art-gallery .art-viewport .art-item:hover .art-img{ transform: scale(1.04); }

/* seamless wrap (your JS duplicates the set once) */
@keyframes artScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Album art: hard edges, full-bleed image */
.art-gallery .art-viewport { padding: 0; }        /* no extra gutter inside the row */

.art-gallery .art-viewport .tile{
  flex: 0 0 var(--album-tile);
  width: var(--album-tile);
  height: var(--album-tile);
  padding: 0;                 /* remove any inner cushion */
  background: none;
  border-radius: 0;           /* no outer rounding */
  box-shadow: none;           /* no white card glow */
}

.art-gallery .art-item{
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0;           /* no inner rounding */
  background: none;
  box-shadow: none;
}

.art-gallery .art-img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;          /* fill the cell completely */
  border-radius: 0;           /* keep corners sharp */
  transform: none;            /* prevent hover zoom gaps */
}

.art-gallery .art-item:hover .art-img{ transform: none; }  /* optional: disable hover scale */

.album-tile,
.album-tile img {
  width: 180px !important;   /* make it bigger */
  height: 180px !important;
  border-radius: 0 !important; /* remove rounded corners */
}

.album-tile img {
  object-fit: cover !important; /* fill entire cell */
}



