/*
Theme Name: Nature Cure Compendium
Theme URI: https://naturecurecompendium.com
Author: Ben Grant
Author URI: https://naturecurecompendium.com
Description: A natural health publishing theme for The Nature Cure Compendium — dark forest green and cream palette, Playfair Display serif headlines, calm authority tone.
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: naturecurecompendium
Tags: health, wellness, publishing, books
*/

/* =============================================
   CSS CUSTOM PROPERTIES
============================================= */
:root {
  --forest: #1e3a2f;
  --forest-deep: #142a22;
  --forest-mid: #264d3b;
  --forest-light: #2e5e48;
  --cream: #f5f0e8;
  --cream-warm: #ede5d4;
  --cream-dark: #d4c9b4;
  --gold: #b8945a;
  --gold-light: #d4aa72;
  --gold-pale: #f0e0c0;
  --text-dark: #1a2820;
  --text-body: #3a3228;
  --text-muted: #6b5e4e;
  --white: #ffffff;
  --radius: 2px;
  --max-width: 1100px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--cream);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

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

ul, ol { list-style: none; }

/* =============================================
   TYPOGRAPHY
============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--forest-deep);
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

em { font-style: italic; }

/* =============================================
   NAVIGATION
============================================= */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--forest-deep);
  border-bottom: 1px solid rgba(184,148,90,0.25);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
}

.site-branding a {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--cream);
  letter-spacing: 0.04em;
  text-decoration: none;
  line-height: 1.2;
}

.site-branding span {
  color: var(--gold-light);
  display: block;
  font-size: 0.7rem;
  font-style: italic;
  letter-spacing: 0.12em;
}

#primary-navigation ul {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

#primary-navigation a {
  color: var(--cream-dark);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}

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

#primary-navigation .menu-cta a {
  background: var(--gold);
  color: var(--forest-deep) !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 600;
}

#primary-navigation .menu-cta a:hover {
  background: var(--gold-light);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.2s;
}

/* =============================================
   BUTTONS
============================================= */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--forest-deep);
  padding: 16px 36px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}

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

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--cream-dark);
  padding: 14px 28px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  border: 1px solid rgba(212,194,180,0.4);
  border-radius: var(--radius);
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.btn-buy {
  display: inline-block;
  background: var(--gold);
  color: var(--forest-deep);
  padding: 14px 28px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

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

/* =============================================
   SECTION COMMON
============================================= */
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
}

.section-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.section-label.light { color: var(--gold-light); }
.section-label.light::after { background: var(--gold-light); }

.section-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--forest-deep);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-h2.light { color: var(--cream); }
.section-h2 em { font-style: italic; color: var(--forest-light); }
.section-h2.light em { color: var(--gold-light); }

.section-intro {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 56px;
  line-height: 1.8;
}

.section-intro.light { color: rgba(245,240,232,0.65); }

/* =============================================
   HERO — FRONT PAGE
============================================= */
.hero {
  min-height: 100vh;
  background: var(--forest-deep);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(46,94,72,0.4) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(184,148,90,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-texture {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f5f0e8' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  padding: 80px 64px 80px 80px;
  position: relative; z-index: 1;
}

.hero-eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block; width: 32px; height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 28px;
}

.hero h1 em { color: var(--gold-light); }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(245,240,232,0.75);
  max-width: 480px;
  margin-bottom: 48px;
  line-height: 1.8;
}

.hero-actions {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
}

.hero-visual {
  padding: 80px 80px 80px 40px;
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 16px;
}

.book-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.book-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,148,90,0.2);
  border-radius: 4px;
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
}

.book-card:hover {
  border-color: rgba(184,148,90,0.5);
  background: rgba(255,255,255,0.08);
}

.book-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
}

.book-card.bonus::before { background: rgba(184,148,90,0.4); }

.book-tag {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
  font-weight: 600;
}

.book-card.bonus .book-tag { color: rgba(212,170,114,0.6); }

.book-title-card {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 8px;
}

.book-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
}

.book-card.bonus .book-price {
  color: rgba(212,170,114,0.5);
  font-size: 0.75rem;
}

