/*
Theme Name: High Society Moms
Theme URI: https://highsocietymoms.com
Author: High Society Moms
Author URI: https://highsocietymoms.com
Description: An editorial cannabis wellness theme for the modern mom. Modern botanical luxury — editorial, warm, and witty.
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: high-society-moms
Tags: blog, lifestyle, two-columns, custom-header, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ==========================================================================
   1. CSS CUSTOM PROPERTIES / DESIGN TOKENS
   ========================================================================== */

:root {
  --forest:       #2D5016;
  --forest-dark:  #1E3510;
  --forest-mid:   #3a6620;
  --gold:         #C9A055;
  --gold-light:   #E2C07D;
  --cream:        #FAF8F4;
  --cream-dark:   #F2EDE4;
  --charcoal:     #2B2B2B;
  --mist:         #6B6B6B;
  --border:       #E0D9CE;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', -apple-system, sans-serif;

  --radius:       4px;
  --radius-lg:    8px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.16);
  --transition:   0.25s ease;
  --max-width:    1200px;
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--cream);
  position: relative;
  overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.03'/></svg>");
  background-repeat: repeat;
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

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

ul, ol { padding-left: 1.5rem; }

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

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

blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--cream-dark);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--forest);
  border-radius: 0 var(--radius) var(--radius) 0;
}

blockquote cite {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  color: var(--mist);
  letter-spacing: 0.05em;
}

code, kbd, samp {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.875rem;
  background: var(--cream-dark);
  padding: 0.2em 0.45em;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  color: var(--forest-dark);
}

pre {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

pre code { background: none; border: none; padding: 0; }

/* ==========================================================================
   4. LAYOUT UTILITIES
   ========================================================================== */

.container {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.container--narrow {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.btn--primary:hover {
  background: var(--forest-mid);
  border-color: var(--forest-mid);
  color: var(--cream);
}

.btn--outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn--outline:hover { background: var(--forest); color: var(--cream); }

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250,248,244,0.5);
}
.btn--ghost:hover {
  background: rgba(250,248,244,0.1);
  border-color: var(--cream);
  color: var(--cream);
}

.btn--gold {
  background: var(--gold);
  color: var(--forest-dark);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--forest-dark);
}

/* ==========================================================================
   6. UTILITY CLASSES
   ========================================================================== */

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.divider-gold {
  border: none;
  border-top: 1px solid var(--gold);
  margin: 2rem 0;
  opacity: 0.5;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--forest);
  color: var(--cream);
  font-size: 0.875rem;
}
.skip-link:focus { top: 0; }

.screen-reader-text {
  clip: rect(1px,1px,1px,1px);
  position: absolute;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal;
}

/* ==========================================================================
   7. LOGO SYSTEM
   ========================================================================== */

.site-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo:hover { color: inherit; }

.logo-icon {
  width: 32px;
  height: 39px;
  flex-shrink: 0;
  display: block;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 8px;
  line-height: 1;
}

.logo-line1 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding-left: 0.22em;
  color: var(--cream);
}

.logo-line2 {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  padding-left: 0.5em;
}

/* ==========================================================================
   8. HEADER & NAVIGATION
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.site-header.hero-mode { background: transparent; }

.site-header.is-scrolled {
  background: var(--forest);
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.site-nav a:hover {
  color: var(--gold-light);
  background: rgba(250,248,244,0.08);
}

/* Remove default WP menu list styles */
.site-nav ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 0.25rem; }
.site-nav li { display: inline-block; }

.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile navigation drawer */
.mobile-nav {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 300px;
  background: var(--forest-dark);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }

.mobile-nav a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(201,160,85,0.2);
  display: block;
}
.mobile-nav a:hover { color: var(--gold-light); }

.mobile-nav ul { list-style: none; padding: 0; }

.mobile-nav__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.nav-overlay.is-visible { opacity: 1; pointer-events: all; }

