:root{
  --bg: #0f0f12;
  --card: #15151b;
  --card2: #111116;
  --text: #f4f4f6;
  --muted: #b8b8c2;
  --accent: #f1c27d; /* warm "country" glow */
  --border: rgba(255,255,255,0.09);
  --shadow: 0 10px 30px rgba(0,0,0,0.35);
}

*{ box-sizing: border-box; }
html, body { height: 100%; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 700px at 20% 0%, rgba(241,194,125,0.08), transparent 60%),
              radial-gradient(900px 600px at 90% 10%, rgba(255,255,255,0.05), transparent 60%),
              var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a{ color: var(--text); text-decoration: none; }
a:hover{ color: var(--accent); }

.wrap{
  width: min(1100px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header{
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(15,15,18,0.72);
  border-bottom: 1px solid var(--border);
  z-index: 20;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 16px 0;
  gap: 18px;
}

.brand .brand-link{
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.5px;
}
.tagline{
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.nav{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.nav a{
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
}
.nav a:hover{
  border-color: var(--border);
  background: rgba(255,255,255,0.03);
}

.nav .pill{
  border-color: rgba(241,194,125,0.25);
  background: rgba(241,194,125,0.07);
}

main.wrap{
  padding: 26px 0 48px;
}

.hero{
  background: linear-gradient(145deg, rgba(241,194,125,0.10), rgba(255,255,255,0.03));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 22px;
  box-shadow: var(--shadow);
}

.hero h1{
  margin: 0 0 6px;
  font-size: 38px;
  letter-spacing: 0.6px;
}
.hero p{
  margin: 0 0 14px;
  color: var(--muted);
  max-width: 60ch;
}
.btn{
  display:inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(241,194,125,0.35);
  background: rgba(241,194,125,0.12);
  font-weight: 650;
}
.btn:hover{
  background: rgba(241,194,125,0.18);
}

.grid-home{
  display:grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 18px;
  margin-top: 18px;
}
@media (max-width: 900px){
  .grid-home{ grid-template-columns: 1fr; }
}

.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-inner{
  padding: 16px;
}

.card h2, .card h3{
  margin: 0 0 10px;
}

.muted{ color: var(--muted); }
.kicker{
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.song-list{
  display:flex;
  flex-direction: column;
  gap: 12px;
}

.song-row{
  display:flex;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.song-row:hover{
  border-color: rgba(241,194,125,0.25);
}

.song-meta{
  flex: 1;
  min-width: 0;
}
.song-title{
  font-weight: 750;
  margin: 0 0 4px;
}
.song-desc{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.badges{
  display:flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.badge{
  display:inline-block;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--muted);
  font-size: 12px;
}

.audio{
  width: 100%;
  margin-top: 10px;
}

.cover{
  width: 70px;
  height: 70px;
  border-radius: 14px;
  background: var(--card2);
  border: 1px solid rgba(255,255,255,0.08);
  object-fit: cover;
}

.featured-cover{
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  object-fit: cover;
}

.form{
  display:grid;
  gap: 10px;
}
label{ font-weight: 650; }
input[type="text"], input[type="email"], input[type="password"], textarea, select{
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: var(--text);
}
textarea{ min-height: 140px; }

.row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 700px){
  .row{ grid-template-columns: 1fr; }
}

.table{
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.table th, .table td{
  text-align: left;
  padding: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.table th{
  color: var(--muted);
  font-weight: 650;
  font-size: 13px;
}

.notice{
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(241,194,125,0.25);
  background: rgba(241,194,125,0.07);
  margin: 12px 0;
}

.error{
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,0,0,0.25);
  background: rgba(255,0,0,0.06);
  margin: 12px 0;
}

.site-footer{
  border-top: 1px solid var(--border);
  background: rgba(15,15,18,0.85);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap: 18px;
  padding: 22px 0;
  flex-wrap: wrap;
}
.footer-brand{ font-weight: 800; }
.footer-note{ color: var(--muted); max-width: 70ch; font-size: 13px; }
.social{ display:flex; gap: 10px; flex-wrap: wrap; }
.footer-admin{ margin-top: 8px; }
.small{ font-size: 12px; color: var(--muted); }
hr{ border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 16px 0; }

/* === Mobile hamburger nav === */
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.nav-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  cursor: pointer;
}

.nav-toggle:hover{
  background: rgba(255,255,255,0.06);
}

.nav-toggle:focus{
  outline: none;
  box-shadow: 0 0 0 3px rgba(241,194,125,0.25);
}

.nav-toggle-icon{
  width: 18px;
  display:flex;
  flex-direction:column;
  gap: 4px;
}
.nav-toggle-icon > span{
  display:block;
  height: 2px;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
}

.header-inner{ position: relative; }

/* Collapse nav into a dropdown on mobile */
@media (max-width: 760px){
  .nav-toggle{ display:inline-flex; }

  .nav{
    display:none;
    position:absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(15,15,18,0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  }

  .nav.is-open{ display:flex; }

  .nav a{
    width:100%;
    justify-content: space-between;
  }
}
/* =========================
   Mobile header fix
   ========================= */
@media (max-width: 640px) {

  .site-header .header-inner {
    position: relative;
    justify-content: center;
  }

  .site-header .brand {
    text-align: center;
    max-width: 100%;
  }

  .site-header .brand-link {
    display: block;
    font-size: 20px;          /* smaller, controlled */
    line-height: 1.15;
    white-space: normal;      /* allow wrap */
    word-break: break-word;   /* prevent overflow */
    margin: 0 auto;
  }

  .site-header .tagline {
    font-size: 12px;
    margin-top: 4px;
    opacity: 0.85;
  }

  /* Keep hamburger from pushing text */
  .site-header .nav-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
  }

  /* Padding so text doesn't collide with toggle */
  .site-header .wrap.header-inner {
    padding-left: 44px;
    padding-right: 44px;
  }
}
/* =========================
   Mobile hero title fix
   ========================= */
@media (max-width: 640px) {

  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero h1 {
    font-size: 34px;          /* key fix */
    line-height: 1.1;
    text-align: center;
    max-width: 100%;
    white-space: normal;
    word-break: break-word;   /* prevents "PRODUCTIONS" overflow */
  }

  .hero p {
    font-size: 15px;
    line-height: 1.45;
    text-align: center;
  }

  .hero .btn {
    display: inline-block;
    margin-top: 16px;
  }

  .hero .kicker {
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.12em;
  }
}
/* =====================================
   HARD MOBILE OVERRIDE — HERO H1
   ===================================== */
@media screen and (max-width: 640px) {

  /* Force hero container to not overflow */
  .hero {
    padding-left: 16px !important;
    padding-right: 16px !important;
    overflow-x: hidden !important;
  }

  /* NUCLEAR OPTION for the H1 */
  .hero h1,
  .hero h1 * {
    font-size: 32px !important;     /* ← THIS fixes it */
    line-height: 1.1 !important;
    text-align: center !important;
    max-width: 100% !important;

    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;

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