.hero-trust {
  display: flex; gap: 16px;
}

.trust-stat {
  text-align: center;
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,148,90,0.15);
  border-radius: 4px;
  padding: 16px 12px;
}

.trust-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
}

.trust-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
}

/* =============================================
   PROBLEM SECTION
============================================= */
.section-problem {
  background: var(--cream);
  padding: 100px 80px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  background: var(--cream-warm);
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
  padding: 32px 28px;
  position: relative;
}

.problem-card::before {
  content: '';
  position: absolute; top: 0; left: 28px; right: 28px;
  height: 2px;
  background: var(--forest-light);
  opacity: 0.3;
}

.problem-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
  display: block;
}

.problem-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 10px;
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

/* =============================================
   STORY SECTION (HOMEPAGE)
============================================= */
.section-story {
  background: var(--forest);
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
}

.section-story::after {
  content: '"';
  position: absolute; right: 60px; top: 40px;
  font-family: 'Playfair Display', serif;
  font-size: 20rem;
  color: rgba(245,240,232,0.04);
  line-height: 1;
  pointer-events: none;
}

.story-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: center;
}

.story-photo-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--forest-mid);
  border: 2px solid rgba(184,148,90,0.3);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}

.story-photo-frame img {
  width: 100%; height: 100%; object-fit: cover;
}

/* PLACEHOLDER — replace the SVG below with your photo:
   <img src="<?php echo get_template_directory_uri(); ?>/images/ben-grant.jpg" alt="Ben Grant" />
*/
.story-photo-frame svg { opacity: 0.25; }

.photo-badge {
  position: absolute; bottom: -12px; right: -12px;
  background: var(--gold);
  color: var(--forest-deep);
  padding: 12px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  line-height: 1.2;
  text-align: center;
}

.story-photo-caption {
  margin-top: 20px;
  font-size: 0.78rem;
  color: rgba(245,240,232,0.35);
  text-align: center;
  font-style: italic;
}

.story-body {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: rgba(245,240,232,0.8);
  line-height: 1.9;
  margin-bottom: 20px;
}

.story-signature {
  display: flex; align-items: center; gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(184,148,90,0.2);
  margin-top: 32px;
}

.story-sig-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--cream);
}

.story-sig-title {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.5);
  letter-spacing: 0.06em;
}

/* =============================================
   SOLUTION / PILLARS
============================================= */
.section-solution {
  background: var(--cream-warm);
  padding: 100px 80px;
  border-top: 3px solid var(--forest-deep);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.pillar {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
  padding: 40px 36px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  align-items: start;
}

.pillar-num {
  width: 48px; height: 48px;
  background: var(--forest-deep);
  color: var(--gold-light);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.pillar h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 8px;
}

.pillar p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

/* =============================================
   PRODUCTS SECTION
============================================= */
.section-products {
  background: var(--forest-deep);
  padding: 100px 80px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.product-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,148,90,0.25);
  border-radius: 4px;
  padding: 40px 36px;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}

.product-card:hover {
  border-color: rgba(184,148,90,0.5);
  background: rgba(255,255,255,0.07);
}

.product-card.anchor {
  border-color: rgba(184,148,90,0.4);
}

.product-badge {
  position: absolute; top: -1px; right: 32px;
  background: var(--gold);
  color: var(--forest-deep);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0 0 4px 4px;
}

.product-series {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
  font-weight: 600;
}

.product-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 16px;
}

.product-desc {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.65);
  line-height: 1.75;
  margin-bottom: 28px;
}

.product-includes {
  list-style: none;
  margin-bottom: 32px;
}

.product-includes li {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.7);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: 10px;
}

.product-includes li::before {
  content: '✓';
  color: var(--gold-light);
  font-weight: 700;
  flex-shrink: 0;
}

.product-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(184,148,90,0.15);
}

.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
}

