/*
Theme Name: The Occult Hub
Theme URI: https://theocculthub.com
Author: The Occult Hub
Author URI: https://theocculthub.com
Description: A dark, witchy blog theme for The Occult Hub — featuring atmospheric design, golden accents, and esoteric style.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: theocculthub
Tags: blog, dark, custom-colors, custom-menu, featured-images, two-columns, right-sidebar, widgets
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --ink: #0d0a0f;
  --parchment: #f5ede0;
  --bone: #e8d9c4;
  --ember: #c0392b;
  --gold: #b8922a;
  --gold-light: #d4ac4a;
  --sage: #5c7a5a;
  --mist: #7a6e82;
  --smoke: #1e1720;
  --ash: #2d2533;
}

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

body {
  background-color: var(--ink);
  color: var(--parchment);
  font-family: 'Lora', Georgia, serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='4' fill='%23b8922a' opacity='0.8'/%3E%3Ccircle cx='10' cy='10' r='8' fill='none' stroke='%23b8922a' stroke-width='1' opacity='0.4'/%3E%3C/svg%3E") 10 10, auto;
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-light); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  line-height: 1.3;
  color: var(--parchment);
}

p { margin-bottom: 1.2rem; }
ul, ol { padding-left: 1.5rem; }

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* ============================================================
   PARTICLES
   ============================================================ */
.particles { position: fixed; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold-light);
  border-radius: 50%;
  opacity: 0;
  animation: drift linear infinite;
}
.particle:nth-child(1)  { left: 10%; animation-duration: 18s; animation-delay: 0s;   width: 1px; height: 1px; }
.particle:nth-child(2)  { left: 22%; animation-duration: 24s; animation-delay: 3s; }
.particle:nth-child(3)  { left: 37%; animation-duration: 16s; animation-delay: 7s;   width: 3px; height: 3px; }
.particle:nth-child(4)  { left: 51%; animation-duration: 20s; animation-delay: 1s; }
.particle:nth-child(5)  { left: 65%; animation-duration: 28s; animation-delay: 5s;   width: 1px; height: 1px; }
.particle:nth-child(6)  { left: 78%; animation-duration: 22s; animation-delay: 9s; }
.particle:nth-child(7)  { left: 88%; animation-duration: 15s; animation-delay: 2s;   width: 3px; height: 3px; }
.particle:nth-child(8)  { left: 44%; animation-duration: 19s; animation-delay: 11s; }
.particle:nth-child(9)  { left: 5%;  animation-duration: 26s; animation-delay: 6s;   width: 1px; height: 1px; }
.particle:nth-child(10) { left: 93%; animation-duration: 21s; animation-delay: 14s; }

@keyframes drift {
  0%   { opacity: 0; transform: translateY(100vh) rotate(0deg); }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-20px) rotate(360deg); }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#masthead {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
  background: linear-gradient(to bottom, rgba(13,10,15,0.97), transparent);
  backdrop-filter: blur(2px);
}

.site-branding .site-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  animation: pulse-glow 4s ease-in-out infinite;
}

.site-branding .site-title a { color: inherit; }

@keyframes pulse-glow {
  0%, 100% { text-shadow: 0 0 8px rgba(184,146,42,0.4); }
  50%       { text-shadow: 0 0 20px rgba(184,146,42,0.8), 0 0 40px rgba(184,146,42,0.3); }
}

#primary-navigation ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0; padding: 0;
}

#primary-navigation a {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone);
  position: relative;
  transition: color 0.3s;
}

#primary-navigation a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s ease;
}

#primary-navigation a:hover { color: var(--gold-light); }
#primary-navigation a:hover::after { right: 0; }

.nav-search-btn {
  background: none;
  border: 1px solid rgba(184,146,42,0.3);
  color: var(--parchment);
  padding: 0.4rem 1rem;
  font-family: 'Lora', serif;
  font-size: 0.8rem;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}
.nav-search-btn:hover {
  border-color: var(--gold);
  background: rgba(184,146,42,0.1);
}

/* Mobile nav toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(184,146,42,0.3);
  color: var(--parchment);
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  font-size: 1.1rem;
}

/* ============================================================
   HERO (front-page only)
   ============================================================ */
