/*
Theme Name: Bynx Records
Description: Custom Bynx Records website theme.
Author: Bynx Records
Version: 1.0
*/

/* =========================
   RESET / GLOBAL
========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: #050505;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.bynx-container {
  width: min(1180px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}


/* =========================
   HEADER
========================= */

.bynx-header {
  width: 100%;
  background: #050505;
  border-bottom: 1px solid #181818;
  position: relative;
  z-index: 100;
}

.bynx-nav {
  width: min(1180px, calc(100% - 48px));
  min-height: 105px;
  margin: 0 auto;
  padding: 0;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.bynx-logo {
  display: block;
  flex-shrink: 0;
}

.bynx-logo img {
  width: 190px;
  height: auto;
}

.bynx-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
  margin-left: auto;
}

.bynx-menu a {
  color: #dddddd;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity .2s ease;
}

.bynx-menu a:hover {
  opacity: .5;
}


/* =========================
   HERO
========================= */

.bynx-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url('https://bynxrecords.co/wp-content/uploads/2025/12/ahzeem-scaled.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

.bynx-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.bynx-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.96) 0%,
      rgba(0,0,0,.80) 32%,
      rgba(0,0,0,.28) 68%,
      rgba(0,0,0,.42) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(0,0,0,0) 60%,
      #050505 100%
    );
}

.bynx-hero-inner {
  position: relative;
  z-index: 2;
}

.bynx-eyebrow {
  margin-bottom: 20px;
  color: #999;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.bynx-hero h1 {
  max-width: 1000px;
  margin: 0 0 28px;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(42px, 4.5vw, 68px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2px;
  text-transform: uppercase;

}

.bynx-hero p {
  max-width: 500px;
  margin: 0 0 35px;
  color: #b5b5b5;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

.bynx-btn {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding: 17px 24px;
  border: 1px solid #777;
  color: #fff;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: all .2s ease;
}

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


/* =========================
   MUSIC
========================= */

.bynx-music {
  padding: 90px 0 110px;
  background: #050505;
}

.bynx-section-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 38px;
}

.bynx-section-label {
  margin-bottom: 12px;
  color: #888;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.bynx-section-title {
  margin: 0;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 7px;
  text-transform: uppercase;
}

.bynx-release-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 55px 38px;
}

.bynx-release {
  min-width: 0;
}

.bynx-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #111;
  border: 1px solid #252525;
  border-radius: 6px;
}

.bynx-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease, opacity .4s ease;
}

.bynx-release:hover .bynx-cover img {
  transform: scale(1.025);
  opacity: .78;
}

.bynx-cover-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.2);
  opacity: 0;
  transition: opacity .25s ease;
}

.bynx-release:hover .bynx-cover-overlay {
  opacity: 1;
}

.bynx-play {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  padding-left: 3px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 18px;
}

.bynx-release-info {
  padding-top: 18px;
}

