/*
 Theme Name:   Espiritual.net
 Theme URI:    https://espiritual.net
 Description:  Tema personalizado para Espiritual.net - Plataforma de Transformación Espiritual
 Author:       Espiritual.net
 Author URI:   https://espiritual.net
 Template:     generatepress
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 Text Domain:  espiritual
*/

/* ============ VARIABLES ============ */
:root {
  --midnight: #0a0e1a;
  --deep-blue: #101630;
  --navy: #1a2040;
  --gold: #c9a84c;
  --gold-light: #e8d48b;
  --gold-glow: rgba(201, 168, 76, 0.15);
  --cream: #f5f0e8;
  --cream-soft: #faf7f2;
  --text-light: #e8e4dc;
  --text-muted: #9a9590;
  --sage: #7a9e7e;
  --rose-dust: #c4a092;
  --lavender: #b8a9c9;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
}

/* ============ RESET GENERATEPRESS DEFAULTS ============ */
body {
  font-family: var(--font-body) !important;
  background: var(--midnight) !important;
  color: var(--text-light) !important;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}

/* Hide default GP header/footer on front page */
body.home .site-header,
body.home .site-footer,
body.home .site-content > .content-area {
  display: contents;
}

/* Override GP container */
.site-content {
  padding: 0 !important;
}
.inside-article {
  padding: 0 !important;
  margin: 0 !important;
}

/* ============ UTILITY ============ */
.esp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes glow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes rotateSlowly {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ NOISE TEXTURE ============ */
body::after {
  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.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ============ NAVBAR ============ */
.esp-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
  background: transparent;
}
.esp-navbar.scrolled {
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}
.esp-navbar .esp-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.esp-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--gold) !important;
  text-decoration: none !important;
  letter-spacing: 3px;
  text-transform: lowercase;
}
.esp-logo span { font-weight: 600; }

.esp-nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.esp-nav-links li { list-style: none; }
.esp-nav-links a {
  color: var(--text-muted) !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.esp-nav-links a:hover { color: var(--gold) !important; }
.btn-nav {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 10px 28px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}
.btn-nav:hover {
  background: var(--gold);
  color: var(--midnight) !important;
}

/* Mobile menu */
.esp-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.esp-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

/* ============ HERO ============ */
.esp-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.esp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(122, 158, 126, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(184, 169, 201, 0.06) 0%, transparent 50%);
}
.sacred-geometry {
  position: absolute;
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.04;
  animation: rotateSlowly 120s linear infinite;
}
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  opacity: 0.3;
}
.particle:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; animation-duration: 7s; }
.particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 1s; animation-duration: 5s; }
.particle:nth-child(3) { top: 40%; left: 45%; animation-delay: 2s; animation-duration: 8s; }
.particle:nth-child(4) { top: 75%; left: 25%; animation-delay: 3s; animation-duration: 6s; }
.particle:nth-child(5) { top: 30%; left: 70%; animation-delay: 0.5s; animation-duration: 9s; }
.particle:nth-child(6) { top: 85%; left: 60%; animation-delay: 1.5s; animation-duration: 7s; }
.particle:nth-child(7) { top: 15%; left: 90%; animation-delay: 2.5s; }
.particle:nth-child(8) { top: 50%; left: 10%; animation-delay: 4s; animation-duration: 5.5s; }

.esp-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.esp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-glow);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  animation: fadeUp 1s ease 0.2s both;
}
.esp-hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: glow 2s ease infinite;
}
.esp-hero h1 {
  font-family: var(--font-display) !important;
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 28px;
  animation: fadeUp 1s ease 0.4s both;
  color: var(--cream);
}
.esp-hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.esp-hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 44px;
  font-weight: 300;
  animation: fadeUp 1s ease 0.6s both;
}
.esp-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.8s both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), #b8923e);
  color: var(--midnight) !important;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 40px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.4s;
  box-shadow: 0 4px 30px rgba(201, 168, 76, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201, 168, 76, 0.4);
  color: var(--midnight) !important;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-light) !important;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 32px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.3s;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
}
.esp-hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1.2s both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: glow 2s ease infinite;
}

/* ============ SOCIAL PROOF ============ */
.esp-social-proof {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  background: rgba(16, 22, 48, 0.5);
}
.proof-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.proof-item { text-align: center; }
.proof-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.proof-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 1px;
}

/* ============ SECTIONS ============ */
.esp-section {
  padding: 120px 0;
  position: relative;
}
.section-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}
.section-title {
  font-family: var(--font-display) !important;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 580px;
  font-weight: 300;
}

/* ============ FEATURES ============ */
.esp-features { background: var(--midnight); }
.features-header {
  text-align: center;
  margin-bottom: 80px;
}
.features-header .section-desc { margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card {
  background: linear-gradient(145deg, rgba(26, 32, 64, 0.8), rgba(16, 22, 48, 0.6));
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 20px;
  padding: 44px 36px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
}
.feature-icon.gold { background: var(--gold-glow); border: 1px solid rgba(201, 168, 76, 0.2); }
.feature-icon.sage { background: rgba(122, 158, 126, 0.1); border: 1px solid rgba(122, 158, 126, 0.2); }
.feature-icon.lavender { background: rgba(184, 169, 201, 0.1); border: 1px solid rgba(184, 169, 201, 0.2); }
.feature-icon.rose { background: rgba(196, 160, 146, 0.1); border: 1px solid rgba(196, 160, 146, 0.2); }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 14px;
}
.feature-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
}

