/*
Theme Name: Gee $uade
Theme URI: https://suadestudios.com
Author: Suade Studios
Author URI: https://suadestudios.com
Description: Custom WordPress theme for Gee $uade — late-night lounge-and-grit aesthetic, red-forward palette, catalog-first structure. Hand-coded, no page builder. Companion Releases custom post type for music with 6-platform streaming links per release.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
License: Proprietary — Suade Studios
Text Domain: gee-suade
Tags: music, artist, dark, single-page, custom-post-type
*/

/* ============================================================
   DESIGN TOKENS — Gee $uade, red-forward palette
   ============================================================ */
:root {
  --bg-0: #07050a;
  --bg-1: #0f0a0c;
  --bg-2: #17101a;
  --bg-3: #1e1720;
  --line: rgba(240, 229, 208, 0.08);
  --line-bright: rgba(240, 229, 208, 0.18);

  --text: #f0e5d0;
  --text-dim: #b8a893;
  --text-mute: #73675a;

  /* red-forward accents (var names preserved from demo for minimal churn) */
  --accent-amber: #e6222e;        /* primary RED */
  --accent-amber-hot: #ff3b3b;    /* hot RED on hover */
  --accent-burgundy: #5c0f11;     /* deep OXBLOOD */
  --accent-red: #b81f2a;          /* crimson support */
  --accent-neon: #ff2a2a;         /* pure red neon */

  --shadow-deep: 0 40px 80px -20px rgba(0,0,0,0.9);
  --shadow-pop: 0 8px 32px -8px rgba(230, 34, 46, 0.32);

  --serif: "DM Serif Display", "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --script: "Pinyon Script", cursive;
  --display: "Anton", "Bebas Neue", Impact, sans-serif;
}

/* ============================================================
   RESET + BASE
   ============================================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-0);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }

/* WordPress core classes we need to handle cleanly */
.alignleft  { float: left;  margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--text-mute); margin-top: 6px; }
.screen-reader-text {
  position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden;
}

/* ============================================================
   GRAIN + VIGNETTE OVERLAYS (global)
   ============================================================ */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.6'/></svg>");
  opacity: 0.08;
  mix-blend-mode: overlay;
}
.vignette {
  position: fixed; inset: 0; pointer-events: none; z-index: 9998;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.55) 100%);
}

/* ============================================================
   SIDEBAR SOCIAL RAIL — 3 grouped sections
   ============================================================ */
.social-rail {
  position: fixed;
  left: 0; top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 14px;
}
.social-rail .rail-group {
  display: flex; flex-direction: column; gap: 10px;
}
.social-rail .rail-divider {
  height: 1px; width: 20px;
  margin: 4px auto;
  background: var(--line-bright);
  opacity: 0.5;
}
.social-rail a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text-dim);
  transition: all 0.3s cubic-bezier(.2,.8,.2,1);
  background: rgba(15, 10, 12, 0.6);
  backdrop-filter: blur(8px);
  position: relative;
}
.social-rail a::before {
  content: attr(data-label);
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%) translateX(-4px);
  padding: 4px 10px;
  background: var(--bg-1);
  border: 1px solid var(--line-bright);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s;
}
.social-rail a:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.social-rail a:hover {
  color: var(--accent-amber);
  border-color: var(--accent-amber);
  transform: translateX(4px) scale(1.08);
  box-shadow: var(--shadow-pop);
}
.social-rail svg { width: 15px; height: 15px; }

/* ============================================================
   TOP NAV
   ============================================================ */
.topnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  padding: 22px 44px;
  display: flex; justify-content: space-between; align-items: center;
  background: linear-gradient(to bottom, rgba(7,5,10,0.92) 0%, rgba(7,5,10,0.6) 70%, transparent 100%);
  backdrop-filter: blur(10px);
  transition: padding 0.4s ease;
}
.topnav.scrolled { padding: 14px 44px; background: rgba(7,5,10,0.95); }

.brand {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: 0.02em;
  color: var(--text);
  display: flex; align-items: center; gap: 10px;
}
.brand-mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 1px solid var(--accent-amber);
  color: var(--accent-amber);
  font-family: var(--serif);
  font-size: 20px;
  border-radius: 50%;
  font-style: italic;
}
.brand em { font-style: italic; color: var(--accent-amber); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  position: relative;
  padding: 8px 0;
  transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a.active,
.nav-links li.current-menu-item > a { color: var(--accent-amber); }
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 1px;
  background: var(--accent-amber);
  transition: all 0.3s;
  transform: translateX(-50%);
}
.nav-links a:hover::after,
.nav-links a.active::after,
.nav-links li.current-menu-item > a::after { width: 100%; }