/* ==========================================================================
   9. HERO SECTION
   ========================================================================== */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: var(--forest-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(80,120,40,0.3) 0%, transparent 60%),
              radial-gradient(ellipse at 30% 80%, rgba(201,160,85,0.12) 0%, transparent 50%);
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,53,16,0.97) 0%, rgba(45,80,22,0.88) 50%, rgba(30,53,16,0.95) 100%);
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 120'><g transform='translate(28,12) scale(0.6)' stroke='%23C9A055' stroke-linecap='round' stroke-linejoin='round' fill='none'><path d='M36 88 C36 87 35.6 79 36 66' stroke-width='1.3'/><path d='M36,78 C33,74 26,73 24,78 C27,82 34,81 36,78Z' stroke-width='0.85'/><path d='M36,78 C39,74 46,73 48,78 C45,82 38,81 36,78Z' stroke-width='0.85'/><circle cx='36' cy='66' r='2.2' stroke-width='0.7'/><path d='M36,66 C32,64 22,61 11,64 C16,58 28,60 36,66Z' stroke-width='0.95'/><path d='M36,66 C40,64 50,61 61,64 C56,58 44,60 36,66Z' stroke-width='0.95'/><path d='M36,66 C34,60 20,48 8,42 C11,36 28,54 36,66Z' stroke-width='0.95'/><path d='M36,66 C38,60 52,48 64,42 C61,36 44,54 36,66Z' stroke-width='0.95'/><path d='M36,66 C33,57 22,38 14,22 C20,19 32,52 36,66Z' stroke-width='1'/><path d='M36,66 C39,57 50,38 58,22 C52,19 40,52 36,66Z' stroke-width='1'/><path d='M36,66 C32,54 30,32 36,7 C42,32 40,54 36,66Z' stroke-width='1.05'/><circle cx='36' cy='90' r='1.6'/></g></svg>"),
    url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 120'><g transform='translate(28,12) scale(0.6)' stroke='%23C9A055' stroke-linecap='round' stroke-linejoin='round' fill='none'><path d='M36 88 C36 87 35.6 79 36 66' stroke-width='1.3'/><path d='M36,78 C33,74 26,73 24,78 C27,82 34,81 36,78Z' stroke-width='0.85'/><path d='M36,78 C39,74 46,73 48,78 C45,82 38,81 36,78Z' stroke-width='0.85'/><circle cx='36' cy='66' r='2.2' stroke-width='0.7'/><path d='M36,66 C32,64 22,61 11,64 C16,58 28,60 36,66Z' stroke-width='0.95'/><path d='M36,66 C40,64 50,61 61,64 C56,58 44,60 36,66Z' stroke-width='0.95'/><path d='M36,66 C34,60 20,48 8,42 C11,36 28,54 36,66Z' stroke-width='0.95'/><path d='M36,66 C38,60 52,48 64,42 C61,36 44,54 36,66Z' stroke-width='0.95'/><path d='M36,66 C33,57 22,38 14,22 C20,19 32,52 36,66Z' stroke-width='1'/><path d='M36,66 C39,57 50,38 58,22 C52,19 40,52 36,66Z' stroke-width='1'/><path d='M36,66 C32,54 30,32 36,7 C42,32 40,54 36,66Z' stroke-width='1.05'/><circle cx='36' cy='90' r='1.6'/></g></svg>");
  background-size: 58px 70px;
  background-position: 0 0, 29px 35px;
  background-repeat: repeat;
  opacity: 0.055;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 8rem 0 6rem;
}

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

.hero-eyebrow {
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.2s forwards;
}

.hero-rule-gold {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 2rem;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.35s forwards;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subhead {
  font-size: 1.125rem;
  color: rgba(250,248,244,0.72);
  max-width: 520px;
  margin: 0 auto 2.75rem;
  font-weight: 300;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.hero-rule {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
  z-index: 3;
}

/* ==========================================================================
   10. ANIMATIONS
   ========================================================================== */

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

@keyframes floatIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   11. CATEGORY STRIP
   ========================================================================== */

.category-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: sticky;
  top: 64px;
  z-index: 100;
}

.category-pills {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.category-pills::-webkit-scrollbar { display: none; }

.category-pill {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--mist);
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  white-space: nowrap;
  transition: all var(--transition);
  cursor: pointer;
  background: transparent;
}
.category-pill:hover,
.category-pill.active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201,160,85,0.07);
}

.pill-divider {
  width: 1px;
  height: 16px;
  background: var(--border);
  flex-shrink: 0;
}

