/* ===== VARIABLES ===== */
:root {
  --cosmos: #0a0e1a;
  --cosmos-mid: #111827;
  --cosmos-light: #1e2d45;
  --earth: #2d4a32;
  --earth-mid: #3d6142;
  --earth-light: #7a9e7e;
  --gold: #c9a84c;
  --gold-light: #e2c97e;
  --stardust: #a8b8d0;
  --cream: #f5f0e8;
  --warm-white: #faf8f4;
  --text-dark: #1e2b1f;
  --text-mid: #4a5e6a;
  --text-light: #8a9aaa;
  --gradient-cosmos: linear-gradient(135deg, #0a0e1a 0%, #1a1f3a 50%, #0d1f2d 100%);
  --gradient-earth: linear-gradient(135deg, #2d4a32 0%, #3d6142 100%);
  --gradient-gold: linear-gradient(135deg, #c9a84c 0%, #e2c97e 100%);
  --shadow-soft: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-medium: 0 15px 50px rgba(0,0,0,0.15);
  --shadow-cosmic: 0 20px 60px rgba(10,14,26,0.4);
  --radius-sm: .75rem;
  --radius-md: 1.2rem;
  --radius-lg: 2rem;
  --radius-xl: 3rem;
}

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

body {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  background: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
}

body.home { background: var(--cosmos); }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color .25s; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  line-height: 1.15;
}

/* ===== TYPOGRAPHY ===== */
.font-display { font-family: 'Playfair Display', serif; }
.font-body { font-family: 'Jost', sans-serif; }
.text-gold { color: var(--gold); }
.text-earth { color: var(--earth); }
.text-stardust { color: var(--stardust); }
.italic { font-style: italic; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

/* ===== SECTION HEADERS ===== */
.section-tag {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: .7rem; letter-spacing: .2em;
  text-transform: uppercase; font-weight: 500;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,0.4);
  padding-bottom: .25rem;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-desc {
  font-family: 'Jost', sans-serif;
  font-size: 1rem; line-height: 1.8;
  color: var(--text-mid);
  max-width: 560px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: 'Jost', sans-serif;
  font-size: .85rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .85rem 2rem; border-radius: var(--radius-xl);
  border: none; cursor: pointer;
  transition: all .3s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--gradient-gold);
  color: var(--cosmos);
  box-shadow: 0 8px 25px rgba(201,168,76,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 15px 35px rgba(201,168,76,0.5); color: var(--cosmos); }

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
}
.btn-secondary:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); }

.btn-earth {
  background: var(--gradient-earth);
  color: var(--cream);
  box-shadow: 0 8px 25px rgba(45,74,50,0.3);
}
.btn-earth:hover { transform: translateY(-2px); box-shadow: 0 15px 35px rgba(45,74,50,0.4); color: var(--cream); }

.btn-ghost { background: transparent; color: var(--stardust); }
.btn-ghost:hover { color: white; }

/* ===== CARDS ===== */
.card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-medium); }

.card-dark {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  transition: all .3s;
}
.card-dark:hover { background: rgba(255,255,255,0.1); border-color: rgba(201,168,76,0.3); }

/* ===== BADGES ===== */
.badge {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: .65rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem .8rem; border-radius: 2rem;
}
.badge-gold { background: var(--gold); color: var(--cosmos); }
.badge-earth { background: var(--earth); color: var(--cream); }
.badge-cosmos { background: rgba(255,255,255,0.1); color: var(--stardust); border: 1px solid rgba(255,255,255,0.15); }

/* ===== NAVIGATION ===== */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all .4s ease;
}
#site-header.scrolled {
  background: rgba(10,14,26,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
#site-header.light-header.scrolled {
  background: rgba(250,248,244,0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: padding .3s;
}
.header-inner.scrolled { padding: 1rem 3rem; }

.site-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; color: white;
  letter-spacing: .02em;
}
.site-logo .logo-accent { color: var(--gold); font-style: italic; }
.light-header .site-logo { color: var(--cosmos); }

.main-nav { display: flex; align-items: center; gap: 2.5rem; }
.main-nav a {
  font-family: 'Jost', sans-serif;
  font-size: .8rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color .25s;
  position: relative;
}
.main-nav a::after {
  content: ''; position: absolute; bottom: -.25rem; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform .25s;
}
.main-nav a:hover, .main-nav a.active { color: white; }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.light-header .main-nav a { color: var(--text-mid); }
.light-header .main-nav a:hover { color: var(--cosmos); }

