/*
Theme Name: JVH Vanguard
Theme URI: https://jvh-rj-aicloser.com
Description: Jones Vanguard Holdings — Old Money Cyberpunk Elite
Author: RJ / Jones Vanguard Holdings
Template: extendable
Version: 1.0.0
*/

/* ═══════════════════════════════════════════════════
   JVH VANGUARD — DESIGN TOKENS
   Old Money × Cyberpunk Fusion
   Obsidian foundations. Gold veins. Crimson edge.
═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Rajdhani:wght@300;400;500;600;700&family=Share+Tech+Mono&display=swap');

:root {
  /* Core palette */
  --obsidian:     #05060e;
  --deep:         #080b18;
  --panel:        #0d1022;
  --panel-mid:    #111428;
  --border:       #1c2240;
  --border-hi:    #2a3360;

  /* Gold spectrum — old money */
  --gold:         #c8a84b;
  --gold-bright:  #e8c96a;
  --gold-dim:     #7a6428;
  --gold-glow:    rgba(200,168,75,0.12);
  --gold-line:    rgba(200,168,75,0.25);

  /* Crimson — cyberpunk edge */
  --crimson:      #8b1a1a;
  --crimson-hi:   #cc2222;
  --crimson-glow: rgba(200,40,40,0.15);

  /* Ice — data/tech accent */
  --ice:          #4a9eff;
  --ice-dim:      rgba(74,158,255,0.15);

  /* Text */
  --text:         #c8cce0;
  --text-bright:  #e8ecf8;
  --text-dim:     #4a5570;
  --text-muted:   #8890a8;

  /* Typography */
  --serif:        'Cormorant Garamond', Georgia, serif;
  --display:      'Rajdhani', sans-serif;
  --mono:         'Share Tech Mono', 'Courier New', monospace;

  /* Spacing */
  --max-w:        1280px;
  --section-pad:  120px;
}

/* ═══ RESET + BASE ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--obsidian);
  color: var(--text);
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Subtle grid overlay — cyberpunk texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,168,75,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,168,75,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* Scan line */
body::after {
  content: '';
  position: fixed;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(200,168,75,0.3) 50%, transparent 100%);
  animation: scan 12s linear infinite;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

@keyframes scan {
  0%   { top: -2px; opacity: 0; }
  5%   { opacity: 0.6; }
  95%  { opacity: 0.6; }
  100% { top: 100vh; opacity: 0; }
}

/* ═══ TYPOGRAPHY ═══ */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 300;
  color: var(--text-bright);
  line-height: 1.15;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(3rem, 6vw, 6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

p { font-size: 1rem; line-height: 1.8; color: var(--text); }

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-bright); }

.mono { font-family: var(--mono); font-size: 0.8em; letter-spacing: 0.12em; color: var(--gold-dim); }
.eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
  display: block;
  margin-bottom: 16px;
}

/* ═══ LAYOUT ═══ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  :root { --section-pad: 72px; }
}

section { padding: var(--section-pad) 0; position: relative; }

/* Section dividers */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-line) 30%, var(--gold-line) 70%, transparent 100%);
  margin: 0;
}

/* ═══ NAVIGATION ═══ */
#masthead, .site-header, header.site-header {
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(5,6,14,0.95) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-line);
  padding: 0 !important;
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
}

.jvh-nav {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.jvh-nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 42px; height: 42px;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  position: relative;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: rgba(200,168,75,0.08);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-bright);
  letter-spacing: 0.08em;
  line-height: 1;
}

.nav-logo-sub {
  font-family: var(--mono);
  font-size: 0.55rem;
  color: var(--gold-dim);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 3px;
}

.jvh-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.jvh-nav-links a {
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 16px;
  transition: color 0.2s;
  position: relative;
}

.jvh-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 16px; right: 16px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.jvh-nav-links a:hover { color: var(--gold); }
.jvh-nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  font-family: var(--mono) !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.2em !important;
  color: var(--gold) !important;
  border: 1px solid var(--gold-dim);
  padding: 10px 20px !important;
  transition: all 0.2s !important;
  background: transparent;
}

.nav-cta:hover {
  background: var(--gold-glow) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 20px var(--gold-glow);
}

.nav-cta::after { display: none !important; }

/* Override Extendable nav defaults */
.main-navigation, .site-navigation { display: none !important; }