/* ==========================================================================
   12. ARTICLE CARDS
   ========================================================================== */

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__img-link { display: block; overflow: hidden; }

.card__img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.5s ease;
  background: var(--cream-dark);
}
.card__img--placeholder { background: var(--cream-dark); aspect-ratio: 16/10; }
.card:hover .card__img { transform: scale(1.04); }

.category-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest-dark);
  background: var(--gold);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius);
  margin: 1rem 1.5rem 0;
}
.category-label a { color: inherit; }

.card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--charcoal);
  margin-bottom: 0.625rem;
}
.card__title a { color: inherit; }
.card:hover .card__title a { color: var(--forest); }

.card__excerpt {
  font-size: 0.9rem;
  color: var(--mist);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

.card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--mist);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: auto;
}

.meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}

/* Large card variant */
.card--large .card__img { aspect-ratio: 16/9; }
.card--large .card__title { font-size: 1.4rem; }
.card--large .card__body { padding: 1.75rem 2rem 2rem; }

/* ==========================================================================
   13. SECTION HEADERS
   ========================================================================== */

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
}

.view-all {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition), color var(--transition);
}
.view-all:hover { color: var(--gold-light); gap: 0.65rem; }
.view-all::after { content: '\2192'; font-size: 0.9rem; }

/* ==========================================================================
   14. FEATURED GRID
   ========================================================================== */

.featured-section,
.recent-section {
  padding: 4rem 0;
}

.featured-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

/* Stack side cards vertically */
.featured-grid .featured-card:not(.featured-card--large) {
  display: flex;
  flex-direction: column;
}

/* ==========================================================================
   15. LEAD MAGNET BANNER
   ========================================================================== */

.lm-banner {
  background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 50%, var(--forest-mid) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.lm-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(201,160,85,0.06) 100%);
  pointer-events: none;
}

.lm-banner__inner {
  display: grid;
  grid-template-columns: 1fr 220px 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.lm-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin: 0.5rem 0 1rem;
}

.lm-banner__sub {
  color: rgba(250,248,244,0.78);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.lm-banner__benefits {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.lm-banner__benefits li {
  font-size: 0.9rem;
  color: rgba(250,248,244,0.8);
  padding-left: 1.25rem;
  position: relative;
}
.lm-banner__benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.lm-banner__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.guide-mockup {
  width: 180px;
  min-height: 230px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), 6px 6px 0 var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.guide-mockup::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
}
.guide-mockup__title {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--forest-dark);
  line-height: 1.4;
  margin-top: 0.75rem;
}
.guide-mockup__sub {
  font-size: 0.65rem;
  color: var(--mist);
  margin-top: 0.375rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lm-banner__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lm-input {
  width: 100%;
  padding: 0.875rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: rgba(250,248,244,0.96);
  border: 2px solid transparent;
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.lm-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,160,85,0.18);
}
.lm-input::placeholder { color: var(--mist); }

.lm-disclaimer {
  font-size: 0.75rem;
  color: rgba(250,248,244,0.55);
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   16. POSTS GRID
   ========================================================================== */

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ==========================================================================
   17. ABOUT STRIP
   ========================================================================== */

.about-strip {
  background: var(--cream-dark);
  padding: 5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-copy p { color: var(--mist); margin-bottom: 1.5rem; }
.about-copy .section-title { color: var(--forest-dark); margin: 1rem 0 1.25rem; }

.about-visual {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--border);
  box-shadow: var(--shadow-lg);
}
.about-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--forest-mid) 0%, var(--forest-dark) 100%);
}

/* ==========================================================================
   18. FOOTER
   ========================================================================== */

.site-footer {
  background: var(--forest-dark);
  color: var(--cream);
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201,160,85,0.2);
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(250,248,244,0.65);
  line-height: 1.7;
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-social { display: flex; gap: 0.75rem; }

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201,160,85,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,248,244,0.7);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0;
  transition: all var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,160,85,0.1);
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-nav { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-nav a {
  font-size: 0.9rem;
  color: rgba(250,248,244,0.7);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold-light); }

