:root {
  --bg-dark: #0d0a07;
  --bg-section: #14100b;
  --bg-card: #1c1610;
  --fg: #f5efe6;
  --fg-muted: #a89882;
  --accent: #e8871e;
  --accent-glow: #ff9f33;
  --gold: #d4a843;
  --red-smoke: #8b2500;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-dark);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

/* ===== NAV ===== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 10, 7, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 168, 67, 0.1);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-brand-main {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.nav-brand-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg-muted);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover {
  color: var(--fg);
  background: rgba(232, 135, 30, 0.08);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
}

/* ===== HERO (shared) ===== */
.hero, .page-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(180deg, #1a0f05 0%, var(--bg-dark) 60%, #14100b 100%);
  overflow: hidden;
}
.page-hero {
  min-height: 60vh;
  padding-top: 7rem;
}
.hero-smoke {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(232, 135, 30, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 30% 70%, rgba(139, 37, 0, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 70% 30%, rgba(212, 168, 67, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding-top: 4rem;
}
.hero-tag {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero h1, .page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero h1 .accent, .page-hero h1 .accent {
  color: var(--accent);
  display: block;
}
.hero-lede {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}
.hero-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}
.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 600;
  color: var(--accent-glow);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #0d0a07; }
.btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(212, 168, 67, 0.4);
  color: var(--gold);
}
.btn-ghost:hover { border-color: var(--gold); }
.btn-gold { background: var(--gold); color: #0d0a07; }

/* ===== SECTIONS ===== */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 2rem;
}
.accent-text { color: var(--accent); }
.preview-cta { margin-top: 2.5rem; }
.preview-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ===== JIONT SECTION ===== */
.jiont-section {
  background: var(--bg-section);
  border-top: 1px solid rgba(232, 135, 30, 0.1);
}
.jiont-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.jiont-desc {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}
.jiont-desc strong { color: var(--fg); }
.jiont-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.badge {
  display: inline-block;
  background: rgba(232, 135, 30, 0.1);
  border: 1px solid rgba(232, 135, 30, 0.2);
  color: var(--accent-glow);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
}
.jiont-card-stack { display: flex; flex-direction: column; gap: 1rem; }
.jiont-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  transition: transform 0.3s;
}
.jiont-card--1 { border-left: 3px solid var(--accent); }
.jiont-card--2 { border-left: 3px solid var(--gold); }
.jiont-card--3 { border-left: 3px solid var(--red-smoke); }
.jiont-card:hover { transform: translateX(4px); }
.jiont-card-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.25rem;
}
.jiont-card-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--fg);
}

/* ===== MENU SECTION ===== */
.menu-section {
  background: var(--bg-dark);
  border-top: 1px solid rgba(232, 135, 30, 0.1);
}
.menu-intro {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.menu-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 67, 0.1);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}
.menu-card:hover { border-color: rgba(232, 135, 30, 0.3); transform: translateY(-2px); }
.menu-icon { font-size: 2rem; margin-bottom: 1rem; }
.menu-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.menu-card p { font-size: 0.95rem; color: var(--fg-muted); line-height: 1.7; }