/* ═══ HERO ═══ */
.jvh-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 50%, rgba(200,168,75,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 90% 20%, rgba(74,158,255,0.04) 0%, transparent 60%),
    linear-gradient(180deg, var(--deep) 0%, var(--obsidian) 100%);
  z-index: 0;
}

.hero-grid-accent {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 50%;
  background-image:
    linear-gradient(rgba(200,168,75,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,168,75,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.8) 0%, transparent 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: var(--gold-dim);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold-dim);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6.5vw, 6.5rem);
  font-weight: 300;
  color: var(--text-bright);
  line-height: 1.05;
  margin-bottom: 12px;
}

.hero-title .accent {
  color: var(--gold);
  font-style: italic;
}

.hero-title .break {
  display: block;
}

.hero-subtitle {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
  text-transform: uppercase;
  margin-bottom: 32px;
  padding-left: 2px;
}

.hero-desc {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 52px;
  border-left: 2px solid var(--gold-dim);
  padding-left: 24px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ═══ BUTTONS ═══ */
.btn-primary {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--obsidian);
  background: var(--gold);
  border: 1px solid var(--gold);
  padding: 16px 36px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  z-index: 0;
}

.btn-primary span { position: relative; z-index: 1; }

.btn-primary:hover { color: var(--obsidian); }
.btn-primary:hover::before { transform: scaleX(1); }

.btn-secondary {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--gold-dim);
  padding: 16px 36px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--gold);
  background: var(--gold-glow);
  color: var(--gold-bright);
  box-shadow: 0 0 30px var(--gold-glow);
}

.btn-crimson {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: white;
  background: var(--crimson);
  border: 1px solid var(--crimson-hi);
  padding: 16px 36px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
}

.btn-crimson:hover {
  background: var(--crimson-hi);
  box-shadow: 0 0 30px var(--crimson-glow);
  color: white;
}

/* ═══ STAT BAR ═══ */
.hero-stats {
  position: absolute;
  bottom: 48px;
  right: 0; left: 0;
  z-index: 2;
}

.stats-row {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: flex-end;
  gap: 48px;
}

.stat-item {
  text-align: right;
}

.stat-number {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ═══ SECTION HEADERS ═══ */
.section-header {
  margin-bottom: 72px;
}

.section-title {
  font-family: var(--serif);
  font-weight: 300;
  color: var(--text-bright);
}

.section-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-top: 24px;
}

/* ═══ PRODUCT GRID ═══ */
.jvh-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
}

.jvh-product-card {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
  text-decoration: none;
  display: block;
}

.jvh-product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,168,75,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.jvh-product-card:hover {
  border-color: var(--gold-dim);
  background: var(--panel-mid);
}

.jvh-product-card:hover .card-corner-tl,
.jvh-product-card:hover .card-corner-br {
  opacity: 1;
}

.card-corner-tl, .card-corner-br {
  position: absolute;
  width: 16px; height: 16px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0;
  transition: opacity 0.3s;
}

.card-corner-tl { top: 0; left: 0; border-width: 2px 0 0 2px; }
.card-corner-br { bottom: 0; right: 0; border-width: 0 2px 2px 0; }

.card-tag {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 20px;
  display: block;
}

.card-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-bright);
  line-height: 1.2;
  margin-bottom: 12px;
}

