/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  background: #0d0d0d;
  color: #e8e2d9;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== VARIABLES ===== */
:root {
  --maroon: #800000;
  --maroon-light: #a00000;
  --maroon-dim: rgba(128,0,0,0.15);
  --dark: #0d0d0d;
  --dark-2: #111111;
  --dark-3: #161616;
  --dark-4: #1c1c1c;
  --cream: #e8e2d9;
  --cream-dim: rgba(232,226,217,0.6);
  --serif: 'Libre Baskerville', 'Baskerville Display PT', Georgia, serif;
  --sans: 'Inter', Helvetica, Arial, sans-serif;
}

/* ===== GLOBAL LINK RESET ===== */
a {
  color: var(--cream);
  text-decoration: none;
}

a:visited {
  color: var(--cream);
}

a:hover {
  color: var(--maroon-light);
}

/* ===== FORCE ARTICLE LINK STYLES ===== */
.article-card a,
.article-card a:visited,
.article-card-title a,
.article-card-title a:visited,
.article-cat,
.article-read-more {
  color: var(--cream);
}

.article-cat {
  color: var(--maroon-light);
}

.article-read-more {
  color: var(--maroon-light);
}

.article-read-more:hover,
.article-cat:hover,
.article-card-title a:hover {
  color: var(--cream);
}

/* ===== WORDPRESS CONTENT OVERRIDE ===== */
.single-article-content a,
.prose a {
  color: var(--maroon-light) !important;
  text-decoration: underline;
}

.single-article-content a:hover,
.prose a:hover {
  color: var(--cream) !important;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--maroon); border-radius: 3px; }

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(128,0,0,0.25);
  transition: background 0.3s;
}
.nav-logo img {
  height: 38px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: var(--cream-dim);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--maroon-light); }
.nav-cta {
  background: var(--maroon);
  color: #fff !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 2px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--maroon-light) !important; color: #fff !important; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--cream); border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
  padding: 120px 5% 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 50%, rgba(128,0,0,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(128,0,0,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(128,0,0,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  text-align: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--maroon-light);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(128,0,0,0.4);
  padding: 0.35rem 1rem;
  border-radius: 2px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  color: var(--maroon-light);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--cream-dim);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--maroon);
  color: #fff;
  padding: 0.85rem 2.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid var(--maroon);
  transition: all 0.2s;
  display: inline-block;
  cursor: pointer;
  font-family: var(--sans);
}
.btn-primary:hover { background: var(--maroon-light); border-color: var(--maroon-light); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  padding: 0.85rem 2.2rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid rgba(232,226,217,0.3);
  transition: all 0.2s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--cream); background: rgba(232,226,217,0.05); transform: translateY(-2px); }
.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(128,0,0,0.2);
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--maroon-light);
  display: block;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* ===== SECTION BASE ===== */
section { padding: 100px 5%; }
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--maroon-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--maroon);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--cream-dim);
  max-width: 540px;
  line-height: 1.8;
  font-weight: 300;
}

/* ===== SERVICES ===== */
#services {
  background: var(--dark-2);
}
.services-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
}
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px;
  background: rgba(128,0,0,0.15);
  border: 1px solid rgba(128,0,0,0.15);
}
.service-card {
  background: var(--dark-3);
  padding: 2.5rem;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--maroon);
  transition: width 0.35s ease;
}
.service-card:hover { background: var(--dark-4); }
.service-card:hover::before { width: 100%; }
.service-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(128,0,0,0.4);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--cream-dim);
  line-height: 1.75;
  font-weight: 300;
}

/* ===== ABOUT ===== */
#about {
  background: var(--dark);
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about-text p {
  font-size: 1rem;
  color: var(--cream-dim);
  line-height: 1.85;
  margin-bottom: 1.2rem;
  font-weight: 300;
}
.about-text p strong {
  color: var(--cream);
  font-weight: 600;
}
.values-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.value-icon {
  width: 6px; height: 6px;
  background: var(--maroon);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.6rem;
}
.value-item span {
  font-size: 0.92rem;
  color: var(--cream-dim);
}
.value-item strong {
  color: var(--cream);
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}
/* ===== TEAM ===== */
.team-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.team-card {
  background: var(--dark-3);
  border: 1px solid rgba(128,0,0,0.18);
  border-left: 4px solid var(--maroon);
  border-radius: 6px;
  padding: 2.5rem;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
  position: relative;
}
.team-card:hover {
  background: var(--dark-4);
  border-color: rgba(128,0,0,0.5);
  border-left-color: var(--maroon);
  transform: translateY(-3px);
}
.team-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(128,0,0,0.4);
  background: rgba(128,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--maroon-light);
  margin-bottom: 1.5rem;
}
.team-photo {
  width: 140px;
  height: 140px;
  object-fit: cover;
  display: block;
}
.team-card h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.team-role {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--maroon-light);
  margin-bottom: 0.85rem;
}
.team-bio {
  font-size: 0.9rem;
  color: var(--cream-dim);
  line-height: 1.8;
  font-weight: 300;
}

