/* ========================================
   YMA MUSIC — GLOBAL STYLESHEET
   Dark Premium Cinematic Theme
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

/* === CSS VARIABLES === */
:root {
  --bg-dark:        #080808;
  --bg-primary:     #0d0d0d;
  --bg-secondary:   #131313;
  --bg-card:        #181818;
  --bg-card-hover:  #1e1e1e;

  --gold:           #C9A84C;
  --gold-light:     #E8C870;
  --gold-dim:       rgba(201, 168, 76, 0.18);
  --gold-glow:      rgba(201, 168, 76, 0.10);

  --red:            #8B1A1A;
  --red-light:      #B22222;
  --red-dim:        rgba(139, 26, 26, 0.25);

  --text-primary:   #F0E6D0;
  --text-secondary: #9E9080;
  --text-muted:     #584E43;

  --border-gold:    rgba(201, 168, 76, 0.22);
  --border-subtle:  rgba(255, 255, 255, 0.07);

  --font-display:   'Cinzel', serif;
  --font-heading:   'Montserrat', sans-serif;
  --font-body:      'Poppins', sans-serif;

  --nav-height:     78px;
  --container-max:  1240px;
  --transition:     all 0.3s ease;

  --shadow-gold:    0 4px 30px rgba(201, 168, 76, 0.18);
  --shadow-card:    0 8px 40px rgba(0, 0, 0, 0.6);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); }

/* === UTILITIES === */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-alt { background: var(--bg-secondary); }
.section-dark { background: var(--bg-dark); }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.text-muted { color: var(--text-secondary); }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }

.section-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

.gold-line {
  width: 52px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 14px 0 28px;
}
.gold-line.center { margin: 14px auto 28px; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px;
  font-family: var(--font-heading);
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
  cursor: pointer; white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
  color: #000;
}
.btn-outline {
  background: transparent; color: var(--text-primary);
  border: 1.5px solid var(--border-gold);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn-ghost:hover { background: var(--gold); color: #000; }
.btn-sm { padding: 9px 20px; font-size: 0.75rem; }

/* === NAVBAR === */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: var(--nav-height);
  transition: var(--transition);
}
.navbar.scrolled,
.navbar.page-nav {
  background: rgba(7, 7, 7, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1400px; margin: 0 auto;
  padding: 0 24px; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 38px; width: auto; object-fit: contain; }

.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-link {
  font-family: var(--font-heading);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--text-secondary);
  padding: 7px 11px; border-radius: 2px;
  transition: var(--transition); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000 !important; padding: 7px 16px; margin-left: 6px;
}
.nav-link.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(201,168,76,0.4); }

