/* ═══════════════════════════════════════════════════
   SmartDogFix — Main Stylesheet
   Palette: forest green + amber + warm cream
═══════════════════════════════════════════════════ */

/* ── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; color: #2C1F14; background: #FDFAF5; line-height: 1.7; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── TOKENS ────────────────────────────────────────── */
:root {
  --forest:    #2D6A4F;
  --forest2:   #245A41;
  --forest-dk: #1A3D2B;
  --amber:     #E07B39;
  --amber2:    #C96B2A;
  --cream:     #FDFAF5;
  --cream2:    #F5EFE4;
  --cream3:    #EDE4D5;
  --border:    #DDD3C3;
  --text:      #2C1F14;
  --muted:     #7A6B57;
  --white:     #FFFFFF;
  --dark:      #1A120A;
}

/* ── TYPOGRAPHY ────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Lora', Georgia, serif; line-height: 1.25; color: var(--text); }
h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem);   font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }
h4 { font-size: 1rem;    font-weight: 700; }
p  { font-size: 1rem; line-height: 1.75; }

/* ── UTILITIES ─────────────────────────────────────── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 720px; }
.eyebrow {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--forest); margin-bottom: 10px;
  font-family: 'Inter', system-ui, sans-serif;
}
.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--muted); max-width: 520px; margin: 0 auto; }

/* ── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-block; padding: 13px 28px; border-radius: 6px;
  font-weight: 700; font-size: 0.95rem; cursor: pointer; border: none;
  transition: background .2s, transform .1s; font-family: 'Inter', system-ui, sans-serif;
}
.btn:active { transform: scale(.98); }
.btn-amber  { background: var(--amber);  color: #fff; }
.btn-amber:hover  { background: var(--amber2); }
.btn-forest { background: var(--forest); color: #fff; }
.btn-forest:hover { background: var(--forest2); }
.btn-outline { background: transparent; border: 2px solid var(--forest); color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: #fff; }

/* ── TAGS ──────────────────────────────────────────── */
.tag {
  display: inline-block; font-size: .72rem; font-weight: 700;
  padding: 3px 10px; border-radius: 20px; text-transform: uppercase;
  letter-spacing: .06em; font-family: 'Inter', system-ui, sans-serif;
}
.tag-review  { background: #FEF3E2; color: #92400E; border: 1px solid #FBD89C; }
.tag-guide   { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }
.tag-compare { background: #F5F3FF; color: #5B21B6; border: 1px solid #C4B5FD; }

/* ── BREADCRUMB ────────────────────────────────────── */
.breadcrumb { padding: 12px 0; background: var(--cream2); border-bottom: 1px solid var(--border); }
.breadcrumb-inner { font-size: .8rem; color: var(--muted); font-family: 'Inter', system-ui, sans-serif; }
.breadcrumb-inner a { color: var(--forest); font-weight: 600; }
.breadcrumb-inner a:hover { color: var(--amber); }

/* ══════════════════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════════════════ */
.site-header {
  background: var(--cream); border-bottom: 2px solid var(--cream3);
  position: sticky; top: 0; z-index: 100;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; max-width: 1080px; margin: 0 auto; height: 68px;
}
.logo {
  font-size: 1.35rem; font-weight: 700; color: var(--forest);
  display: flex; align-items: center; gap: 8px;
  font-family: 'Lora', Georgia, serif;
}
.logo em { color: var(--amber); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; }
.nav-links a {
  color: var(--muted); font-size: .9rem; font-weight: 600;
  transition: color .2s; font-family: 'Inter', system-ui, sans-serif;
}
.nav-links a:hover, .nav-links a.active { color: var(--forest); }
.nav-links .nav-cta a {
  background: var(--amber); color: #fff !important;
  padding: 8px 16px; border-radius: 5px;
}
.nav-links .nav-cta a:hover { background: var(--amber2); }
.nav-toggle { display: none; }

/* ══════════════════════════════════════════════════════
   HOMEPAGE
══════════════════════════════════════════════════════ */
.hero {
  background: var(--cream2); border-bottom: 1px solid var(--cream3);
  padding: 72px 24px 80px;
}
.hero-layout {
  display: grid; grid-template-columns: 1fr 300px; gap: 64px; align-items: center;
}
.greeting {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--cream3); border-radius: 40px;
  padding: 7px 18px; font-size: .875rem; font-weight: 600; color: var(--muted);
  margin-bottom: 22px; font-family: 'Inter', system-ui, sans-serif;
}
.hero-text h1 { margin-bottom: 20px; }
.hero-text h1 em { color: var(--forest); font-style: normal; }
.lead { font-size: 1.05rem; color: var(--muted); margin-bottom: 14px; max-width: 520px; }
.signature { font-family: 'Lora', Georgia, serif; font-style: italic; color: var(--forest); font-size: 1rem; margin-bottom: 30px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.jake-card {
  background: var(--white); border: 1px solid var(--cream3);
  border-radius: 20px; padding: 28px 22px; text-align: center;
  box-shadow: 0 4px 20px rgba(45,32,20,.07);
}
.jake-avatar-wrap { margin: 0 auto 16px; width: 100px; height: 100px; border-radius: 50%; overflow: hidden; }
.jake-photo { width: 100%; height: 100%; object-fit: cover; }
.jake-avatar-placeholder {
  width: 100px; height: 100px; background: linear-gradient(135deg, var(--forest), #1E4D36);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 3rem; margin: 0 auto 16px;
}
.jake-card h3 { margin-bottom: 4px; font-size: 1.2rem; }
.jake-title { color: var(--muted); font-size: .85rem; margin-bottom: 14px; font-family: 'Inter', system-ui, sans-serif; }
.jake-quote { background: var(--cream2); border-radius: 10px; padding: 14px 16px; font-style: italic; color: var(--muted); font-size: .875rem; line-height: 1.65; text-align: left; font-family: 'Lora', Georgia, serif; }
.jake-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 14px; }
.jake-tag { background: var(--cream2); color: var(--forest); font-size: .75rem; font-weight: 600; padding: 4px 10px; border-radius: 20px; font-family: 'Inter', system-ui, sans-serif; }

/* STORY */
.story-section { padding: 80px 0; background: var(--white); }
.story-inner { display: grid; grid-template-columns: 1fr 360px; gap: 64px; align-items: start; }
.story-body h2 { margin-bottom: 18px; }
.story-body p { color: var(--muted); margin-bottom: 16px; }
.story-body p strong { color: var(--text); }
.pullquote {
  background: var(--cream2); border-left: 4px solid var(--amber);
  border-radius: 0 10px 10px 0; padding: 18px 22px; margin: 28px 0;
  font-style: italic; color: var(--text); font-size: 1.05rem; line-height: 1.7;
  font-family: 'Lora', Georgia, serif;
}
.story-sidebar { position: sticky; top: 88px; }

/* FREEBIE CARD */
.freebie-card {
  background: linear-gradient(145deg, var(--forest), #1E4D36);
  border-radius: 16px; padding: 30px 26px; color: white; text-align: center;
  box-shadow: 0 8px 32px rgba(45,106,79,.3);
}
.freebie-card .freebie-icon { font-size: 3.2rem; margin-bottom: 12px; }
.freebie-card h3 { color: white; margin-bottom: 10px; font-size: 1.2rem; }
.freebie-card p { color: rgba(255,255,255,.8); font-size: .9rem; margin-bottom: 18px; }
.freebie-bullets { list-style: none; text-align: left; margin-bottom: 20px; }
.freebie-bullet { display: flex; gap: 8px; align-items: flex-start; color: rgba(255,255,255,.85); font-size: .875rem; margin-bottom: 8px; }
.freebie-bullet li { display: flex; gap: 8px; }
.tick { color: #6EE7B7; flex-shrink: 0; }
.freebie-input { width: 100%; padding: 12px 16px; border: none; border-radius: 6px; font-size: .95rem; margin-bottom: 10px; font-family: 'Inter', system-ui, sans-serif; }
.freebie-note { color: rgba(255,255,255,.45); font-size: .75rem; margin-top: 10px; }

/* WHAT'S HERE */
.whats-here { padding: 80px 0; background: var(--cream2); }
.whats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.whats-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 14px;
  padding: 28px 24px; transition: box-shadow .2s, transform .2s; display: block;
}
.whats-card:hover { box-shadow: 0 6px 24px rgba(45,32,20,.1); transform: translateY(-3px); }
.whats-icon { font-size: 2.2rem; margin-bottom: 14px; }
.whats-card h3 { color: var(--forest); margin-bottom: 8px; font-size: 1.05rem; }
.whats-card p { color: var(--muted); font-size: .9rem; line-height: 1.65; }
.card-link { display: inline-flex; align-items: center; gap: 5px; color: var(--amber); font-size: .875rem; font-weight: 700; margin-top: 14px; font-family: 'Inter', system-ui, sans-serif; }

/* ARTICLES GRID */
.latest-section { padding: 80px 0; background: var(--white); }
.articles-grid, .blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px; }
.article-card {
  background: var(--cream); border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; transition: box-shadow .2s, transform .2s; display: flex; flex-direction: column;
}
.article-card:hover { box-shadow: 0 6px 24px rgba(45,32,20,.09); transform: translateY(-3px); }
.card-thumb {
  height: 155px; display: flex; align-items: center; justify-content: center;
  font-size: 3rem; background-size: cover; background-position: center;
}
.card-thumb.has-image { font-size: 0; }
.thumb-forest { background: linear-gradient(135deg, var(--forest), var(--forest2)); }
.thumb-amber  { background: linear-gradient(135deg, var(--amber), var(--amber2)); }
.thumb-warm   { background: linear-gradient(135deg, #8B5E3C, #6B4226); }
.card-body { padding: 20px; flex: 1; }
.card-body .tag { margin-bottom: 10px; }
.card-body h3 { margin-bottom: 8px; font-size: 1rem; }
.card-body h3 a { color: var(--text); }
.card-body h3 a:hover { color: var(--forest); }
.card-body p { color: var(--muted); font-size: .875rem; line-height: 1.65; }
.card-footer {
  padding: 13px 20px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'Inter', system-ui, sans-serif;
}
.read-time { color: var(--muted); font-size: .8rem; }
.read-link { color: var(--forest); font-weight: 700; font-size: .875rem; }
.read-link:hover { color: var(--amber); }

/* OPT-IN STRIP */
.optin-strip { background: linear-gradient(135deg, var(--forest-dk), var(--forest)); padding: 72px 24px; color: white; text-align: center; }
.optin-inner { max-width: 560px; margin: 0 auto; }
.optin-strip .eyebrow { color: #6EE7B7; }
.optin-strip h2 { color: white; margin-bottom: 14px; }
.optin-strip p { color: rgba(255,255,255,.78); margin-bottom: 30px; }
.optin-form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; }
.optin-form input { flex: 1; padding: 13px 16px; border-radius: 6px; border: none; font-size: .95rem; font-family: 'Inter', system-ui, sans-serif; }
.optin-form input:focus { outline: 2px solid var(--amber); }
.optin-disclaimer { margin-top: 12px; color: rgba(255,255,255,.45); font-size: .78rem; }

/* BLOG */
.blog-hero { background: var(--cream2); padding: 56px 24px; border-bottom: 1px solid var(--border); text-align: center; }
.blog-hero h1 { margin-bottom: 12px; }
.blog-hero p { color: var(--muted); max-width: 480px; margin: 0 auto; }
.blog-content { padding: 72px 0; background: var(--cream); }
.pagination { text-align: center; margin-top: 48px; }
.pagination .page-numbers { display: inline-block; padding: 8px 14px; margin: 0 3px; border: 1px solid var(--border); border-radius: 6px; color: var(--text); font-family: 'Inter', system-ui, sans-serif; }
.pagination .current { background: var(--forest); color: white; border-color: var(--forest); }

/* ══════════════════════════════════════════════════════
   MONEY PAGE (Review)
══════════════════════════════════════════════════════ */
.money-hero {
  background: linear-gradient(135deg, #1A3D2B, var(--forest), #3A7D5A);
  padding: 72px 24px 80px; color: white;
}
.money-hero-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.verdict-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  color: white; font-size: .8rem; font-weight: 700; padding: 6px 16px;
  border-radius: 30px; margin-bottom: 20px; text-transform: uppercase;
  letter-spacing: .07em; font-family: 'Inter', system-ui, sans-serif;
}
.money-hero h1 { color: white; margin-bottom: 18px; }
.subhead { color: rgba(255,255,255,.82); font-size: 1.1rem; max-width: 580px; margin: 0 auto 28px; }
.stars-large { color: #FCD34D; font-size: 1.6rem; letter-spacing: 3px; margin-bottom: 6px; }
.rating-sub { color: rgba(255,255,255,.65); font-size: .875rem; font-family: 'Inter', system-ui, sans-serif; }

.money-body { padding: 72px 0; background: var(--cream); }
.money-layout { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; }

.review-content h2 { margin-bottom: 14px; margin-top: 36px; }
.review-content h2:first-child { margin-top: 0; }
.review-content p { color: var(--muted); margin-bottom: 16px; }
.review-content p strong { color: var(--text); }

.verdict-box {
  background: #ECFDF5; border: 1px solid #A7F3D0;
  border-left: 4px solid var(--forest); border-radius: 0 12px 12px 0;
  padding: 20px 22px; margin: 28px 0;
}
.verdict-box strong { color: #065F46; font-size: .875rem; display: block; margin-bottom: 6px; font-family: 'Inter', system-ui, sans-serif; }
.verdict-box p { color: #047857; margin: 0; }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 28px 0; }
.pros, .cons { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 20px; }
.pros h4 { color: var(--forest); margin-bottom: 12px; font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; }
.cons h4 { color: #B45309; margin-bottom: 12px; font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; }
.pros ul, .cons ul { list-style: none; }
.pros li, .cons li { display: flex; gap: 8px; font-size: .9rem; color: var(--muted); margin-bottom: 8px; line-height: 1.5; }
.mark { flex-shrink: 0; }
.pros .mark { color: var(--forest); }
.cons .mark { color: #D97706; }

.review-sidebar { position: sticky; top: 88px; }
.buy-box {
  background: var(--white); border: 2px solid var(--forest);
  border-radius: 16px; padding: 28px;
  box-shadow: 0 4px 20px rgba(45,106,79,.12); margin-bottom: 20px;
}
.product-icon { font-size: 2.8rem; text-align: center; margin-bottom: 14px; }
.buy-box h3 { text-align: center; margin-bottom: 4px; font-size: 1.1rem; }
.by-line { color: var(--muted); font-size: .825rem; text-align: center; margin-bottom: 18px; font-family: 'Inter', system-ui, sans-serif; }
.score-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: .875rem; font-family: 'Inter', system-ui, sans-serif; }
.score-row:last-of-type { border-bottom: none; }
.score-row .label { color: var(--muted); }
.stars-sm { color: #F59E0B; }
.cta-block { margin-top: 20px; text-align: center; }
.price-display { font-size: 1.6rem; font-weight: 800; color: var(--forest); margin-bottom: 14px; font-family: 'Inter', system-ui, sans-serif; }
.price-display span { font-size: .9rem; font-weight: 400; color: var(--muted); }
.buy-box .btn { width: 100%; text-align: center; font-size: 1rem; padding: 15px; }
.guarantee { color: var(--muted); font-size: .78rem; text-align: center; margin-top: 10px; font-family: 'Inter', system-ui, sans-serif; }

.author-mini {
  background: var(--cream2); border: 1px solid var(--border); border-radius: 12px;
  padding: 18px; display: flex; gap: 14px; align-items: center;
}
.author-mini .avi { width: 48px; height: 48px; border-radius: 50%; background: var(--forest); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.author-mini strong { display: block; font-size: .9rem; color: var(--text); font-family: 'Inter', system-ui, sans-serif; }
.author-mini span { font-size: .8rem; color: var(--muted); font-family: 'Inter', system-ui, sans-serif; }

/* ══════════════════════════════════════════════════════
   SINGLE ARTICLE
══════════════════════════════════════════════════════ */
.article-hero { position: relative; background: var(--cream2); padding: 56px 0 0; }
.article-hero-image img { width: 100%; max-height: 480px; object-fit: cover; }
.article-hero-text { padding: 36px 0 32px; }
.article-hero-text .tag { margin-bottom: 14px; }
.article-hero-text h1 { margin-bottom: 16px; }
.article-meta { display: flex; gap: 20px; flex-wrap: wrap; font-size: .875rem; color: var(--muted); font-family: 'Inter', system-ui, sans-serif; }
.meta-author strong { color: var(--forest); }

.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 56px; padding: 56px 24px; align-items: start; }
.article-content { max-width: 100%; }
.article-content h2 { margin: 36px 0 14px; }
.article-content h3 { margin: 28px 0 10px; }
.article-content p  { color: var(--muted); margin-bottom: 18px; }
.article-content p strong { color: var(--text); }
.article-content ul, .article-content ol { margin: 0 0 18px 24px; color: var(--muted); }
.article-content li { margin-bottom: 6px; line-height: 1.7; }
.article-content blockquote.pullquote { margin: 32px 0; }
.article-content img { border-radius: 10px; margin: 24px 0; }

.article-cta-box { background: linear-gradient(135deg, var(--forest-dk), var(--forest)); border-radius: 14px; padding: 24px; margin: 40px 0; }
.cta-box-inner { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.cta-box-icon { font-size: 2.5rem; flex-shrink: 0; }
.cta-box-text { flex: 1; min-width: 200px; }
.cta-box-text strong { color: white; display: block; margin-bottom: 6px; font-family: 'Lora', Georgia, serif; font-size: 1rem; }
.cta-box-text p { color: rgba(255,255,255,.8); font-size: .875rem; margin: 0; }

.author-box { display: flex; gap: 18px; background: var(--cream2); border: 1px solid var(--border); border-radius: 14px; padding: 24px; margin-top: 40px; }
.author-avatar { width: 60px; height: 60px; border-radius: 50%; background: var(--forest); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; flex-shrink: 0; }
.author-info strong { display: block; color: var(--text); margin-bottom: 2px; font-family: 'Lora', Georgia, serif; }
.author-info span { font-size: .8rem; color: var(--muted); display: block; margin-bottom: 8px; font-family: 'Inter', system-ui, sans-serif; }
.author-info p { font-size: .875rem; color: var(--muted); margin: 0; }

/* Sidebar */
.article-sidebar { position: sticky; top: 88px; }
.sidebar-freebie { background: linear-gradient(145deg, var(--forest), #1E4D36); border-radius: 14px; padding: 24px; color: white; margin-bottom: 20px; }
.sidebar-freebie .freebie-icon { font-size: 2.5rem; text-align: center; margin-bottom: 10px; }
.sidebar-freebie h4 { color: white; margin-bottom: 8px; font-size: 1rem; }
.sidebar-freebie p { color: rgba(255,255,255,.8); font-size: .875rem; margin-bottom: 14px; }

.sidebar-related h4 { color: var(--text); margin-bottom: 14px; }
.related-item { display: block; padding: 12px 0; border-bottom: 1px solid var(--border); }
.related-item:last-child { border-bottom: none; }
.related-item .tag { margin-bottom: 4px; }
.related-item span { display: block; font-size: .875rem; color: var(--text); font-family: 'Lora', Georgia, serif; line-height: 1.4; }
.related-item:hover span { color: var(--forest); }

.sidebar-review-box { background: var(--cream2); border: 1px solid var(--border); border-radius: 12px; padding: 20px; margin-top: 20px; }
.sidebar-review-box h4 { text-align: center; margin-bottom: 8px; }

/* ══════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════ */
.about-hero { background: var(--cream2); padding: 60px 24px; border-bottom: 1px solid var(--border); }
.about-hero h1 { margin-bottom: 14px; }
.about-hero p { color: var(--muted); font-size: 1.05rem; max-width: 540px; }
.about-content { padding: 72px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 260px 1fr; gap: 60px; align-items: start; }
.about-sidebar { position: sticky; top: 88px; }
.jake-big-card { background: var(--cream2); border: 1px solid var(--border); border-radius: 16px; padding: 28px 22px; text-align: center; }
.big-avatar-wrap { width: 90px; height: 90px; border-radius: 50%; overflow: hidden; margin: 0 auto 16px; }
.about-photo { width: 100%; height: 100%; object-fit: cover; }
.big-avatar { width: 90px; height: 90px; background: linear-gradient(135deg, var(--forest), #1E4D36); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.8rem; margin: 0 auto 16px; }
.jake-big-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.role { color: var(--muted); font-size: .85rem; margin-bottom: 16px; font-family: 'Inter', system-ui, sans-serif; }
.stat-row { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 14px; }
.stat-chip { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 4px 10px; font-size: .73rem; font-weight: 600; color: var(--forest); font-family: 'Inter', system-ui, sans-serif; }
.about-body h2 { margin-bottom: 14px; margin-top: 32px; }
.about-body h2:first-child { margin-top: 0; }
.about-body p { color: var(--muted); margin-bottom: 16px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px; }
.value-card { background: var(--cream2); border: 1px solid var(--border); border-radius: 12px; padding: 20px; }
.value-card .icon { font-size: 1.8rem; margin-bottom: 10px; }
.value-card h4 { color: var(--forest); margin-bottom: 6px; font-family: 'Inter', system-ui, sans-serif; font-size: .95rem; }
.value-card p { color: var(--muted); font-size: .875rem; margin: 0; }
.disclosure-note { font-size: .875rem; color: var(--muted); margin-top: 24px; }
.disclosure-note strong { color: var(--text); }
.jake-sign { font-family: 'Lora', Georgia, serif; font-style: italic; color: var(--forest); font-size: 1.1rem; margin-top: 16px; }

/* ══════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════ */
.contact-hero { background: var(--cream2); padding: 60px 24px; border-bottom: 1px solid var(--border); text-align: center; }
.contact-hero h1 { margin-bottom: 12px; }
.contact-hero p { color: var(--muted); }
.contact-content { padding: 72px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: start; }
.contact-info h2 { margin-bottom: 14px; }
.contact-info p { color: var(--muted); margin-bottom: 24px; }
.contact-card { background: var(--cream2); border: 1px solid var(--border); border-radius: 12px; padding: 16px; margin-bottom: 14px; display: flex; align-items: flex-start; gap: 14px; }
.contact-card .ci { font-size: 1.4rem; flex-shrink: 0; }
.contact-card strong { display: block; color: var(--text); margin-bottom: 3px; font-family: 'Inter', system-ui, sans-serif; font-size: .9rem; }
.contact-card p { color: var(--muted); font-size: .875rem; margin: 0; }
.contact-form { background: var(--cream2); border: 1px solid var(--border); border-radius: 16px; padding: 36px; }
.contact-form h3 { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 0; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--text); font-family: 'Inter', system-ui, sans-serif; }
.form-group input, .form-group select, .form-group textarea {
  padding: 11px 14px; border: 1px solid var(--border); border-radius: 7px;
  font-size: .95rem; font-family: 'Inter', system-ui, sans-serif;
  color: var(--text); background: white; transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--forest); box-shadow: 0 0 0 3px rgba(45,106,79,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .78rem; color: var(--muted); margin-top: 10px; font-family: 'Inter', system-ui, sans-serif; }
.form-success { background: #ECFDF5; border: 1px solid #A7F3D0; border-radius: 8px; padding: 14px 16px; color: #065F46; margin-bottom: 20px; font-family: 'Inter', system-ui, sans-serif; }

/* ══════════════════════════════════════════════════════
   GENERIC PAGE
══════════════════════════════════════════════════════ */
.generic-page { padding: 72px 0; background: var(--white); }
.page-content h1 { margin-bottom: 24px; }
.entry-content p { color: var(--muted); margin-bottom: 16px; }
.entry-content h2 { margin: 32px 0 14px; }
.entry-content ul, .entry-content ol { margin: 0 0 16px 24px; color: var(--muted); }
.entry-content li { margin-bottom: 6px; line-height: 1.7; }
.entry-content a { color: var(--forest); text-decoration: underline; }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.site-footer { background: var(--dark); color: rgba(255,255,255,.5); padding: 52px 24px 28px; }
.footer-inner { max-width: 1080px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo { font-size: 1.25rem; font-weight: 700; color: white; font-family: 'Lora', Georgia, serif; margin-bottom: 12px; display: flex; align-items: center; gap: 7px; }
.footer-logo em { color: var(--amber); font-style: normal; }
.footer-brand p { font-size: .85rem; line-height: 1.7; max-width: 300px; }
.footer-col h4 { color: rgba(255,255,255,.85); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; font-family: 'Inter', system-ui, sans-serif; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: .85rem; transition: color .2s; font-family: 'Inter', system-ui, sans-serif; }
.footer-col ul a:hover { color: var(--amber); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: .8rem; font-family: 'Inter', system-ui, sans-serif; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { transition: color .2s; }
.footer-links a:hover { color: var(--amber); }
.footer-disclaimer { font-size: .72rem; color: rgba(255,255,255,.28); max-width: 780px; line-height: 1.6; margin-top: 20px; font-family: 'Inter', system-ui, sans-serif; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-layout    { grid-template-columns: 1fr; }
  .jake-card      { display: none; }
  .story-inner    { grid-template-columns: 1fr; }
  .story-sidebar  { position: static; }
  .whats-grid     { grid-template-columns: 1fr 1fr; }
  .money-layout   { grid-template-columns: 1fr; }
  .review-sidebar { position: static; }
  .about-grid     { grid-template-columns: 1fr; }
  .about-sidebar  { position: static; }
  .about-values   { grid-template-columns: 1fr; }
  .contact-grid   { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; padding: 40px 24px; }
  .article-sidebar { position: static; }
  .pros-cons      { grid-template-columns: 1fr; }
  .footer-top     { grid-template-columns: 1fr; gap: 28px; }
  .optin-form     { flex-direction: column; }
  .form-row       { grid-template-columns: 1fr; }
  .cta-box-inner  { flex-direction: column; }
}
@media (max-width: 600px) {
  .nav-links      { display: none; }
  .nav-toggle     { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
  .nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }
  .whats-grid     { grid-template-columns: 1fr; }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.35rem; }
}