/* ===== CONTACT ===== */
#contact {
  background: var(--dark-2);
}
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact-info p {
  font-size: 0.95rem;
  color: var(--cream-dim);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 2rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.contact-detail-icon {
  font-size: 0.85rem;
  color: var(--maroon-light);
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.contact-detail-text {
  font-size: 0.9rem;
  color: var(--cream-dim);
  line-height: 1.6;
}
.contact-detail-text strong {
  display: block;
  color: var(--cream);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-3);
  border: 1px solid rgba(128,0,0,0.2);
  border-radius: 2px;
  padding: 0.8rem 1rem;
  font-size: 0.92rem;
  color: var(--cream);
  font-family: var(--sans);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  width: 100%;
}
.form-group select option { background: #1c1c1c; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--maroon);
  background: var(--dark-4);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(232,226,217,0.25); }
.form-submit {
  margin-top: 0.5rem;
}
.form-note {
  font-size: 0.78rem;
  color: rgba(232,226,217,0.35);
  margin-top: 0.5rem;
}

/* ===== FOOTER ===== */
footer {
  background: #080808;
  border-top: 1px solid rgba(128,0,0,0.2);
  padding: 3.5rem 5% 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(232,226,217,0.06);
  flex-wrap: wrap;
}
.footer-brand img { height: 34px; width: auto; margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.83rem;
  color: rgba(232,226,217,0.35);
  max-width: 280px;
  line-height: 1.7;
}
.footer-links h5 {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--maroon-light);
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(232,226,217,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  padding-top: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(232,226,217,0.25);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.78rem;
  color: rgba(232,226,217,0.25);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(232,226,217,0.5); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===== WP ADMIN BAR FIX ===== */
.admin-bar nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar nav { top: 46px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(13,13,13,0.98);
    padding: 2rem 5%;
    border-bottom: 1px solid rgba(128,0,0,0.2);
    gap: 1.5rem;
    backdrop-filter: blur(12px);
  }
  .hamburger { display: flex; }
  .footer-top { flex-direction: column; }
}
@media (max-width: 600px) {
  section { padding: 70px 5%; }
  .hero-stats { gap: 2rem; }
}

/* ===== ARTICLES LISTING ===== */
#articles-hero {
  position: relative;
  padding: 140px 5% 80px;
  background: var(--dark);
  overflow: hidden;
  text-align: center;
}
#articles-hero .hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(128,0,0,0.18) 0%, transparent 70%);
  pointer-events: none;
}
#articles-hero .hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,226,217,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,226,217,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.articles-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.articles-hero-inner .section-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--maroon-light);
  margin-bottom: 1rem;
  font-weight: 600;
}
.articles-hero-inner .section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 1rem;
  color: var(--cream);
  font-family: 'Georgia', serif;
}
.articles-hero-inner .section-sub {
  font-size: 1rem;
  color: rgba(232,226,217,0.5);
  line-height: 1.7;
}

#articles-list {
  padding: 80px 5%;
  background: var(--dark-2);
}
.articles-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Articles grid */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

/* Article card */
.article-card {
  background: var(--dark);
  border: 1px solid rgba(232,226,217,0.07);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  border-color: rgba(128,0,0,0.4);
  transform: translateY(-4px);
}

.article-card-thumb {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.article-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.article-card:hover .article-card-thumb img {
  transform: scale(1.04);
}

.article-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.article-cat {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--maroon-light);
  font-weight: 600;
  text-decoration: none;
}
.article-cat:hover { color: var(--cream); }
.article-meta-sep {
  color: rgba(232,226,217,0.2);
  font-size: 0.8rem;
}
.article-date {
  font-size: 0.78rem;
  color: rgba(232,226,217,0.4);
}

.article-card-title {
  font-size: 1.05rem;
  font-family: 'Georgia', serif;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: var(--cream);
}
.article-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.article-card-title a:hover { color: var(--maroon-light); }

.article-card-excerpt {
  font-size: 0.86rem;
  color: rgba(232,226,217,0.5);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.2rem;
}
.article-card-excerpt p { margin: 0; }

.article-read-more {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--maroon-light);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
  margin-top: auto;
}
.article-read-more:hover { color: var(--cream); }

/* Pagination */
.articles-pagination {
  text-align: center;
  margin-top: 2rem;
}
.articles-pagination .nav-links {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}
.articles-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  height: 2.2rem;
  padding: 0 0.75rem;
  border: 1px solid rgba(232,226,217,0.12);
  border-radius: 4px;
  font-size: 0.88rem;
  color: rgba(232,226,217,0.55);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.articles-pagination .page-numbers.current,
.articles-pagination .page-numbers:hover {
  background: var(--maroon);
  border-color: var(--maroon);
  color: #fff;
}

/* Empty state */
.articles-empty {
  text-align: center;
  padding: 5rem 0;
}

