/*
Theme Name: The Zard Vault
Theme URI: https://thezardvault.nl
Author: The Zard Vault
Author URI: https://thezardvault.nl
Description: Premium dark gold theme for The Zard Vault - Charizard TCG content platform
Version: 1.0.0
License: Private
Text Domain: zardvault
*/

/* ═══════════════════════════════════════════════════
   ROOT VARIABLES
═══════════════════════════════════════════════════ */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C76A;
  --gold-dim:    #B0A080;
  --gold-muted:  #4A3A18;
  --black:       #060606;
  --surface:     #0C0C0C;
  --surface2:    #121212;
  --surface3:    #1A1A1A;
  --surface4:    #222222;
  --white:       #F5F0E8;
  --muted:       #B0A080;
  --muted2:      #B0A080;
  --glow:        rgba(201,168,76,0.08);
  --glow-strong: rgba(201,168,76,0.18);
  --radius:      0px;
}

/* ═══════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.6;
}

/* ═══════════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 900; }
h2 { font-size: clamp(26px, 3.5vw, 44px); font-weight: 900; }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
h4 { font-size: 18px; }

p { margin-bottom: 1.2em; color: var(--muted2); }
p:last-child { margin-bottom: 0; }

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

strong { color: var(--white); font-weight: 600; }
em { color: var(--gold); font-style: normal; }

blockquote {
  font-family: 'Crimson Pro', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-style: italic;
  color: var(--white);
  border-left: 3px solid var(--gold);
  padding: 24px 32px;
  margin: 32px 0;
  background: var(--surface2);
}

code, pre {
  font-family: 'Courier New', monospace;
  background: var(--surface2);
  color: var(--gold);
  padding: 2px 8px;
  font-size: 14px;
}

pre { padding: 20px; overflow-x: auto; margin: 24px 0; }

ul, ol { padding-left: 24px; color: var(--muted2); }
ul li, ol li { margin-bottom: 8px; }

img { max-width: 100%; height: auto; display: block; }

hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  margin: 48px 0;
}

/* ═══════════════════════════════════════════════════
   LAYOUT CONTAINERS
═══════════════════════════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 48px;
}

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main { flex: 1; }

/* ═══════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px;
  display: flex; align-items: center;
  background: rgba(6,6,6,0.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  transition: border-color 0.3s;
}

#site-header .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-logo-mark {
  width: 32px; height: 32px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

.site-title {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin: 0;
}

.site-title a { color: var(--gold); }
.site-title a:hover { color: var(--gold-light); }

/* Primary nav menu */
#primary-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0; padding: 0;
}

#primary-menu > li > a {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted2);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}

#primary-menu > li > a::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s;
  transform-origin: left;
}

#primary-menu > li > a:hover,
#primary-menu > li.current-menu-item > a {
  color: var(--gold);
}

#primary-menu > li > a:hover::after,
#primary-menu > li.current-menu-item > a::after {
  transform: scaleX(1);
}

/* Dropdown */
#primary-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--surface2);
  border: 1px solid rgba(201,168,76,0.15);
  border-top: 2px solid var(--gold);
  list-style: none;
  padding: 8px 0;
  margin: 0;
  z-index: 1001;
}

#primary-menu > li { position: relative; }

#primary-menu > li:hover > .sub-menu { display: block; }

#primary-menu .sub-menu li a {
  display: block;
  padding: 10px 20px;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted2);
  transition: color 0.2s, background 0.2s;
}

#primary-menu .sub-menu li a:hover {
  color: var(--gold);
  background: var(--surface3);
}

.nav-cta-btn {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid var(--gold-dim);
  color: var(--gold) !important;
  transition: all 0.2s;
}

.nav-cta-btn:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
  border-color: var(--gold) !important;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  padding: 8px 14px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  cursor: pointer;
}

/* ═══════════════════════════════════════════════════
   PAGE CONTENT PADDING (below fixed nav)
═══════════════════════════════════════════════════ */
.page-content-wrap {
  padding-top: 72px;
}

/* ═══════════════════════════════════════════════════
   SECTION UTILITIES
═══════════════════════════════════════════════════ */
.section-pad { padding: 120px 0; }
.section-pad-sm { padding: 80px 0; }

.section-label {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-label::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold-dim);
  flex-shrink: 0;
}

.gold-line {
  width: 48px; height: 2px;
  background: var(--gold);
  margin: 24px 0 32px;
}

.bg-surface { background: var(--surface); }
.bg-surface2 { background: var(--surface2); }
.border-gold-top { border-top: 1px solid rgba(201,168,76,0.08); }
.border-gold-bottom { border-bottom: 1px solid rgba(201,168,76,0.08); }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1),
              transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Gold shimmer animation */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

