/*
 Theme Name:   HumusHub Child
 Theme URI:    https://humushub.co.uk
 Description:  HumusHub child theme — urban composting affiliate site
 Author:       Nathan
 Author URI:   https://humushub.co.uk

 Template:     blocksy

 ⚠️  IMPORTANT — READ THIS BEFORE UPLOADING:
 The "Template:" line above must exactly match your parent theme's folder name.
 To find it: Appearance → Theme File Editor → look at the file path shown.
 e.g. if path is /wp-content/themes/generatepress/style.css → use "generatepress"
 e.g. if path is /wp-content/themes/astra/style.css          → use "astra"
 It must be lowercase with hyphens, no spaces.

 Version:      1.0.0
 License:      GNU General Public License v2 or later
*/

/* ─────────────────────────────────────────────────────────────────────────────
   TABLE OF CONTENTS
   1.  CSS Variables & Reset
   2.  Base Typography
   3.  Site Header & Navigation
   4.  Legislation Banner
   5.  Hero Sections
   6.  Section Wrappers & Labels
   7.  Homepage — Pillar Cards
   8.  Homepage — Why Humus Hub
   9.  Homepage — Latest Article Strip
   10. Page Hero (Inner Pages)
   11. Articles Listing Page
   12. Article / Post Styles
   13. Sidebar
   14. About Page
   15. Affiliate Disclosure Bar
   16. Call-to-Action Blocks
   17. Newsletter Strip
   18. Footer
   19. Utilities & Buttons
   20. Responsive
───────────────────────────────────────────────────────────────────────────── */


/* ── 1. CSS VARIABLES & RESET ─────────────────────────────────────────────── */

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

:root {
    --green-deep:   #1B3A2D;
    --green-mid:    #2D5C42;
    --green-light:  #5C8A3C;
    --cream:        #F6F1E9;
    --cream-dark:   #EDE6D8;
    --soil:         #7A5230;
    --soil-light:   #C4956A;
    --text:         #1E1E1E;
    --text-muted:   #5A5A4A;
    --white:        #FFFFFF;
    --lime:         #A8C96E;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Lora', Georgia, serif;
    --font-sans:    'DM Sans', system-ui, sans-serif;

    --radius-sm:    6px;
    --radius-md:    10px;
    --radius-lg:    16px;

    --shadow-sm:  0 2px 8px rgba(27,58,45,0.08);
    --shadow-md:  0 8px 24px rgba(27,58,45,0.12);
    --shadow-lg:  0 16px 40px rgba(27,58,45,0.16);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}


/* ── 2. BASE TYPOGRAPHY ───────────────────────────────────────────────────── */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.2;
    color: var(--green-deep);
}

p {
    margin-bottom: 1.25rem;
}

a {
    color: var(--green-mid);
    transition: color 0.2s;
}

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

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

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


/* ── 3. SITE HEADER & NAVIGATION ─────────────────────────────────────────── */

.site-header,
#masthead {
    background: var(--green-deep) !important;
    padding: 0 2rem !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 100 !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.25) !important;
    border-bottom: none !important;
}

.header-inner,
.site-header .container,
#masthead .site-branding,
.site-header .inside-header {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

/* Logo */
.site-logo,
.site-branding a,
.custom-logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
}

.site-logo-img {
    height: 38px;
    width: auto;
}

/* If no custom logo — text fallback */
.site-title,
.site-title a {
    font-family: var(--font-display) !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: var(--white) !important;
    text-decoration: none !important;
    letter-spacing: 0.02em !important;
}

/* Primary Nav */
.main-navigation,
.primary-navigation,
#site-navigation {
    background: transparent !important;
}

.main-navigation ul,
.primary-navigation ul,
#site-navigation ul {
    display: flex;
    gap: 0.25rem;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-navigation ul li a,
.primary-navigation ul li a,
#site-navigation ul li a {
    font-family: var(--font-sans) !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    color: rgba(255,255,255,0.8) !important;
    text-decoration: none !important;
    padding: 0.4rem 0.85rem !important;
    border-radius: var(--radius-sm) !important;
    transition: all 0.2s !important;
    letter-spacing: 0.03em !important;
    background: transparent !important;
    border: none !important;
}

