/* Base tokens (we'll fill colors once you pick them) */
:root {
  --bg: #0b0b0b;
  --text: #ffffff;
  --muted: #bdbdbd;
  --brand: #E50914;   /* placeholder: red */
  --accent: #FFD500;  /* placeholder: yellow */
  --maxw: 1200px;
}

/* Reset-ish */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { background: var(--bg); color: var(--text); font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }

.container { max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }
.section { padding-block: 56px; }

/* Utility placeholders */
.hidden { display: none !important; }
/* ===== Global buttons (compact) ===== */
.btn{
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.9rem 1.1rem; border-radius:999px;
  border:0; background:var(--brand); color:#ffffff;
  font-weight:700; cursor:pointer; line-height:1;
  transition: background .18s ease, box-shadow .18s ease, transform .18s ease, opacity .18s ease;
  justify-content: center;
}

.btn:hover{ background: var(--brand-600, #c10812); transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }
.btn:focus-visible{ outline:2px solid var(--accent); outline-offset:2px; }
.btn[disabled]{ opacity:.55; cursor:not-allowed; transform:none; }

/* Ghost (outline) button */
.btn.ghost{
  background:transparent; color:var(--text);
  border:1.5px solid var(--brand);
}
.btn.ghost:hover{ border-color: var(--accent); box-shadow: 0 0 0 6px rgba(255,213,0,.18); }

/* Small size (use on card CTAs if needed) */
.btn.sm{ padding:.6rem .85rem; font-weight:700; }

/* Links default: no underline */
a { text-decoration: none; }

/* Make sure buttons never inherit underlines */
.btn, .btn:link, .btn:visited,
.btn.ghost, .btn.ghost:link, .btn.ghost:visited {
  text-decoration: none !important;
}

/* Optional: reinforce inside any .actions group */
.actions a.btn { text-decoration: none !important; }


/* =========================
   Header / Navbar
========================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,10,.78);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid #181818;
}
.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 0;
}

.brand{display:flex;align-items:center;gap:.6rem;text-transform:uppercase;letter-spacing:.4px}
.brand-name{font-weight:800}
.brand img{display:block;border-radius:8px}

.menu{display:flex;align-items:center;gap:1rem}
.nav-link{
  opacity:.9;
  padding:.5rem .25rem;
  border-radius:8px;
  transition:opacity .15s ease, background .15s ease;
}
.nav-link:hover,
.nav-link.is-active{opacity:1}

.hamburger{
  display:none;
  width:44px;height:38px;
  border:1px solid #262626;border-radius:10px;
  background:#141414;cursor:pointer;
  align-items:center;justify-content:center;gap:4px;
}
.hamburger-bar{
  display:block;width:20px;height:2px;background:#e6e6e6;border-radius:2px;
}

/* Mobile menu panel */
.mobile-menu{
  display:none;
  background: #101010;
  border-top:1px solid #191919;
  border-bottom:1px solid #191919;
}
.mobile-link{
  display:block;
  padding:1rem 20px;
  border-top:1px solid #191919;
}

/* Focus styles (accessibility) */
a:focus-visible,
button:focus-visible{
  outline:2px solid var(--accent);
  outline-offset:2px;
  border-radius:8px;
}

/* Responsive behavior */
@media (max-width: 920px){
  .menu{display:none}
  .hamburger{display:inline-flex}
  .mobile-menu.show{display:block}
}
/* Link colors & states */
.site-header a { text-decoration: none; } /* kill default blue underline */

.menu .nav-link {
  color: var(--text);
  opacity: .85;
  padding: .6rem .6rem;            /* bigger tap target */
  border-radius: 8px;
  transition: color .2s ease, opacity .2s ease;
}

.menu .nav-link:hover {
  color: var(--brand);              /* red highlight on hover */
  opacity: 1;
}

/* Active page */
.menu .nav-link.is-active,
.menu .nav-link[aria-current="page"] {
  color: var(--brand);
  opacity: 1;
}

/* Optional: subtle active underline */
.menu .nav-link.is-active::after,
.menu .nav-link[aria-current="page"]::after {
  content:"";
  display:block;
  height:2px;
  background: var(--accent);        /* yellow accent */
  margin-top: 4px;
  border-radius: 2px;
}
/* Mobile link colors */
.mobile-link {
  color: var(--text);
  opacity: .85;
  transition: color .2s ease, opacity .2s ease, background .2s ease;
}
.mobile-link:hover {
  color: var(--brand);
  opacity: 1;
  background: #141414;
}

/* =========================
   Hero 
========================= */
.hero{
  position: relative;
  overflow: visible;                 /* allow overlap into next section */
  z-index: 2;                        /* sit above the next section */
  background:
    radial-gradient(1200px 600px at 70% -10%, rgba(229,9,20,.45), transparent 60%),
    radial-gradient(900px 600px at -10% 30%, rgba(255,213,0,.20), transparent 55%),
    var(--bg);
}

.hero-inner{
  min-height: 72svh;
  display: grid;
  grid-template-columns: 1fr 1fr;    /* equal space for copy + image */
  align-items: end;                  /* align baselines */
  gap: 2rem;
  padding-block: 72px 40px;          /* fixed typo (72px) */
}

.hero-copy{
  max-width: 720px;
  z-index: 2;
  align-self: end;                   /* keep baseline aligned with image */
  padding-bottom: 40px;              /* subtle balance with image */
}

.hero-title{
  font-family: var(--font-display, system-ui);
  font-size: clamp(2.2rem, 4.6vw, 4.4rem);
  line-height: 1.05;
  margin: 0 0 .6rem;
}

.hero-title{
  display:flex;
  flex-direction:column;
}

/* first line stays left */
.hero-line-1{
  text-align:left;
}

/* second line centered */
.hero-line-2{
  text-align:left;
  font-size:0.9em;
  font-weight:800;
  margin-left: 50px;
}

/* center the buttons under Nollyyyy */
.hero-cta{
  display:flex;
  justify-content:flex-start;
  gap:.75rem;
  margin-top:1rem;
  flex-wrap: wrap;
}
.hero-sub{
  margin: .25rem 0 1.1rem;
  color: var(--muted);
  max-width: 52ch;
}
/* HOMEPAGE ONLY */
body[data-page="home"] .hero-line-2{
  text-align:left;
  margin-left:50px;
}

body[data-page="home"] .hero-cta{
  justify-content:hero;
  margin-left:92px;
}

.hero-cta{ display:flex; gap:.75rem; flex-wrap:wrap }
.btn.ghost{ background:transparent; border:1.5px solid var(--brand); color:var(--text) }
.hero-tags{ margin-top: .8rem }

.hero-img{
  justify-self: end;
  width: min(620px, 48vw);           /* bigger presence */
  height: auto;
  pointer-events: none;
  position: relative;
  z-index: 3;                        /* above the fade */
  margin-top: -28px;                 /* slight lift near headline */
  transform: translateY(72px);       /* push INTO next section (desktop) */
  /*filter: drop-shadow(0 25px 55px rgba(0,0,0,.6));*/
  filter: drop-shadow(0 40px 70px rgba(0,0,0,.6)) drop-shadow(0 0 20px rgba(255,0,0,.15));

}

/* Soft fade into next section (behind image) */
.hero::after{
  content:none;
  /*position:absolute;
  left:0; right:0;
  bottom:-72px;     
  height:100px;     
  background: linear-gradient(to bottom, rgba(0,0,0,0) 20%, rgba(0,0,0,0.25) 80%, rgba(0,0,0,.35) 100%);
  pointer-events:none;
  z-index:2;
  mix-blend-mode: multiply;*/
}


/* Hover feedback for hero CTAs */
.hero .btn:hover{
  box-shadow: 0 0 0 6px rgba(255,213,0,.22);
  transform: translateY(-1px);
}
.hero .btn.ghost:hover{ border-color: var(--accent); }

.hero-img::after{
  content:"";
  position:absolute;
  left:50%; bottom:-6px;
  transform: translateX(-50%);
  width: 60%;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(0,0,0,.45), transparent 70%);
  pointer-events:none;
}

/* =========================
   Responsive
========================= */
@media (max-width: 1024px){
  .hero-inner{
    grid-template-columns: 1fr;      /* stack */
    align-items: center;
    min-height: 66svh;
    padding-block: 64px 36px;
  }
  .hero-img{
    justify-self: center;
    width: min(76%, 520px);
    margin-top: -16px;
    transform: translateY(28px);     /* lighter overlap on tablet */
  }
  /*.hero::after{ bottom: -28px; height: 72px; }*/
}

@media (max-width: 560px){
  .hero-inner{ padding-block: 48px 28px; }
  .hero-img{
    width: 86%;
    margin-top: 0;
    transform: translateY(0);        /* disable overlap on small phones */
  }
  /*.hero::after{ bottom: -6px; height: 40px; }*/
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .hero .btn{ transition: none; }
}
/*@media (max-width: 768px){
  .hero-img { transform: translateY(40px); width:80%; }
}
*/
/* =========================
   Movement Hub
========================= */
.hub{
	background: #0f0f0f; /* subtle contrast against hero */ 
	position: relative;
	z-index: 1;
	margin-top: -12px;
	padding-top: calc(60px + 12px);
}
.hub-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.hub-card{
  background: #151515;
  border: 1px solid #1f1f1f;
  border-radius: 16px;
  padding: 1.1rem;
  display:flex;
  flex-direction:column;
  gap:.5rem;
  transition: transform .12s ease, border-color .2s ease, box-shadow .2s ease;
}
.hub-card:hover{
  transform: translateY(-3px);
  border-color: #2a2a2a;
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
}
.hub-icon{font-size:1.35rem; opacity:.95}
.hub-title{margin:.15rem 0 .25rem; font-weight:800}
.hub-text{color: var(--muted); margin:0}
.hub-actions{margin-top:.5rem}

.hub-card:hover .hub-icon {
  transform: translateY(-1px);
  filter: drop-shadow(0 0 6px rgba(255,213,0,.4));
}
.hub::before{
  content:"";
  position:absolute; top:0; left:0; right:0;
  height:3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}


@media (max-width: 1024px){
  .hub-grid{grid-template-columns: 1fr 1fr;}
}
@media (max-width: 560px){
  .hub-grid{grid-template-columns: 1fr;}
}

/* =========================
   Featured Single
========================= */
.featured{background:#0f0f0f}
.featured-grid{
  display:grid; gap:2rem;
  grid-template-columns: 1.1fr 1fr;
  align-items:center;
}
.featured-title{
  font-family: var(--font-display, system-ui);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin:0 0 .35rem;
}
.featured-sub{color:var(--muted); margin:.25rem 0 1rem}

.featured-players{display:grid; gap:.75rem; margin:.75rem 0 1rem}
.player{
  width:100%; height:152px; border:0; border-radius:12px; background:#111;
}

.featured-actions{display:flex; gap:.6rem; align-items:center; flex-wrap:wrap}

.featured-visual .cover{
  aspect-ratio: 16/10;
  width:100%;
  border-radius:16px;
  border:1px solid #1f1f1f;
  background:#181818 center/cover no-repeat;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}

@media (max-width:1024px){
  .featured-grid{grid-template-columns:1fr}
  .featured-visual{order:-1}
}
/* =========================
   Featured Tracks
========================= */
.tracks{background:#0f0f0f}
.tracks-head{display:flex; align-items:end; justify-content:space-between; gap:1rem; flex-wrap:wrap; margin-bottom:1rem}
.tracks-title{
  font-family: var(--font-display, system-ui);
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  margin:0;
}
.tracks-sub{color:var(--muted); margin:.25rem 0 0}

.tracks-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.track{
  background:#151515;
  border:1px solid #1f1f1f;
  border-radius:16px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.track .art{
  aspect-ratio:1/1;
  background:#222 center/cover no-repeat;
}
.track .meta{
  padding:1rem;
  display:flex; flex-direction:column; gap:.5rem;
}
.track .name{margin:0}
.track .info{margin:0; color:var(--muted)}
.track .actions{display:flex; gap:.5rem; flex-wrap:wrap; margin-top:.25rem}

@media (max-width:1024px){
  .tracks-grid{grid-template-columns: 1fr 1fr}
}
@media (max-width:560px){
  .tracks-grid{grid-template-columns: 1fr}
}
/* =========================
   CTA: Merch Band
========================= */
.cta-band{
  background:
    linear-gradient(90deg, rgba(0,0,0,.6), rgba(0,0,0,.2)),
    radial-gradient(1000px 400px at 0% 50%, rgba(229,9,20,.35), transparent 60%),
    radial-gradient(800px 400px at 100% 50%, rgba(255,213,0,.18), transparent 55%),
    #0e0e0e;
  border-block: 1px solid #181818;
}
.cta-band-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:1rem; flex-wrap:wrap; padding-block: 28px;
}
.cta-band-title{margin:0; font-weight:800; letter-spacing:.3px}

@media (max-width:640px){
  .cta-band-inner{flex-direction:column; align-items:flex-start}
}
/* =========================
   Events
========================= */
.events{background:#0f0f0f}
.events-head{display:flex; align-items:end; justify-content:space-between; gap:1rem; flex-wrap:wrap; margin-bottom:1rem}
.events-title{
  font-family: var(--font-display, system-ui);
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  margin:0;
}
.events-sub{color:var(--muted); margin:.25rem 0 0}

.events-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.event{
  background:#151515;
  border:1px solid #1f1f1f;
  border-radius:16px;
  padding:1rem;
  display:flex; flex-direction:column; gap:.5rem;
}
.event-date{font-weight:800; color:var(--brand)}
.event-venue{color:var(--text)}
.event-actions{margin-top:.25rem}

@media (max-width:1024px){
  .events-grid{grid-template-columns: 1fr 1fr}
}
@media (max-width:560px){
  .events-grid{grid-template-columns: 1fr}
}
/* =========================
   Movement Metrics
========================= */
.metrics{background:#0f0f0f}
.metrics-head{
  display:flex; align-items:end; justify-content:space-between;
  gap:1rem; flex-wrap:wrap; margin-bottom:1rem;
}
.metrics-title{
  font-family: var(--font-display, system-ui);
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  margin:0;
}
.metrics-sub{color:var(--muted); margin:.25rem 0 0}

.metrics-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.metric{
  background:#151515;
  border:1px solid #1f1f1f;
  border-radius:16px;
  padding:1.25rem;
  text-align:center;
}
.metric .num{
  font-family: var(--font-display, system-ui);
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  letter-spacing:.5px;
}
.metric .label{color:var(--muted); margin-top:.35rem}

@media (max-width:1024px){
  .metrics-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:560px){
  .metrics-grid{grid-template-columns:1fr}
}
/* =========================
   About 
========================= */
.about{background:#0f0f0f}
.about-grid{
  display:grid; gap:2rem;
  grid-template-columns: 1.1fr 1fr;
  align-items:center;
}
.about-title{
  font-family: var(--font-display, system-ui);
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  margin:0 0 .35rem;
}
.about-lead{color:var(--text); margin:.25rem 0 .75rem; font-weight:600}
.about-text{color:var(--muted); margin:0 0 1rem}
.about-list{margin:0; padding-left:1.1rem; color:var(--muted); display:grid; gap:.4rem}

.about-visual{
  width:100%; 
  min-height:320px;
  background:#181818 center/cover no-repeat;
  border:1px solid #1f1f1f;
  border-radius:16px;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}

@media (max-width:1024px){
  .about-grid{grid-template-columns:1fr}
  .about-visual{order:-1}
}

/* Home: From roots to rhythm portrait card */
.about-visual.about-portrait{
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;

  /* soft dark gradient that matches the site */
  background:
    radial-gradient(900px 420px at 60% 20%, rgba(229,9,20,.18), transparent 60%),
    radial-gradient(700px 420px at 20% 85%, rgba(255,213,0,.10), transparent 55%),
    linear-gradient(180deg, #141414 0%, #0f0f0f 60%, #0b0b0b 100%);
}

.about-portrait-img{
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;

  /* makes him feel grounded (not floating) */
  filter:
    drop-shadow(0 28px 55px rgba(0,0,0,.65))
    drop-shadow(0 10px 18px rgba(0,0,0,.45));
}

/* =========================
   Contact
========================= */
.contact{background:#0f0f0f}
.contact-grid{
  display:grid; gap:2rem;
  grid-template-columns: 1.05fr 1fr;
  align-items:start;
}
.contact-title{
  font-family: var(--font-display, system-ui);
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  margin:0 0 .35rem;
}
.contact-sub{color:var(--muted); margin:.25rem 0 1rem}

.contact-info p{margin:.25rem 0}
.contact-socials{display:flex; gap:.5rem; flex-wrap:wrap; margin-top:.75rem}
.contact-socials .social{
  display:inline-flex; align-items:center; justify-content:center;
  padding:.45rem .75rem; border:1px solid #2a2a2a; border-radius:999px;
  font-size:.92rem; color:var(--text); opacity:.9;
  transition: border-color .18s ease, background .18s ease, color .18s ease, opacity .18s ease;
}
.contact-socials .social:hover{background:#141414; border-color:#3a3a3a; opacity:1}

.contact-form{
  background:#151515; border:1px solid #1f1f1f; border-radius:16px;
  padding:1rem; display:grid; gap:.85rem;
}
.contact-form .hp{position:absolute; left:-10000px; top:auto; width:1px; height:1px; overflow:hidden}
.field{display:grid; gap:.35rem}
.field.two{grid-template-columns:1fr 1fr; gap:.75rem}
label{font-weight:600}
input, textarea, select{
  width:100%; border-radius:12px; border:1px solid #242424;
  background:#121212; color:var(--text); padding:.85rem; font:inherit;
}
textarea{min-height:140px; resize:vertical}
.form-note{color:var(--muted); font-size:.9rem; margin: .25rem 0 0}

body[data-page="contact"] .contact-info { 
  text-align: left;               /* avoid inherited centering */
}
/* Contact — image under socials in 'Get in touch' */
body[data-page="contact"] .contact-info .contact-visual {
  margin-top: 1rem;
  padding: 0;
  display: block;	
  /*border-radius: 16px;
  overflow: hidden;
  border: 1px solid #1f1f1f;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);*/
}

body[data-page="contact"] .contact-info .contact-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid #1f1f1f;
  box-shadow: 0 18px 50px rgba(0,0,0,.35); 
}
/* Contact visual under socials */
/*.contact .contact-visual{
  width: 100%;
  min-height: 320px;                 /* matches existing card height 
  background:
    #181818 url('/assets/img/contact/AdobeStock_953416418_studio-md.jpg') center/cover no-repeat;
  border: 1px solid #1f1f1f;
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}*/


@media (max-width:1024px){
  .contact-grid{grid-template-columns:1fr}
}
@media (max-width:560px){
  .field.two{grid-template-columns:1fr}
}


/* =========================
   Footer
========================= */
.site-footer{
  background: #101010; /* uses dark base; we can theme later */
  border-top: 1px solid #181818;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 40px 0;
}
.footer-brand .brand{margin-bottom:.5rem}
.footer-tagline{color:var(--muted); margin:.25rem 0 1rem}
.footer-socials{display:flex; gap:.5rem; flex-wrap:wrap}
.footer-socials .social{
  display:inline-flex; align-items:center; justify-content:center;
  padding:.45rem .75rem;
  border:1px solid #2a2a2a; border-radius:999px;
  font-size:.92rem; color:var(--text);
  opacity:.9; background:transparent;
  transition: border-color .18s ease, background .18s ease, color .18s ease, opacity .18s ease;
}
.footer-socials .social:hover{opacity:1;
  border-color:#3a3a3a;
  background:#141414;
  color:var(--text)}

.footer-title{font-weight:800; margin:0 0 .75rem}
.footer-list{list-style:none; margin:0; padding:0; display:grid; gap:.5rem}
.footer-list a{color:var(--muted)}
.footer-list a:hover{color:var(--text)}

.footer-bottom{
  border-top:1px solid #181818;
  background:#0c0c0c;
}
.footer-bottom-inner{
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
  padding:16px 0;
}
.back-to-top{
  color:var(--muted);
  text-decoration:none;
  border:1px solid #2a2a2a;
  padding:.35rem .6rem; border-radius:999px;
}
.back-to-top:hover{color:var(--text); border-color:#3a3a3a}

/* Optional: slightly tighter chips */
.footer-socials{ gap:.4rem; }
.footer-socials .social{ padding:.4rem .7rem; }

/* Responsive */
@media (max-width: 960px){
  .footer-grid{grid-template-columns: 1fr 1fr}
}
@media (max-width: 560px){
  .footer-grid{grid-template-columns: 1fr}
  .footer-bottom-inner{flex-direction:column; align-items:flex-start}
}

/* Music Player */
.player:not([src]), .player[src=""] { display:none; }

/* Policies page: readable text on white cards */
.policy {
  background: #fff;
  color: #111;               /* set base text color dark */
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 16px;
}

/* ensure all inner text uses dark color (your theme likely sets body {color:#fff}) */
.policy :is(h1, h2, h3, h4, p, li, th, td, small, span, a) {
  color: #111;
}

/* links inside the white cards */
.policy a { text-decoration: underline; }

/* make the size table clearer on light bg */
.size-table th { background: #f7f7f7; }
.size-table th, .size-table td { border-bottom: 1px solid #e5e7eb; }

/* =========================
   Merch Filter
========================= */
.merch-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  background: #0f0f0f;
  border: 1px solid #1f1f1f;
  border-radius: 16px;
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.filter-buttons .btn.sm {
  background: #151515;
  border: 1px solid #2a2a2a;
  color: var(--text);
}

.filter-buttons .btn.sm.is-active {
  background: var(--brand);
  color: #0b0b0b;
}

.filter-dropdown {
  background: #151515;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  color: var(--text);
  padding: .6rem .75rem;
  font-weight: 600;
  min-width: 180px;
}

.filter-dropdown:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (max-width: 700px) {
  .merch-filter {
    flex-direction: column;
    align-items: flex-start;
  }
  .filter-dropdown { width: 100%; }
}

/* Track button playing state */
[data-action="listen"].is-playing{
  box-shadow: 0 0 0 6px rgba(255,213,0,.18);
  transform: translateY(-1px);
}

/* =========================
   Merch Banner 
========================= */
.merch-banner {
  background:
    radial-gradient(900px 400px at 30% 50%, rgba(229,9,20,.25), transparent 60%),
    #0f0f0f;
  border-top: 1px solid #181818;
  border-bottom: 1px solid #181818;
  padding-block: 16px;
}

.merch-banner-img {
  display: block;          /* IMPORTANT */
  width: 100%;
  max-width: 880px;        /* widen only */
  height: auto;            /* preserve aspect ratio */
  margin-inline: auto;
}

.merch-banner {
  padding-block: 24px;              /* control section height */
}

.merch-banner-bg {
  width: 100%;
  max-width: 1100px;                /* MAKES IT WIDER */
  height: 220px;                    /* LOCKED HEIGHT */
  margin-inline: auto;

  background-image: url("/assets/img/merch/tout-peyi-banner.png");
  background-size: cover;           /* crops, does NOT stretch */
  background-position: center;
  background-repeat: no-repeat;

  border-radius: 16px;
  border: 1px solid #1f1f1f;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}

/* About page — cutout portrait card */
.about-visual.about-portrait{
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;

  /* soft dark gradient that matches the site */
  background:
    radial-gradient(900px 420px at 60% 20%, rgba(229,9,20,.14), transparent 60%),
    radial-gradient(700px 420px at 20% 80%, rgba(255,213,0,.10), transparent 55%),
    linear-gradient(180deg, #141414 0%, #0f0f0f 60%, #0b0b0b 100%);
}

.about-portrait-img{
  width: 100%;
  max-width: 520px;     /* keeps it clean on desktop */
  height: auto;
  display: block;

  /* makes the cutout pop without needing a background image */
  filter: drop-shadow(0 28px 55px rgba(0,0,0,.65));
}

/* Optional: tighten on smaller screens */
@media (max-width: 560px){
  .about-visual.about-portrait{ padding: 12px; }
  .about-portrait-img{ max-width: 420px; }
}

.about-portrait-img{
  filter:
    drop-shadow(0 28px 55px rgba(0,0,0,.65))
    drop-shadow(0 8px 12px rgba(0,0,0,.45));
}

/* ===============================
   MUSIC PAGE: Singles Grid Layout
   =============================== 

.music-page .tracks-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

/* Make each track card behave like a compact product card 
.music-page .track{
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Cover art: smaller + not banner-wide 
.music-page .track .art{
  height: 180px;
  width: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
}

/* Spacing for the text + buttons 
.music-page .track .meta{
  padding-top: 10px;
}

.music-page .track .actions{
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}*/

/* ===============================
   MUSIC PAGE ONLY (by section id)
   =============================== */

/* 4-column grid on desktop */
#music-grid .tracks-grid{
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

#music-grid .track{ width: auto !important; }

/* Make each card compact (image left, details right) */
#music-grid .track{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 12px;
}

/* Make the cover thumbnail NOT wide */
#music-grid .track .art{
  width: 90px;
  height: 90px;
  border-radius: 12px;
  flex: 0 0 90px;
  background-size: cover;
  background-position: center;
}

/* Tighten meta area */
#music-grid .track .meta{
  padding: 0;            /* override the default 1rem padding */
  flex: 1;
}

#music-grid .track .actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Responsive: 2 columns on tablet, 1 on mobile */
@media (max-width: 980px){
  #music-grid .tracks-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px){
  #music-grid .tracks-grid{ grid-template-columns: 1fr; }
  #music-grid .track{ flex-direction: column; align-items: flex-start; }
  #music-grid .track .art{ width: 100%; height: 180px; flex: none; }
}

/* MUSIC PAGE: force 4-column grid */
#music-grid .tracks-grid{
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

/* If you’re on a smaller screen, automatically drop columns */
@media (max-width: 1100px){
  #music-grid .tracks-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 600px){
  #music-grid .tracks-grid{ grid-template-columns: 1fr !important; }
}

/* MUSIC PAGE ONLY: responsive grid that auto-fits columns */
body[data-page="music"] .tracks-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

/* ===============================
   MUSIC PAGE: track card layout
   =============================== */

/* Make each track card have 2 columns: image | details */
.music-page #music-grid .track{
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  align-items: center;
}

/* Keep cover image size */
.music-page #music-grid .track .art{
  width: 90px;
  height: 90px;
  border-radius: 12px;
}

/* Title sits beside the image (not centered) */
.music-page #music-grid .track .title{
  margin: 0;
  text-align: left;
}

/* Buttons left-to-right: Listen then Buy */
.music-page #music-grid .track .actions{
  display: flex;
  gap: 10px;
  justify-content: flex-start;
}

/* ===============================
   MUSIC PAGE: pagination styling
   =============================== */
.music-page #songsPager{
  margin-top: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.music-page #songsPager button:disabled{
  opacity: 0.45;
  cursor: not-allowed;
}

/* Hide mini player on homepage only */
/*body[data-page="home"] #audio-player {
  position: fixed;
  bottom: -120px;   /* push it off screen 
  opacity: 0;
  pointer-events: none;
}*/

/* Home: keep audio functional but visually hidden (no layout space) */
body[data-page="home"] #audio-player{
  position: fixed;
  left: -9999px;
  bottom: -9999px;

  width: 1px;
  height: 1px;
  overflow: hidden;

  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;

  opacity: 0;
  pointer-events: none;
}


body[data-page="contact"] .contact-info {
  padding-left: 0;
}

body[data-page="contact"] .contact-info .contact-visual {
  margin-left: 0;
}


/* ==================================
   MUSIC PAGE — Make Album Box Square
   ================================== */

body[data-page="music"] .featured-visual .cover{
  aspect-ratio: 1 / 1;   /* make it square */
  max-width: 420px;      /* optional control */
}

/* ========= Merch: Modal ========= */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(0,0,0,.65);
  z-index: 9999;
  padding: 20px;
}

.modal.is-open { display: grid; }

.modal-card{
  width: min(560px, 100%);
  background: #111;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  position: relative;
}

.modal-card h3 { margin: 0 0 10px; color: #fff; font-family: 'Inter', sans-serif; }
.modal-card p { margin: 0; color: rgba(255,255,255,.75); line-height: 1.5; }

.modal-close{
  position: absolute;
  top: 12px;
  right: 16px;
  background: transparent;
  color: #fff;
  border: 0;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  opacity: .7;
  transition: opacity .2s ease;
}
.modal-close:hover{
  opacity: 1;
}
/* ========= Cart Drawer (site-wide safe) ========= */
.cart-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 9998;
}

.cart-backdrop.is-open{
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(420px, 92vw);
  background: #0f0f0f;
  border-left: 1px solid rgba(255,255,255,.08);
  transform: translateX(110%);
  transition: transform .25s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 0 0 20px;
}

.cart-drawer.is-open{
  transform: translateX(0);
}

/* optional: keep contents scrollable */
.cart-items{ overflow: auto; }

/* MOBILE HERO CENTER FIX */
@media (max-width: 768px){

  body[data-page="home"] .hero-title{
    align-items: center;
    text-align: center;
  }

  body[data-page="home"] .hero-line-1,
  body[data-page="home"] .hero-line-2{
    text-align: center;
    margin-left: 0;
  }

  body[data-page="home"] .hero-cta{
    justify-content: center;
    margin-left: 0;
  }

}
/* HERO CENTER FIX FOR TABLET + MOBILE */
@media (max-width: 1024px){

  body[data-page="home"] .hero-copy{
    text-align: center;
    align-items: center;
  }

  body[data-page="home"] .hero-title{
    align-items: center;
  }

  body[data-page="home"] .hero-line-1,
  body[data-page="home"] .hero-line-2{
    text-align: center;
    margin-left: 0;
  }

  body[data-page="home"] .hero-cta{
    justify-content: center;
    margin-left: 0;
  }

}
/* Mobile menu cart row matches other mobile links */
.mobile-menu .nav-cart{
  display:block;
  padding:1rem 20px;
  border-top:1px solid #191919;
  color: var(--text);
  opacity:.85;
  transition: color .2s ease, opacity .2s ease, background .2s ease;
}
.mobile-menu .nav-cart:hover{
  color: var(--brand);
  opacity: 1;
  background: #141414;
}

/* Cart count badge */
.nav-cart [data-cart-count]{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:22px;
  height:22px;
  padding:0 6px;
  margin-left:8px;
  border-radius:999px;
  background: var(--brand);
  color:#fff;
  font-size:12px;
  font-weight:800;
  line-height:1;
}