/* Footer form */
.footer-form {
  display: flex;
  border: 1px solid rgba(201,160,85,0.3);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 0.75rem;
}
.footer-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(250,248,244,0.08);
  border: none;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
}
.footer-form input::placeholder { color: rgba(250,248,244,0.4); }
.footer-form button {
  padding: 0.75rem 1.25rem;
  background: var(--gold);
  color: var(--forest-dark);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.footer-form button:hover { background: var(--gold-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: rgba(250,248,244,0.4);
  flex-wrap: wrap;
}

.affiliate-disclosure-note {
  font-size: 0.75rem;
  color: rgba(250,248,244,0.35);
  font-style: italic;
}

/* ==========================================================================
   19. SIDEBAR
   ========================================================================== */

.sidebar { display: flex; flex-direction: column; gap: 2.5rem; }

.widget {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.widget-title,
.widgettitle {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--forest-dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.875rem;
  border-bottom: 2px solid var(--gold);
}

.widget ul { list-style: none; padding: 0; }
.widget ul li a {
  font-size: 0.9rem;
  color: var(--mist);
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--cream-dark);
  transition: color var(--transition);
}
.widget ul li a:hover { color: var(--forest); }

.widget-optin p {
  font-size: 0.875rem;
  color: var(--mist);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.widget-optin__form {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.widget-optin__form input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition);
}
.widget-optin__form input:focus { border-color: var(--gold); }

/* ==========================================================================
   20. SINGLE POST
   ========================================================================== */

.post-hero {
  width: 100%;
  height: 60vh;
  min-height: 380px;
  max-height: 600px;
  overflow: hidden;
  background: var(--forest);
}
.post-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
  padding: 3rem 0 5rem;
}

.post-header { margin-bottom: 2rem; }

.post-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  color: var(--forest-dark);
  line-height: 1.15;
  margin: 1rem 0;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--mist);
}

.post-body {
  font-size: 1.125rem;
  line-height: 1.85;
  color: var(--charcoal);
}

.post-body h2,
.post-body h3,
.post-body h4 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--forest-dark);
}

.post-body p { margin-bottom: 1.5rem; }

.post-body a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(201,160,85,0.4);
}
.post-body a:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

.post-body ul,
.post-body ol {
  margin-bottom: 1.5rem;
  padding-left: 1.75rem;
}
.post-body li { margin-bottom: 0.5rem; }

.author-bio {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.5rem;
  align-items: center;
}

.author-bio__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--border);
  flex-shrink: 0;
}
.author-bio__avatar img { width: 100%; height: 100%; object-fit: cover; }

.author-bio__name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--forest-dark);
  margin-bottom: 0.375rem;
}

.breadcrumbs { margin-bottom: 0.875rem; }
.breadcrumbs ol {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--mist);
}
.breadcrumbs li + li::before { content: '/'; margin-right: 0.5rem; }
.breadcrumbs a { color: var(--mist); }
.breadcrumbs a:hover { color: var(--gold); }

.related-posts { padding: 4rem 0; border-top: 1px solid var(--border); }

/* ==========================================================================
   21. ARCHIVE PAGE
   ========================================================================== */

.archive-header {
  background: linear-gradient(160deg, var(--forest-dark), var(--forest));
  padding: 7rem 0 4rem;
  text-align: center;
}

.archive-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--cream);
  margin: 0.5rem 0 1rem;
}

.archive-description {
  color: rgba(250,248,244,0.75);
  max-width: 520px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ==========================================================================
   22. PAGE TEMPLATES
   ========================================================================== */

/* Lead Magnet */
.lm-header {
  background: var(--forest);
  padding: 1.25rem 0;
}

.lm-hero {
  background: var(--forest);
  padding: 8rem 0 5rem;
}

.lm-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.lm-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
  margin: 0.75rem 0 1.25rem;
}

.lm-hero__sub {
  color: rgba(250,248,244,0.78);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.lm-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.lm-benefits li {
  font-size: 0.95rem;
  color: rgba(250,248,244,0.85);
  padding-left: 1.5rem;
  position: relative;
}
.lm-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.lm-hero__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.guide-mockup--large {
  width: 100%;
  max-width: 280px;
  min-height: 360px;
  margin: 0 auto;
  font-size: 1rem;
  padding: 2rem 1.5rem;
}
.guide-mockup--large .guide-mockup__title { font-size: 1rem; margin-top: 1rem; }

.lm-whats-inside {
  background: var(--cream);
  padding: 6rem 0;
}

.lm-chapters {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.lm-chapter { text-align: center; }

.chapter-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.lm-chapter h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest-dark);
  margin-bottom: 0.625rem;
}