.product-price span {
  font-size: 0.85rem;
  font-family: 'Source Sans 3', sans-serif;
  color: rgba(245,240,232,0.4);
  font-weight: 400;
  display: block;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.bonus-card {
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(184,148,90,0.2);
  border-radius: 4px;
  padding: 24px 28px;
  display: flex; gap: 16px; align-items: flex-start;
}

.bonus-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  opacity: 0.7;
}

.bonus-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--cream-dark);
  margin-bottom: 4px;
}

.bonus-card p {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.45);
  line-height: 1.6;
  margin-bottom: 0;
}

/* =============================================
   LEAD MAGNET
============================================= */
.section-leadmagnet {
  background: var(--forest-mid);
  padding: 80px;
  position: relative;
  overflow: hidden;
}

.section-leadmagnet::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(184,148,90,0.06) 0%, transparent 70%);
}

.leadmagnet-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative; z-index: 1;
}

.magnet-offer-box {
  background: rgba(30,58,47,0.6);
  border: 1px solid rgba(184,148,90,0.3);
  border-radius: 4px;
  padding: 32px 40px;
  margin-bottom: 32px;
}

.magnet-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.magnet-subtitle {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.55);
}

.email-form {
  display: flex; gap: 12px;
}

.email-form input[type="email"] {
  flex: 1;
  background: rgba(245,240,232,0.1);
  border: 1px solid rgba(184,148,90,0.3);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}

.email-form input[type="email"]::placeholder {
  color: rgba(245,240,232,0.35);
}

.email-form input[type="email"]:focus {
  border-color: var(--gold);
}

.email-form button {
  background: var(--gold);
  color: var(--forest-deep);
  border: none;
  padding: 14px 28px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.email-form button:hover { background: var(--gold-light); }

.form-note {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.35);
  margin-top: 12px;
}

/* =============================================
   TESTIMONIALS
============================================= */
.section-testimonials {
  background: var(--cream);
  padding: 100px 80px;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.testi-card {
  background: var(--cream-warm);
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
  padding: 36px 32px;
}

.testi-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 8px;
}

.testi-text {
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 24px;
}

.testi-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--forest-deep);
  letter-spacing: 0.05em;
}

.testi-detail {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 12px; }

/* =============================================
   PAGE HERO (interior pages)
============================================= */
.page-hero {
  background: var(--forest-deep);
  padding: 140px 80px 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 100% at 80% 50%, rgba(46,94,72,0.35) 0%, transparent 70%);
}

.page-hero-inner {
  max-width: 800px;
  position: relative; z-index: 1;
}

.breadcrumb {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}

.breadcrumb a { color: rgba(245,240,232,0.4); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold-light); }

.page-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}

.page-eyebrow::before {
  content: '';
  display: block; width: 32px; height: 1px;
  background: var(--gold);
}

.page-hero h1 {
  color: var(--cream);
  margin-bottom: 24px;
}

.page-hero h1 em { color: var(--gold-light); }

.page-hero-sub {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(245,240,232,0.7);
  max-width: 600px;
  line-height: 1.8;
}

/* =============================================
   ABOUT PAGE
============================================= */
.story-main {
  padding: 0 80px 80px;
  background: var(--forest-deep);
}

.story-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  padding-top: 60px;
}

.author-photo-wrap {
  position: sticky;
  top: 100px;
}

.author-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--forest-mid);
  border: 2px solid rgba(184,148,90,0.3);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  margin-bottom: 20px;
}

.author-photo img {
  width: 100%; height: 100%; object-fit: cover;
}

.author-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
}

.author-title {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.45);
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  line-height: 1.5;
}

.author-stats { display: flex; flex-direction: column; gap: 12px; }

.author-stat {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,148,90,0.15);
  border-radius: 2px;
}

.author-stat-icon { font-size: 1rem; flex-shrink: 0; }

.author-stat-text {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.6);
  line-height: 1.4;
}

.author-stat-text strong {
  display: block;
  color: var(--cream-dark);
  font-weight: 600;
}

.chapter {
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(184,148,90,0.1);
}

.chapter:last-child { border-bottom: none; margin-bottom: 0; }

.chapter-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
}

.chapter-label::after {
  content: '';
  display: block; width: 28px; height: 1px;
  background: var(--gold); opacity: 0.5;
}