.bynx-release-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.bynx-release-title {
  margin: 0 0 7px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.bynx-artist {
  margin-bottom: 6px;
  color: #aaa;
  font-size: 13px;
}

.bynx-type {
  color: #777;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}


/* =========================
   NEWSLETTER
========================= */

.bynx-newsletter {
  padding: 50px 0;
  background: #090909;
  border-top: 1px solid #242424;
  border-bottom: 1px solid #242424;
}

.bynx-newsletter h2 {
  margin: 0 0 10px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.bynx-newsletter p {
  margin: 0;
  color: #999;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}


/* =========================
   NORMAL WORDPRESS PAGES
========================= */

.bynx-page {
  min-height: 70vh;
  padding: 100px 0 120px;
  background: #050505;
}

.bynx-page-title {
  margin: 0 0 55px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(50px, 6vw, 80px);
  line-height: .95;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.bynx-page-content {
  max-width: 900px;
  color: #bbb;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.8;
}

.bynx-page-content h2 {
  margin: 65px 0 20px;
  color: #fff;
  font-size: 28px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.bynx-page-content h3 {
  margin: 40px 0 15px;
  color: #fff;
  font-size: 19px;
  text-transform: uppercase;
}


/* =========================
   FOOTER
========================= */

.bynx-footer {
  padding: 40px 0 50px;
  background: #050505;
  border-top: 1px solid #1e1e1e;
  color: #777;
}

.bynx-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.bynx-footer,
.bynx-footer a {
  color: #777;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.bynx-footer-links {
  display: flex;
  gap: 30px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 800px) {

  .bynx-nav {
    min-height: auto;
    padding: 22px 0;
    flex-wrap: wrap;
  }

  .bynx-logo img {
    width: 155px;
  }

  .bynx-menu {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 18px 24px;
    margin-top: 10px;
  }

  .bynx-hero {
    min-height: 620px;
  }

  .bynx-release-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {

  .bynx-container {
    width: calc(100% - 30px);
  }

  .bynx-hero {
    min-height: 590px;
    align-items: flex-end;
    padding-bottom: 70px;
  }

  .bynx-hero h1 {
    font-size: 48px;
    letter-spacing: -2px;
  }

  .bynx-release-grid {
    grid-template-columns: 1fr;
  }

  .bynx-footer-inner {
    display: block;
  }

  .bynx-footer-links {
    margin-top: 20px;
  }
}

/* =========================
   GEAR LIST PAGE
========================= */

.bynx-gear-page {
  background: #050505;
}

.bynx-gear-hero {
  padding: 105px 0 70px;
  border-bottom: 1px solid #1f1f1f;
}

.bynx-gear-hero h1 {
  margin: 0 0 25px;

  color: #fff;

  font-size: clamp(54px, 7vw, 90px);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -3px;

  text-transform: uppercase;
}

.bynx-gear-hero p {
  max-width: 650px;

  margin: 0 0 35px;

  color: #aaa;

  font-size: 16px;
  line-height: 1.7;
}

.bynx-gear-document {
  padding: 70px 0 110px;
}

.bynx-pdf-frame {
  width: 100%;

  overflow: hidden;

  background: #111;

  border: 1px solid #262626;
  border-radius: 8px;
}

.bynx-pdf-frame iframe {
  display: block;

  width: 100%;
  height: 1100px;

  border: 0;

  background: #fff;
}

@media (max-width: 800px) {

  .bynx-gear-hero {
    padding: 75px 0 55px;
  }

  .bynx-pdf-frame iframe {
    height: 850px;
  }

}

@media (max-width: 600px) {

  .bynx-gear-hero h1 {
    font-size: 52px;
  }

  .bynx-gear-document {
    padding-top: 45px;
  }

  .bynx-pdf-frame iframe {
    height: 650px;
  }

}

/* =========================================
   ARTISTS PAGE
========================================= */

.bynx-artists-page {
  background: #050505;
}


/* PAGE INTRO */

.bynx-artists-intro {
  padding: 120px 0 110px;
  border-bottom: 1px solid #202020;
}

.bynx-artists-intro h1 {
  margin: 0 0 28px;

  color: #fff;

  font-size: clamp(65px, 9vw, 120px);
  font-weight: 700;

  line-height: .88;
  letter-spacing: -5px;

  text-transform: uppercase;
}

.bynx-artists-intro p {
  max-width: 550px;

  margin: 0;

  color: #999;

  font-size: 16px;
  line-height: 1.7;
}


/* =========================================
   INDIVIDUAL ARTIST
========================================= */

.bynx-artist-profile {
  padding: 105px 0 120px;

  border-bottom: 1px solid #202020;
}


.bynx-artist-number {
  margin-bottom: 30px;

  color: #646464;

  font-size: 9px;

  letter-spacing: 3px;

  text-transform: uppercase;
}


.bynx-artist-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(0, .92fr);

  gap: 85px;

  align-items: center;
}


/* ALTERNATE ARTIST LAYOUT */

.bynx-artist-profile-reverse
.bynx-artist-gallery {
  order: 2;
}

.bynx-artist-profile-reverse
.bynx-artist-profile-content {
  order: 1;
}


/* =========================================
   PHOTO CAROUSEL
========================================= */

.bynx-artist-gallery {
  width: 100%;
}


.bynx-artist-slides {
  position: relative;

  width: 100%;

  aspect-ratio: 4 / 5;

  overflow: hidden;

  background: #0c0c0c;

  border: 1px solid #242424;

  border-radius: 7px;
}


.bynx-artist-slide {
  position: absolute;

  inset: 0;

  opacity: 0;

  visibility: hidden;

  transition:
    opacity .5s ease,
    visibility .5s ease;
}


.bynx-artist-slide.active {
  opacity: 1;

  visibility: visible;
}


.bynx-artist-slide img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;
}


/* CAROUSEL CONTROLS */

.bynx-gallery-bottom {
  min-height: 65px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  border-bottom: 1px solid #242424;
}


.bynx-gallery-count {
  color: #777;

  font-size: 9px;

  letter-spacing: 2px;
}


.gallery-divider {
  margin: 0 4px;

  color: #3e3e3e;
}


.bynx-gallery-controls {
  display: flex;

  gap: 8px;
}


.bynx-gallery-controls button {
  width: 42px;
  height: 42px;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 0;

  border: 1px solid #333;

  border-radius: 50%;

  background: transparent;

  color: #aaa;

  cursor: pointer;

  transition:
    background .2s ease,
    color .2s ease,
    border-color .2s ease;
}


.bynx-gallery-controls button:hover {
  background: #fff;

  border-color: #fff;

  color: #000;
}


/* =========================================
   ARTIST TEXT
========================================= */

.bynx-artist-profile-content h2 {
  max-width: 600px;

  margin: 0 0 38px;

  color: #fff;

  font-size: clamp(46px, 5vw, 74px);

  font-weight: 600;

  line-height: .95;

  letter-spacing: -3px;

  text-transform: uppercase;
}


.bynx-artist-bio {
  max-width: 580px;

  margin-bottom: 50px;
}


.bynx-artist-bio p {
  margin: 0 0 20px;

  color: #a5a5a5;

  font-size: 15px;

  line-height: 1.8;
}


/* MUSIC / SOCIAL LINKS */

.bynx-artist-links {
  max-width: 580px;

  border-top: 1px solid #292929;
}


.bynx-artist-links a {
  min-height: 57px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  border-bottom: 1px solid #292929;

  color: #aaa;

  font-size: 10px;

  letter-spacing: 2px;

  text-transform: uppercase;

  transition:
    color .2s ease,
    padding .2s ease;
}


.bynx-artist-links a:hover {
  color: #fff;

  padding-left: 8px;
}


.bynx-artist-links a span {
  color: #666;

  font-size: 13px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  .bynx-artist-layout {
    gap: 50px;
  }


  .bynx-artist-profile-content h2 {
    font-size: 48px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

  .bynx-artists-intro {
    padding: 80px 0 70px;
  }


  .bynx-artists-intro h1 {
    font-size: 64px;

    letter-spacing: -3px;
  }


  .bynx-artist-profile {
    padding: 70px 0 85px;
  }


  .bynx-artist-layout {
    grid-template-columns: 1fr;

    gap: 45px;
  }


  .bynx-artist-profile-reverse
  .bynx-artist-gallery {
    order: 1;
  }


  .bynx-artist-profile-reverse
  .bynx-artist-profile-content {
    order: 2;
  }


  .bynx-artist-profile-content h2 {
    font-size: 46px;

    margin-bottom: 30px;
  }


  .bynx-artist-slides {
    aspect-ratio: 4 / 5;
  }

}

/* POLICY LISTS */

.bynx-policy-list {
  margin: 20px 0 0;
  padding: 0;

  list-style: none;
}

.bynx-policy-list li {
  position: relative;

  margin-bottom: 16px;

  padding-left: 22px;

  color: #a2a2a2;

  font-size: 15px;
  line-height: 1.75;
}

.bynx-policy-list li::before {
  content: "•";

  position: absolute;
  left: 0;
  top: 0;

  color: #555;
}

.bynx-policy-copy strong {
  color: #fff;
  font-weight: 600;
}

.bynx-policy-copy em {
  color: #d5d5d5;
}


/* POLICY CLOSING */

.bynx-policy-closing {
  padding: 95px 0 35px;

  text-align: center;
}

.bynx-policy-closing h2 {
  margin: 0;

  color: #fff;

  font-size: clamp(42px, 5vw, 68px);
  font-weight: 600;

  line-height: 1;

  letter-spacing: -2px;

  text-transform: uppercase;
}

/* =========================================
   STUDIO POLICY CLEANUP
========================================= */

/* Hide the 01 / 02 / 03 / etc. numbers */
.bynx-policy-number {
  display: none !important;
}


/* Remove the empty number column */
.bynx-policy-item {
  display: block !important;

  padding: 55px 0;

  border-bottom: 1px solid #242424;
}


/* Allow policy text to use the page width */
.bynx-policy-copy {
  max-width: 900px;
}


/* Policy headings */
.bynx-policy-copy h2 {
  margin: 0 0 20px;

  color: #fff;

  font-size: 24px;
  font-weight: 500;

  line-height: 1.2;

  letter-spacing: 1.5px;

  text-transform: uppercase;
}


/* Regular paragraphs — match bullet styling */
.bynx-policy-copy p {
  margin: 0 0 16px;

  color: #a2a2a2;

  font-size: 15px;
  font-weight: 400;

  line-height: 1.75;
}


/* Bullet list */
.bynx-policy-list {
  margin: 0;
  padding: 0;

  list-style: none;
}


.bynx-policy-list li {
  position: relative;

  margin-bottom: 16px;

  padding-left: 22px;

  color: #a2a2a2;

  font-size: 15px;
  font-weight: 400;

  line-height: 1.75;
}


.bynx-policy-list li::before {
  content: "•";

  position: absolute;

  left: 0;
  top: 0;

  color: #555;
}


/* Keep important text brighter */
.bynx-policy-copy strong {
  color: #fff;
  font-weight: 600;
}


.bynx-policy-copy em {
  color: #d5d5d5;
}


/* MOBILE */
@media (max-width: 600px) {

  .bynx-policy-item {
    padding: 38px 0;
  }

  .bynx-policy-copy h2 {
    font-size: 19px;
  }

  .bynx-policy-copy p,
  .bynx-policy-list li {
    font-size: 14px;
  }

}
/* =========================================
   TERMS & CONDITIONS PAGE
========================================= */

.bynx-terms-page {
  background: #050505;
}


/* INTRO */

.bynx-terms-intro {
  padding: 120px 0 100px;

  border-bottom: 1px solid #202020;
}


.bynx-terms-intro h1 {
  margin: 0 0 30px;

  color: #fff;

  font-size: clamp(60px, 8vw, 105px);

  font-weight: 700;

  line-height: .9;

  letter-spacing: -4px;

  text-transform: uppercase;
}


.bynx-terms-intro p {
  max-width: 700px;

  margin: 0 0 30px;

  color: #999;

  font-size: 16px;

  line-height: 1.8;
}


.bynx-terms-updated {
  color: #555;

  font-size: 9px;

  letter-spacing: 2px;

  text-transform: uppercase;
}


/* =========================================
   TERMS CONTENT
========================================= */

.bynx-terms-content {
  padding: 25px 0 100px;
}


.bynx-terms-item {
  padding: 55px 0;

  border-bottom: 1px solid #242424;
}


.bynx-terms-item h2 {
  max-width: 900px;

  margin: 0 0 22px;

  color: #fff;

  font-size: 24px;

  font-weight: 500;

  line-height: 1.2;

  letter-spacing: 1.5px;

  text-transform: uppercase;
}


.bynx-terms-copy {
  max-width: 900px;
}


.bynx-terms-copy p {
  margin: 0 0 17px;

  color: #a2a2a2;

  font-size: 15px;

  font-weight: 400;

  line-height: 1.75;
}


.bynx-terms-copy p:last-child {
  margin-bottom: 0;
}


.bynx-terms-copy strong {
  color: #fff;

  font-weight: 600;
}


/* =========================================
   LISTS
========================================= */

.bynx-terms-list {
  margin: 20px 0;

  padding: 0;

  list-style: none;
}


.bynx-terms-list li {
  position: relative;

  margin-bottom: 16px;

  padding-left: 22px;

  color: #a2a2a2;

  font-size: 15px;

  line-height: 1.75;
}


.bynx-terms-list li:last-child {
  margin-bottom: 0;
}


.bynx-terms-list li::before {
  content: "•";

  position: absolute;

  left: 0;

  top: 0;

  color: #555;
}


/* =========================================
   CLOSING
========================================= */

.bynx-terms-closing {
  padding: 110px 0 30px;

  text-align: center;
}


.bynx-terms-closing .bynx-section-label {
  margin-bottom: 22px;
}


.bynx-terms-closing h2 {
  margin: 0;

  color: #fff;

  font-size: clamp(42px, 5vw, 68px);

  font-weight: 600;

  line-height: 1;

  letter-spacing: -2px;

  text-transform: uppercase;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .bynx-terms-intro {
    padding: 75px 0 65px;
  }


  .bynx-terms-intro h1 {
    font-size: 50px;

    letter-spacing: -3px;
  }


  .bynx-terms-intro p {
    font-size: 14px;
  }


  .bynx-terms-content {
    padding-top: 10px;
  }


  .bynx-terms-item {
    padding: 38px 0;
  }


  .bynx-terms-item h2 {
    font-size: 19px;

    letter-spacing: 1px;
  }


  .bynx-terms-copy p,
  .bynx-terms-list li {
    font-size: 14px;
  }


  .bynx-terms-closing {
    padding: 80px 0 10px;
  }


  .bynx-terms-closing h2 {
    font-size: 40px;
  }

}
/* =========================================
   BOOK YOUR SESSION PAGE
========================================= */

.bynx-book-page {
  background: #050505;
}


/* INTRO */

.bynx-book-intro {
  padding: 120px 0 95px;
  border-bottom: 1px solid #202020;
}

.bynx-book-intro h1 {
  margin: 0 0 28px;

  color: #fff;

  font-size: clamp(58px, 8vw, 105px);
  font-weight: 700;

  line-height: .9;
  letter-spacing: -4px;

  text-transform: uppercase;
}

.bynx-book-intro p {
  max-width: 680px;

  margin: 0;

  color: #999;

  font-size: 16px;
  line-height: 1.8;
}


/* =========================================
   PRICING
========================================= */

.bynx-book-pricing {
  padding: 90px 0 105px;
}

.bynx-rate-grid {
  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 15px;
}

.bynx-rate-card {
  min-height: 170px;

  padding: 24px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  background: #090909;

  border: 1px solid #242424;

  transition:
    transform .2s ease,
    border-color .2s ease;
}

.bynx-rate-card:hover {
  transform: translateY(-4px);

  border-color: #454545;
}

.bynx-rate-name {
  color: #777;

  font-size: 10px;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.bynx-rate-price {
  color: #fff;

  font-size: 28px;
  font-weight: 500;

  line-height: 1.1;
}

.bynx-rate-price span {
  display: block;

  margin-bottom: 4px;

  color: #777;

  font-size: 10px;
  font-weight: 400;

  letter-spacing: 1px;

  text-transform: uppercase;
}

.bynx-rate-note {
  margin: 20px 0 0;

  color: #666;

  font-size: 10px;

  letter-spacing: 1.5px;

  text-transform: uppercase;
}


/* =========================================
   FORM SECTION
========================================= */

.bynx-book-form-section {
  padding: 100px 0 120px;

  background: #090909;

  border-top: 1px solid #202020;
}

.bynx-book-form-header {
  max-width: 760px;

  margin-bottom: 50px;
}

.bynx-book-form-header h2 {
  margin: 0;

  color: #fff;

  font-size: clamp(42px, 5vw, 68px);

  font-weight: 600;

  line-height: 1;

  letter-spacing: -2px;

  text-transform: uppercase;
}


/* FORM GRID */

.bynx-book-form {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 24px 20px;
}

.bynx-form-wide {
  grid-column: 1 / -1;
}


/* FIELDS */

.bynx-form-field label {
  display: block;

  margin-bottom: 10px;

  color: #666;

  font-size: 9px;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.bynx-form-field input,
.bynx-form-field select,
.bynx-form-field textarea {
  width: 100%;

  border: 1px solid #333;

  border-radius: 0;

  outline: none;

  background: #050505;

  color: #fff;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 12px;

  letter-spacing: 1px;

  transition:
    border-color .2s ease,
    background .2s ease;
}

.bynx-form-field input,
.bynx-form-field select {
  height: 56px;

  padding: 0 16px;
}

.bynx-form-field textarea {
  min-height: 135px;

  padding: 16px;

  resize: vertical;
}

.bynx-form-field input::placeholder,
.bynx-form-field textarea::placeholder {
  color: #555;
}

.bynx-form-field input:focus,
.bynx-form-field select:focus,
.bynx-form-field textarea:focus {
  border-color: #777;

  background: #0c0c0c;
}


/* SELECT */

.bynx-form-field select {
  appearance: none;

  cursor: pointer;
}


/* SUBMIT */

.bynx-form-submit-wrap {
  grid-column: 1 / -1;

  padding-top: 10px;
}

.bynx-book-submit {
  min-width: 210px;
  height: 56px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 30px;

  padding: 0 24px;

  border: 1px solid #555;

  background: transparent;

  color: #fff;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 10px;

  letter-spacing: 2px;

  text-transform: uppercase;

  cursor: pointer;

  transition:
    background .2s ease,
    color .2s ease,
    border-color .2s ease;
}

.bynx-book-submit:hover {
  background: #fff;

  color: #000;

  border-color: #fff;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

  .bynx-rate-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .bynx-book-intro {
    padding: 75px 0 65px;
  }

  .bynx-book-intro h1 {
    font-size: 50px;

    letter-spacing: -3px;
  }

  .bynx-book-pricing {
    padding: 70px 0 80px;
  }

  .bynx-rate-grid {
    grid-template-columns: 1fr;
  }

  .bynx-rate-card {
    min-height: 135px;
  }

  .bynx-book-form-section {
    padding: 75px 0 90px;
  }

  .bynx-book-form {
    grid-template-columns: 1fr;
  }

  .bynx-form-wide,
  .bynx-form-submit-wrap {
    grid-column: auto;
  }

  .bynx-book-submit {
    width: 100%;
  }

}

/* =========================================
   BOOKING FORM RESPONSE
========================================= */

.bynx-book-message {
  margin: 0 0 40px;

  padding: 22px 24px;

  border: 1px solid #333;

  color: #aaa;

  font-size: 14px;
  line-height: 1.7;
}

.bynx-book-message strong {
  display: block;

  margin-bottom: 4px;

  color: #fff;

  font-size: 12px;

  letter-spacing: 1.5px;

  text-transform: uppercase;
}

.bynx-book-success {
  border-color: #444;
}

.bynx-book-error {
  border-color: #633;
}

/* =========================================
   BOOK SESSION NAV BUTTON
========================================= */

.bynx-menu .bynx-nav-book {
  padding: 12px 17px;

  border: 1px solid #444;

  color: #fff;

  transition:
    background .2s ease,
    color .2s ease,
    border-color .2s ease;
}


.bynx-menu .bynx-nav-book:hover {
  background: #fff;

  border-color: #fff;

  color: #000;

  opacity: 1;
}


/* MOBILE */

@media (max-width: 700px) {

  .bynx-menu .bynx-nav-book {
    padding: 9px 12px;
  }

}

/* =========================================
   BOOKING CONFIRMATION
========================================= */

.bynx-book-confirmation {
  margin: 0 0 55px;

  padding: 40px;

  background: #0d0d0d;

  border: 1px solid #333;
}

.bynx-book-confirmation h2 {
  margin: 0 0 15px;

  color: #fff;

  font-size: clamp(32px, 4vw, 50px);

  font-weight: 600;

  line-height: 1;

  letter-spacing: -1.5px;

  text-transform: uppercase;
}

.bynx-book-confirmation p {
  max-width: 700px;

  margin: 0;

  color: #a2a2a2;

  font-size: 15px;

  line-height: 1.75;
}

.bynx-book-confirmation-error {
  border-color: #5a3030;
}

@media (max-width: 600px) {

  .bynx-book-confirmation {
    padding: 28px 22px;
  }

}

/* =========================================
   BOOKING MODAL
========================================= */

.bynx-modal-overlay {
  position: fixed;
  inset: 0;

  z-index: 9999;

  display: none;

  align-items: center;
  justify-content: center;

  padding: 24px;

  background: rgba(0, 0, 0, .82);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.bynx-modal-overlay.is-open {
  display: flex;
}

.bynx-modal {
  position: relative;

  width: min(620px, 100%);

  padding: 55px 50px 48px;

  background: #090909;

  border: 1px solid #343434;

  box-shadow:
    0 30px 100px rgba(0,0,0,.65);
}

.bynx-modal h2 {
  margin: 0 0 20px;

  color: #fff;

  font-size: clamp(38px, 5vw, 58px);

  font-weight: 600;

  line-height: .98;

  letter-spacing: -2px;

  text-transform: uppercase;
}

.bynx-modal p {
  max-width: 520px;

  margin: 0 0 35px;

  color: #a4a4a4;

  font-size: 15px;

  line-height: 1.75;
}

.bynx-modal-close {
  position: absolute;

  top: 17px;
  right: 20px;

  width: 38px;
  height: 38px;

  padding: 0;

  border: 0;

  background: transparent;

  color: #777;

  font-size: 28px;

  line-height: 1;

  cursor: pointer;
}

.bynx-modal-close:hover {
  color: #fff;
}

.bynx-modal-button {
  min-width: 150px;
  height: 52px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 25px;

  padding: 0 22px;

  border: 1px solid #555;

  background: transparent;

  color: #fff;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 10px;

  letter-spacing: 2px;

  text-transform: uppercase;

  cursor: pointer;
}

.bynx-modal-button:hover {
  background: #fff;

  border-color: #fff;

  color: #000;
}

.bynx-modal-error {
  border-color: #5a3030;
}

@media (max-width: 600px) {

  .bynx-modal {
    padding: 45px 26px 34px;
  }

  .bynx-modal h2 {
    font-size: 38px;
  }

}

/* =========================================
   MOBILE — CENTER CONTENT
========================================= */

@media (max-width: 768px) {

  /* GENERAL PAGE CONTENT */

  .bynx-container {
    text-align: center;
  }


  /* HERO */

  .bynx-hero-inner {
    text-align: center;
    align-items: center;
  }

  .bynx-hero-inner p {
    margin-left: auto;
    margin-right: auto;
  }


  /* SECTION HEADINGS */

  .bynx-section-top {
    justify-content: center;
    text-align: center;
  }

  .bynx-section-label,
  .bynx-section-title {
    text-align: center;
  }


  /* SERVICES */

  .bynx-services,
  .bynx-services-inner {
    text-align: center;
  }


  /* MUSIC */

  .bynx-music {
    text-align: center;
  }

  .bynx-release-info,
  .bynx-release-row {
    text-align: center;
  }


  /* BOOKING PAGE */

  .bynx-book-intro {
    text-align: center;
  }

  .bynx-book-intro p {
    margin-left: auto;
    margin-right: auto;
  }

  .bynx-book-pricing {
    text-align: center;
  }

  .bynx-rate-card {
    text-align: center;
  }

  .bynx-rate-note {
    text-align: center;
  }

  .bynx-book-form-header {
    text-align: center;
  }

  .bynx-book-form-header h2 {
    text-align: center;
  }


  /* Keep actual form fields readable */

  .bynx-book-form {
    text-align: left;
  }


  /* MODAL */

  .bynx-modal {
    text-align: center;
  }

  .bynx-modal p {
    margin-left: auto;
    margin-right: auto;
  }


  /* NEWSLETTER */

  .bynx-newsletter,
  .bynx-newsletter-inner {
    text-align: center;
  }

}
/* =========================================
   FORCE MUSIC CAROUSEL
   KEEP THIS AT VERY BOTTOM OF STYLE.CSS
========================================= */

.bynx-release-grid {
  display: flex !important;
  flex-wrap: nowrap !important;

  width: 100% !important;

  gap: 38px !important;

  overflow-x: auto !important;
  overflow-y: hidden !important;

  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;

  scrollbar-width: none;
}

.bynx-release-grid::-webkit-scrollbar {
  display: none;
}

.bynx-release {
  flex: 0 0 calc((100% - 76px) / 3) !important;
  width: calc((100% - 76px) / 3) !important;
  max-width: none !important;

  scroll-snap-align: start;
}
/* =========================================
   FORCE MOBILE CENTERING
   KEEP AT VERY BOTTOM OF STYLE.CSS
========================================= */

@media (max-width: 768px) {

  /* MAIN CONTAINERS */
  .bynx-container {
    width: calc(100% - 30px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }


  /* HEADER / NAV */
  .bynx-nav {
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;

    gap: 28px !important;

    padding: 24px 0 !important;
  }

  .bynx-logo {
    margin: 0 auto !important;
  }

  .bynx-menu {
    width: 100% !important;

    margin: 0 auto !important;

    justify-content: center !important;
    align-items: center !important;

    flex-wrap: wrap !important;

    gap: 20px 28px !important;

    text-align: center !important;
  }


  /* HERO */
  .bynx-hero {
    justify-content: center !important;
  }

  .bynx-hero-inner {
    width: 100% !important;

    margin: 0 auto !important;

    text-align: center !important;
  }

  .bynx-hero h1,
  .bynx-hero p,
  .bynx-eyebrow {
    margin-left: auto !important;
    margin-right: auto !important;

    text-align: center !important;
  }

  .bynx-btn {
    margin-left: auto !important;
    margin-right: auto !important;
  }


  /* SERVICES SECTION */
  .bynx-services-heading,
  .bynx-services-simple-inner {
    width: 100% !important;

    margin-left: auto !important;
    margin-right: auto !important;

    text-align: center !important;
  }

  .bynx-services-line {
    justify-content: center !important;
    text-align: center !important;
  }


  /* GENERIC SECTION HEADERS */
  .bynx-section-top {
    width: 100% !important;

    display: flex !important;
    flex-direction: column !important;

    align-items: center !important;
    justify-content: center !important;

    text-align: center !important;
  }

  .bynx-section-label,
  .bynx-section-title {
    width: 100% !important;

    text-align: center !important;
  }


  /* BOOK PAGE */
  .bynx-book-intro {
    text-align: center !important;
  }

  .bynx-book-intro h1,
  .bynx-book-intro p {
    margin-left: auto !important;
    margin-right: auto !important;

    text-align: center !important;
  }

  .bynx-book-pricing {
    text-align: center !important;
  }

  .bynx-rate-grid {
    justify-items: center !important;
  }

  .bynx-rate-card {
    width: 100% !important;

    align-items: center !important;

    text-align: center !important;
  }

  .bynx-rate-name,
  .bynx-rate-price,
  .bynx-rate-note {
    text-align: center !important;
  }

  .bynx-book-form-header {
    width: 100% !important;

    margin-left: auto !important;
    margin-right: auto !important;

    text-align: center !important;
  }

  .bynx-book-form-header h2 {
    text-align: center !important;
  }


  /* KEEP FORM LABELS / INPUTS NORMAL */
  .bynx-book-form {
    text-align: left !important;
  }

  .bynx-form-field {
    text-align: left !important;
  }


  /* ARTISTS PAGE */
  .bynx-artists-intro,
  .bynx-artist-profile-content,
  .bynx-artist-number {
    text-align: center !important;
  }

  .bynx-artist-profile-content h2,
  .bynx-artist-bio {
    margin-left: auto !important;
    margin-right: auto !important;

    text-align: center !important;
  }


  /* POLICY / TERMS / GEAR */
  .bynx-policy-intro,
  .bynx-terms-intro,
  .bynx-gear-hero {
    text-align: center !important;
  }

  .bynx-policy-intro p,
  .bynx-terms-intro p,
  .bynx-gear-hero p {
    margin-left: auto !important;
    margin-right: auto !important;
  }


  /* NEWSLETTER */
  .bynx-newsletter-header,
  .bynx-newsletter-inner {
    text-align: center !important;
  }


  /* POPUP */
  .bynx-modal {
    text-align: center !important;
  }

}