.site-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(45,37,51,0.9) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(92,122,90,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(192,57,43,0.08) 0%, transparent 60%),
    var(--ink);
}

.hero-ornament {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.2s;
  filter: drop-shadow(0 0 12px rgba(184,146,42,0.5));
}

.hero-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--parchment) 40%, var(--gold) 70%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.5s;
  filter: drop-shadow(0 0 30px rgba(184,146,42,0.2));
}

.hero-divider {
  width: 280px;
  height: 1px;
  margin: 2rem auto;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.8s;
  position: relative;
}
.hero-divider::before {
  content: '✦';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  background: var(--ink);
  padding: 0 0.5rem;
  font-size: 0.8rem;
}

.hero-tagline {
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--mist);
  letter-spacing: 0.05em;
  max-width: 480px;
  opacity: 0;
  animation: fadeUp 1s ease forwards 1.1s;
  line-height: 1.7;
}

.hero-cta {
  margin-top: 3rem;
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1s ease forwards 1.4s;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--mist);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s ease forwards 2s;
}
.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2.2rem;
  border: 1px solid;
  transition: all 0.3s;
  display: inline-block;
}
.btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--ink);
  box-shadow: 0 0 30px rgba(184,146,42,0.4);
}
.btn-ghost {
  background: transparent;
  border-color: rgba(184,146,42,0.5);
  color: var(--parchment);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(184,146,42,0.08);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.section-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(184,146,42,0.4), transparent);
}

/* ============================================================
   FEATURED POST
   ============================================================ */
.featured-section { padding: 6rem 0; }

.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(184,146,42,0.2);
  overflow: hidden;
  transition: border-color 0.3s;
}
.featured-card:hover { border-color: rgba(184,146,42,0.5); }

.featured-image {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--smoke);
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: transform 0.6s ease, opacity 0.3s;
}
.featured-card:hover .featured-image img { transform: scale(1.04); opacity: 0.85; }

.featured-image-placeholder {
  font-size: 5rem;
  background: linear-gradient(135deg, rgba(92,122,90,0.3), rgba(45,37,51,0.8));
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-content {
  padding: 3.5rem;
  background: var(--smoke);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-category {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 1rem;
}
.post-category a { color: inherit; }

.post-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--parchment);
  margin-bottom: 1.2rem;
}
.post-title a { color: inherit; }
.post-title a:hover { color: var(--gold-light); }

.post-excerpt {
  color: var(--mist);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.72rem;
  color: rgba(184,146,42,0.7);
  font-family: 'Cinzel', serif;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.post-meta .sep { opacity: 0.4; }

.read-more {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: gap 0.3s, color 0.3s;
}
.read-more::after { content: '→'; }
.read-more:hover { gap: 1rem; color: var(--gold-light); }

/* ============================================================
   CATEGORY PILLS
   ============================================================ */
.categories-strip {
  padding: 0 0 4rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.cat-pill {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(184,146,42,0.25);
  color: var(--bone);
  transition: all 0.3s;
}
.cat-pill:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(184,146,42,0.08);
}

/* ============================================================
   ARTICLE GRID
   ============================================================ */
.articles-section { padding: 2rem 0 6rem; }

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(184,146,42,0.1);
}

.article-card {
  background: var(--smoke);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.article-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 100%;
  height: 2px;
  background: var(--gold);
  transition: right 0.4s ease;
}
.article-card:hover::before { right: 0; }
.article-card:hover { background: var(--ash); }

.card-thumbnail {
  width: 100%;
  height: 160px;
  object-fit: cover;
  opacity: 0.75;
  transition: opacity 0.3s;
  margin-bottom: 0.4rem;
}
.article-card:hover .card-thumbnail { opacity: 0.9; }

.card-category {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage);
}
.card-category a { color: inherit; }

.card-title {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--parchment);
  flex: 1;
}
.card-title a { color: inherit; }
.card-title a:hover { color: var(--gold-light); }

.card-excerpt {
  font-size: 0.85rem;
  color: var(--mist);
  line-height: 1.7;
  font-style: italic;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(184,146,42,0.1);
  margin-top: auto;
}
.card-date {
  font-size: 0.65rem;
  color: rgba(184,146,42,0.5);
  font-family: 'Cinzel', serif;
  letter-spacing: 0.1em;
}
.card-link {
  font-size: 0.85rem;
  color: var(--gold);
  transition: color 0.3s;
}
.card-link:hover { color: var(--gold-light); }