/* ===== CULTURE SECTION ===== */
.culture-section {
  background: var(--bg-section);
  border-top: 1px solid rgba(212, 168, 67, 0.08);
}
.culture-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.culture-text p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}
.culture-text strong { color: var(--fg); }
.culture-quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold) !important;
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
  margin-top: 2rem !important;
}
.culture-attr {
  font-size: 0.85rem;
  color: var(--fg-muted) !important;
  padding-left: 1.25rem;
  margin-top: 0.25rem !important;
}
.culture-visual {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 4rem;
}
.culture-box {
  background: var(--bg-card);
  border: 1px solid rgba(232, 135, 30, 0.12);
  border-radius: 12px;
  padding: 1.75rem 2rem;
}
.culture-stat {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.culture-stat-label { font-size: 0.9rem; color: var(--fg-muted); font-weight: 400; }

/* ===== MUSIC PREVIEW ===== */
.music-preview-section {
  background: var(--bg-dark);
  border-top: 1px solid rgba(212, 168, 67, 0.08);
}
.music-player-placeholder {
  background: var(--bg-card);
  border: 1px solid rgba(232, 135, 30, 0.15);
  border-radius: 16px;
  padding: 2rem;
  max-width: 700px;
}
.player-ui {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.player-art {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, rgba(232, 135, 30, 0.2), rgba(139, 37, 0, 0.3));
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.player-art-inner { font-size: 2.5rem; }
.player-info { flex: 1; }
.player-track-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.2rem;
}
.player-artist { font-size: 0.85rem; color: var(--fg-muted); margin-bottom: 1rem; }
.player-controls { display: flex; gap: 0.75rem; margin-bottom: 1rem; }
.player-btn {
  background: rgba(232, 135, 30, 0.1);
  border: 1px solid rgba(232, 135, 30, 0.2);
  color: var(--fg);
  font-size: 1rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.player-btn:hover { background: rgba(232, 135, 30, 0.25); }
.player-btn--play {
  width: 46px;
  height: 46px;
  font-size: 1.1rem;
  background: var(--accent);
  border-color: var(--accent);
  color: #0d0a07;
}
.player-btn--play:hover { background: var(--accent-glow); }
.player-progress { display: flex; align-items: center; gap: 0.5rem; }
.player-progress-bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}
.player-progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.1s linear;
}
.player-time { font-size: 0.75rem; color: var(--fg-muted); min-width: 2.5rem; }

/* ===== FULL PLAYER (music page) ===== */
.full-player {
  background: var(--bg-card);
  border: 1px solid rgba(232, 135, 30, 0.2);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
  max-width: 800px;
}
.full-player-art {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(232, 135, 30, 0.2), rgba(139, 37, 0, 0.3));
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.full-player-main { flex: 1; }
.full-player-meta { margin-bottom: 1rem; }
.full-player-track {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fg);
}
.full-player-artist { font-size: 0.9rem; color: var(--fg-muted); margin-top: 0.2rem; }
.full-player-controls { display: flex; gap: 0.75rem; margin-bottom: 1rem; }

/* ===== TRACK LIST ===== */
.music-library-section {
  background: var(--bg-section);
  padding-top: 3rem;
}
.track-list { margin-top: 1rem; }
.track-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s;
  border: 1px solid transparent;
}
.track-item:hover {
  background: rgba(232, 135, 30, 0.06);
  border-color: rgba(232, 135, 30, 0.12);
}
.track-item--active {
  background: rgba(232, 135, 30, 0.1);
  border-color: rgba(232, 135, 30, 0.2);
}
.track-num { width: 1.5rem; text-align: center; color: var(--fg-muted); font-size: 0.85rem; }
.track-item--active .track-num { color: var(--accent); }
.track-play-btn { font-size: 0.8rem; color: var(--fg-muted); }
.track-item--active .track-play-btn,
.track-item:hover .track-play-btn { color: var(--accent); }
.track-meta { flex: 1; }
.track-title { font-weight: 500; color: var(--fg); }
.track-artist { font-size: 0.85rem; color: var(--fg-muted); }
.track-dur { font-size: 0.85rem; color: var(--fg-muted); }
.track-list-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--fg-muted);
}
.empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.empty-sub { font-size: 0.9rem; margin-top: 0.5rem; }
.music-upload-notice {
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  background: rgba(212, 168, 67, 0.05);
  border: 1px solid rgba(212, 168, 67, 0.1);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--fg-muted);
}