/* Dropdown */
.nav-dropdown { position: relative; }
.drop-arrow { font-size: 0.6rem; margin-left: 2px; opacity: 0.7; padding: 4px 6px; cursor: pointer; }
.dropdown-menu {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(13, 13, 13, 0.99);
  border: 1px solid var(--border-gold);
  border-radius: 3px; min-width: 220px;
  padding: 10px 0 8px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
  z-index: 1001;
}
.nav-dropdown.open .dropdown-menu,
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu li a {
  display: block; padding: 9px 18px;
  font-family: var(--font-body); font-size: 0.83rem;
  color: #ffffff;
  border-left: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.dropdown-menu li a:hover {
  color: var(--gold); border-left-color: var(--gold);
  background: var(--gold-dim);
}

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO (HOME) === */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--bg-dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 168, 76, 0.055) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 70%, rgba(139, 26, 26, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(201, 168, 76, 0.03) 0%, transparent 50%),
    #080808;
}
.hero-grid-pattern {
  position: absolute; inset: 0; opacity: 0.025;
  background-image:
    linear-gradient(rgba(201,168,76,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,1) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-deco {
  position: absolute; right: 5%; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(14rem, 22vw, 26rem);
  color: var(--gold); opacity: 0.025;
  line-height: 1; user-select: none;
  letter-spacing: -0.05em;
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--container-max);
  margin: 0 auto;
  padding: calc(var(--nav-height) + 60px) 24px 100px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.hero-visual { position: relative; z-index: 2; }
.hero-visual-frame {
  position: relative; aspect-ratio: 16 / 9;
  border-radius: 10px; overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.35);
  box-shadow: 0 28px 70px rgba(0,0,0,0.75), 0 0 80px rgba(201,168,76,0.05);
}
.hero-visual-frame iframe { width: 100%; height: 100%; display: block; }
.hero-visual-tag {
  display: flex; align-items: center; gap: 10px;
  margin-top: 16px; font-size: 0.7rem;
  color: var(--text-muted); letter-spacing: 0.12em; text-transform: uppercase;
}
.hero-visual-tag::before {
  content: ''; display: block; width: 22px; height: 1px;
  background: var(--gold); opacity: 0.6; flex-shrink: 0;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-display);
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
}
.hero-eyebrow::before { content: ''; display: block; width: 38px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  font-weight: 700; line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 28px;
  letter-spacing: 0.01em;
  max-width: 800px;
}
.hero-title .gold { color: var(--gold); }
.hero-title .block { display: block; }
.hero-desc {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 600px; line-height: 1.85;
  margin-bottom: 48px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-scroll-hint {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--text-muted); font-size: 0.62rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  z-index: 2;
}
.scroll-bar {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDrop 2.2s ease infinite;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  padding: calc(var(--nav-height) + 80px) 0 80px;
  background: var(--bg-dark);
  position: relative; overflow: hidden; text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.05) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  margin-bottom: 18px; letter-spacing: 0.02em;
}
.page-hero-text {
  font-size: 1.05rem; color: var(--text-secondary);
  max-width: 680px; margin: 0 auto; line-height: 1.85;
}
.breadcrumb {
  font-size: 0.75rem; color: var(--text-muted);
  margin-bottom: 16px; letter-spacing: 0.06em;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }

/* === ABOUT SECTION (Home short) === */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-visual-block {
  position: relative;
}
.about-frame {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 3px;
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.about-frame::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, transparent 50%),
              radial-gradient(ellipse at center, rgba(139,26,26,0.05) 0%, transparent 70%);
}
.about-frame-icon { font-size: 9rem; opacity: 0.1; position: relative; z-index: 1; }
.about-badge {
  position: absolute; bottom: -22px; right: -22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000; padding: 20px 22px; text-align: center;
  border-radius: 2px; box-shadow: 0 8px 30px rgba(201,168,76,0.35);
}
.about-badge strong { display: block; font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; line-height: 1; }
.about-badge span { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }

/* === SERVICE CARDS (home) === */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 3px; padding: 34px 30px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0; transition: var(--transition);
}
.service-card:hover { border-color: var(--border-gold); transform: translateY(-5px); box-shadow: var(--shadow-gold); background: var(--bg-card-hover); }
.service-card:hover::after { opacity: 1; }
.service-icon { font-size: 2.2rem; margin-bottom: 18px; display: block; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; }

/* === GENRES === */
.genres-cloud { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.genre-tag {
  padding: 9px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  font-family: var(--font-heading); font-size: 0.82rem; font-weight: 600;
  color: var(--text-secondary); letter-spacing: 0.05em;
  transition: var(--transition);
}
.genre-tag:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-glow); }
.genre-tag.featured { border-color: var(--border-gold); color: var(--gold); }

/* === WHY YMA === */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.why-card {
  padding: 30px 28px;
  border-left: 3px solid var(--gold);
  background: var(--bg-card);
  border-radius: 0 3px 3px 0;
  transition: var(--transition);
}
.why-card:hover { background: var(--bg-card-hover); transform: translateX(5px); }
.why-num {
  font-family: var(--font-display); font-size: 0.7rem;
  color: var(--gold); letter-spacing: 0.2em;
  margin-bottom: 10px; display: block;
}
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 0.87rem; color: var(--text-secondary); line-height: 1.7; }

/* === STATS === */
.stats-band {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--bg-dark);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.stat-item {
  padding: 48px 24px; text-align: center;
  border-right: 1px solid var(--border-subtle);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 700;
  color: var(--gold); line-height: 1;
  display: block; margin-bottom: 8px;
}
.stat-label {
  font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--text-muted); font-weight: 600;
}