/* ============================================================
   QUOTE BREAK
   ============================================================ */
.quote-break {
  padding: 5rem 2rem;
  text-align: center;
  background: linear-gradient(to right, transparent, rgba(45,37,51,0.6), transparent);
  border-top: 1px solid rgba(184,146,42,0.1);
  border-bottom: 1px solid rgba(184,146,42,0.1);
  margin: 2rem 0;
}
.quote-text {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.8rem);
  color: var(--parchment);
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.5;
}
.quote-attr {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
}

/* ============================================================
   CONTENT + SIDEBAR LAYOUT
   ============================================================ */
.content-sidebar-wrap {
  padding: 4rem 0 6rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
}

/* Archive / list posts */
.more-articles { display: flex; flex-direction: column; gap: 2rem; }

.list-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(184,146,42,0.1);
  color: inherit;
  transition: opacity 0.3s;
}
.list-card:hover { opacity: 0.8; }

.list-card-num {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2rem;
  color: rgba(184,146,42,0.15);
  line-height: 1;
  padding-top: 0.2rem;
}
.list-card-content { display: flex; flex-direction: column; gap: 0.4rem; }
.list-card-cat {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
}
.list-card-title {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  color: var(--parchment);
  line-height: 1.4;
}
.list-card-date { font-size: 0.7rem; color: var(--mist); }

/* ============================================================
   SIDEBAR / WIDGETS
   ============================================================ */
.widget-area { display: flex; flex-direction: column; gap: 2.5rem; }

.widget {
  background: var(--smoke);
  border: 1px solid rgba(184,146,42,0.15);
  padding: 1.8rem;
}

.widget-title {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(184,146,42,0.2);
}

/* Search widget */
.widget_search .search-form { display: flex; gap: 0; }
.widget_search .search-field {
  flex: 1;
  background: rgba(13,10,15,0.8);
  border: 1px solid rgba(184,146,42,0.3);
  border-right: none;
  color: var(--parchment);
  padding: 0.6rem 0.8rem;
  font-family: 'Lora', serif;
  font-size: 0.85rem;
  outline: none;
}
.widget_search .search-field:focus { border-color: var(--gold); }
.widget_search .search-submit {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--ink);
  padding: 0.6rem 1rem;
  cursor: pointer;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  transition: background 0.3s;
}
.widget_search .search-submit:hover { background: var(--gold-light); }

/* Recent posts widget */
.widget_recent_entries ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.8rem; }
.widget_recent_entries li { border-bottom: 1px solid rgba(184,146,42,0.08); padding-bottom: 0.8rem; }
.widget_recent_entries a { font-size: 0.88rem; color: var(--bone); line-height: 1.4; display: block; margin-bottom: 0.2rem; }
.widget_recent_entries a:hover { color: var(--gold-light); }
.widget_recent_entries .post-date { font-size: 0.65rem; color: var(--mist); font-family: 'Cinzel', serif; }

/* Categories widget */
.widget_categories ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.widget_categories a {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--bone);
}
.widget_categories a:hover { color: var(--gold-light); }

