/* ============================================================
   IZOSREC - HOMmega-style label site
   Dark theme, acid green on black (IZOSREC brand identity)
   ============================================================ */

:root {
  --bg: #070a06;
  --bg-alt: #0c110a;
  --card: #121a10;
  --text: #f2f7f0;
  --muted: #9ab09a;
  --accent: #7df01e;     /* IZOSREC acid green */
  --accent-2: #8a5cff;   /* indigo-violet      */
  --radius: 14px;
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

.container { width: min(1180px, 92%); margin: 0 auto; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(7, 10, 6, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 96px; gap: 20px; }
.logo { display: inline-flex; align-items: center; line-height: 0; }
.logo img { height: 76px; width: auto; display: block; }
.main-nav { display: flex; gap: 26px; align-items: center; margin-left: auto; }
.main-nav a {
  font-size: .86rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  color: var(--muted); transition: color .2s; white-space: nowrap;
}
.main-nav a:hover { color: var(--accent); }
.header-socials { display: flex; gap: 10px; }
.header-socials a {
  width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(125,240,30,.35); color: var(--accent); font-size: .68rem; font-weight: 800;
  transition: background .2s, color .2s;
}
.header-socials a:hover { background: var(--accent); color: #070a06; }
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.6rem; cursor: pointer; }

/* ---------- Hero (video) ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-shade {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(7,10,6,.86) 0%, rgba(7,10,6,.55) 45%, rgba(7,10,6,.25) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 22%);
}
.hero-content { position: relative; z-index: 2; padding: 140px 0 100px; text-align: left; }
.hero-kicker {
  color: var(--accent); font-size: .78rem; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.8rem, 8vw, 6rem); letter-spacing: 4px; line-height: 1.02;
  text-shadow: 0 4px 40px rgba(0,0,0,.6);
}
.hero-sub {
  margin-top: 22px; color: var(--muted); font-size: clamp(.9rem, 1.6vw, 1.1rem);
  letter-spacing: 1px; max-width: 520px;
}
.hero-sub strong { color: var(--text); }
.hero .btn-row { margin-top: 38px; }
.scroll-down {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: var(--accent); font-size: 1.1rem; z-index: 2; animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 10px); } }

/* ---------- Sections ---------- */
.section { padding: 90px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 {
  font-family: var(--font-display); font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 900; letter-spacing: 3px; text-transform: uppercase;
}
.section-head h2::after {
  content: ''; display: block; width: 64px; height: 4px; margin: 14px auto 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 2px;
}
.section-head p { color: var(--muted); margin-top: 12px; }

.badge {
  display: inline-block; background: rgba(125,240,30,.12); color: var(--accent);
  border: 1px solid rgba(125,240,30,.4); font-size: .7rem; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase; padding: 6px 14px; border-radius: 999px;
  margin-bottom: 16px;
}

/* ---------- Featured artist ---------- */
.featured-artist {
  display: flex; gap: 46px; align-items: center; background: var(--card);
  border: 1px solid rgba(125,240,30,.18); border-radius: var(--radius);
  padding: 40px; margin-bottom: 56px;
}
.fa-visual {
  flex: 0 0 320px; aspect-ratio: 1; border-radius: var(--radius);
  background:
    radial-gradient(70% 70% at 30% 30%, rgba(125,240,30,.5) 0%, rgba(18,40,8,.9) 55%, #070a06 100%);
  display: flex; align-items: center; justify-content: center;
}
.fa-visual span {
  font-family: var(--font-display); font-weight: 900; letter-spacing: 3px;
  color: var(--text); font-size: 1.5rem; text-shadow: 0 2px 20px rgba(0,0,0,.6);
}
.fa-visual { overflow: hidden; }
.fa-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fa-info h3 { font-family: var(--font-display); font-weight: 900; font-size: 2rem; letter-spacing: 2px; }
.fa-info p { color: var(--muted); margin-top: 14px; max-width: 560px; }
.fa-links { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }

/* ---------- Artist grid ---------- */
.artist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
/* Armada-style roster cards: full-bleed image, name overlaid bottom-left */
.roster-card {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden;
  display: block; background: var(--card); border: 1px solid rgba(255,255,255,.06);
}
.roster-media { position: absolute; inset: 0; background: #000; }
.roster-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .45s ease; filter: saturate(1.05);
}
.roster-media img.fit-contain { object-fit: contain; }
.roster-card:hover .roster-media img { transform: scale(1.07); }
.roster-overlay {
  position: absolute; inset: auto 0 0 0; padding: 44px 18px 16px; z-index: 2;
  background: linear-gradient(0deg, rgba(7,10,6,.92) 0%, rgba(7,10,6,.55) 55%, transparent 100%);
}
.roster-overlay h4 {
  font-family: var(--font-display); font-weight: 900; letter-spacing: 2px;
  font-size: 1.05rem;
}
.roster-overlay p { color: var(--muted); font-size: .78rem; letter-spacing: .5px; margin-top: 2px; }
.roster-card:hover .roster-overlay h4 { color: var(--accent); }
.roster-hit { position: absolute; inset: 0; z-index: 3; }
.roster-overlay { z-index: 4; pointer-events: none; }
.roster-spotify {
  pointer-events: auto; display: inline-block; margin-top: 10px;
  padding: 5px 14px; border-radius: 999px; border: 1px solid rgba(125,240,30,.5);
  color: var(--accent); font-size: .7rem; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; transition: all .2s;
}
.roster-spotify:hover { background: var(--accent); color: #070a06; }
.artist-card h4 { font-family: var(--font-display); font-weight: 800; letter-spacing: 1px; font-size: 1rem; }
.artist-card p { color: var(--muted); font-size: .82rem; margin-top: 4px; }

/* ---------- Music player ---------- */
.player-wrap {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(125,240,30,.2); background: #000;
}
.platform-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.platform-pill {
  padding: 10px 22px; border-radius: 999px; border: 1px solid rgba(255,255,255,.15);
  color: var(--muted); font-size: .82rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; transition: all .2s;
}
.platform-pill:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Releases ---------- */
.release-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.release-card { text-align: center; display: block; }
.release-cover {
  aspect-ratio: 1; border-radius: var(--radius); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s, box-shadow .25s;
}
.release-card:hover .release-cover { transform: scale(1.04); box-shadow: 0 12px 40px rgba(125,240,30,.25); }
.release-cover .play {
  width: 58px; height: 58px; border-radius: 50%; background: rgba(7,10,6,.65);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  color: var(--accent); opacity: 0; transition: opacity .25s; backdrop-filter: blur(4px);
}
.release-card:hover .play { opacity: 1; }
.release-cover .label-mark {
  position: absolute; top: 10px; left: 0; right: 0; text-align: center;
  font-family: var(--font-display); font-weight: 900; font-size: .6rem;
  letter-spacing: 3px; color: rgba(255,255,255,.85);
}
.release-cover .rel-type {
  position: absolute; bottom: 10px; right: 10px; background: rgba(7,10,6,.7);
  color: var(--accent); font-size: .62rem; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 10px; border-radius: 999px;
}
.release-card h4 { margin-top: 14px; font-family: var(--font-display); font-weight: 800; font-size: .98rem; }
.release-card > span { color: var(--muted); font-size: .84rem; }

/* real cover artwork (Flippers catalogue) */
.release-cover .rel-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.release-cover .play, .release-cover .rel-type, .release-cover .label-mark { z-index: 1; }

/* cover art gradients (placeholders until real artwork) */
.cov-1 { background: radial-gradient(70% 70% at 30% 30%, #7df01e 0%, #1e4009 45%, #070a06 100%); }
.cov-2 { background: radial-gradient(70% 70% at 70% 30%, #8a5cff 0%, #241a4d 50%, #070a06 100%); }
.cov-3 { background: radial-gradient(75% 75% at 50% 70%, #ffc857 0%, #4a3413 48%, #070a06 100%); }
.cov-4 { background: radial-gradient(70% 70% at 30% 70%, #23e6c8 0%, #14403c 50%, #070a06 100%); }
.cov-5 { background: conic-gradient(from 40deg at 50% 50%, #7df01e, #070a06 40%, #8a5cff 70%, #070a06); }
.cov-6 { background: radial-gradient(60% 60% at 50% 40%, #35d0ff 0%, #0d2c47 55%, #070a06 100%); }
.cov-7 { background: conic-gradient(from 200deg at 50% 60%, #ffc857, #070a06 35%, #7df01e 75%, #070a06); }
.cov-8 { background: radial-gradient(65% 65% at 60% 40%, #ff5e3a 0%, #451508 55%, #070a06 100%); }

/* ---------- About ---------- */
.about-inner { max-width: 760px; text-align: center; }
.about-lead { font-size: 1.15rem; color: var(--text); }
.about-text { color: var(--muted); margin-top: 16px; }
.stats-row { display: flex; justify-content: center; gap: 60px; margin-top: 40px; }
.stat strong { display: block; font-family: var(--font-display); font-size: 2.4rem; font-weight: 900; color: var(--accent); }
.stat span { color: var(--muted); font-size: .82rem; letter-spacing: 1px; text-transform: uppercase; }

/* ---------- Contact ---------- */
.contact-inner { max-width: 900px; }

/* Label emblem watermark behind the Contact section */
#contact { position: relative; overflow: hidden; }
#contact::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(340px, 60vw); aspect-ratio: 349 / 430;
  background: url('brand/decoding-emblem.png') center / contain no-repeat;
  opacity: .08;
  pointer-events: none;
  z-index: 0;
}
#contact .container { position: relative; z-index: 1; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-card {
  background: var(--card); border: 1px solid rgba(255,255,255,.07); border-radius: var(--radius);
  padding: 30px; text-align: center; transition: border-color .25s;
}
.contact-card:hover { border-color: rgba(125,240,30,.4); }
.contact-card h4 {
  font-family: var(--font-display); font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; font-size: .85rem; color: var(--muted); margin-bottom: 12px;
}
.contact-card a { color: var(--accent); font-weight: 600; }
.contact-single { text-align: center; max-width: 640px; margin: 0 auto; }
.contact-purposes {
  color: var(--muted); font-size: .82rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 18px;
}
.contact-email {
  display: inline-block; font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.4rem, 4vw, 2.2rem); letter-spacing: 1px; color: var(--accent);
  transition: opacity .2s;
}
.contact-email:hover { opacity: .8; }
.contact-note { color: var(--muted); font-size: .9rem; margin-top: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 13px 28px; border-radius: 999px; border: none;
  font-family: var(--font-display); font-weight: 800; font-size: .85rem;
  letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(90deg, var(--accent), #4db811); color: #070a06;
  box-shadow: 0 6px 24px rgba(125,240,30,.3);
}
.btn-ghost { background: transparent; color: var(--text); border: 1px solid rgba(255,255,255,.25); }
.btn-small { padding: 9px 18px; font-size: .74rem; background: transparent; color: var(--accent); border: 1px solid rgba(125,240,30,.4); }
.btn-small:hover { background: var(--accent); color: #070a06; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: #040603; padding: 56px 0 36px; border-top: 1px solid rgba(255,255,255,.06); }
.footer-inner { text-align: center; }
.logo-footer img { height: 34px; }
.socials { display: flex; justify-content: center; flex-wrap: wrap; gap: 22px; margin: 26px 0; }
.socials a { color: var(--muted); font-size: .82rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; transition: color .2s; }
.socials a:hover { color: var(--accent); }
.copyright { color: #55704a; font-size: .78rem; }

/* ---------- Header actions / demo CTA ---------- */
.header-actions { display: flex; align-items: center; gap: 16px; }
.btn-demo {
  padding: 9px 20px; font-size: .72rem; border-radius: 999px;
  background: var(--accent); color: #070a06; font-weight: 800; white-space: nowrap;
}
.btn-demo:hover { box-shadow: 0 4px 18px rgba(125,240,30,.45); }
.site-header { background: transparent; border-bottom-color: transparent; transition: background .3s, border-color .3s; }
.site-header.scrolled { background: rgba(7,10,6,.88); border-bottom-color: rgba(255,255,255,.06); backdrop-filter: blur(14px); }

/* ---------- Section row heads (Armada-style) ---------- */
.row-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; margin-bottom: 34px; flex-wrap: wrap;
}
.row-head h2 {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900; letter-spacing: 3px; text-transform: uppercase;
}
.row-side { display: flex; align-items: center; gap: 18px; }
.see-all { color: var(--muted); font-size: .82rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; transition: color .2s; }
.see-all:hover { color: var(--accent); }
.row-ctrl { display: flex; gap: 8px; }
.ctrl-btn {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18);
  background: transparent; color: var(--text); font-size: 1.3rem; line-height: 1;
  cursor: pointer; transition: all .2s;
}
.ctrl-btn:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Releases carousel ---------- */
.carousel {
  display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 12px; scrollbar-width: none;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel-item { flex: 0 0 min(240px, 62vw); scroll-snap-align: start; }

/* ---------- News ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card {
  background: var(--card); border: 1px solid rgba(255,255,255,.07); border-radius: var(--radius);
  padding: 28px; display: flex; flex-direction: column; gap: 12px;
  transition: border-color .25s, transform .25s;
}
.news-card:hover { border-color: rgba(125,240,30,.4); transform: translateY(-4px); }
.news-date { color: var(--accent); font-size: .72rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }
.news-card h4 { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; letter-spacing: .5px; }
.news-card p { color: var(--muted); font-size: .88rem; flex: 1; }
.news-more { color: var(--accent); font-size: .78rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; }

/* ---------- Artist pages ---------- */
.artist-hero {
  position: relative; min-height: 66vh; display: flex; align-items: flex-end;
  overflow: hidden; padding-top: 68px;
}
.artist-hero .ah-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
}
.ah-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, var(--bg) 0%, rgba(7,10,6,.55) 45%, rgba(7,10,6,.25) 100%),
    linear-gradient(90deg, rgba(7,10,6,.55) 0%, transparent 60%);
}
.ah-content { position: relative; z-index: 2; padding: 70px 0 56px; }
.ah-kicker {
  color: var(--accent); font-size: .76rem; font-weight: 800; letter-spacing: 4px;
  text-transform: uppercase; margin-bottom: 14px;
}
.ah-content h1 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.4rem, 7vw, 5rem); letter-spacing: 4px; line-height: 1.05;
  text-shadow: 0 4px 40px rgba(0,0,0,.7);
}
.ah-role { color: var(--accent); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: .82rem; margin-top: 12px; }
.ah-bio { color: var(--muted); max-width: 560px; margin-top: 14px; font-size: .95rem; }
.ah-content .btn-row { margin-top: 26px; }
.main-nav a.active { color: var(--accent); }
.spotify-embed { margin: 22px 0; }
.spotify-embed iframe { border-radius: var(--radius); display: block; width: 100%; height: auto; }

/* ---------- Leonard Mastering services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--card); border: 1px solid rgba(255,255,255,.07); border-radius: var(--radius);
  padding: 34px 28px; transition: border-color .25s, transform .25s;
}
.service-card:hover { border-color: rgba(125,240,30,.4); transform: translateY(-4px); }
.service-icon { font-size: 1.8rem; color: var(--accent); display: block; margin-bottom: 14px; }
.service-card h4 {
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px;
}
.service-card p { color: var(--muted); font-size: .88rem; }
.services-cta { text-align: center; margin-top: 40px; }
.services-cta p { color: var(--muted); margin-bottom: 16px; }

/* ---------- Leonard Mastering logo ---------- */
.mastering-logo {
  display: block; width: 100%; max-width: 580px; height: auto;
  margin: 0 auto 22px; border-radius: 14px;
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}

/* ---------- Selected Credits ---------- */
.credits-block { margin-top: 56px; border-top: 1px solid rgba(255,255,255,.08); padding-top: 44px; }
.credits-title {
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  letter-spacing: 2px; text-transform: uppercase; text-align: center; margin-bottom: 30px;
}
.credits-title span { color: var(--accent); }
.credits-groups { display: grid; grid-template-columns: 1.35fr 1fr; gap: 34px; max-width: 900px; margin: 0 auto; }
.credits-tag {
  display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: .72rem;
  letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.credits-col ul { list-style: none; margin: 0; padding: 0; }
.credits-col li {
  color: var(--text); font-size: .9rem; padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.credits-col li strong { font-weight: 600; }
.credits-col li em { color: var(--muted); font-style: normal; font-size: .82rem; }
.credits-more { color: var(--muted) !important; font-style: italic; border-bottom: none !important; }
.credits-labels {
  text-align: center; margin-top: 8px; color: var(--muted);
  font-family: var(--font-display); font-weight: 600; letter-spacing: 1.5px;
  font-size: .8rem; text-transform: uppercase;
}
.credits-details { max-width: 900px; margin: 22px auto 0; text-align: center; }
.credits-toggle {
  display: inline-block; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 800; font-size: .82rem;
  letter-spacing: 2px; text-transform: uppercase; color: var(--text);
  border: 1px solid rgba(125,240,30,.45); border-radius: 999px;
  padding: 13px 34px; transition: background .2s, border-color .2s, color .2s;
}
.credits-toggle::-webkit-details-marker { display: none; }
.credits-toggle::after { content: " \25BE"; color: var(--accent); }
.credits-toggle:hover { background: rgba(125,240,30,.1); border-color: var(--accent); color: var(--accent); }
.credits-details[open] .credits-toggle { margin-bottom: 30px; color: var(--accent); border-color: var(--accent); }
.credits-details[open] .credits-toggle::after { content: " \25B4"; }
.credits-details .credits-groups { text-align: left; }
@media (max-width: 640px) { .credits-groups { grid-template-columns: 1fr; gap: 26px; } }

/* ---------- Demo banner ---------- */
.demo-banner {
  background:
    radial-gradient(60% 120% at 20% 50%, rgba(125,240,30,.14) 0%, transparent 70%),
    radial-gradient(50% 120% at 85% 50%, rgba(138,92,255,.12) 0%, transparent 70%),
    var(--bg-alt);
  border-top: 1px solid rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 64px 0;
}
.demo-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.demo-inner h2 { font-family: var(--font-display); font-weight: 900; font-size: clamp(1.4rem, 2.6vw, 2rem); letter-spacing: 1px; }
.demo-inner p { color: var(--muted); margin-top: 8px; }
.btn-lg { padding: 16px 34px; font-size: .95rem; text-transform: none; letter-spacing: .5px; }

/* ---------- Footer columns ---------- */
.footer-cols {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.06); margin-bottom: 28px;
}
.f-col { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.f-brand p { color: var(--muted); font-size: .85rem; margin-top: 14px; line-height: 1.7; }
.f-col h5 {
  font-family: var(--font-display); font-weight: 800; font-size: .78rem;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--text); margin-bottom: 8px;
}
.f-col a { color: var(--muted); font-size: .86rem; transition: color .2s; }
.f-col a:hover { color: var(--accent); }
.footer-base { text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .featured-artist { flex-direction: column; text-align: center; }
  .fa-visual { flex: none; width: min(320px, 80%); }
  .fa-links { justify-content: center; }
  .artist-grid { grid-template-columns: repeat(2, 1fr); }
  .release-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .btn-demo { display: none; }
  .artist-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}
@media (max-width: 640px) {
  .main-nav {
    position: fixed; top: 80px; right: 0; left: 0; flex-direction: column;
    background: rgba(7,10,6,.98); padding: 24px; gap: 18px; display: none;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .header-inner { height: 80px; }
  .logo img { height: 60px; }
  .header-socials { display: none; }
  .stats-row { gap: 30px; }
  .hero-content { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero .btn-row { justify-content: center; }
  .demo-inner { flex-direction: column; text-align: center; }
  .footer-cols { grid-template-columns: 1fr; }
  .f-col { align-items: center; text-align: center; }
  .artist-grid { grid-template-columns: 1fr; gap: 20px; }
  .row-head { flex-direction: column; align-items: flex-start; }
  .platform-row { gap: 8px; }
  .section { padding: 64px 0; }
}

/* ---------- Booking Modal ---------- */
.booking-modal { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,.8); }
.booking-modal.active { display: flex; align-items: center; justify-content: center; }
.booking-modal-content { position: relative; width: 90%; max-width: 1200px; height: 85vh; background: white; border-radius: 14px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.booking-modal-close { position: absolute; top: 20px; right: 20px; z-index: 1001; width: 40px; height: 40px; border-radius: 50%; border: none; background: rgba(7,10,6,.8); color: white; font-size: 1.4rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.booking-modal-close:hover { background: rgba(7,10,6,1); }
#bookingFrame { width: 100%; height: 100%; }

/* ---------- M.C.N artist hero ---------- */
.mcn-hero {
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(125,240,30,.10) 0%, transparent 60%),
    var(--bg-alt);
}
.mcn-content {
  display: flex; align-items: center; gap: 46px; flex-wrap: wrap;
}
.mcn-avatar {
  flex: 0 0 300px; width: 300px; aspect-ratio: 1;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(125,240,30,.35);
  box-shadow: 0 0 50px rgba(125,240,30,.18);
}
.mcn-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mcn-text { flex: 1; min-width: 300px; }
.mcn-text .ah-bio + .ah-bio { margin-top: 14px; }
@media (max-width: 720px) {
  .mcn-content { justify-content: center; text-align: center; }
  .mcn-avatar { flex-basis: 240px; width: 240px; }
  .mcn-text .btn-row { justify-content: center; }
}