.text-gold { color: var(--gold); }
.text-muted { color: var(--muted2); }
.text-center { text-align: center; }
.text-cinzel { font-family: 'Cinzel', serif; }

/* ═══════════════════════════════════════════════════
   HERO SECTION (homepage)
═══════════════════════════════════════════════════ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 48px 80px;
}
.hero-image {
  display: block;
  margin: 0 auto 32px;
  width: clamp(200px, 35vw, 360px);
  animation: logoGlow 3s ease-in-out infinite alternate,
             fadeUp 0.8s 0.3s both;
}

html {
  scrollbar-gutter: stable;
}


.hero-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  background: radial-gradient(ellipse at center,
    rgba(201,168,76,0.06) 0%,
    rgba(201,168,76,0.02) 40%,
    transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg, transparent, transparent 80px,
    rgba(201,168,76,0.015) 80px, rgba(201,168,76,0.015) 81px
  );
  pointer-events: none;
}

.hero-inner { max-width: 900px; text-align: center; position: relative; z-index: 1; }

.hero-overline {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 32px;
  animation: fadeUp 0.8s 0.2s both;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(52px, 9vw, 110px);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 0.92;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 40%, var(--gold) 60%, var(--gold-light) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite, fadeUp 0.8s 0.4s both;
  margin-bottom: 24px;
  text-shadow: none;
}

.hero-subtitle {
  font-family: 'Crimson Pro', serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic;
  color: var(--muted2);
  animation: fadeUp 0.8s 0.6s both;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  animation: fadeUp 0.8s 0.8s both;
  margin-bottom: 48px;
}

.hero-stat-num {
  font-family: 'Cinzel', serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.hero-stat-label {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: 8px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 14px 28px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--black);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-ghost {
  background: transparent;
  color: var(--gold-dim);
  padding: 0;
  letter-spacing: 0.25em;
}
.btn-ghost:hover { color: var(--gold); }
.btn-ghost::after { content: ' →'; }

/* ═══════════════════════════════════════════════════
   CARDS / IMPRESSIES GRID
═══════════════════════════════════════════════════ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.card-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--surface2);
}

.card-item::before {
  content: '';
  display: block;
  padding-top: 140%;
}

.card-item-inner {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(to bottom, transparent 30%, rgba(6,6,6,0.95) 100%);
  transition: background 0.4s;
}

.card-item:hover .card-item-inner {
  background: linear-gradient(to bottom, transparent 10%, rgba(6,6,6,0.98) 100%);
}

.card-psa-badge {
  position: absolute; top: 16px; right: 16px;
  background: rgba(0,0,0,0.75);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 4px 10px;
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  z-index: 2;
}

.card-grade {
  font-family: 'Cinzel', serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s 0.1s;
  position: relative; z-index: 2;
}

.card-item:hover .card-grade { opacity: 1; transform: translateY(0); }

.card-name {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  position: relative; z-index: 2;
}

.card-era {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--gold-dim);
  text-transform: uppercase;
  position: relative; z-index: 2;
}

.card-item.span-2 { grid-column: span 2; }

/* Card backgrounds */
.card-bg-1 { background: linear-gradient(135deg, #1a0f00 0%, #0a0600 100%); }
.card-bg-2 { background: linear-gradient(135deg, #0a0a1a 0%, #060612 100%); }
.card-bg-3 { background: linear-gradient(135deg, #0f1a0a 0%, #060a06 100%); }
.card-bg-4 { background: linear-gradient(135deg, #1a0808 0%, #0a0404 100%); }
.card-bg-5 { background: linear-gradient(135deg, #0a0f1a 0%, #050a10 100%); }
.card-bg-6 { background: linear-gradient(135deg, #1a1500 0%, #0a0c00 100%); }

/* ═══════════════════════════════════════════════════
   VAULT INFO BLOCK
═══════════════════════════════════════════════════ */
.vault-card {
  background: var(--surface2);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.vault-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.vault-corner {
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--gold-dim);
  border-style: solid;
}
.vault-corner.tl { top: 14px; left: 14px; border-width: 1px 0 0 1px; }
.vault-corner.tr { top: 14px; right: 14px; border-width: 1px 1px 0 0; }
.vault-corner.bl { bottom: 14px; left: 14px; border-width: 0 0 1px 1px; }
.vault-corner.br { bottom: 14px; right: 14px; border-width: 0 1px 1px 0; }

.vault-data-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 16px 0;
  border-bottom: 1px solid var(--surface4);
}
.vault-data-row:last-child { border-bottom: none; padding-bottom: 0; }
.vault-data-row:first-child { padding-top: 0; }

.vdr-label {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.vdr-value {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════
   FEATURE LIST
═══════════════════════════════════════════════════ */
.feature-list { display: flex; flex-direction: column; gap: 20px; }

.feature-item { display: flex; gap: 20px; align-items: flex-start; }

.feature-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border: 1px solid var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 14px;
  margin-top: 2px;
}

.feature-title {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 4px;
}

.feature-desc { font-size: 15px; color: var(--muted2); line-height: 1.6; margin: 0; }

/* ═══════════════════════════════════════════════════
   PILLARS / MISSION BLOCKS
═══════════════════════════════════════════════════ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.pillar-block {
  background: var(--surface2);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid rgba(201,168,76,0.08);
  transition: border-color 0.3s, background 0.3s;
}

.pillar-block:hover {
  border-color: rgba(201,168,76,0.25);
  background: var(--surface3);
}

.pillar-num {
  font-family: 'Cinzel', serif;
  font-size: 48px;
  font-weight: 900;
  color: rgba(201,168,76,0.12);
  line-height: 1;
  margin-bottom: 16px;
}

.pillar-title {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.pillar-text { font-size: 15px; color: var(--muted2); line-height: 1.7; margin: 0; }

/* ═══════════════════════════════════════════════════
   BLOG / ARTICLES
═══════════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2px;
}

/* Featured post */
.post-featured {
  background: var(--surface2);
  border: 1px solid rgba(201,168,76,0.1);
  transition: border-color 0.3s;
}

.post-featured:hover { border-color: rgba(201,168,76,0.3); }

.post-featured-thumb {
  height: 280px;
  background: linear-gradient(135deg, #0f0800 0%, #1a1200 100%);
  position: relative;
  overflow: hidden;
}

.post-featured-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: opacity 0.4s;
}

.post-featured:hover .post-featured-thumb img { opacity: 0.8; }

.post-featured-thumb .thumb-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(201,168,76,0.15) 0%, transparent 70%);
}

.post-featured-body { padding: 36px; }

.post-cat {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 12px;
  display: inline-block;
}

.post-cat a { color: var(--gold-dim); }
.post-cat a:hover { color: var(--gold); }

.post-featured-title {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 16px;
  transition: color 0.2s;
}

.post-featured:hover .post-featured-title { color: var(--gold); }

.post-excerpt {
  font-size: 16px;
  color: var(--muted2);
  line-height: 1.7;
  margin-bottom: 28px;
}

.post-read-more {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  display: inline-flex; align-items: center; gap: 10px;
  transition: color 0.2s, gap 0.2s;
}

.post-read-more::after { content: '→'; }
.post-featured:hover .post-read-more { color: var(--gold); gap: 14px; }

/* Post sidebar list */
.post-sidebar { display: flex; flex-direction: column; gap: 2px; }

.post-list-item {
  background: var(--surface2);
  border: 1px solid rgba(201,168,76,0.06);
  padding: 28px 32px;
  flex: 1;
  display: flex; flex-direction: column;
  transition: border-color 0.3s, background 0.3s;
  cursor: pointer;
}

.post-list-item:hover {
  border-color: rgba(201,168,76,0.2);
  background: var(--surface3);
}

.post-list-title {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 12px;
  flex: 1;
  transition: color 0.2s;
}

.post-list-item:hover .post-list-title { color: var(--gold); }

.post-meta {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--muted);
  text-transform: uppercase;
  display: flex; justify-content: space-between;
  margin-top: auto;
}

/* Archive / blog page */
.posts-archive {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.archive-card {
  background: var(--surface2);
  border: 1px solid rgba(201,168,76,0.08);
  display: flex; flex-direction: column;
  transition: border-color 0.3s;
}

.archive-card:hover { border-color: rgba(201,168,76,0.25); }

.archive-card-thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--surface3), var(--surface4));
  overflow: hidden;
  position: relative;
}

.archive-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.4s;
}

.archive-card:hover .archive-card-thumb img {
  opacity: 0.9;
  transform: scale(1.03);
}

.archive-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }

.archive-card-title {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.archive-card:hover .archive-card-title { color: var(--gold); }

.archive-card-excerpt {
  font-size: 15px;
  color: var(--muted2);
  line-height: 1.65;
  margin-bottom: 20px;
}

.archive-card-meta {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: auto;
}

/* Single post */
.single-post-header {
  padding: 120px 48px 64px;
  max-width: 900px;
  margin: 0 auto;
}

.single-post-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.single-post-meta {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--muted);
  text-transform: uppercase;
  display: flex; gap: 24px;
  margin-bottom: 48px;
}

.single-post-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 48px 80px;
}

.single-post-content p {
  font-size: 19px;
  line-height: 1.85;
  color: var(--muted2);
  margin-bottom: 1.4em;
}

.single-post-content h2 {
  font-size: 28px;
  color: var(--white);
  margin: 48px 0 20px;
}

.single-post-content h3 {
  font-size: 22px;
  color: var(--gold);
  margin: 36px 0 16px;
}

.single-post-content ul li,
.single-post-content ol li {
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted2);
  margin-bottom: 10px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 64px;
}

.pagination a, .pagination span {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  padding: 10px 16px;
  background: var(--surface2);
  border: 1px solid var(--surface4);
  color: var(--muted2);
  transition: all 0.2s;
}

.pagination a:hover,
.pagination .current {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* ═══════════════════════════════════════════════════
   CTA / MEMBERSHIP SECTION
═══════════════════════════════════════════════════ */
.cta-block {
  background: var(--surface2);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-block::after {
  content: 'THE VAULT';
  position: absolute;
  bottom: -24px; right: -16px;
  font-family: 'Cinzel', serif;
  font-size: 110px;
  font-weight: 900;
  color: rgba(201,168,76,0.03);
  letter-spacing: 0.08em;
  white-space: nowrap;
  pointer-events: none;
}

.cta-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 20px;
}

/* Forms */
.form-group { margin-bottom: 16px; }

.form-input {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--surface4);
  padding: 16px 20px;
  font-family: 'Crimson Pro', serif;
  font-size: 16px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-input:focus { border-color: var(--gold-dim); }
.form-input::placeholder { color: var(--muted); }

.form-submit {
  width: 100%;
  background: var(--gold);
  border: none;
  padding: 16px 32px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s;
}

.form-submit:hover { background: var(--gold-light); transform: translateY(-1px); }

.form-note { font-size: 13px; color: var(--muted); font-style: italic; margin-top: 10px; }

/* Contact form overrides (CF7 / WPForms) */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea,
.wpforms-field input,
.wpforms-field textarea {
  background: var(--black) !important;
  border: 1px solid var(--surface4) !important;
  color: var(--white) !important;
  font-family: 'Crimson Pro', serif !important;
  font-size: 16px !important;
  padding: 14px 18px !important;
  width: 100% !important;
  outline: none !important;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  border-color: var(--gold-dim) !important;
}

.wpcf7-form input[type="submit"],
.wpforms-submit {
  background: var(--gold) !important;
  border: none !important;
  color: var(--black) !important;
  font-family: 'Cinzel', serif !important;
  font-size: 11px !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  padding: 14px 28px !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
}

/* ═══════════════════════════════════════════════════
   SIDEBAR (blog sidebar)
═══════════════════════════════════════════════════ */
.content-sidebar-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px;
}

.sidebar-widget {
  background: var(--surface2);
  border: 1px solid rgba(201,168,76,0.08);
  padding: 28px;
  margin-bottom: 24px;
}

.sidebar-widget-title {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--surface4);
}

.sidebar-widget ul {
  list-style: none;
  padding: 0;
}

.sidebar-widget ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--surface4);
  font-size: 14px;
}