.chapter h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 28px;
}

.chapter h2 em { color: var(--gold-light); }

.chapter p {
  font-family: 'Lora', serif;
  font-size: 1.02rem;
  color: rgba(245,240,232,0.8);
  line-height: 1.95;
  margin-bottom: 20px;
}

.pull-quote {
  margin: 36px 0;
  padding: 32px 36px;
  border-left: 3px solid var(--gold);
  background: rgba(184,148,90,0.06);
  border-radius: 0 4px 4px 0;
}

.pull-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold-pale);
  line-height: 1.6;
  margin-bottom: 0 !important;
}

.turning-point {
  background: rgba(46,94,72,0.3);
  border: 1px solid rgba(184,148,90,0.25);
  border-radius: 4px;
  padding: 32px 36px;
  margin: 36px 0;
  position: relative;
}

.turning-point::before {
  content: 'The Turning Point';
  position: absolute; top: -10px; left: 24px;
  background: var(--forest-deep);
  padding: 0 12px;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
}

.turning-point p {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: rgba(245,240,232,0.85);
  line-height: 1.9;
  margin-bottom: 0 !important;
}

/* =============================================
   FINDINGS SECTION
============================================= */
.section-findings {
  background: var(--cream-warm);
  padding: 100px 80px;
  border-top: 3px solid var(--forest-deep);
}

.findings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.finding-card {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
  padding: 36px 28px;
}

.finding-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--forest-deep);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: 12px;
}

.finding-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 10px;
}

.finding-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0;
}

/* =============================================
   MISSION SECTION
============================================= */
.section-mission {
  background: var(--forest);
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
}

.section-mission::after {
  content: 'NCC';
  position: absolute; right: -20px; bottom: -40px;
  font-family: 'Playfair Display', serif;
  font-size: 18rem;
  font-weight: 700;
  color: rgba(245,240,232,0.03);
  line-height: 1;
  pointer-events: none;
}

.mission-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.mission-body {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: rgba(245,240,232,0.78);
  line-height: 1.95;
  margin-bottom: 20px;
}

.promise-list { list-style: none; margin-top: 36px; }

.promise-list li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(184,148,90,0.12);
  font-size: 0.92rem;
  color: rgba(245,240,232,0.72);
  line-height: 1.6;
}

.promise-list li:last-child { border-bottom: none; }

.promise-check {
  width: 22px; height: 22px;
  background: rgba(184,148,90,0.15);
  border: 1px solid rgba(184,148,90,0.3);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--gold-light);
  margin-top: 1px;
}

.mission-cta-block {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,148,90,0.25);
  border-radius: 4px;
  padding: 40px 36px;
}

.mission-cta-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.25;
}

.mission-cta-block p {
  font-size: 0.92rem;
  color: rgba(245,240,232,0.6);
  line-height: 1.8;
  margin-bottom: 28px;
}

.btn-ghost-sm {
  display: block;
  text-align: center;
  color: rgba(245,240,232,0.4);
  font-size: 0.8rem;
  text-decoration: none;
  margin-top: 12px;
  transition: color 0.2s;
}

.btn-ghost-sm:hover { color: var(--gold-light); }

/* =============================================
   BLOG PAGE
============================================= */
.section-blog {
  background: var(--cream);
  padding: 80px;
}

.blog-grid {
  max-width: var(--max-width); margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.blog-posts { }

.blog-card {
  background: var(--cream-warm);
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
  padding: 36px 32px;
  margin-bottom: 24px;
  transition: border-color 0.2s;
}

.blog-card:hover { border-color: var(--gold); }

.blog-card-meta {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 600;
}

.blog-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-card h3 a { color: var(--forest-deep); text-decoration: none; }
.blog-card h3 a:hover { color: var(--forest-light); }

.blog-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.blog-read-more {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--forest-light);
  letter-spacing: 0.05em;
  text-decoration: none;
  border-bottom: 1px solid rgba(46,94,72,0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.blog-read-more:hover { color: var(--gold); border-color: var(--gold); }

.blog-sidebar-widget {
  background: var(--cream-warm);
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
  padding: 32px 28px;
  margin-bottom: 24px;
}

.widget-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--forest-deep);
}