.header-cta { margin-left: 1rem; }

/* Mobile menu */
.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: .5rem;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: white; transition: all .3s;
}
.light-header .menu-toggle span { background: var(--cosmos); }

/* ===== HERO HOME ===== */
.hero-home {
  min-height: 100vh;
  background: var(--gradient-cosmos);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}

.hero-stars {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 60%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 10%, rgba(255,255,255,0.9) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 80%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 30%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 70%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 85%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 15%, rgba(255,255,255,0.9) 0%, transparent 100%),
    radial-gradient(2px 2px at 33% 45%, rgba(201,168,76,0.6) 0%, transparent 100%),
    radial-gradient(2px 2px at 66% 55%, rgba(168,184,208,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 48% 38%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 78% 88%, rgba(255,255,255,0.6) 0%, transparent 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(45,74,50,0.4) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  animation: glowPulse 8s ease-in-out infinite;
}
.hero-glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  top: 10%; right: 10%;
  animation: glowPulse 6s 2s ease-in-out infinite;
}

.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem;
  padding: 8rem 3rem 4rem;
  max-width: 1200px; margin: 0 auto; width: 100%;
}

.hero-left { padding-right: 2rem; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: 'Jost', sans-serif;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.8rem;
  padding: .4rem 1rem .4rem .6rem;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 2rem; background: rgba(201,168,76,0.05);
  animation: fadeUp .8s ease both;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); animation: pulse 2s ease-in-out infinite;
}

.hero-title-main {
  font-size: clamp(3rem, 5.5vw, 5rem);
  color: white; line-height: 1.05;
  margin-bottom: 1.5rem;
  animation: fadeUp .8s .15s ease both;
}
.hero-title-main .line-gold { color: var(--gold); font-style: italic; display: block; }
.hero-title-main .line-stardust { color: var(--stardust); display: block; font-style: italic; }

.hero-tagline {
  font-family: 'Jost', sans-serif;
  font-size: 1.05rem; color: rgba(255,255,255,0.6);
  line-height: 1.8; max-width: 460px;
  margin-bottom: 2.5rem;
  animation: fadeUp .8s .3s ease both;
}

.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp .8s .45s ease both;
}

.hero-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: .8rem; margin-top: 3.5rem;
  animation: fadeUp .8s .6s ease both;
}
.pillar {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 1rem; text-align: center;
  transition: all .3s;
}
.pillar:hover { background: rgba(255,255,255,0.08); border-color: rgba(201,168,76,0.3); }
.pillar-icon { font-size: 1.8rem; margin-bottom: .4rem; }
.pillar-label {
  font-family: 'Jost', sans-serif;
  font-size: .72rem; color: var(--stardust); letter-spacing: .08em;
}

/* Hero visual — right */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-orb {
  width: 420px; height: 420px; border-radius: 50%; position: relative;
  animation: float 8s ease-in-out infinite;
}
.hero-orb-inner {
  width: 100%; height: 100%; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%,
    rgba(122,158,126,0.5) 0%,
    rgba(45,74,50,0.6) 30%,
    rgba(10,14,26,0.8) 70%,
    rgba(10,14,26,0.95) 100%);
  border: 1px solid rgba(122,158,126,0.2);
  box-shadow:
    0 0 60px rgba(45,74,50,0.3),
    0 0 120px rgba(45,74,50,0.15),
    inset 0 0 60px rgba(122,158,126,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 8rem;
}
.hero-orbit {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.15);
  animation: spin 20s linear infinite;
}
.orbit-1 { width: 460px; height: 460px; }
.orbit-2 { width: 520px; height: 520px; animation-duration: 30s; animation-direction: reverse; border-color: rgba(168,184,208,0.1); }
.orbit-dot {
  position: absolute; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); top: -4px; left: 50%; margin-left: -4px;
  box-shadow: 0 0 12px var(--gold);
}
.orbit-2 .orbit-dot { background: var(--stardust); box-shadow: 0 0 12px var(--stardust); width: 5px; height: 5px; }