.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item > a,
.primary-navigation ul li a:hover,
.primary-navigation ul li.current-menu-item > a {
    color: var(--white) !important;
    background: rgba(255,255,255,0.1) !important;
}

/* CTA nav item — add this class to your "2026 Buying Guides" nav item
   in Appearance → Menus → CSS Classes (you may need to enable CSS Class
   field via Screen Options at the top of the Menus page) */
.main-navigation ul li.menu-item-cta > a,
.nav-cta > a,
li.nav-cta a {
    background: var(--green-light) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
}

.main-navigation ul li.menu-item-cta > a:hover,
li.nav-cta a:hover {
    background: var(--lime) !important;
    color: var(--green-deep) !important;
}


/* ── 4. LEGISLATION BANNER ────────────────────────────────────────────────── */

.legislation-banner {
    background: var(--soil);
    padding: 0.85rem 2rem;
}

.legislation-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.legislation-banner p {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: var(--white);
    margin: 0;
}

.legislation-banner strong {
    color: var(--cream);
}

.legislation-banner a {
    color: var(--lime);
    text-decoration: none;
    font-weight: 600;
}

.legislation-banner a:hover {
    color: var(--white);
}


/* ── 5. HERO SECTIONS ─────────────────────────────────────────────────────── */

.hero,
.wp-block-cover.is-style-hero {
    background: var(--green-deep);
    padding: 5rem 2rem 4.5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 50%, rgba(92,138,60,0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(168,201,110,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.hero-title em {
    font-style: italic;
    color: var(--lime);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 480px;
    margin-bottom: 2rem;
    line-height: 1.65;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Stats Grid */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.25rem;
    text-align: center;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--lime);
    display: block;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.3;
}


/* ── 6. SECTION WRAPPERS & LABELS ────────────────────────────────────────── */

.section {
    padding: 4.5rem 2rem;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-inner.wide {
    max-width: 1200px;
}

.section-inner.narrow {
    max-width: 820px;
}

.section-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--green-deep);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-intro {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2.5rem;
}


/* ── 7. HOMEPAGE — PILLAR CARDS ──────────────────────────────────────────── */

.pillars-section {
    background: var(--white);
}

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

.pillar-card {
    border: 1.5px solid var(--cream-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    background: var(--white);
}

.pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pillar-header {
    padding: 1.75rem 1.75rem 0;
}

.pillar-badge {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--cream);
    color: var(--green-deep);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.pillar-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.pillar-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--green-deep);
    margin-bottom: 0.5rem;
}

.pillar-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    padding: 0 1.75rem;
    margin: 0.75rem 0 1.5rem;
}

.pillar-footer {
    padding: 1.25rem 1.75rem;
    border-top: 1px solid var(--cream-dark);
    background: var(--cream);
}

.pillar-link {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--green-mid);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s;
}

.pillar-link::after {
    content: '→';
}

.pillar-link:hover {
    color: var(--green-light);
}


/* ── 8. HOMEPAGE — WHY HUMUS HUB ─────────────────────────────────────────── */

.why-section {
    background: var(--cream);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.trust-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.trust-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--green-light);
}

.trust-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.trust-text h4 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--green-deep);
    margin-bottom: 0.25rem;
}

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


/* ── 9. HOMEPAGE — LATEST ARTICLE STRIP ─────────────────────────────────── */

.latest-section {
    background: var(--green-deep);
}

.latest-section .section-label {
    color: var(--lime);
}

.latest-section .section-title {
    color: var(--white);
}

.latest-section .section-intro {
    color: rgba(255,255,255,0.65);
}

.featured-article-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: start;
}