.nav-cta,
.nav-links li.nav-cta > a {
  border: 1px solid var(--accent-amber);
  color: var(--accent-amber) !important;
  padding: 10px 20px !important;
  letter-spacing: 0.18em !important;
}
.nav-cta:hover,
.nav-links li.nav-cta > a:hover {
  background: var(--accent-amber);
  color: var(--bg-0) !important;
}
.nav-cta::after,
.nav-links li.nav-cta > a::after { display: none; }

.mobile-toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 100px 44px 60px 100px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45) contrast(1.1) saturate(0.85);
  z-index: -2;
}
.hero[data-bg]::before { background-image: var(--hero-bg); }
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(230,34,46,0.32) 0%, transparent 55%),
    linear-gradient(180deg, rgba(7,5,10,0.55) 0%, rgba(7,5,10,0.35) 40%, rgba(7,5,10,0.95) 100%);
  z-index: -1;
}

.hero-inner {
  max-width: 1240px; width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text .kicker {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent-amber);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 14px;
}
.hero-text .kicker::before {
  content: ""; width: 40px; height: 1px; background: var(--accent-amber);
}

.hero-wordmark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(64px, 11vw, 156px);
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 6px;
}
.hero-wordmark .script {
  display: block;
  font-family: var(--script);
  font-weight: 400;
  font-size: clamp(40px, 7vw, 100px);
  color: var(--accent-amber);
  letter-spacing: 0;
  line-height: 1;
  margin-top: -8px;
  margin-left: 14px;
  transform: rotate(-2deg);
}

.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--text-dim);
  max-width: 540px;
  margin: 36px 0 40px;
  line-height: 1.4;
}
.hero-tagline em { color: var(--accent-amber); font-style: italic; }

.hero-meta {
  display: flex; gap: 40px; flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-meta-item .label {
  display: block;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--text-mute); margin-bottom: 6px;
}
.hero-meta-item .value {
  font-family: var(--serif); font-size: 18px; color: var(--text);
}

.hero-cta-row { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--line-bright);
  color: var(--text);
  transition: all 0.3s cubic-bezier(.2,.8,.2,1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
}
.btn svg { width: 14px; height: 14px; }
.btn:hover {
  border-color: var(--accent-amber);
  color: var(--accent-amber);
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--accent-amber);
  color: var(--bg-0);
  border-color: var(--accent-amber);
}
.btn-primary:hover {
  background: var(--accent-amber-hot);
  color: var(--bg-0);
  box-shadow: var(--shadow-pop);
}

/* hero marquee ticker */
.hero-ticker {
  position: absolute; bottom: 0; left: 0; right: 0;
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(7,5,10,0.7);
  backdrop-filter: blur(6px);
}
.hero-ticker-track {
  display: flex; gap: 60px;
  animation: ticker 40s linear infinite;
  white-space: nowrap;
}
.hero-ticker span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--text-dim);
}
.hero-ticker span::before {
  content: "✦";
  margin-right: 60px;
  color: var(--accent-amber);
  font-style: normal;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SECTION BASE
   ============================================================ */
section { position: relative; padding: 120px 44px 120px 100px; }
.container { max-width: 1240px; margin: 0 auto; }

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; margin-bottom: 60px;
}
.section-head .side {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--text-mute);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.01em;
}
.section-title em { color: var(--accent-amber); font-style: italic; }

.section-kicker {
  font-size: 12px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--accent-amber); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.section-kicker::before { content: ""; width: 28px; height: 1px; background: var(--accent-amber); }

/* tape accent */
.tape {
  position: absolute;
  background: linear-gradient(135deg, rgba(230,34,46,0.55), rgba(92,15,17,0.55));
  padding: 4px 16px;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  font-family: var(--sans); font-weight: 600;
  color: var(--bg-0);
  transform: rotate(-3deg);
  box-shadow: 0 4px 18px rgba(0,0,0,0.5);
  z-index: 3;
}
.tape::before, .tape::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 8px;
  background: repeating-linear-gradient(90deg, transparent 0 2px, rgba(0,0,0,0.3) 2px 3px);
}
.tape::before { left: 0; }
.tape::after { right: 0; }