/* === TESTIMONIALS === */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 22px; }
.testi-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: 3px; padding: 36px 30px; position: relative;
}
.testi-quote {
  font-family: var(--font-display); font-size: 5rem; color: var(--gold);
  opacity: 0.15; position: absolute; top: 10px; left: 22px;
  line-height: 1; pointer-events: none;
}
.testi-text {
  font-size: 0.92rem; color: var(--text-secondary);
  line-height: 1.85; margin-bottom: 24px; font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dim), var(--red-dim));
  border: 1.5px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.95rem; color: var(--gold); font-weight: 700;
  flex-shrink: 0;
}
.testi-name { font-size: 0.9rem; font-weight: 700; margin-bottom: 2px; }
.testi-role { font-size: 0.75rem; color: var(--text-muted); }

/* === CTA STRIP === */
.cta-strip {
  background: linear-gradient(135deg, #0d0900 0%, #100505 50%, #0d0900 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  text-align: center; padding: 100px 0;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,168,76,0.055) 0%, transparent 60%);
}
.cta-strip .container { position: relative; z-index: 1; }
.cta-strip .section-title { color: var(--text-primary); }

/* === FAQ === */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-subtle); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; cursor: pointer;
  font-family: var(--font-heading); font-size: 0.97rem; font-weight: 600;
  color: var(--text-primary); transition: var(--transition); gap: 20px;
}
.faq-q:hover { color: var(--gold); }
.faq-plus {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--gold); flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-plus { background: var(--gold); color: #000; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 0 22px; font-size: 0.92rem; color: var(--text-secondary); line-height: 1.8; }

/* === ARTIST CARDS === */
.artists-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 28px; }
.artist-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: 3px; overflow: hidden; transition: var(--transition);
}
.artist-card:hover { border-color: var(--border-gold); transform: translateY(-6px); box-shadow: var(--shadow-card); }
.artist-photo {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #141414 0%, #1c1c1c 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.artist-photo-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.06) 0%, transparent 70%);
}
.artist-initial {
  font-family: var(--font-display);
  font-size: 5rem; color: var(--gold); opacity: 0.3;
  position: relative; z-index: 1;
}
.artist-info { padding: 24px; }
.artist-name { font-size: 1.15rem; font-weight: 700; margin-bottom: 4px; }
.artist-role {
  font-size: 0.72rem; color: var(--gold);
  letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 700; margin-bottom: 12px;
}
.artist-bio { font-size: 0.84rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 14px; }
.genre-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.gpill {
  font-size: 0.68rem; padding: 3px 11px;
  background: var(--gold-dim); color: var(--gold);
  border-radius: 50px; font-weight: 700; letter-spacing: 0.04em;
}
.tracks-label {
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-muted); margin-bottom: 6px; font-weight: 600;
}
.track-list li {
  font-size: 0.84rem; color: var(--text-secondary);
  padding: 5px 0; border-bottom: 1px solid var(--border-subtle);
  display: flex; align-items: center; gap: 8px;
}
.track-list li::before { content: '♪'; color: var(--gold); font-size: 0.68rem; }
.artist-links {
  display: flex; gap: 14px; padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}
.a-link {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); transition: var(--transition);
}
.a-link:hover { color: var(--gold); }