/* ============ COURSES ============ */
.esp-courses {
  background: linear-gradient(180deg, var(--midnight) 0%, var(--deep-blue) 100%);
}
.courses-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.course-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.course-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(26, 32, 64, 0.6);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 24px 28px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none !important;
}
.course-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  background: rgba(26, 32, 64, 0.9);
  transform: translateX(8px);
}
.course-thumb {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  flex-shrink: 0;
}
.course-info h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 6px;
}
.course-info p {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
}
.course-meta {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.5px;
}

/* ============ TESTIMONIALS ============ */
.esp-testimonials {
  background: var(--deep-blue);
  overflow: hidden;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}
.testimonials-header .section-desc { margin: 0 auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: rgba(26, 32, 64, 0.5);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: 16px;
  left: 28px;
  line-height: 1;
}
.testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--midnight);
}
.testimonial-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
}
.testimonial-role {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============ PRICING ============ */
.esp-pricing {
  background: linear-gradient(180deg, var(--deep-blue) 0%, var(--midnight) 100%);
}
.pricing-header {
  text-align: center;
  margin-bottom: 64px;
}
.pricing-header .section-desc { margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}
.price-card {
  background: rgba(26, 32, 64, 0.6);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 44px 36px;
  text-align: center;
  transition: all 0.4s;
  position: relative;
}
.price-card.featured {
  background: linear-gradient(160deg, rgba(201, 168, 76, 0.12), rgba(26, 32, 64, 0.8));
  border-color: rgba(201, 168, 76, 0.3);
  transform: scale(1.04);
}
.price-card.featured::after {
  content: 'MÁS POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--midnight);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 6px 20px;
  border-radius: 100px;
}
.price-card:hover { transform: translateY(-4px); border-color: rgba(201, 168, 76, 0.2); }
.price-card.featured:hover { transform: scale(1.04) translateY(-4px); }
.price-tier {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 8px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.price-amount span {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted);
}
.price-period {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.price-features {
  list-style: none;
  margin-bottom: 36px;
  text-align: left;
  padding: 0;
}
.price-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-light);
  font-weight: 300;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.price-features li:last-child { border: none; }
.check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(122, 158, 126, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sage);
  font-size: 12px;
}
.btn-price {
  width: 100%;
  padding: 16px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-decoration: none !important;
  display: inline-block;
  text-align: center;
}
.btn-price.outline {
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold) !important;
}
.btn-price.outline:hover {
  background: var(--gold);
  color: var(--midnight) !important;
}
.btn-price.filled {
  background: linear-gradient(135deg, var(--gold), #b8923e);
  color: var(--midnight) !important;
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.25);
}
.btn-price.filled:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(201, 168, 76, 0.4);
}

/* ============ LEAD MAGNET ============ */
.esp-lead-magnet { background: var(--midnight); }
.lead-magnet-box {
  background: linear-gradient(160deg, rgba(201, 168, 76, 0.06), rgba(122, 158, 126, 0.04));
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 28px;
  padding: 72px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lead-magnet-box::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(201, 168, 76, 0.03) 0%, transparent 50%);
  animation: rotateSlowly 60s linear infinite;
}
.lead-magnet-box .section-title,
.lead-magnet-box .section-desc { position: relative; }
.lead-magnet-box .section-desc { margin: 0 auto 40px; }
.email-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}
.email-input {
  flex: 1;
  padding: 16px 24px;
  background: rgba(10, 14, 26, 0.6);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
}
.email-input::placeholder { color: var(--text-muted); }
.email-input:focus { border-color: var(--gold); }
.email-form .btn-primary { white-space: nowrap; }
.lead-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
  position: relative;
}

/* ============ FOOTER ============ */
.esp-footer {
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.04);
  background: var(--midnight);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand .esp-logo { margin-bottom: 16px; display: inline-block; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 300px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a {
  color: var(--text-muted) !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 300;
  transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--gold) !important; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 13px;
  color: var(--text-muted);
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted) !important;
  text-decoration: none !important;
  font-size: 16px;
  transition: all 0.3s;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
}

/* ============ BLOG STYLES ============ */
.esp-blog-section { background: var(--midnight); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: rgba(26, 32, 64, 0.6);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s;
  text-decoration: none !important;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.2);
}
.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-card-body { padding: 28px; }
.blog-card-cat {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.3;
}
.blog-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
}

/* ============ SINGLE POST ============ */
body.single-post .site-content,
body.single-post .inside-article {
  background: var(--midnight);
}
body.single-post .entry-title {
  font-family: var(--font-display) !important;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  color: var(--cream);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 20px;
}
body.single-post .entry-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-light);
}
body.single-post .entry-content h2 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--cream);
  margin-top: 48px;
  margin-bottom: 20px;
}
body.single-post .entry-content h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--cream);
  margin-top: 36px;
}
body.single-post .entry-content a {
  color: var(--gold);
  text-decoration: underline;
}
body.single-post .entry-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 20px 30px;
  margin: 32px 0;
  background: rgba(201, 168, 76, 0.05);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--cream);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .courses-layout { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .esp-nav-links { display: none; }
  .esp-nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(10,14,26,0.98);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(201,168,76,0.1);
  }
  .esp-menu-toggle { display: flex; }
  .features-grid,
  .testimonials-grid,
  .pricing-grid,
  .blog-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .esp-section { padding: 80px 0; }
  .proof-grid { gap: 32px; }
  .esp-hero h1 { font-size: 36px; }
  .lead-magnet-box { padding: 48px 28px; }
  .email-form { flex-direction: column; }
  .esp-hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .sacred-geometry { width: 350px; height: 350px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
