/* ============================================
   hip-hop.cloud — Prototype Styles
   ============================================ */

:root {
  /* Brand — matched to music.hip-hop.cloud green pill */
  --brand: #16a34a;
  --brand-600: #15803d;
  --brand-700: #166534;
  --brand-soft: #e8f7ee;

  /* Battle accents (Creative Zone Battle gradient) */
  --battle-1: #ff8a3d;
  --battle-2: #d35522;
  --battle-3: #6b1a0c;
  --battle-yellow: #ffc24c;

  /* Surfaces */
  --bg: #f5f6f7;
  --bg-tint: #eef0f2;
  --surface: #ffffff;
  --surface-2: #f9fafb;
  --border: #e7e9ec;
  --border-strong: #d8dbe0;

  /* Text */
  --text: #0f1115;
  --text-muted: #6b7280;
  --text-soft: #8a8f98;

  /* Type */
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Manrope", "Inter", system-ui, sans-serif;

  /* Radii */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 17, 21, 0.04), 0 1px 1px rgba(15, 17, 21, 0.03);
  --shadow-md: 0 4px 16px rgba(15, 17, 21, 0.06), 0 1px 2px rgba(15, 17, 21, 0.04);
  --shadow-lg: 0 20px 50px -20px rgba(15, 17, 21, 0.18);

  /* Layout */
  --container: 1240px;
  --gutter: clamp(16px, 3vw, 32px);
  --section-y: clamp(56px, 7vw, 96px);
}

/* ============================================
   Reset / base
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; line-height: 1.15; letter-spacing: -0.01em; }
p { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.muted { color: var(--text-muted); }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  transition: transform .12s ease, box-shadow .12s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-lg { padding: 14px 22px; font-size: 15px; }
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,.15) inset, 0 6px 18px -8px rgba(22,163,74,.55);
}
.btn-primary:hover { background: var(--brand-600); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: rgba(255,255,255,.7);
  color: var(--text);
  border-color: var(--border);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: #fff; border-color: var(--border-strong); }
.btn-ghost-dark {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.18);
}
.btn-ghost-dark:hover { background: rgba(255,255,255,.16); }
.btn-cz {
  background: #fff;
  color: var(--battle-3);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 6px 18px -8px rgba(0,0,0,.4);
}

.icon-btn {
  width: 40px; height: 40px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text);
  border: 1px solid transparent;
  transition: background .15s ease, border-color .15s ease;
}
.icon-btn:hover { background: var(--surface); border-color: var(--border); }

/* ============================================
   Header
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 246, 247, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(245, 246, 247, 0.95);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--text);
  flex-shrink: 0;
}
.brand-text { white-space: nowrap; }
.brand-dot { color: var(--brand); }

.primary-nav { flex: 1; }
.primary-nav ul {
  display: flex; gap: 4px;
  justify-content: center;
}
.primary-nav a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: background .15s ease, color .15s ease;
}
.primary-nav a:hover { color: var(--text); background: rgba(15,17,21,.04); }
.primary-nav a.is-active {
  color: var(--text);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.header-actions { display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0; }
.menu-btn { display: none; }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.mobile-nav ul { padding: 12px var(--gutter); }
.mobile-nav a {
  display: block;
  padding: 12px 8px;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
}
.mobile-nav a:hover { background: var(--bg); }
.mobile-cta { color: var(--brand) !important; font-weight: 700 !important; }

/* ============================================
   Hero
   ============================================ */