/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--cosmos-mid);
  padding: 7rem 0;
  position: relative; overflow: hidden;
}
.about-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 0% 100%, rgba(45,74,50,0.15) 0%, transparent 50%),
              radial-gradient(ellipse at 100% 0%, rgba(201,168,76,0.08) 0%, transparent 50%);
}
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; position: relative; z-index: 1; }
.about-text .section-title { color: white; }
.about-text .section-desc { color: rgba(255,255,255,0.6); max-width: 100%; }
.pillars-list { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2.5rem; }
.pillar-item {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.2rem; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all .3s;
}
.pillar-item:hover { background: rgba(255,255,255,0.07); border-color: rgba(201,168,76,0.2); }
.pillar-item-icon { font-size: 2rem; flex-shrink: 0; }
.pillar-item-title {
  font-family: 'Jost', sans-serif; font-weight: 600;
  color: white; font-size: .95rem; margin-bottom: .25rem;
}
.pillar-item-desc { font-family: 'Jost', sans-serif; font-size: .83rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.about-visual-wrap { position: relative; }
.about-quote-box {
  background: linear-gradient(135deg, rgba(45,74,50,0.4), rgba(10,14,26,0.6));
  border: 1px solid rgba(122,158,126,0.2);
  border-radius: var(--radius-lg); padding: 3rem;
  text-align: center; position: relative; overflow: hidden;
}
.about-quote-box::before {
  content: '"';
  position: absolute; top: -.5rem; left: 1.5rem;
  font-size: 10rem; color: rgba(201,168,76,0.08);
  font-family: 'Playfair Display', serif; line-height: 1;
}
.quote-text {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.3rem; color: white; line-height: 1.6; margin-bottom: 1.5rem;
  position: relative; z-index: 1;
}
.quote-author { font-family: 'Jost', sans-serif; font-size: .8rem; color: var(--gold); letter-spacing: .1em; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
.about-stat { text-align: center; padding: 1rem; }
.about-stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); display: block; }
.about-stat-label { font-family: 'Jost', sans-serif; font-size: .75rem; color: rgba(255,255,255,0.4); margin-top: .2rem; }