/* Tag cloud widget */
.widget_tag_cloud .tagcloud { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.widget_tag_cloud .tag-cloud-link {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem !important;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(184,146,42,0.2);
  color: var(--bone);
  transition: all 0.3s;
}
.widget_tag_cloud .tag-cloud-link:hover { border-color: var(--gold); color: var(--gold-light); }

/* Text / HTML widget */
.widget p { font-size: 0.88rem; color: var(--mist); line-height: 1.7; font-style: italic; margin-bottom: 1rem; }
.widget input[type="email"],
.widget input[type="text"] {
  width: 100%;
  background: rgba(13,10,15,0.8);
  border: 1px solid rgba(184,146,42,0.3);
  color: var(--parchment);
  padding: 0.7rem 1rem;
  font-family: 'Lora', serif;
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  outline: none;
  transition: border-color 0.3s;
}
.widget input:focus { border-color: var(--gold); }
.widget input::placeholder { color: var(--mist); opacity: 0.5; }
.widget button, .widget input[type="submit"] {
  width: 100%;
  background: var(--gold);
  border: none;
  color: var(--ink);
  padding: 0.75rem;
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}
.widget button:hover, .widget input[type="submit"]:hover { background: var(--gold-light); }

/* ============================================================
   SINGLE POST / PAGE
   ============================================================ */
.single-post-wrap, .page-wrap {
  padding: 8rem 0 4rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
}

.entry-header { margin-bottom: 2.5rem; }

.entry-header .post-category { margin-bottom: 1rem; }

.entry-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--parchment), var(--bone));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.entry-meta {
  display: flex;
  gap: 1rem;
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: rgba(184,146,42,0.7);
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.entry-meta .sep { opacity: 0.4; }

.entry-thumbnail {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  margin-bottom: 2.5rem;
  opacity: 0.85;
}

.entry-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--bone);
}
.entry-content h2, .entry-content h3, .entry-content h4 {
  font-family: 'Cinzel', serif;
  color: var(--parchment);
  margin: 2rem 0 1rem;
}
.entry-content h2 { font-size: 1.5rem; }
.entry-content h3 { font-size: 1.25rem; }
.entry-content p { margin-bottom: 1.4rem; }
.entry-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--smoke);
  font-style: italic;
  color: var(--mist);
}
.entry-content a { color: var(--gold); border-bottom: 1px solid rgba(184,146,42,0.3); }
.entry-content a:hover { color: var(--gold-light); border-color: var(--gold-light); }
.entry-content ul, .entry-content ol { margin-bottom: 1.4rem; }
.entry-content li { margin-bottom: 0.4rem; }
.entry-content img { margin: 2rem auto; opacity: 0.85; }

/* ============================================================
   PAGINATION
   ============================================================ */
.posts-navigation, .post-navigation, .pagination {
  padding: 3rem 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.page-numbers, .nav-previous a, .nav-next a {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  padding: 0.6rem 1.2rem;
  border: 1px solid rgba(184,146,42,0.25);
  color: var(--bone);
  transition: all 0.3s;
}
.page-numbers:hover, .nav-previous a:hover, .nav-next a:hover,
.page-numbers.current {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(184,146,42,0.08);
}

/* ============================================================
   FOOTER
   ============================================================ */
#colophon {
  background: #060408;
  border-top: 1px solid rgba(184,146,42,0.15);
  padding: 4rem 0 2rem;
}

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

.footer-brand h3 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.footer-brand-line {
  width: 60px; height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 0.8rem 0;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--mist);
  line-height: 1.7;
  font-style: italic;
  max-width: 260px;
}

.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.82rem; color: var(--mist); transition: color 0.3s; }
.footer-col a:hover { color: var(--parchment); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(184,146,42,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: rgba(122,110,130,0.6);
  font-family: 'Cinzel', serif;
  letter-spacing: 0.1em;
}
.footer-sigils { display: flex; gap: 1rem; font-size: 1.2rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .featured-card { grid-template-columns: 1fr; }
  .featured-image { min-height: 260px; }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .content-sidebar-wrap { grid-template-columns: 1fr; }
  .single-post-wrap, .page-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.5rem; }
  #masthead { padding: 1rem 1.5rem; }
  #primary-navigation { display: none; }
  #primary-navigation.toggled { display: block; position: fixed; top: 60px; left: 0; right: 0; background: rgba(13,10,15,0.98); padding: 1.5rem; }
  #primary-navigation.toggled ul { flex-direction: column; gap: 1.2rem; }
  .menu-toggle { display: block; }
  .articles-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .nav-search-btn { display: none; }
}

/* ============================================================
   WORDPRESS ALIGNMENT HELPERS
   ============================================================ */
.alignleft  { float: left; margin: 0.5rem 1.5rem 1rem 0; }
.alignright { float: right; margin: 0.5rem 0 1rem 1.5rem; }
.aligncenter { margin: 1rem auto; display: block; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.8rem; color: var(--mist); font-style: italic; text-align: center; margin-top: 0.4rem; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); position: absolute !important; height: 1px; width: 1px; overflow: hidden; }