/* ============================================================
   NOW PLAYING STRIP (home page)
   ============================================================ */
.now-playing {
  padding: 60px 44px 60px 100px;
  background: linear-gradient(180deg, transparent, rgba(230,34,46,0.14), transparent);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.now-playing-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto; gap: 40px; align-items: center;
}
.np-cover {
  width: 140px; height: 140px;
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-deep);
  position: relative;
  flex-shrink: 0;
}
.np-cover::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(230,34,46,0.14) 100%);
}
.np-pulse {
  position: absolute; top: 10px; right: 10px;
  display: flex; align-items: center; gap: 6px;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent-neon);
}
.np-pulse::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-neon);
  animation: pulse 1.8s ease-in-out infinite;
  box-shadow: 0 0 12px var(--accent-neon);
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

.np-meta .np-kicker {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent-amber); margin-bottom: 10px;
}
.np-meta .np-title {
  font-family: var(--serif); font-size: 42px; line-height: 1; margin-bottom: 8px;
}
.np-meta .np-sub {
  font-style: italic; color: var(--text-dim); font-family: var(--serif); font-size: 18px;
}

.np-platforms {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end;
}

/* ============================================================
   PLATFORM PILLS (used in NP strip, release modal/page, everywhere)
   ============================================================ */
.platform-pill {
  padding: 10px 16px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid var(--line-bright);
  color: var(--text-dim);
  transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 6px;
}
.platform-pill.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: auto;
}
.platform-pill:not(.disabled):hover {
  color: var(--accent-amber);
  border-color: var(--accent-amber);
  transform: translateY(-2px);
}
.platform-pill svg { width: 12px; height: 12px; }

/* ============================================================
   CATALOG / MUSIC GRID
   ============================================================ */
.catalog {
  background: var(--bg-0);
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.release-card {
  position: relative;
  cursor: pointer;
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1);
}
.release-card:hover { transform: translateY(-8px); }
.release-cover {
  aspect-ratio: 1;
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-deep);
  position: relative;
  overflow: hidden;
}
.release-cover::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7,5,10,0.85) 100%);
  opacity: 0; transition: opacity 0.3s;
}
.release-card:hover .release-cover::before { opacity: 1; }
.release-cover::after {
  content: "▶";
  position: absolute; top: 50%; left: 50%;
  width: 72px; height: 72px;
  transform: translate(-50%, -50%) scale(0.6);
  display: grid; place-items: center;
  background: var(--accent-amber);
  color: var(--bg-0);
  border-radius: 50%;
  opacity: 0; transition: all 0.35s cubic-bezier(.2,.8,.2,1);
  font-size: 20px;
  padding-left: 4px;
  box-shadow: var(--shadow-pop);
}
.release-card:hover .release-cover::after { opacity: 1; transform: translate(-50%, -50%) scale(1); }

.release-meta { padding: 20px 0 0; }
.release-type {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent-amber); margin-bottom: 8px;
}
.release-title {
  font-family: var(--serif); font-size: 26px; line-height: 1.1;
  margin-bottom: 6px;
}
.release-year {
  font-size: 13px; color: var(--text-mute);
  display: flex; gap: 14px;
}
.release-year span::before { content: "·"; margin-right: 14px; color: var(--text-mute); }
.release-year span:first-child::before { display: none; }

/* ============================================================
   SINGLE RELEASE PAGE
   ============================================================ */
.release-detail {
  padding: 140px 44px 100px 100px;
  max-width: 1240px;
  margin: 0 auto;
}
.release-detail-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px;
  align-items: start;
}
.release-detail-cover {
  aspect-ratio: 1;
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-deep);
  position: sticky;
  top: 100px;
}
.release-detail-body h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.95;
  margin-bottom: 14px;
}
.release-detail-sub {
  font-family: var(--serif); font-style: italic;
  color: var(--text-dim); font-size: 22px; margin-bottom: 36px;
}
.release-blurb {
  color: var(--text-dim);
  margin-bottom: 40px;
  line-height: 1.75;
  max-width: 540px;
}
.release-section-label {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent-amber);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.release-section-label::before { content: ""; width: 20px; height: 1px; background: var(--accent-amber); }

.platform-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 40px;
}
.platform-grid .platform-pill { justify-content: center; padding: 14px 16px; }