/* ===== VIDEO PREVIEW ===== */
.video-preview-section {
  background: var(--bg-section);
  border-top: 1px solid rgba(212, 168, 67, 0.08);
}
.video-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.video-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 67, 0.1);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s;
}
.video-card:hover { border-color: rgba(232, 135, 30, 0.3); transform: translateY(-2px); }
.video-card-thumb {
  height: 160px;
  background: linear-gradient(135deg, rgba(139, 37, 0, 0.3), rgba(232, 135, 30, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.video-play-icon {
  font-size: 2.5rem;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
}
.video-card:hover .video-play-icon { opacity: 1; transform: scale(1.1); }
.video-card-type-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(13, 10, 7, 0.8);
  border: 1px solid rgba(232, 135, 30, 0.3);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}
.video-card-info { padding: 1.25rem; }
.video-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.4rem;
}
.video-card-desc { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.6; }

/* ===== VIDEO LIBRARY PAGE ===== */
.video-library-section { background: var(--bg-section); padding-top: 3rem; }
.video-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.video-filter-btn {
  background: transparent;
  border: 1px solid rgba(212, 168, 67, 0.2);
  color: var(--fg-muted);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
}
.video-filter-btn:hover { border-color: var(--accent); color: var(--fg); }
.video-filter-btn.active { background: var(--accent); border-color: var(--accent); color: #0d0a07; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.video-player-container {
  margin-bottom: 3rem;
  background: var(--bg-card);
  border: 1px solid rgba(232, 135, 30, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
}
.video-close-btn {
  background: none;
  border: 1px solid rgba(212, 168, 67, 0.2);
  color: var(--fg-muted);
  font-size: 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 1rem;
  transition: all 0.2s;
}
.video-close-btn:hover { border-color: var(--accent); color: var(--fg); }
.video-player-wrap { margin-bottom: 1rem; }
.video-player-meta h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.4rem;
}
.video-player-meta p { font-size: 0.9rem; color: var(--fg-muted); }

/* ===== THUGBIBLE SECTION ===== */
.thugbible-section {
  background: var(--bg-dark);
  border-top: 1px solid rgba(139, 37, 0, 0.2);
  position: relative;
  overflow: hidden;
}
.thugbible-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(139, 37, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.thugbible-section .section-inner { position: relative; z-index: 1; }
.thugbible-headline { color: var(--fg); }
.thugbible-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.thugbible-text p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}
.thugbible-verse {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold) !important;
  border-left: 3px solid var(--red-smoke);
  padding-left: 1.25rem;
  margin: 1.5rem 0 !important;
}
.thugbible-values {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 3rem;
}
.thugbible-value {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--bg-card);
  border: 1px solid rgba(139, 37, 0, 0.15);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
}
.thugbible-value-icon { font-size: 1.5rem; }
.thugbible-value-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
}

/* ===== MERCH SECTION (homepage) ===== */
.merch-section {
  background: var(--bg-section);
  border-top: 1px solid rgba(232, 135, 30, 0.1);
}
.merch-intro {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 650px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.merch-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.merch-category-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 67, 0.1);
  border-radius: 12px;
  padding: 1.75rem;
  transition: border-color 0.3s, transform 0.3s;
}
.merch-category-card:hover { border-color: rgba(212, 168, 67, 0.3); transform: translateY(-2px); }
.merch-cat-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.merch-cat-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.merch-cat-desc { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.7; }