.sidebar-widget ul li:last-child { border-bottom: none; }

.sidebar-widget ul li a { color: var(--muted2); font-size: 14px; }
.sidebar-widget ul li a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
#site-footer {
  background: var(--surface);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 64px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--surface4);
}

.footer-brand-logo {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.footer-tagline {
  font-style: italic;
  color: var(--muted2);
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.65;
}

.footer-social { display: flex; gap: 12px; }

.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--surface4);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--muted2);
  transition: all 0.2s;
}

.footer-social a:hover { border-color: var(--gold-dim); color: var(--gold); }

.footer-col-title {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 20px;
}

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

.footer-menu a {
  font-size: 15px;
  color: var(--muted2);
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}

.footer-legal {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  max-width: 520px;
  text-align: right;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════
   PAGE TEMPLATES
═══════════════════════════════════════════════════ */
/* Default page */
.page-header {
  padding: 120px 48px 60px;
  max-width: 900px;
  margin: 0 auto;
}

.page-header-label {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 16px;
}
.page-header-label::before { content: ''; width: 32px; height: 1px; background: var(--gold-dim); }

.page-header-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.page-content-area {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 48px 80px;
}

/* 404 */
.error-404-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 48px;
}

.error-code {
  font-family: 'Cinzel', serif;
  font-size: 120px;
  font-weight: 900;
  color: rgba(201,168,76,0.1);
  line-height: 1;
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════════════════
   WORDPRESS CORE OVERRIDES
═══════════════════════════════════════════════════ */
.wp-block-image { margin: 32px 0; }
.wp-block-image img { border: 1px solid rgba(201,168,76,0.1); }

.wp-block-quote {
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--white);
  border-left: 3px solid var(--gold);
  padding: 20px 28px;
  background: var(--surface2);
  margin: 32px 0;
}