.lm-chapter p {
  font-size: 0.875rem;
  color: var(--mist);
  line-height: 1.6;
}

.lm-repeat-cta {
  background: var(--forest);
}

/* Products page */
.product-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}

.filter-tab {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--mist);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-tab:hover,
.filter-tab.active {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card.is-hidden { display: none; }

.product-badge {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--forest-dark);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius);
}

.product-card__img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream-dark);
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card__img { transform: scale(1.05); }

.product-card__body { padding: 1.25rem; }

.product-brand {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 0.375rem;
}

.product-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.375rem;
  line-height: 1.35;
}

.product-price {
  font-size: 0.9rem;
  color: var(--forest);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.product-why {
  font-size: 0.85rem;
  color: var(--mist);
  line-height: 1.55;
  margin-bottom: 0.875rem;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 1rem;
}

.product-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
  background: rgba(45,80,22,0.08);
  border: 1px solid rgba(45,80,22,0.15);
  padding: 0.2rem 0.625rem;
  border-radius: 999px;
}

/* Sidebar product pick */
.product-pick-card {
  text-align: center;
  padding-top: 0.5rem;
}
.product-pick-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 0.875rem;
}
.product-pick-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0.375rem 0;
}

/* ==========================================================================
   23. AFFILIATE DISCLOSURE
   ========================================================================== */

.affiliate-notice {
  font-size: 0.8rem;
  color: var(--mist);
  font-style: italic;
  line-height: 1.6;
  padding: 0.875rem 1.25rem;
  background: var(--cream-dark);
  border-left: 3px solid var(--border);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}

/* ==========================================================================
   24. 404 PAGE
   ========================================================================== */

.page-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem;
}
.page-404__inner { max-width: 480px; }
.page-404 .eyebrow {
  font-size: 5rem;
  letter-spacing: 0;
  opacity: 0.2;
  display: block;
  margin-bottom: -1rem;
  font-family: var(--font-display);
  color: var(--gold);
}
.page-404 .post-title { color: var(--forest-dark); margin-bottom: 1rem; }
.page-404 p { color: var(--mist); margin-bottom: 2rem; }

/* ==========================================================================
   25. PAGE CONTENT (generic)
   ========================================================================== */

.page-content { padding: 5rem 0; max-width: 820px; }
.page-header { margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }

/* ==========================================================================
   26. WORDPRESS STANDARD CLASSES
   ========================================================================== */

.alignleft  { float: left;  margin: 0.5rem 2rem 1rem 0; }
.alignright { float: right; margin: 0.5rem 0 1rem 2rem; }
.aligncenter { display: block; margin: 2rem auto; }

.wp-caption { max-width: 100%; margin-bottom: 1.5rem; }
.wp-caption-text {
  font-size: 0.82rem;
  color: var(--mist);
  text-align: center;
  font-style: italic;
  padding-top: 0.5rem;
}

.wp-block-image figcaption {
  font-size: 0.82rem;
  color: var(--mist);
  text-align: center;
  font-style: italic;
  margin-top: 0.5rem;
}