.featured-article-meta {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--lime);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.featured-article-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.featured-article-excerpt {
    font-size: 0.975rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.featured-tag {
    background: var(--green-light);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    white-space: nowrap;
}


/* ── 10. PAGE HERO (INNER PAGES) ─────────────────────────────────────────── */

.page-hero {
    background: var(--green-deep);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(92,138,60,0.2) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

.page-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 0.75rem;
    display: block;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.page-title em {
    font-style: italic;
    color: var(--lime);
}

.page-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.65;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.25rem;
    text-align: left;
}

.breadcrumb a {
    color: var(--lime);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--white);
}


/* ── 11. ARTICLES LISTING PAGE ───────────────────────────────────────────── */

.filter-bar {
    background: var(--white);
    border-bottom: 1px solid var(--cream-dark);
    padding: 0 2rem;
}

.filter-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: none;
}

.filter-inner::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.45rem 1rem;
    border-radius: 20px;
    border: 1.5px solid var(--cream-dark);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--green-deep);
    color: var(--white);
    border-color: var(--green-deep);
}

/* Article Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Article Card */
.article-card {
    background: var(--white);
    border: 1.5px solid var(--cream-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.article-card-img {
    background: var(--green-deep);
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    position: relative;
}

.article-card-category {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(255,255,255,0.95);
    color: var(--green-deep);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.article-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-card-meta {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.article-card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--green-deep);
    line-height: 1.3;
    margin-bottom: 0.6rem;
    text-decoration: none;
    display: block;
    transition: color 0.2s;
}

.article-card-title:hover {
    color: var(--green-light);
}

.article-card-excerpt {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1.25rem;
}

.article-card-footer {
    border-top: 1px solid var(--cream-dark);
    padding-top: 1rem;
}

.read-more {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-mid);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s;
}

.read-more::after {
    content: '→';
}

.read-more:hover {
    color: var(--green-light);
}

/* Coming Soon Cards */
.coming-card {
    background: var(--cream);
    border: 1.5px dashed var(--cream-dark);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 260px;
}

.coming-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    opacity: 0.5;
}

.coming-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--green-deep);
    opacity: 0.6;
    margin-bottom: 0.4rem;
}

.coming-label {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    color: var(--text-muted);
    opacity: 0.7;
}


/* ── 12. ARTICLE / POST STYLES ───────────────────────────────────────────── */

/* Article Hero */
.article-hero {
    background: var(--green-deep);
    padding: 4.5rem 2rem 3.5rem;
    position: relative;
    overflow: hidden;
}

.article-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(92,138,60,0.2) 0%, transparent 55%);
    pointer-events: none;
}

.article-hero-inner {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
}

.article-category-badge {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lime);
    background: rgba(168,201,110,0.15);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    border: 1px solid rgba(168,201,110,0.3);
    margin-bottom: 1rem;
}

.article-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.article-intro {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.65;
    margin-bottom: 2rem;
}

.article-meta-bar {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.author-name {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    display: block;
}

.author-role-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    display: block;
}

.article-date,
.article-read-time {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* Article Layout with Sidebar */
.article-layout {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3.5rem;
    align-items: start;
}

/* Prose Content */
.prose h2 {
    font-size: 1.65rem;
    color: var(--green-deep);
    margin: 2.5rem 0 1rem;
}

.prose h3 {
    font-size: 1.25rem;
    color: var(--green-deep);
    margin: 2rem 0 0.75rem;
}

.prose h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--green-deep);
    margin: 1.5rem 0 0.5rem;
}

.prose p {
    font-size: 1.05rem;
    color: #3A3A2E;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.prose ul,
.prose ol {
    margin: 1rem 0 1.25rem 1.5rem;
}

.prose li {
    font-size: 1rem;
    color: #3A3A2E;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.prose strong {
    color: var(--green-deep);
}

.prose a {
    color: var(--green-mid);
}

.prose a:hover {
    color: var(--green-light);
}

/* Callout Boxes */
.callout {
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin: 2rem 0;
}

.callout-tip {
    background: #EBF4E0;
    border-left: 4px solid var(--green-light);
}

.callout-law {
    background: #FFF8EC;
    border-left: 4px solid var(--soil-light);
}

.callout-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.callout-tip .callout-label {
    color: var(--green-mid);
}

.callout-law .callout-label {
    color: var(--soil);
}

.callout p {
    font-size: 0.975rem;
    margin: 0;
}

.callout-tip p {
    color: var(--green-deep);
}

.callout-law p {
    color: #4A3018;
}

/* Method Cards */
.method-card {
    background: var(--white);
    border: 1.5px solid var(--cream-dark);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    margin: 1.5rem 0;
}

.method-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.method-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.method-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-light);
    display: block;
}