/* ===== BLOG SECTION ===== */
.blog-section { background: var(--warm-white); padding: 7rem 0; }
.blog-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; }
.blog-header .section-title { color: var(--cosmos); }
.blog-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 1.5rem; }
.blog-card { cursor: pointer; }
.blog-thumb {
  aspect-ratio: 16/10; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.blog-card:first-child .blog-thumb { aspect-ratio: 16/9; }
.blog-card:first-child .blog-thumb-placeholder { font-size: 6rem; }
.blog-thumb-placeholder.cosmos { background: linear-gradient(135deg, #0a0e1a, #1a1f3a); }
.blog-thumb-placeholder.earth { background: linear-gradient(135deg, #2d4a32, #3d6142); }
.blog-thumb-placeholder.gold { background: linear-gradient(135deg, #3a2a0a, #5a4a1a); }
.blog-body { padding: 1.5rem; }
.blog-cat {
  font-family: 'Jost', sans-serif; font-size: .7rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--earth-light); font-weight: 500; margin-bottom: .6rem;
}
.blog-card-title {
  font-size: 1.1rem; color: var(--cosmos); line-height: 1.4; margin-bottom: .8rem;
}
.blog-card:first-child .blog-card-title { font-size: 1.4rem; }
.blog-excerpt { font-family: 'Jost', sans-serif; font-size: .83rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 1rem; }
.blog-footer { display: flex; justify-content: space-between; align-items: center; }
.blog-meta-info { font-family: 'Jost', sans-serif; font-size: .75rem; color: var(--text-light); }
.blog-read-link {
  font-family: 'Jost', sans-serif; font-size: .75rem; font-weight: 600;
  color: var(--earth); letter-spacing: .05em; text-transform: uppercase;
}
.blog-read-link:hover { color: var(--gold); }

/* ===== EBOOKS SECTION ===== */
.ebooks-section {
  background: var(--cosmos);
  padding: 7rem 0; position: relative; overflow: hidden;
}
.ebooks-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(45,74,50,0.12), transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.08), transparent 50%);
}
.ebooks-inner { position: relative; z-index: 1; }
.ebooks-header { text-align: center; margin-bottom: 3.5rem; }
.ebooks-header .section-title { color: white; }
.ebooks-header .section-desc { margin: 0 auto; color: rgba(255,255,255,0.55); }
.ebooks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-bottom: 2.5rem; }
.ebook-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md); overflow: hidden;
  transition: all .3s; cursor: pointer;
}
.ebook-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
.ebook-cover {
  aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: .5rem; position: relative; overflow: hidden;
  padding: 1.5rem;
}
.cover-cosmos { background: linear-gradient(160deg, #0a0e1a, #1a2040, #0d1520); }
.cover-earth { background: linear-gradient(160deg, #1a2d1e, #2d4a32, #1a2d1e); }
.cover-gold { background: linear-gradient(160deg, #2a1f05, #3d2e0a, #1f1803); }
.cover-violet { background: linear-gradient(160deg, #1a0a2d, #2d1a45, #0d0a1f); }
.ebook-cover-num {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 3.5rem; color: rgba(255,255,255,0.15); line-height: 1;
}
.ebook-cover-icon { font-size: 2.5rem; }
.ebook-cover-title {
  font-family: 'Playfair Display', serif; font-size: .9rem;
  color: rgba(255,255,255,0.85); text-align: center; line-height: 1.3;
}
.ebook-cover-line {
  width: 30px; height: 1px;
  background: var(--gold); margin: .3rem auto;
}
.ebook-info { padding: 1.2rem; }
.ebook-num { font-family: 'Jost', sans-serif; font-size: .7rem; color: var(--gold); letter-spacing: .1em; margin-bottom: .4rem; }
.ebook-name { font-size: .95rem; color: white; margin-bottom: .4rem; }
.ebook-desc { font-family: 'Jost', sans-serif; font-size: .75rem; color: rgba(255,255,255,0.45); line-height: 1.5; margin-bottom: 1rem; }
.ebook-amazon-btn {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  width: 100%; padding: .6rem;
  background: var(--gradient-gold); color: var(--cosmos);
  border: none; border-radius: 2rem;
  font-family: 'Jost', sans-serif; font-size: .75rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer; transition: all .25s;
}
.ebook-amazon-btn:hover { transform: scale(1.03); }
.ebooks-cta { text-align: center; }

/* ===== AFFILIATION SECTION ===== */
.affiliation-section { background: var(--cream); padding: 7rem 0; }
.affiliation-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.affiliation-text .section-title { color: var(--cosmos); }
.affiliation-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.affil-card {
  padding: 1.5rem; background: white; border-radius: var(--radius-md);
  border: 1px solid rgba(45,74,50,0.1);
  transition: all .3s;
}
.affil-card:hover { border-color: var(--earth-light); box-shadow: var(--shadow-soft); }
.affil-icon { font-size: 2rem; margin-bottom: .8rem; }
.affil-title { font-family: 'Jost', sans-serif; font-weight: 600; color: var(--cosmos); margin-bottom: .3rem; font-size: .9rem; }
.affil-desc { font-family: 'Jost', sans-serif; font-size: .78rem; color: var(--text-mid); line-height: 1.5; }
.affiliation-visual { position: relative; }
.affil-main-card {
  background: var(--gradient-cosmos);
  border-radius: var(--radius-lg); padding: 3rem;
  text-align: center; position: relative; overflow: hidden;
}
.affil-main-icon { font-size: 4rem; margin-bottom: 1rem; }
.affil-main-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: white; margin-bottom: .8rem; }
.affil-main-desc { font-family: 'Jost', sans-serif; font-size: .85rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 2rem; }
.affil-earnings { display: flex; justify-content: center; gap: 2rem; }
.affil-earn { text-align: center; }
.affil-earn-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--gold); }
.affil-earn-label { font-family: 'Jost', sans-serif; font-size: .72rem; color: rgba(255,255,255,0.4); margin-top: .2rem; }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: var(--gradient-earth);
  padding: 6rem 0; text-align: center;
  position: relative; overflow: hidden;
}
.newsletter-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.15), transparent 60%);
}
.newsletter-content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.newsletter-section .section-tag { color: var(--gold-light); }
.newsletter-section .section-title { color: white; margin-bottom: 1rem; }
.newsletter-section .section-desc { color: rgba(255,255,255,0.7); margin: 0 auto 2.5rem; }
.newsletter-form { display: flex; gap: .8rem; max-width: 480px; margin: 0 auto; }
.newsletter-form input {
  flex: 1; padding: .9rem 1.4rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3rem; background: rgba(255,255,255,0.1);
  color: white; font-family: 'Jost', sans-serif;
  font-size: .9rem; outline: none;
  backdrop-filter: blur(4px);
  transition: border-color .25s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { border-color: rgba(255,255,255,0.5); }
.newsletter-note { font-family: 'Jost', sans-serif; font-size: .75rem; color: rgba(255,255,255,0.4); margin-top: 1rem; }

/* ===== FOOTER ===== */
#site-footer {
  background: var(--cosmos);
  color: rgba(255,255,255,0.5);
  padding: 5rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer-brand-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: white; display: block; margin-bottom: 1rem;
}
.footer-brand-logo span { color: var(--gold); font-style: italic; }
.footer-brand-desc { font-family: 'Jost', sans-serif; font-size: .85rem; line-height: 1.8; max-width: 260px; }
.footer-col h4 {
  font-family: 'Jost', sans-serif; font-size: .75rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: white; margin-bottom: 1.5rem;
}
.footer-links { display: flex; flex-direction: column; gap: .8rem; }
.footer-links a {
  font-family: 'Jost', sans-serif; font-size: .83rem;
  color: rgba(255,255,255,0.45); transition: color .25s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-family: 'Jost', sans-serif; font-size: .8rem; }
.footer-socials { display: flex; gap: .8rem; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: all .25s;
}
.footer-socials a:hover { background: rgba(201,168,76,0.15); border-color: rgba(201,168,76,0.3); }

/* ===== SINGLE POST ===== */
.post-hero { background: var(--cosmos-mid); padding: 8rem 0 4rem; }
.post-hero .section-tag { color: var(--gold); }
.post-title { font-size: clamp(2rem, 4vw, 3.5rem); color: white; margin: 1rem 0; }
.post-meta { font-family: 'Jost', sans-serif; font-size: .85rem; color: rgba(255,255,255,0.4); }
.post-content { max-width: 760px; margin: 0 auto; padding: 4rem 2rem; }
.post-content h2 { font-size: 1.8rem; color: var(--cosmos); margin: 2.5rem 0 1rem; }
.post-content h3 { font-size: 1.4rem; color: var(--earth); margin: 2rem 0 .8rem; }
.post-content p { font-family: 'Jost', sans-serif; font-size: 1rem; line-height: 1.9; color: var(--text-mid); margin-bottom: 1.5rem; }
.post-content ul, .post-content ol { font-family: 'Jost', sans-serif; padding-left: 1.5rem; margin-bottom: 1.5rem; }
.post-content li { line-height: 1.8; color: var(--text-mid); margin-bottom: .4rem; }
.post-content blockquote {
  border-left: 3px solid var(--gold);
  margin: 2rem 0; padding: 1rem 2rem;
  background: rgba(201,168,76,0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic; color: var(--earth);
}

/* ===== PAGE EBOOKS ===== */
.page-hero { background: var(--gradient-cosmos); padding: 8rem 0 5rem; text-align: center; }
.page-hero .section-title { color: white; }
.page-hero .section-desc { color: rgba(255,255,255,0.6); margin: 0 auto; }
.ebooks-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; padding: 5rem 0; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-15px); }
}
@keyframes glowPulse {
  0%, 100% { opacity: .6; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.1); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.8); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes twinkle {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}