/* === RELEASE CARDS === */
.releases-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 26px; }
.release-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: 3px; overflow: hidden; transition: var(--transition);
}
.release-card:hover { border-color: var(--border-gold); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.release-art {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #110c00 0%, #0d0d0d 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.release-art-icon { font-size: 5.5rem; opacity: 0.16; }
.release-num {
  position: absolute; bottom: 12px; right: 14px;
  font-family: var(--font-display); font-size: 0.6rem;
  letter-spacing: 0.2em; color: var(--gold); opacity: 0.5;
}
.release-info { padding: 20px 24px; }
.release-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.release-artist { font-size: 0.82rem; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.release-desc { font-size: 0.84rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 12px; }
.release-genre {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-muted); margin-bottom: 12px; font-weight: 600;
}
.platforms { display: flex; flex-wrap: wrap; gap: 7px; }
.plat {
  padding: 3px 10px;
  background: var(--bg-secondary); border: 1px solid var(--border-subtle);
  border-radius: 50px; font-size: 0.7rem; color: var(--text-muted);
  transition: var(--transition);
}
.plat:hover { border-color: var(--gold); color: var(--gold); }

/* === BLOG CARDS === */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 26px; }
.blog-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: 3px; overflow: hidden; transition: var(--transition);
}
.blog-card:hover { border-color: var(--border-gold); transform: translateY(-5px); }
.blog-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0d0d0d 0%, #181818 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.blog-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-thumb-icon { font-size: 4.5rem; opacity: 0.12; }
.article-cover { width: 100%; border-radius: 3px; border: 1px solid var(--border-subtle); margin-bottom: 36px; display: block; }
.blog-cat {
  position: absolute; top: 14px; left: 14px;
  font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #000; background: var(--gold);
  padding: 4px 11px; border-radius: 2px;
}
.blog-body { padding: 24px; }
.blog-date { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 9px; letter-spacing: 0.08em; }
.blog-body h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 10px; line-height: 1.4; transition: var(--transition); }
.blog-card:hover .blog-body h3 { color: var(--gold); }
.blog-excerpt { font-size: 0.84rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.read-more {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); display: inline-flex; align-items: center; gap: 6px;
}
.read-more::after { content: '→'; transition: transform 0.2s ease; }
.blog-card:hover .read-more::after { transform: translateX(4px); }

/* === ARTICLE PAGE === */
.article-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 10px; }
.article-meta span { font-size: 0.75rem; color: var(--text-muted); }
.article-meta .a-cat { background: var(--gold); color: #000; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; padding: 3px 10px; border-radius: 2px; }
.article-body { max-width: 780px; margin: 0 auto; }
.article-body p { font-size: 1rem; line-height: 1.9; color: var(--text-secondary); margin-bottom: 22px; }
.article-body h2 { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 700; color: var(--text-primary); margin: 42px 0 16px; }
.article-body h3 { font-family: var(--font-heading); font-size: 1.08rem; font-weight: 700; color: var(--text-primary); margin: 32px 0 12px; }
.article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 22px; }
.article-body li { font-size: 1rem; line-height: 1.85; color: var(--text-secondary); margin-bottom: 8px; }
.article-body blockquote { border-left: 3px solid var(--gold); padding: 16px 24px; margin: 32px 0; background: var(--bg-card); border-radius: 0 3px 3px 0; }
.article-body blockquote p { color: var(--text-primary); font-size: 1.05rem; font-style: italic; margin-bottom: 0; }
.article-body .article-divider { border: none; border-top: 1px solid var(--border-subtle); margin: 40px 0; }
.article-nav { display: flex; justify-content: space-between; align-items: center; padding: 32px 0; border-top: 1px solid var(--border-subtle); margin-top: 48px; gap: 16px; flex-wrap: wrap; }
.article-nav a { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.article-nav a:hover { color: var(--gold-light); }

/* === REEL CAROUSEL === */
.gallery-section { padding-bottom: 0; }
.reel-carousel-wrap {
  position: relative;
  margin-top: 40px;
  padding: 0 56px;
  overflow: hidden;
}
.reel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.reel-item {
  flex: 0 0 220px;
  aspect-ratio: 9 / 16;
  background: #1a1a1a;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: border-color 0.3s ease;
  flex-shrink: 0;
}
.reel-item:hover { border-color: var(--border-gold); }
.reel-item video { width: 100%; height: 100%; object-fit: cover; display: block; }
.reel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(13,13,13,0.9); border: 1px solid var(--border-gold);
  color: var(--gold); font-size: 1.8rem; line-height: 1;
  cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center;
  transition: var(--transition); backdrop-filter: blur(8px);
}
.reel-btn:hover { background: var(--gold); color: #000; }
.reel-btn-prev { left: 6px; }
.reel-btn-next { right: 6px; }
.reel-btn:disabled { opacity: 0.3; pointer-events: none; }
@media (max-width: 1024px) {
  .reel-item { flex: 0 0 200px; }
}
@media (max-width: 768px) {
  .reel-item { flex: 0 0 170px; }
  .reel-carousel-wrap { padding: 0 44px; }
}
@media (max-width: 480px) {
  .reel-item { flex: 0 0 75vw; }
}

/* === VALUES === */
.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.value-card {
  padding: 32px 22px; background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 3px; text-align: center; transition: var(--transition);
}
.value-card:hover { border-color: var(--border-gold); transform: translateY(-4px); }
.value-icon { font-size: 2.4rem; margin-bottom: 14px; display: block; }
.value-card h3 {
  font-size: 0.88rem; font-weight: 700; color: var(--gold);
  margin-bottom: 9px; text-transform: uppercase; letter-spacing: 0.1em;
}
.value-card p { font-size: 0.84rem; color: var(--text-secondary); line-height: 1.65; }

/* === SERVICES DETAIL PAGE === */
.service-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  padding: 72px 0; border-bottom: 1px solid var(--border-subtle);
}
.service-block:last-child { border-bottom: none; }
.service-block.flip { direction: rtl; }
.service-block.flip > * { direction: ltr; }
.service-block-icon { font-size: 3.8rem; margin-bottom: 22px; display: block; }
.service-block h2 {
  font-family: var(--font-display); font-size: 1.8rem;
  font-weight: 700; margin-bottom: 16px;
}
.service-block p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 24px; }
.service-list { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.service-list li {
  font-size: 0.88rem; color: var(--text-secondary);
  display: flex; align-items: center; gap: 8px; padding: 7px 0;
}
.service-list li::before { content: '▸'; color: var(--gold); font-size: 0.72rem; flex-shrink: 0; }
.service-visual {
  background: var(--bg-card); border: 1px solid var(--border-gold);
  border-radius: 3px; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.service-visual::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 50%);
}
.sv-icon { font-size: 7rem; opacity: 0.10; }