/* ===== MERCH CATALOG PAGE ===== */
.merch-catalog-section { background: var(--bg-section); padding-top: 3rem; }
.merch-catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.merch-catalog-category {
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 67, 0.1);
  border-radius: 14px;
  padding: 2rem;
}
.merch-cat-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.merch-cat-icon-lg { font-size: 1.75rem; }
.merch-cat-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
}
.merch-cat-body { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.merch-placeholder-items { display: flex; flex-direction: column; gap: 0.5rem; }
.merch-sku-card {
  background: rgba(232, 135, 30, 0.05);
  border: 1px solid rgba(232, 135, 30, 0.1);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  color: var(--fg-muted);
  transition: border-color 0.2s, color 0.2s;
}
.merch-sku-card:hover { border-color: var(--accent); color: var(--fg); }
.merch-coming-soon {
  margin-top: 2.5rem;
  padding: 1.25rem 1.75rem;
  background: rgba(212, 168, 67, 0.05);
  border: 1px solid rgba(212, 168, 67, 0.12);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--fg-muted);
  text-align: center;
}
.thugbible-merch-section {
  background: var(--bg-dark);
  border-top: 1px solid rgba(139, 37, 0, 0.15);
}
.thugbible-merch-desc {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 650px;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.thugbible-merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.merch-sku-card-large {
  background: var(--bg-card);
  border: 1px solid rgba(139, 37, 0, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.merch-sku-card-large:hover { border-color: var(--red-smoke); transform: translateY(-2px); }
.merch-sku-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.merch-sku-label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fg);
}

/* ===== ABOUT PREVIEW ===== */
.about-preview-section {
  background: var(--bg-dark);
  border-top: 1px solid rgba(212, 168, 67, 0.08);
}
.about-preview-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-preview-text p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}
.about-preview-pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 67, 0.08);
  border-radius: 10px;
  padding: 1rem 1.25rem;
}
.pillar-icon { font-size: 1.5rem; }
.pillar-label {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--fg);
}
.pillar-sub { font-size: 0.8rem; color: var(--fg-muted); }

/* ===== ABOUT PAGE ===== */
.about-story-section { background: var(--bg-section); padding-top: 3rem; }
.about-story-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-story-main p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 1.25rem;
  line-height: 1.9;
}
.about-story-main strong { color: var(--fg); }
.about-story-main em { color: var(--accent); font-style: italic; }
.about-sidebar { position: sticky; top: 6rem; }
.about-values {
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 67, 0.1);
  border-radius: 14px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.about-values-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.about-value-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.about-value-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.about-value-item strong { color: var(--fg); font-size: 0.9rem; display: block; }
.about-value-item p { font-size: 0.82rem; color: var(--fg-muted); margin-top: 0.1rem; }
.about-brands {
  background: var(--bg-card);
  border: 1px solid rgba(139, 37, 0, 0.15);
  border-radius: 14px;
  padding: 1.75rem;
}
.about-brand-item { margin-bottom: 1rem; }
.about-brand-item:last-child { margin-bottom: 0; }
.about-brand-item strong { color: var(--fg); font-size: 0.9rem; display: block; margin-bottom: 0.1rem; }
.about-brand-item p { font-size: 0.82rem; color: var(--fg-muted); }
.about-cta-section {
  background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-dark) 100%);
  border-top: 1px solid rgba(232, 135, 30, 0.08);
}
.about-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ===== CLOSING ===== */
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.closing-text {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.9;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(212, 168, 67, 0.1);
  padding: 2.5rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
}
.footer-parent { font-size: 0.8rem; color: var(--fg-muted); margin-top: 0.25rem; }
.footer-nav { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.footer-link {
  text-decoration: none;
  font-size: 0.82rem;
  color: var(--fg-muted);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--accent); }
.footer-copy { font-size: 0.8rem; color: var(--fg-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .jiont-split,
  .culture-split,
  .thugbible-split,
  .about-preview-split,
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .culture-visual,
  .jiont-card-stack,
  .thugbible-values,
  .about-preview-pillars {
    padding-top: 0;
  }
  .about-sidebar { position: static; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(13, 10, 7, 0.98);
    border-bottom: 1px solid rgba(212, 168, 67, 0.15);
    padding: 1rem;
    gap: 0.25rem;
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 0.6rem 1rem; font-size: 0.95rem; }
  .site-nav { position: sticky; }
  .hero, .page-hero { min-height: 80vh; padding: 1.5rem; padding-top: 4rem; }
  .menu-grid, .video-preview-grid, .video-grid,
  .merch-categories, .merch-catalog-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .section-inner { padding: 3.5rem 1.25rem; }
  .full-player { flex-direction: column; }
  .player-ui { flex-direction: column; align-items: flex-start; }
  .hero-ctas { flex-direction: column; align-items: center; }
}