/* =============================================
   PRIVACY PAGE
============================================= */
.section-privacy {
  background: var(--cream);
  padding: 80px;
}

.privacy-inner {
  max-width: 820px;
  margin: 0 auto;
}

.privacy-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin: 40px 0 16px;
  padding-top: 40px;
  border-top: 1px solid var(--cream-dark);
}

.privacy-inner h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }

.privacy-inner p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 16px;
}

.privacy-inner ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}

.privacy-inner ul li {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 8px;
}

/* =============================================
   DISCLAIMER / LEGAL
============================================= */
.section-disclaimer {
  background: var(--cream);
  padding: 60px 80px;
  border-top: 1px solid var(--cream-dark);
}

.disclaimer-inner {
  max-width: 800px; margin: 0 auto;
  text-align: center;
}

.disclaimer-inner h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.disclaimer-inner p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.8;
  opacity: 0.7;
  margin-bottom: 0;
}

/* =============================================
   FOOTER
============================================= */
#site-footer {
  background: var(--forest-deep);
  padding: 60px 80px 32px;
  border-top: 2px solid rgba(184,148,90,0.2);
}

.footer-grid {
  max-width: var(--max-width); margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--cream);
  letter-spacing: 0.04em;
  text-decoration: none;
  line-height: 1.2;
  display: block;
  margin-bottom: 16px;
}

.footer-brand-name span {
  color: var(--gold-light);
  display: block;
  font-size: 0.7rem;
  font-style: italic;
  letter-spacing: 0.12em;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.45);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--cream-dark);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }

.footer-col a {
  font-size: 0.83rem;
  color: rgba(245,240,232,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom {
  max-width: var(--max-width); margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.28);
}

.footer-disclaimer {
  max-width: var(--max-width); margin: 24px auto 0;
  font-size: 0.72rem;
  color: rgba(245,240,232,0.22);
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 20px;
}

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

.hero-content > * { animation: fadeUp 0.7s ease both; }
.hero-eyebrow { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.22s; }
.hero-sub { animation-delay: 0.34s; }
.hero-actions { animation-delay: 0.46s; }
.hero-visual { animation: fadeUp 0.7s ease 0.3s both; }

.page-hero-inner > * { animation: fadeUp 0.6s ease both; }
.breadcrumb { animation-delay: 0.05s; }
.page-eyebrow { animation-delay: 0.15s; }
.page-hero h1 { animation-delay: 0.25s; }
.page-hero-sub { animation-delay: 0.35s; }

/* =============================================
   WORDPRESS CORE COMPATIBILITY
============================================= */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--text-muted); font-style: italic; margin-top: 8px; }
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { margin: 0 auto 16px; display: block; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); position: absolute !important; height: 1px; width: 1px; overflow: hidden; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .findings-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  #site-header { padding: 0 24px; }
  #primary-navigation { display: none; }
  .nav-toggle { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; padding: 120px 24px 60px; }
  .hero-content { padding: 0; }
  .hero-sub { max-width: 100%; }
  .hero-visual { padding: 40px 0 0; }

  .section-problem,
  .section-story,
  .section-solution,
  .section-products,
  .section-leadmagnet,
  .section-testimonials,
  .section-findings,
  .section-mission,
  .section-disclaimer,
  .section-blog,
  .section-privacy,
  .story-main,
  #site-footer { padding-left: 24px; padding-right: 24px; }

  .problem-grid,
  .pillars,
  .products-grid,
  .bonus-grid,
  .testi-grid,
  .findings-grid { grid-template-columns: 1fr; }

  .story-inner { grid-template-columns: 1fr; gap: 40px; }
  .story-layout { grid-template-columns: 1fr; gap: 40px; }
  .mission-inner { grid-template-columns: 1fr; gap: 48px; }
  .blog-grid { grid-template-columns: 1fr; }
  .email-form { flex-direction: column; }
  .book-stack { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