.method-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green-deep);
}

.method-models {
    background: var(--cream);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    margin: 1rem 0;
}

.method-models-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
    display: block;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.pros-label,
.cons-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.35rem;
}

.pros-label { color: var(--green-light); }
.cons-label { color: var(--soil); }

.pros ul,
.cons ul {
    margin-left: 1.1rem;
    margin-bottom: 0;
}

.pros ul li,
.cons ul li {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0.25rem;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

.comparison-table th {
    background: var(--green-deep);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.75rem 1rem;
    text-align: left;
}

.comparison-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--cream-dark);
    color: var(--text-muted);
    vertical-align: top;
}

.comparison-table tr:nth-child(even) td {
    background: var(--cream);
}

.comparison-table .product-name {
    font-weight: 600;
    color: var(--green-deep);
    font-family: var(--font-sans);
}


/* ── 13. SIDEBAR ──────────────────────────────────────────────────────────── */

.article-sidebar {
    position: sticky;
    top: 88px;
}

.sidebar-card {
    background: var(--white);
    border: 1.5px solid var(--cream-dark);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-heading {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: block;
}

.toc-list {
    list-style: none;
    padding: 0;
}

.toc-list li {
    border-bottom: 1px solid var(--cream-dark);
}

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

.toc-list a {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.2s;
}

.toc-list a:hover {
    color: var(--green-mid);
}

.sidebar-author-card {
    text-align: center;
}

.sidebar-avatar {
    width: 60px;
    height: 60px;
    background: var(--green-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 0.75rem;
}

.sidebar-author-name {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--green-deep);
    margin-bottom: 0.25rem;
    display: block;
}

.sidebar-author-role {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    display: block;
}

.sidebar-author-bio {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 1rem;
}

.sidebar-author-link {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--green-mid);
    text-decoration: none;
}

.sidebar-author-link:hover {
    color: var(--green-light);
}


/* ── 14. ABOUT PAGE ───────────────────────────────────────────────────────── */

.founder-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1.5px solid var(--cream-dark);
}

.founder-avatar {
    background: var(--green-deep);
    border-radius: var(--radius-lg);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.founder-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--green-deep);
    margin-bottom: 0.25rem;
}

.founder-role {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: var(--green-light);
    font-weight: 600;
    margin-bottom: 1.25rem;
    display: block;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1rem 0;
}

.credential-badge {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    background: var(--white);
    color: var(--green-deep);
    border: 1px solid var(--cream-dark);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
}

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

.mission-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border: 1.5px solid var(--cream-dark);
}

.mission-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    margin-top: 0.75rem;
}

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

/* Review Process Steps */
.process-section {
    background: var(--green-deep);
}

.process-section .section-label { color: var(--lime); }
.process-section .section-title { color: var(--white); }

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.process-step {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.step-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--lime);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

.step-title {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
    display: block;
}

.step-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.55;
}


/* ── 15. AFFILIATE DISCLOSURE BAR ────────────────────────────────────────── */

.affiliate-disclosure-bar,
.disclosure-bar {
    background: var(--cream-dark);
    border-bottom: 1px solid #d8d0c4;
    padding: 0.7rem 2rem;
}

.affiliate-disclosure-bar p,
.disclosure-bar p {
    max-width: 820px;
    margin: 0 auto;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    color: var(--text-muted);
}

.affiliate-disclosure-bar a,
.disclosure-bar a {
    color: var(--green-mid);
}


/* ── 16. CTA LINK BLOCKS ──────────────────────────────────────────────────── */