.hero {
  padding: clamp(40px, 6vw, 80px) 0 clamp(48px, 6vw, 88px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-700);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin-bottom: 20px;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 0 rgba(22,163,74,.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(22,163,74,.55); }
  70%  { box-shadow: 0 0 0 10px rgba(22,163,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.accent { color: var(--brand); }
.hero-lead {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--text-muted);
  max-width: 56ch;
  margin-bottom: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero-meta {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.meta-item { display: flex; flex-direction: column; gap: 2px; }
.meta-item strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.meta-item span { font-size: 13px; color: var(--text-muted); }

.hero-feature {
  background: var(--surface);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: transform .2s ease, box-shadow .2s ease;
}
.hero-feature:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.hero-feature-link { display: block; color: inherit; }
.hero-feature-art { aspect-ratio: 16 / 11; overflow: hidden; }
.hero-feature-art svg { width: 100%; height: 100%; }
.hero-feature-body { padding: 22px 24px 26px; }
.hero-feature-body h3 {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 10px 0 8px;
}
.byline { font-size: 13px; color: var(--text-muted); }

/* ============================================
   Sections
   ============================================ */
.section { padding: var(--section-y) 0; }
.section-tinted { background: var(--bg-tint); }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(24px, 3vw, 40px);
}
.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.section-sub { color: var(--text-muted); margin-top: 6px; font-size: 15px; }
.link-more {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: background .15s ease, transform .15s ease;
  white-space: nowrap;
}
.link-more:hover { background: var(--surface-2); border-color: var(--border-strong); }
.link-more span { transition: transform .15s ease; }
.link-more:hover span { transform: translateX(2px); }

/* ============================================
   Tags
   ============================================ */
.tag {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  letter-spacing: 0.01em;
}
.tag-battle {
  background: linear-gradient(135deg, var(--battle-1), var(--battle-2));
  color: #fff;
  border-color: transparent;
}
.tag-analysis {
  background: var(--brand-soft);
  color: var(--brand-700);
  border-color: rgba(22,163,74,.15);
}
.tags { display: inline-flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: 13px; margin-bottom: 12px; }
.dot-sep { color: var(--text-soft); }

/* ============================================
   Grids
   ============================================ */
.grid { display: grid; gap: 24px; }
.grid-news {
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
}
.grid-news .featured { grid-row: span 2; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-releases { grid-template-columns: repeat(6, 1fr); gap: 18px; }
.grid-analysis {
  grid-template-columns: 1.5fr 1fr 1fr;
}

/* ============================================
   Cards
   ============================================ */
.card {
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}
.card-body { padding: 20px 22px 24px; }
.card-body h3 {
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}
.card-body p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.card-art { aspect-ratio: 16 / 9; background: var(--surface-2); position: relative; overflow: hidden; }

/* News card art — abstract gradients */
.art-1 { background:
  radial-gradient(120% 80% at 80% 20%, rgba(22,163,74,.35), transparent 60%),
  linear-gradient(135deg, #0c3a26, #134e30 70%, #1a6a40);
}
.art-2 { background:
  radial-gradient(100% 80% at 20% 20%, rgba(255,138,61,.55), transparent 60%),
  linear-gradient(135deg, #2a1a14, #4a2418);
}
.art-3 { background:
  radial-gradient(120% 80% at 80% 80%, rgba(255,194,76,.45), transparent 60%),
  linear-gradient(135deg, #5a1a0c, #2a0a04);
}
.art-4 { background:
  radial-gradient(100% 80% at 30% 30%, rgba(120,180,255,.35), transparent 60%),
  linear-gradient(135deg, #1a1f2a, #2a3140);
}

.card-news.featured .card-art { aspect-ratio: 4 / 3; }
.card-news.featured .card-body h3 { font-size: clamp(18px, 1.7vw, 22px); }

.meta-row { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.meta-row .muted { font-size: 13px; }

/* ============================================
   Battle cards (Creative Zone Battle style covers)
   ============================================ */
.battle-cover {
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(110% 80% at 75% 22%, var(--battle-1) 0%, var(--battle-2) 45%, var(--battle-3) 100%);
  position: relative;
  display: grid;
  place-items: center;
}
.battle-cover.variant-b {
  background:
    radial-gradient(110% 80% at 25% 80%, #ff9b55 0%, #b13a16 50%, #401208 100%);
}
.battle-cover.variant-c {
  background:
    radial-gradient(110% 80% at 50% 30%, #ffb066 0%, #c54b1d 55%, #4a160a 100%);
}
.battle-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(40% 40% at 80% 15%, rgba(255,217,163,.35), transparent 70%);
  pointer-events: none;
}
.bc-overlay {
  position: relative;
  z-index: 1;
  display: flex; flex-direction: column;
  align-items: flex-start;
  padding: 0 22px;
  width: 100%;
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  font-size: clamp(20px, 3.3vw, 30px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  gap: 4px;
}
.cz-yellow { color: var(--battle-yellow); }
.round-badge {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(0,0,0,.4);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  z-index: 2;
}
.card-battle .battle-cover { aspect-ratio: 16 / 10; }
.card-battle .bc-overlay { font-size: clamp(22px, 2.6vw, 30px); }

/* ============================================
   Featured battle card (large CZB block)
   ============================================ */
.featured-battle { padding: clamp(20px, 3vw, 36px) 0 var(--section-y); }
.cz-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(135deg, #1a0a06, #2a0e07);
  color: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 24px 60px -24px rgba(86,30,12,.5);
  transition: transform .2s ease, box-shadow .2s ease;
}
.cz-card:hover { transform: translateY(-3px); box-shadow: 0 32px 72px -28px rgba(86,30,12,.6); }
.cz-art {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
}
.cz-art svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.cz-art-title {
  position: relative;
  z-index: 1;
  display: flex; flex-direction: column;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 0.96;
  letter-spacing: -0.015em;
  color: #fff;
  padding: 0 36px;
  text-transform: uppercase;
}
.cz-body { padding: clamp(28px, 4vw, 44px); display: flex; flex-direction: column; gap: 16px; justify-content: center; }
.cz-eyebrow { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.live-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.15);
}
.live-pill .live-dot { background: var(--battle-yellow); box-shadow: 0 0 0 0 rgba(255,194,76,.6); }
.cz-body h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
}
.cz-body p { color: rgba(255,255,255,.78); font-size: 15px; max-width: 50ch; }
.cz-stats {
  display: flex; gap: clamp(20px, 3vw, 36px);
  padding-top: 4px;
}
.cz-stats li { display: flex; flex-direction: column; gap: 2px; }
.cz-stats strong {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--battle-yellow);
}
.cz-stats span { font-size: 12px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: 0.05em; }
.cz-cta { display: flex; align-items: center; gap: 16px; margin-top: 8px; flex-wrap: wrap; }
.cz-host { font-size: 13px; color: rgba(255,255,255,.55); font-family: ui-monospace, "SF Mono", Menlo, monospace; }

/* ============================================
   Releases
   ============================================ */
.release { display: flex; flex-direction: column; gap: 10px; }
.release-cover {
  aspect-ratio: 1 / 1;
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.release:hover .release-cover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cov-1 { background: linear-gradient(135deg, #0c3a26, #16a34a); }
.cov-2 { background: linear-gradient(135deg, #1f1f24, #3a3a44); }
.cov-3 { background: linear-gradient(135deg, #4a1a0a, #ff8a3d); }
.cov-4 { background: linear-gradient(135deg, #1a2435, #4a6485); }
.cov-5 { background: linear-gradient(135deg, #3a1a3a, #8a3a8a); }
.cov-6 { background: linear-gradient(135deg, #34280a, #b58a2a); }
.play-fab {
  position: absolute;
  right: 12px; bottom: 12px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 6px 14px rgba(0,0,0,.25);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, background .15s ease;
}
.release:hover .play-fab { opacity: 1; transform: translateY(0); }
.play-fab:hover { background: var(--brand-600); }
.release-meta h4 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.release-meta .muted { font-size: 13px; }

/* ============================================
   Analysis grid
   ============================================ */
.card-analysis.large .card-art { aspect-ratio: 16 / 10; }
.card-analysis.large .card-body h3 { font-size: clamp(20px, 1.8vw, 24px); }
.art-an-1 { background:
  radial-gradient(120% 80% at 25% 30%, rgba(22,163,74,.55), transparent 60%),
  linear-gradient(135deg, #0a2419, #134e30);
}
.art-an-2 { background:
  radial-gradient(100% 80% at 70% 30%, rgba(255,255,255,.18), transparent 60%),
  linear-gradient(135deg, #0f1115, #2a2f3a);
}
.art-an-3 { background:
  radial-gradient(100% 80% at 30% 70%, rgba(255,194,76,.35), transparent 60%),
  linear-gradient(135deg, #2a1a08, #5a3a0c);
}

/* ============================================
   Panels (interviews/history/guides/archive)
   ============================================ */
.panel {
  padding: 28px 28px 26px;
  display: flex; flex-direction: column; gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.panel:hover { transform: none; box-shadow: var(--shadow-sm); }
.panel-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand-700);
  display: grid; place-items: center;
  margin-bottom: 4px;
}
.panel h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.panel p { color: var(--text-muted); font-size: 14px; max-width: 50ch; }
.panel .link-more { align-self: flex-start; margin-top: 6px; }

/* ============================================
   CTA
   ============================================ */
.cta { padding: var(--section-y) 0; }
.cta-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(32px, 4vw, 56px);
  border-radius: var(--r-xl);
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(22,163,74,.16), transparent 60%),
    linear-gradient(135deg, #0d0f12, #181c22);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-art {
  width: clamp(120px, 14vw, 170px);
  aspect-ratio: 1;
  flex-shrink: 0;
}
.cta-copy h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.cta-copy p { color: rgba(255,255,255,.75); font-size: 16px; max-width: 60ch; margin-bottom: 20px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: clamp(40px, 5vw, 64px) 0 24px;
  margin-top: 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: 40px;
}
.footer-brand .brand { margin-bottom: 12px; }
.footer-brand p { font-size: 14px; max-width: 36ch; }
.site-footer h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.footer-list li { margin-bottom: 10px; }
.footer-list a {
  color: var(--text);
  font-size: 14px;
  transition: color .15s ease;
}
.footer-list a:hover { color: var(--brand); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================
   Responsive — tablet
   ============================================ */
@media (max-width: 1080px) {
  .primary-nav ul { gap: 0; }
  .primary-nav a { padding: 8px 10px; font-size: 13px; }
  .grid-news { grid-template-columns: 1fr 1fr; }
  .grid-news .featured { grid-row: span 1; grid-column: span 2; }
  .grid-analysis { grid-template-columns: 1fr 1fr; }
  .card-analysis.large { grid-column: span 2; }
  .grid-releases { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 860px) {
  .header-inner { height: 64px; }
  .primary-nav { display: none; }
  .menu-btn { display: inline-flex; }
  .mobile-nav.is-open { display: block; }
  .header-actions .btn-primary span { display: none; }

  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-meta { flex-wrap: wrap; gap: 20px 32px; }

  .cz-card { grid-template-columns: 1fr; }
  .cz-art { min-height: 220px; }
  .cz-art-title { padding: 24px 28px; }

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

  .cta-card { grid-template-columns: 1fr; text-align: left; }
  .cta-art { width: 96px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   Responsive — mobile
   ============================================ */
@media (max-width: 560px) {
  :root { --gutter: 16px; }
  .header-inner { gap: 12px; }
  .brand-text { display: none; }
  .header-actions .btn-primary { padding: 10px 14px; }

  .hero { padding-top: 28px; }
  .hero h1 { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-meta { padding-top: 20px; gap: 16px 24px; }
  .meta-item strong { font-size: 18px; }

  .section-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .section-head h2 { font-size: 1.6rem; }

  .grid-news { grid-template-columns: 1fr; }
  .grid-news .featured { grid-column: span 1; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-releases { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .grid-analysis { grid-template-columns: 1fr; }
  .card-analysis.large { grid-column: span 1; }

  .cz-stats { gap: 18px; flex-wrap: wrap; }
  .cz-stats strong { font-size: 22px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; }

  .release-cover { border-radius: 12px; }
  .play-fab { opacity: 1; transform: translateY(0); width: 38px; height: 38px; }
}

/* ============================================
   Focus & accessibility
   ============================================ */
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: 999px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