/* === STUDIO FEATURES === */
.studio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 22px; }
.studio-card {
  padding: 32px 26px; background: var(--bg-card);
  border: 1px solid var(--border-subtle); border-radius: 3px;
  text-align: center; transition: var(--transition);
}
.studio-card:hover { border-color: var(--border-gold); transform: translateY(-4px); }
.studio-card-icon { font-size: 2.8rem; margin-bottom: 14px; display: block; }
.studio-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.studio-card p { font-size: 0.84rem; color: var(--text-secondary); line-height: 1.65; }

/* === REGIONAL LANGUAGES === */
.languages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 18px; }
.lang-card {
  padding: 36px 20px; background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 3px; text-align: center; transition: var(--transition);
}
.lang-card:hover { border-color: var(--border-gold); transform: translateY(-4px); background: var(--bg-card-hover); }
.lang-card h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 8px; }
.lang-card p { font-size: 0.8rem; color: var(--text-secondary); }
.lang-symbol { font-size: 2rem; margin-bottom: 10px; display: block; opacity: 0.7; }

/* === TALENT PAGE === */
.talent-who { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; margin-bottom: 40px; }
.talent-type {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; background: var(--bg-card);
  border: 1px solid var(--border-subtle); border-radius: 2px;
  font-size: 0.85rem; color: var(--text-secondary);
  transition: var(--transition);
}
.talent-type:hover { border-color: var(--gold); color: var(--gold); }
.t-icon { font-size: 1.4rem; }

/* === CONTACT === */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; align-items: start; }
.contact-info h3 {
  font-family: var(--font-display); font-size: 0.7rem;
  margin-bottom: 22px; color: var(--gold);
  letter-spacing: 0.18em; text-transform: uppercase;
}
.c-detail { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.c-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--bg-card); border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; border-radius: 2px;
}
.c-label { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-muted); margin-bottom: 3px; }
.c-value { font-size: 0.92rem; color: var(--text-secondary); }
.social-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.s-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 18px; background: var(--bg-card);
  border: 1px solid var(--border-subtle); border-radius: 2px;
  font-size: 0.78rem; font-weight: 600; color: var(--text-secondary);
  transition: var(--transition);
}
.s-btn:hover { border-color: var(--gold); color: var(--gold); }