.cta-link-block {
    background: var(--green-deep);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-link-block h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.cta-link-block p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

/* Related Articles */
.related-section {
    background: var(--white);
    border-top: 1px solid var(--cream-dark);
    padding: 3.5rem 2rem;
}

.related-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.related-heading {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.related-card {
    background: var(--cream);
    border: 1.5px solid var(--cream-dark);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}


/* ── 17. NEWSLETTER STRIP ────────────────────────────────────────────────── */

.newsletter-strip {
    background: var(--soil);
    padding: 3rem 2rem;
    text-align: center;
}

.newsletter-inner {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-inner h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.newsletter-inner p {
    color: rgba(255,255,255,0.7);
    font-size: 0.975rem;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 440px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    border: none;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    background: var(--white);
    color: var(--text);
}

.newsletter-form button {
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-sm);
    border: none;
    background: var(--green-deep);
    color: var(--white);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--green-light);
}

.newsletter-note {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin-top: 0.75rem;
    margin-bottom: 0;
}


/* ── 18. FOOTER ───────────────────────────────────────────────────────────── */

.site-footer,
#colophon {
    background: #111A15 !important;
    padding: 3rem 2rem 2rem !important;
    color: rgba(255,255,255,0.6) !important;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.65;
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.55);
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
    display: block;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--lime);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-disclosure {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    max-width: 650px;
    line-height: 1.5;
    margin: 0;
}

.footer-copyright {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
}


/* ── 19. UTILITIES & BUTTONS ──────────────────────────────────────────────── */

.btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.8rem 1.6rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.2s;
    letter-spacing: 0.02em;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--green-light);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--lime);
    color: var(--green-deep);
    transform: translateY(-1px);
}

.btn-outline {
    border: 1.5px solid rgba(255,255,255,0.4);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--lime);
    color: var(--lime);
}

.btn-white {
    background: var(--white);
    color: var(--green-deep);
}

.btn-white:hover {
    background: var(--lime);
    color: var(--green-deep);
}

.btn-lime {
    background: var(--lime);
    color: var(--green-deep);
}

.btn-lime:hover {
    background: var(--white);
    color: var(--green-deep);
}

.btn-green {
    background: var(--green-light);
    color: var(--white);
}

.btn-green:hover {
    background: var(--lime);
    color: var(--green-deep);
}

/* Amazon Buy Button — use on affiliate link buttons */
.btn-amazon {
    background: #FF9900;
    color: #111;
    font-weight: 700;
}

.btn-amazon:hover {
    background: #ffad33;
    color: #111;
}

/* Check Price Button */
.btn-check-price {
    background: var(--green-deep);
    color: var(--white);
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
}

.btn-check-price:hover {
    background: var(--green-mid);
    color: var(--white);
}

/* Text utility */
.text-lime    { color: var(--lime); }
.text-muted   { color: var(--text-muted); }
.text-white   { color: var(--white); }
.text-green   { color: var(--green-deep); }

.bg-cream     { background: var(--cream); }
.bg-white     { background: var(--white); }
.bg-green     { background: var(--green-deep); }
.bg-soil      { background: var(--soil); }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}


/* ── 20. RESPONSIVE ───────────────────────────────────────────────────────── */

@media (max-width: 1100px) {
    .article-layout {
        grid-template-columns: 1fr;
    }
    .article-sidebar {
        position: static;
    }
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }
    .hero-stats {
        display: none;
    }
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .articles-grid {
        grid-template-columns: 1fr 1fr;
    }
    .featured-article-card {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .founder-card {
        grid-template-columns: 1fr;
    }
    .mission-grid {
        grid-template-columns: 1fr;
    }
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .related-grid {
        grid-template-columns: 1fr 1fr;
    }
    .pros-cons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .site-nav {
        display: none;
    }
    .articles-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    .process-steps {
        grid-template-columns: 1fr;
    }
    .related-grid {
        grid-template-columns: 1fr;
    }
    .cta-link-block {
        flex-direction: column;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .hero-btns {
        flex-direction: column;
    }
    .section {
        padding: 3rem 1.25rem;
    }
    .article-layout {
        padding: 2rem 1.25rem;
    }
}