.wp-block-separator {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  margin: 48px 0;
}

/* Admin bar compensation */
body.admin-bar #site-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar #site-header { top: 46px; } }

/* ═══════════════════════════════════════════════════
   SCROLLBAR
═══════════════════════════════════════════════════ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-muted); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dim); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .container, .container-narrow { padding: 0 24px; }
  .hero-section { padding: 100px 24px 60px; }
  .hero-stats { gap: 32px; }
  .blog-grid { grid-template-columns: 1fr; }
  .cta-block { grid-template-columns: 1fr; gap: 48px; padding: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .content-sidebar-wrap { grid-template-columns: 1fr; }
  .posts-archive { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  #primary-menu { display: none; }
  .menu-toggle { display: block; }
  #primary-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(6,6,6,0.98);
    border-top: 1px solid rgba(201,168,76,0.15);
    padding: 24px;
    gap: 20px;
    z-index: 999;
  }
  .nav-cta-btn { display: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .card-item.span-2 { grid-column: span 1; }
  .pillars-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .footer-legal { text-align: center; max-width: none; }
  .posts-archive { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(40px, 14vw, 80px); }
  section { padding: 80px 24px; }
  .section-pad { padding: 80px 0; }
  .single-post-header, .page-header { padding: 100px 24px 40px; }
  .single-post-content, .page-content-area { padding: 0 24px 60px; }
}
/* ═══════════════════════════════════════
   MOBIEL FIX
═══════════════════════════════════════ */
@media (max-width: 768px) {

  /* Hero */
  .hero-section { padding: 100px 24px 60px; }
  .hero-overline { font-size: 10px; letter-spacing: 0.2em; }
  .hero-image { width: clamp(180px, 60vw, 280px); }
  .hero-stats { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .hero-stat-num { font-size: 28px; }
  .hero-stat-label {
    font-size: 9px;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }

  /* Container padding */
  .container,
  .container-narrow { padding: 0 20px; }

  /* Alle twee-koloms grids naar één kolom */
  div[style*="grid-template-columns:1fr 1fr"],
  div[style*="grid-template-columns: 1fr 1fr"],
  div[style*="grid-template-columns:1fr auto"],
  div[style*="grid-template-columns: 1fr auto"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  /* Over de vault logo card — volle breedte */
  div[style*="width:260px"] {
    width: 100% !important;
  }

  /* Vault card rechts */
  div[style*="width:260px"],
  div[style*="width: 260px"] {
    width: 100% !important;
  }

  /* Pillars grid */
  .pillars-grid,
  div[style*="grid-template-columns:repeat(3"] {
    grid-template-columns: 1fr !important;
  }

  /* Blog grid */
  .blog-grid { grid-template-columns: 1fr !important; }

  /* Posts archive */
  .posts-archive { grid-template-columns: 1fr !important; }

  /* Cards grid */
  .cards-grid { grid-template-columns: 1fr 1fr !important; }
  .card-item.span-2 { grid-column: span 2 !important; }

  /* CTA block */
  div[style*="grid-template-columns:1fr 1fr"][style*="padding:80px"] {
    padding: 32px !important;
    grid-template-columns: 1fr !important;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-legal { text-align: center !important; max-width: none !important; }

  /* Section padding verkleinen */
  .section-pad { padding: 60px 0 !important; }
  section[style*="padding:100px"] { padding: 60px 0 !important; }
  section[style*="padding:120px"] { padding: 80px 0 !important; }

  /* Navigatie */
  #primary-menu { display: none; }
  .menu-toggle { display: block; }
  .nav-cta-btn { display: none; }

  /* Titels kleiner */
  h1[style*="font-size:clamp"] { font-size: clamp(32px, 10vw, 52px) !important; }

}

@media (max-width: 480px) {
  .hero-stats { gap: 12px; }
  .hero-stat-num { font-size: 24px; }
  .cards-grid { grid-template-columns: 1fr !important; }
  .card-item.span-2 { grid-column: span 1 !important; }
}
img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}