.card-desc {
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.card-price {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.card-price .price-amount {
  font-size: 1.6rem;
  font-family: var(--serif);
  font-weight: 300;
}

.card-action {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.2s;
}

.card-action::after {
  content: '→';
  transition: transform 0.2s;
}

.jvh-product-card:hover .card-action {
  color: var(--gold);
}

.jvh-product-card:hover .card-action::after {
  transform: translateX(6px);
}

/* Featured product card */
.card-featured {
  border-color: var(--gold-dim);
  grid-column: span 2;
}

.card-featured::after {
  content: 'FEATURED';
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 4px 10px;
}

@media (max-width: 768px) {
  .card-featured { grid-column: span 1; }
}

/* ═══ APPS SECTION ═══ */
.jvh-apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

@media (max-width: 900px) {
  .jvh-apps-grid { grid-template-columns: 1fr; }
}

.app-card {
  background: var(--deep);
  border: 1px solid var(--border);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.app-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.app-card:hover::before { transform: scaleX(1); }
.app-card:hover { border-color: var(--border-hi); background: var(--panel); }

.app-icon {
  width: 52px; height: 52px;
  border: 1px solid var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 28px;
  background: var(--gold-glow);
}

.app-name {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--text-bright);
  margin-bottom: 8px;
}

.app-codename {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--gold-dim);
  margin-bottom: 20px;
}

.app-desc {
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.app-status {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-status::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ═══ LYCAN SECTION ═══ */
.jvh-lycan-section {
  background: var(--deep);
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  position: relative;
  overflow: hidden;
}

.lycan-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200,168,75,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 30% 50% at 80% 30%, rgba(139,26,26,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.lycan-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 900px) {
  .lycan-intro { grid-template-columns: 1fr; }
}

.lycan-logo-display {
  font-family: var(--display);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-shadow: 0 0 60px rgba(200,168,75,0.4), 0 0 120px rgba(200,168,75,0.15);
  animation: lycan-glow 4s ease-in-out infinite;
  line-height: 1;
}

@keyframes lycan-glow {
  0%, 100% { text-shadow: 0 0 40px rgba(200,168,75,0.4), 0 0 80px rgba(200,168,75,0.15); }
  50% { text-shadow: 0 0 80px rgba(200,168,75,0.7), 0 0 140px rgba(200,168,75,0.3), 0 0 200px rgba(200,168,75,0.1); }
}

.lycan-sub {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--gold-dim);
  margin-top: 12px;
}

/* ═══ FOOTER ═══ */
.jvh-footer {
  background: var(--deep);
  border-top: 1px solid var(--gold-line);
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-bright);
  margin-bottom: 8px;
  margin-top: 16px;
}

.footer-brand-sub {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
  margin-bottom: 16px;
}

.footer-brand-desc {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.footer-col-title {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-dim);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}

.footer-powered {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}

.footer-powered span { color: var(--gold-dim); }

/* ═══ WOOCOMMERCE OVERRIDES ═══ */
.woocommerce-page .site-main,
.woocommerce .site-main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px 48px 80px;
  position: relative;
  z-index: 2;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  background: var(--panel) !important;
  border: 1px solid var(--border) !important;
  padding: 32px !important;
  transition: border-color 0.3s !important;
}

.woocommerce ul.products li.product:hover {
  border-color: var(--gold-dim) !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--serif) !important;
  font-size: 1.3rem !important;
  font-weight: 300 !important;
  color: var(--text-bright) !important;
}

.woocommerce ul.products li.product .price {
  color: var(--gold) !important;
  font-family: var(--mono) !important;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: transparent !important;
  color: var(--gold) !important;
  border: 1px solid var(--gold-dim) !important;
  font-family: var(--mono) !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  padding: 12px 24px !important;
  border-radius: 0 !important;
  transition: all 0.2s !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: var(--gold-glow) !important;
  border-color: var(--gold) !important;
}

/* Cart/checkout */
.woocommerce-cart .cart-subtotal,
.woocommerce-cart .order-total { color: var(--gold) !important; }

.woocommerce form .form-row input,
.woocommerce form .form-row textarea {
  background: var(--deep) !important;
  border: 1px solid var(--border) !important;
  color: var(--text-bright) !important;
  border-radius: 0 !important;
  font-family: var(--display) !important;
}

/* ═══ PAGE HEADER ═══ */
.jvh-page-header {
  padding: 140px 0 80px;
  border-bottom: 1px solid var(--gold-line);
  margin-bottom: 0;
  background: linear-gradient(180deg, var(--deep) 0%, var(--obsidian) 100%);
}

/* ═══ EMBED WRAPPER ═══ */
.jvh-embed-wrapper {
  width: 100%;
  height: 90vh;
  border: 1px solid var(--gold-line);
  position: relative;
  overflow: hidden;
}

.jvh-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ═══ UTILITIES ═══ */
.text-gold { color: var(--gold); }
.text-dim  { color: var(--text-dim); }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }

/* ═══ SCROLLBAR ═══ */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--obsidian); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
* { scrollbar-width: thin; scrollbar-color: var(--gold-dim) var(--obsidian); }

/* ═══ SELECTION ═══ */
::selection { background: rgba(200,168,75,0.25); color: var(--text-bright); }