/* ===== SINGLE ARTICLE ===== */
#single-article-hero {
  position: relative;
  padding: 140px 5% 80px;
  background: var(--dark);
  overflow: hidden;
}
#single-article-hero .hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(128,0,0,0.18) 0%, transparent 70%);
  pointer-events: none;
}
#single-article-hero .hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,226,217,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,226,217,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.single-article-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.single-article-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}
.article-read-time {
  font-size: 0.78rem;
  color: rgba(232,226,217,0.4);
}

.single-article-title {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-family: 'Georgia', serif;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

.single-article-sub {
  font-size: 1.05rem;
  color: rgba(232,226,217,0.55);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.single-article-sub p { margin: 0; }

.single-article-byline {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.byline-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.byline-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.byline-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.byline-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cream);
}
.byline-org {
  font-size: 0.78rem;
  color: rgba(232,226,217,0.4);
}

/* Featured image */
.single-article-featured-img {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}
.single-article-featured-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-top: -2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* Article body */
#single-article-body {
  padding: 70px 5% 100px;
  background: var(--dark-2);
}
.single-article-container {
  max-width: 760px;
  margin: 0 auto;
}

.single-article-content {
  font-size: 1rem;
  color: rgba(232,226,217,0.75);
  line-height: 1.85;
  margin-bottom: 3rem;
}
.single-article-content h2,
.single-article-content h3,
.single-article-content h4 {
  font-family: 'Georgia', serif;
  color: var(--cream);
  margin: 2.5rem 0 1rem;
  line-height: 1.3;
}
.single-article-content h2 { font-size: 1.5rem; }
.single-article-content h3 { font-size: 1.22rem; }
.single-article-content h4 { font-size: 1.05rem; }
.single-article-content p { margin-bottom: 1.5rem; }
.single-article-content a {
  color: var(--maroon-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.single-article-content a:hover { color: var(--cream); }
.single-article-content ul,
.single-article-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.single-article-content li { margin-bottom: 0.5rem; }
.single-article-content blockquote {
  border-left: 3px solid var(--maroon);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: rgba(232,226,217,0.55);
}
.single-article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 1.5rem 0;
}
.single-article-content figure { margin: 2rem 0; }
.single-article-content figcaption {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(232,226,217,0.35);
  margin-top: 0.5rem;
}

.single-article-content {
  line-height: 1.8;
  font-size: 1.05rem;
}

.single-article-content h2,
.single-article-content h3 {
  margin-top: 2rem;
}

.single-article-content p {
  margin-bottom: 1.2rem;
}

/* Tags */
.single-article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(232,226,217,0.06);
}
.article-tag {
  display: inline-block;
  padding: 0.28rem 0.75rem;
  border: 1px solid rgba(232,226,217,0.14);
  border-radius: 20px;
  font-size: 0.75rem;
  color: rgba(232,226,217,0.5);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.article-tag:hover {
  border-color: var(--maroon);
  color: var(--cream);
}

/* Post navigation */
.single-article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.article-nav-prev,
.article-nav-next {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.article-nav-next {
  text-align: right;
}
.article-nav-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232,226,217,0.3);
  font-weight: 600;
}
.article-nav-title {
  font-size: 0.9rem;
  font-family: 'Georgia', serif;
  color: var(--cream);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s;
}
.article-nav-title:hover { color: var(--maroon-light); }

/* Back to articles */
.single-article-back { text-align: center; }
.btn-ghost {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  border: 1px solid rgba(232,226,217,0.2);
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232,226,217,0.6);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  border-color: var(--maroon);
  color: var(--cream);
  background: rgba(128,0,0,0.08);
}

/* Articles responsive */
@media (max-width: 900px) {
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .single-article-nav { grid-template-columns: 1fr; }
  .article-nav-next { text-align: left; }
}
@media (max-width: 600px) {
  .articles-grid { grid-template-columns: 1fr; }
  .single-article-featured-img { padding: 0 3%; }
}

/* ===== PROSE SYSTEM (Article Content) ===== */
.prose {
  max-width: 720px;
  margin: 0 auto;
  font-family: 'Libre Baskerville', serif;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--cream);
}

.prose p {
  margin-bottom: 1.4rem;
  color: rgba(255,255,255,0.85);
}

.prose h2 {
  font-size: 1.8rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.prose h3 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  font-family: 'Inter', sans-serif;
}

.prose strong {
  color: #fff;
  font-weight: 600;
}

.prose a {
  color: var(--maroon);
  text-decoration: none;
  border-bottom: 1px solid rgba(128,0,0,0.4);
}

.prose a:hover {
  color: #fff;
  border-color: var(--maroon);
}

.prose blockquote {
  border-left: 3px solid var(--maroon);
  padding-left: 1.2rem;
  margin: 2rem 0;
  color: rgba(255,255,255,0.75);
  font-style: italic;
}

.prose ul, 
.prose ol {
  margin: 1.5rem 0 1.5rem 1.5rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

.single-article-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}