.tracklist { list-style: none; margin-bottom: 40px; }
.tracklist li {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 14px; align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.tracklist .tn { color: var(--text-mute); font-family: var(--serif); font-style: italic; }
.tracklist .td { color: var(--text-mute); font-size: 12px; }

/* ============================================================
   STORY (home)
   ============================================================ */
.story {
  padding: 140px 44px 140px 100px;
  background: linear-gradient(180deg, var(--bg-0), var(--bg-1));
}
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1240px; margin: 0 auto;
}
.story-img {
  position: relative;
}
.story-img img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  filter: grayscale(0.3) contrast(1.05);
  box-shadow: var(--shadow-deep);
}
.story-img .tape-1 { top: -20px; left: -20px; }
.story-img .tape-2 { bottom: 40px; right: -30px; transform: rotate(5deg); }

.story-text .section-title { margin-bottom: 36px; }
.story-text p {
  margin-bottom: 20px;
  color: var(--text-dim);
  font-size: 17px; line-height: 1.75;
  max-width: 520px;
}
.story-text p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 68px;
  float: left;
  line-height: 0.85;
  margin: 6px 10px 0 0;
  color: var(--accent-amber);
}
.story-divider {
  width: 60px; height: 1px; background: var(--accent-amber);
  margin: 32px 0;
}
.story-signature {
  font-family: var(--script);
  font-size: 40px;
  color: var(--accent-amber);
  margin-top: 20px;
}

/* ============================================================
   QUOTE BREAK
   ============================================================ */
.quote-break {
  position: relative;
  min-height: 460px;
  display: grid; place-items: center;
  padding: 100px 44px;
  text-align: center;
  overflow: hidden;
}
.quote-break::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(7,5,10,0.75), rgba(7,5,10,0.85)),
    var(--quote-bg, url(""));
  background-size: cover;
  background-position: center;
  filter: saturate(0.6);
}
.quote-inner { position: relative; max-width: 880px; z-index: 2; }
.quote-mark {
  font-family: var(--serif); font-size: 140px; line-height: 0;
  color: var(--accent-amber); opacity: 0.35;
  display: block; margin-bottom: 40px;
}
.quote-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 28px;
}
.quote-attr {
  font-family: var(--sans);
  font-size: 12px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--accent-amber);
}

/* ============================================================
   SHOWS + SHOP empty states
   ============================================================ */
.shows, .shop {
  background: linear-gradient(180deg, var(--bg-0), var(--bg-1));
}
.shows-empty {
  max-width: 720px; margin: 0 auto; text-align: center;
  padding: 60px 40px;
  border: 1px dashed var(--line-bright);
  position: relative;
}
.shows-empty::before {
  content: "✦ ✦ ✦";
  letter-spacing: 0.6em;
  color: var(--accent-amber);
  font-size: 14px;
  margin-bottom: 28px;
  display: block;
}
.shows-empty h3 {
  font-family: var(--serif);
  font-size: 36px;
  margin-bottom: 20px;
}
.shows-empty p {
  color: var(--text-dim);
  max-width: 440px; margin: 0 auto 28px;
  line-height: 1.7;
}

/* ============================================================
   NEWS GRID + SINGLE POST
   ============================================================ */
.news {
  background: var(--bg-0);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  border: 1px solid var(--line);
  padding: 32px;
  transition: all 0.35s cubic-bezier(.2,.8,.2,1);
  position: relative;
  background: var(--bg-1);
}
.news-card:hover {
  border-color: var(--accent-amber);
  background: var(--bg-2);
  transform: translateY(-4px);
}
.news-date {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent-amber);
  margin-bottom: 20px;
}
.news-title {
  font-family: var(--serif);
  font-size: 22px; line-height: 1.25;
  margin-bottom: 14px;
}
.news-excerpt {
  color: var(--text-dim);
  font-size: 14px; line-height: 1.65;
  margin-bottom: 24px;
}
.news-read-more {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent-amber);
  display: inline-flex; align-items: center; gap: 8px;
}
.news-read-more svg {
  width: 14px; height: 14px;
  transition: transform 0.25s;
}
.news-card:hover .news-read-more svg { transform: translateX(4px); }