/* Pagination */
.nav-links {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  padding: 2rem 0;
  flex-wrap: wrap;
}
.nav-links a,
.nav-links span {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--mist);
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links .current {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

/* ==========================================================================
   27. RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 768px) {
  .container { padding-left: 1.25rem; padding-right: 1.25rem; }

  /* Header */
  .site-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero-headline { font-size: clamp(2.5rem, 9vw, 4rem); }
  .hero-subhead { font-size: 1rem; }

  /* Featured grid */
  .featured-grid { grid-template-columns: 1fr; }

  /* Posts grids */
  .posts-grid { grid-template-columns: repeat(2, 1fr); }

  /* About strip */
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-visual { order: -1; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  /* Post layout */
  .post-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }

  /* Lead magnet banner */
  .lm-banner__inner { grid-template-columns: 1fr; }
  .lm-banner__visual { display: none; }

  /* Lead magnet page hero */
  .lm-hero__inner { grid-template-columns: 1fr; gap: 3rem; }
  .lm-hero__visual { display: none; }

  /* Products */
  .products-grid { grid-template-columns: repeat(2, 1fr); }

  /* LM chapters */
  .lm-chapters { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  /* Author bio */
  .author-bio { grid-template-columns: 1fr; text-align: center; }
  .author-bio__avatar { margin: 0 auto; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }

  .hero { min-height: 100svh; }
  .hero-ctas { flex-direction: column; align-items: stretch; max-width: 300px; margin: 0 auto; }

  .posts-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .lm-chapters { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .lm-banner { padding: 3rem 0; }

  .post-body { font-size: 1rem; }
  .post-layout { padding: 2rem 0 4rem; }

  .section-header { flex-direction: column; align-items: flex-start; }

  .lm-chapters__grid { grid-template-columns: 1fr; }
  .lm-testimonials { grid-template-columns: 1fr; }
  .lead-magnet-form__row { flex-direction: column; }
}

/* ==========================================================================
   28. SUPPLEMENTAL: TEMPLATE-PARTS + PAGE-TEMPLATES STYLES
   ========================================================================== */

/* Header inner constrained width */
.header-inner {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* Prevent body scroll when mobile nav is open */
body.nav-open { overflow: hidden; }

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Button size / shape additions */
.btn--lg { padding: 1rem 2.25rem; font-size: 0.9rem; }
.btn--full { width: 100%; justify-content: center; }
.btn--outline-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250,248,244,0.5);
}
.btn--outline-light:hover {
  background: rgba(250,248,244,0.12);
  border-color: var(--cream);
  color: var(--cream);
}

/* Eyebrow light variant */
.eyebrow--light { color: var(--gold-light); }

/* Form inputs */
.form-input {
  width: 100%;
  padding: 0.875rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,160,85,0.15);
}
.form-input::placeholder { color: var(--mist); }
.form-input--light {
  background: rgba(250,248,244,0.96);
  border-color: rgba(250,248,244,0.3);
}
.form-input--lg { padding: 1rem 1.5rem; font-size: 1rem; }

/* Post cards (content-card.php uses .post-card, CSS had .card) */
.post-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.post-card__img-wrap {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--cream-dark);
}
.post-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.post-card:hover .post-card__img-wrap img { transform: scale(1.04); }
.post-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--charcoal);
  margin-bottom: 0.625rem;
}
.post-card__title a { color: inherit; }
.post-card:hover .post-card__title a { color: var(--forest); }
.post-card__excerpt {
  font-size: 0.9rem;
  color: var(--mist);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}
.post-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--mist);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: auto;
}
.post-card--large .post-card__img-wrap { aspect-ratio: 16/9; }
.post-card--large .post-card__title { font-size: 1.4rem; }
.post-card--large .post-card__body { padding: 1.75rem 2rem 2rem; }

/* Lead magnet banner (template uses .lead-magnet-banner, CSS had .lm-banner) */
.lead-magnet-banner {
  background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 50%, var(--forest-mid) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.lead-magnet-inner {
  display: grid;
  grid-template-columns: 1fr 220px 1fr;
  gap: 3rem;
  align-items: center;
}
.lead-magnet-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin: 0.5rem 0 1rem;
}
.lead-magnet-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.lead-magnet-benefits li {
  font-size: 0.9rem;
  color: rgba(250,248,244,0.82);
  padding-left: 1.25rem;
  position: relative;
}
.lead-magnet-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.lead-magnet-form__row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.lead-magnet-form__note {
  font-size: 0.75rem;
  color: rgba(250,248,244,0.5);
  margin-top: 0.625rem;
  line-height: 1.5;
}
.lead-magnet-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Guide mockup shadow and lg variant */
.guide-mockup { position: relative; }
.guide-mockup__shadow {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 20px;
  background: rgba(0,0,0,0.25);
  filter: blur(14px);
  border-radius: 50%;
  z-index: -1;
}
.guide-mockup--lg {
  width: 100%;
  max-width: 280px;
  min-height: 360px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}
.guide-mockup--lg .guide-mockup__title { font-size: 1rem; margin-top: 1rem; }