.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-left { padding-right: 0; }
  .hero-tagline { margin: 0 auto 2.5rem; }
  .hero-actions { justify-content: center; }
  .hero-pillars { max-width: 400px; margin: 3.5rem auto 0; }
  .hero-visual { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .ebooks-grid { grid-template-columns: repeat(2, 1fr); }
  .affiliation-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-inner { padding: 1rem 1.5rem; }
  .main-nav { display: none; }
  .main-nav.open {
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--cosmos); z-index: 999;
    justify-content: center; align-items: center; gap: 2rem;
  }
  .main-nav.open a { font-size: 1.3rem; }
  .menu-toggle { display: flex; }
  .hero-content { padding: 6rem 1.5rem 3rem; }
  .hero-pillars { grid-template-columns: 1fr; }
  .section { padding: 4rem 0; }
  .about-inner, .affiliation-inner { gap: 3rem; }
  .ebooks-grid { grid-template-columns: 1fr 1fr; }
  .affiliation-cards { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1.5rem; }
  .blog-header { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .container { padding: 0 1.5rem; }
}
a:not(.btn):not(.nav-cta) {
  color: #2D4A32 !important;
  text-decoration: underline !important;
}
a:not(.btn):not(.nav-cta):hover {
  color: #C9A84C !important;
}
.blog-thumb {
  height: 220px !important;
  overflow: hidden;
}
.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