/* === FORM === */
.form-box {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: 3px; padding: 38px;
}
.form-box h3 {
  font-family: var(--font-display); font-size: 1rem;
  color: var(--gold); letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 2px; color: var(--text-primary);
  font-size: 0.93rem; transition: var(--transition); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold); background: var(--bg-card-hover);
  box-shadow: 0 0 0 3px var(--gold-dim);
}
.form-group select option { background: var(--bg-secondary); }
.form-group textarea { min-height: 130px; resize: vertical; }

/* === FOOTER === */
.footer { background: var(--bg-dark); border-top: 1px solid var(--border-gold); padding: 68px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 48px; }
.footer-brand .logo-img { height: 34px; margin-bottom: 18px; }
.footer-brand p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; max-width: 270px; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-contact-info { margin-top: 20px; }
.fci-item { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 10px; font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }
.fci-item a { color: var(--text-muted); transition: var(--transition); }
.fci-item a:hover { color: var(--gold); }
.fsoc {
  width: 36px; height: 36px; background: var(--bg-card);
  border: 1px solid var(--border-subtle); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; color: var(--text-secondary);
  transition: var(--transition);
}
.fsoc:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.footer-col h4 {
  font-family: var(--font-heading); font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover { color: var(--text-secondary); padding-left: 4px; }
.footer-map { border-top: 1px solid var(--border-subtle); overflow: hidden; }
.footer-map iframe { display: block; width: 100%; filter: grayscale(40%) contrast(1.1); }
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: var(--text-muted);
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--gold); }

/* === REVEAL ANIMATIONS === */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* === TOAST NOTIFICATION === */
.yma-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  padding: 14px 28px;
  border-radius: 3px;
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}
.yma-toast.toast-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.yma-toast.toast-ok {
  background: #0e2010;
  color: #6fcf97;
  border: 1px solid #1a4a28;
}
.yma-toast.toast-err {
  background: #200e0e;
  color: #eb5757;
  border: 1px solid #4a1a1a;
}
@media (max-width: 480px) {
  .yma-toast {
    left: 16px;
    right: 16px;
    transform: translateY(16px);
    white-space: normal;
    text-align: center;
  }
  .yma-toast.toast-show { transform: translateY(0); }
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
::selection { background: var(--gold-dim); color: var(--gold); }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: var(--nav-height); left: 0; right: 0;
    background: rgba(7, 7, 7, 0.98);
    flex-direction: column; align-items: stretch;
    padding: 12px 0 24px;
    border-bottom: 1px solid var(--border-gold);
    backdrop-filter: blur(20px);
    transform: translateY(-100%); opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: -1;
    max-height: calc(100vh - var(--nav-height)); overflow-y: auto;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; z-index: 999; }
  .nav-link { padding: 11px 22px; font-size: 0.83rem; }
  .nav-link.nav-cta { margin: 8px 22px 0; text-align: center; }
  .nav-dropdown .dropdown-menu {
    position: static; transform: none; opacity: 1; visibility: visible;
    background: rgba(255,255,255,0.04); border: none;
    border-top: 1px solid var(--border-subtle);
    padding: 4px 0 4px 16px; box-shadow: none;
    backdrop-filter: none; -webkit-backdrop-filter: none;
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .nav-dropdown:hover .dropdown-menu { max-height: 0; }
  .nav-dropdown.open .dropdown-menu { max-height: 320px; transform: none; }
  .nav-dropdown .dropdown-menu li a {
    color: var(--text-primary);
    padding: 10px 18px;
    font-size: 0.85rem;
    border-left: none;
  }
}

@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 0; }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-block { grid-template-columns: 1fr; }
  .service-block.flip { direction: ltr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .hero-deco { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .form-box { padding: 24px; }
  .services-grid, .why-grid, .artists-grid, .releases-grid,
  .testimonials-grid, .blog-grid { grid-template-columns: 1fr; }
  .service-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .hero-cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
  .languages-grid { grid-template-columns: 1fr 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; }
}