/* Single post */
.post-single {
  max-width: 820px; margin: 0 auto;
  padding: 140px 44px 100px 100px;
}
.post-single .post-meta {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent-amber); margin-bottom: 20px;
}
.post-single h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  margin-bottom: 32px;
}
.post-single .featured-image {
  width: 100%; max-height: 540px; object-fit: cover;
  margin-bottom: 48px; box-shadow: var(--shadow-deep);
}
.post-single .content p {
  color: var(--text-dim);
  font-size: 18px; line-height: 1.75;
  margin-bottom: 24px;
}
.post-single .content h2, .post-single .content h3 {
  font-family: var(--serif);
  color: var(--text);
  margin: 48px 0 16px;
  line-height: 1.2;
}
.post-single .content h2 { font-size: 32px; }
.post-single .content h3 { font-size: 24px; color: var(--accent-amber); }
.post-single .content ol, .post-single .content ul {
  color: var(--text-dim); margin: 0 0 24px 32px;
}
.post-single .content li { margin-bottom: 10px; }
.post-single .content a {
  color: var(--accent-amber);
  border-bottom: 1px solid var(--accent-amber);
}
.post-single .content blockquote {
  border-left: 3px solid var(--accent-amber);
  padding-left: 24px;
  font-family: var(--serif); font-style: italic;
  color: var(--text); margin: 32px 0;
  font-size: 22px; line-height: 1.5;
}

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial {
  position: relative;
  padding: 140px 44px;
  background: var(--bg-0);
  text-align: center;
}
.testimonial::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(230,34,46,0.22), transparent 70%);
}
.testimonial-inner {
  position: relative; max-width: 720px; margin: 0 auto;
}
.stars {
  color: var(--accent-amber);
  font-size: 16px;
  letter-spacing: 0.5em;
  margin-bottom: 24px;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 32px;
}
.testimonial cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent-amber);
  display: flex; align-items: center; gap: 14px; justify-content: center;
}
.testimonial cite::before, .testimonial cite::after {
  content: ""; width: 40px; height: 1px; background: var(--accent-amber);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: linear-gradient(180deg, var(--bg-1), var(--bg-0));
  padding-bottom: 80px;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
}
.contact-col h3 {
  font-family: var(--serif);
  font-size: 28px;
  margin-bottom: 20px;
}
.contact-col p { color: var(--text-dim); margin-bottom: 20px; }

/* Form (works with WPForms / Fluent Forms / native) */
.contact-form { display: grid; gap: 16px; }
.contact-form input,
.contact-form textarea,
.contact .wpforms-field-container input,
.contact .wpforms-field-container textarea,
.contact .fluentform input,
.contact .fluentform textarea {
  background: transparent !important;
  border: 1px solid var(--line-bright) !important;
  padding: 14px 16px !important;
  color: var(--text) !important;
  font-family: var(--sans) !important;
  font-size: 14px !important;
  transition: border-color 0.25s;
  width: 100% !important;
  border-radius: 0 !important;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact .wpforms-field-container input:focus,
.contact .wpforms-field-container textarea:focus {
  outline: none;
  border-color: var(--accent-amber) !important;
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact .wpforms-submit,
.contact .ff-btn {
  background: var(--accent-amber) !important;
  color: var(--bg-0) !important;
  border: 1px solid var(--accent-amber) !important;
  padding: 16px 28px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  border-radius: 0 !important;
  cursor: pointer;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: 60px 44px 40px 100px;
  border-top: 1px solid var(--line);
  background: var(--bg-0);
}
.footer-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--text-dim);
}
.footer-brand em { color: var(--accent-amber); font-style: italic; }
.footer-nav {
  display: flex; gap: 28px; list-style: none; flex-wrap: wrap;
}
.footer-nav a {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--text-mute);
  transition: color 0.25s;
}
.footer-nav a:hover { color: var(--accent-amber); }
.footer-copy {
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.08em;
  width: 100%; text-align: center; padding-top: 32px; margin-top: 32px;
  border-top: 1px solid var(--line);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 920px) {
  section, .now-playing, .story, .site-footer, .post-single, .release-detail {
    padding-left: 44px; padding-right: 24px;
  }
  .social-rail { display: none; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; font-size: 24px; color: var(--text); }
  .hero-inner { grid-template-columns: 1fr; }
  .now-playing-inner { grid-template-columns: 1fr; }
  .np-platforms { justify-content: flex-start; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .release-detail-grid { grid-template-columns: 1fr; }
  .release-detail-cover { position: relative; top: 0; }
}
@media (max-width: 560px) {
  .catalog-grid { grid-template-columns: 1fr; }
  .hero-wordmark { font-size: 72px; }
  .section-title { font-size: 44px; }
}