/* Footer layout using template classes */
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201,160,85,0.2);
}
.footer-nav-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-nav-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer-nav-list a {
  font-size: 0.9rem;
  color: rgba(250,248,244,0.7);
  transition: color var(--transition);
}
.footer-nav-list a:hover { color: var(--gold-light); }
.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(250,248,244,0.35);
  font-style: italic;
  margin-top: 1.25rem;
  line-height: 1.55;
}

/* Sidebar widgets */
.sidebar-widget {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.post-sidebar { display: flex; flex-direction: column; gap: 2rem; }
.sidebar-optin { text-align: center; }
.sidebar-optin__icon {
  margin: 0 auto 1rem;
  display: block;
  width: 36px;
}
.sidebar-optin__heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--forest-dark);
  margin-bottom: 0.625rem;
}
.sidebar-optin__subhead {
  font-size: 0.875rem;
  color: var(--mist);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.sidebar-optin__form {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.sidebar-product-callout { text-align: center; }
.sidebar-product-callout__img {
  margin-bottom: 0.875rem;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
}
.sidebar-product-callout__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.sidebar-product-callout__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0.375rem 0 0.5rem;
  line-height: 1.35;
}
.sidebar-product-callout__reason {
  font-size: 0.82rem;
  color: var(--mist);
  line-height: 1.55;
  margin-bottom: 1rem;
}

/* Product filter uses .product-filter (CSS had .product-filters) */
.product-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}
/* JS uses .filter-tab--active (CSS had .filter-tab.active) */
.filter-tab--active {
  background: var(--forest) !important;
  color: var(--cream) !important;
  border-color: var(--forest) !important;
}

/* Product card image wrapper (template uses .product-card__img) */
.product-card__img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream-dark);
}
.product-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card__img img { transform: scale(1.05); }

/* Product best-for (template uses .product-best-for, CSS had .product-tags) */
.product-best-for {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 1rem;
}

/* Products page */
.page-header--products { text-align: center; padding-bottom: 2rem; }
.page-intro {
  color: var(--mist);
  max-width: 680px;
  margin: 0 auto 1rem;
  font-size: 0.95rem;
  line-height: 1.7;
}
.page-intro a { color: var(--forest); text-decoration: underline; }
.products-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--mist);
  padding: 4rem 0;
}

/* Lead magnet page - additional/override */
.lm-hero__subhead {
  color: rgba(250,248,244,0.78);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.lm-form { display: flex; flex-direction: column; gap: 0.75rem; }
.lm-form--centered { text-align: center; align-items: center; }
.lm-form__note {
  font-size: 0.78rem;
  color: rgba(250,248,244,0.5);
  line-height: 1.5;
}
.lm-proof {
  background: var(--cream-dark);
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.lm-proof__intro {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 2.5rem;
}
.lm-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.lm-testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border-left: 3px solid var(--gold);
}
.lm-testimonial p {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--forest-dark);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 0.875rem;
}
.lm-testimonial cite {
  display: block;
  font-style: normal;
  font-size: 0.8rem;
  color: var(--mist);
  letter-spacing: 0.05em;
}
.lm-chapters { padding: 6rem 0; background: var(--cream); }
.lm-chapters__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.lm-chapter__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.lm-cta-bottom {
  background: var(--forest);
  padding: 5rem 0;
  text-align: center;
  color: var(--cream);
}
.lm-cta-bottom__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.lm-cta-bottom__sub {
  color: rgba(250,248,244,0.78);
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* Mobile nav as slide-in drawer on site-nav */
@media (max-width: 768px) {
  .site-nav.is-open {
    display: flex;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 300px;
    background: var(--forest-dark);
    z-index: 1001;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    overflow-y: auto;
    box-shadow: -4px 0 30px rgba(0,0,0,0.35);
  }
  .site-nav.is-open ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .site-nav.is-open li { display: block; }
  .site-nav.is-open a {
    display: block;
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(201,160,85,0.2);
    font-size: 1rem;
    letter-spacing: 0.06em;
  }

  .lead-magnet-inner { grid-template-columns: 1fr; }
  .lead-magnet-visual { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .lm-testimonials { grid-template-columns: 1fr; gap: 1.5rem; }
  .lm-chapters__grid { grid-template-columns: repeat(2, 1fr); }
  .lm-cta-bottom { padding: 4rem 0; }
}
