/* ===================================
   Roots, Seeds & Soil - Stylesheet
   =================================== */

/* CSS Variables for Easy Customization */
:root {
    --primary-color: #2d5016;      /* Deep forest green */
    --secondary-color: #6b8e23;    /* Olive green */
    --accent-color: #d4a574;       /* Earth tone */
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --background-light: #fafafa;
    --background-alt: #f0f4e8;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

/* Typography */
h1, h2, h3, h4 {
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }

p { margin-bottom: 1rem; }

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #444;
}

#vision .lead {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Navigation */
header {
    background-color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 6rem 2rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: #c49563;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Sections */
.section {
    padding: 5rem 2rem;
}

.section-alt {
    background-color: var(--background-alt);
}

.section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

/* Mission Statement */
.mission-statement {
    font-size: 1.75rem;
    font-weight: 500;
    text-align: center;
    color: var(--primary-color);
    margin: 2rem auto 3rem;
    max-width: 800px;
    line-height: 1.4;
}

/* Pillars */
.pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.pillar {
    text-align: center;
    padding: 2rem;
}

.pillar-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.pillar h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* Vision List */
.vision-list {
    max-width: 800px;
    margin: 2rem auto;
    list-style: none;
    padding: 0;
}

.vision-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.1rem;
}

.vision-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

/* Programs Grid */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.program-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.program-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Status Section */
.status-container {
    max-width: 800px;
}

.status-box {
    background: linear-gradient(135deg, #f0f4e8 0%, #e8f0e8 100%);
    padding: 3rem;
    border-radius: 10px;
    border-left: 5px solid var(--secondary-color);
    text-align: center;
}

.status-box h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.status-box strong {
    color: var(--primary-color);
}

/* Contact Options */
.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-form-notice {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-form-notice p {
    margin-bottom: 0.5rem;
}

.contact-form-notice strong {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-location {
    font-style: italic;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .nav-links {
        flex-direction: row;
        gap: 0.5rem;
    }
    
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section {
        padding: 3rem 1rem;
    }
    
    .pillars,
    .programs-grid,
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .mission-statement {
        font-size: 1.3rem;
    }
}

/* ===================================
   Navigation Dropdown
   =================================== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-toggle {
    cursor: pointer;
}

.nav-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 240px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-radius: 8px;
    padding: 0.5rem 0;
    list-style: none;
    z-index: 1001;
    margin-top: 0.5rem;
}

.nav-dropdown .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid white;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown .dropdown-menu.show {
    display: block;
}

.nav-dropdown .dropdown-menu li {
    list-style: none;
}

.nav-dropdown .dropdown-menu a {
    display: block;
    padding: 0.6rem 1.25rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    border-bottom: none;
}

.nav-dropdown .dropdown-menu a:hover {
    background-color: var(--background-alt);
    color: var(--secondary-color);
}

/* Logo link styling */
.logo a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}

/* ===================================
   Page Hero (Learn Pages)
   =================================== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a0a 50%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 5rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(107,142,35,0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(212,165,116,0.12) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero .hero-content {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    color: white;
    font-size: 2.75rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    letter-spacing: -0.02em;
}

.page-hero .hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Breadcrumbs */
.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    font-size: 0.85rem;
    color: #666;
}

.breadcrumb a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.breadcrumb .sep {
    margin: 0 0.5rem;
    color: #aaa;
}

/* Lead text utility (replaces inline styles) */
.text-center { text-align: center; }

.lead-intro {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 2.5rem;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #444;
}

/* ===================================
   Learn Page Styles
   =================================== */

/* Stats Banner */
.stats-banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 12px rgba(45,80,22,0.2);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(45,80,22,0.3);
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.stat-card .stat-label {
    font-size: 0.82rem;
    opacity: 0.92;
    display: block;
    margin-top: 0.45rem;
    line-height: 1.4;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-card {
    padding: 1.75rem;
    border-radius: 12px;
    background: white;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-left-color: var(--primary-color);
}

.benefit-card h3 {
    margin: 0 0 0.6rem;
    font-size: 1.1rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-card h3 .icon {
    font-size: 1.6rem;
    line-height: 1;
    flex-shrink: 0;
}

.benefit-card p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.65;
}

/* Plant Grid */
.plant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.plant-card {
    padding: 0;
    border-radius: 12px;
    background: white;
    border: 1px solid rgba(45,80,22,0.08);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: var(--transition);
    overflow: hidden;
}

.plant-card::before {
    content: '';
    display: block;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.plant-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.plant-card > * {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.plant-card .plant-name {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.15rem;
    padding-top: 1.25rem;
    line-height: 1.3;
}

.plant-card .plant-sci {
    font-style: italic;
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.plant-card .plant-desc {
    font-size: 0.9rem;
    color: #555;
    margin-top: 0.5rem;
    line-height: 1.65;
}

.plant-card .plant-tags {
    margin-top: 0.75rem;
    padding-bottom: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.plant-tag {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.plant-tag.bloom { background: #e8f5e9; color: #2e7d32; }
.plant-tag.sun { background: #fff8e1; color: #e6a817; }
.plant-tag.height { background: #e3f2fd; color: #1565c0; }
.plant-tag.pollinator { background: #fce4ec; color: #c62828; }
.plant-tag.edible { background: #e8f5e9; color: #2e7d32; }
.plant-tag.harvest { background: #fff8e1; color: #e6a817; }
.plant-tag.flavor { background: #fce4ec; color: #c62828; }
.plant-tag.prep { background: #e3f2fd; color: #1565c0; }
.plant-tag.caution { background: #fff3e0; color: #e65100; border: 1px solid rgba(230,81,0,0.2); }
.plant-tag.status-safe { background: #e6f4e6; color: #2c6b2f; }
.plant-tag.status-caution { background: #fff6e0; color: #8a6d20; }
.plant-tag.status-sensitive { background: #fde8e8; color: #8b2c2c; }

/* Highlight Boxes */
.info-box {
    padding: 2rem 2.25rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    position: relative;
}

.info-box.green {
    background: linear-gradient(135deg, #f3f8ef, #edf4e5);
    border: 1px solid rgba(45,80,22,0.12);
    border-left: 4px solid var(--secondary-color);
}

.info-box.warm {
    background: linear-gradient(135deg, #fbf8f3, #f7f2ea);
    border: 1px solid rgba(180,160,120,0.18);
    border-left: 4px solid var(--accent-color);
}

.info-box.gold {
    background: linear-gradient(135deg, #fffdf5, #fffbef);
    border: 1px solid rgba(212,160,23,0.18);
    border-left: 4px solid #d4a017;
}

.info-box.safety {
    background: linear-gradient(135deg, #fdf2ec, #f8e4d6);
    border: 2px solid rgba(180,80,40,0.25);
    border-left: 5px solid #b8542a;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-box.safety .safety-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-box h3 {
    margin: 0 0 1rem;
    font-size: 1.25rem;
    color: var(--primary-color);
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(45,80,22,0.08);
}

.info-box.warm h3 {
    border-bottom-color: rgba(180,160,120,0.15);
}

.info-box.gold h3 {
    border-bottom-color: rgba(212,160,23,0.15);
}

.info-box p, .info-box li {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.65;
}

.info-box ul, .info-box ol {
    margin: 0.5rem 0 0;
    padding-left: 1.5rem;
}

.info-box li {
    margin-bottom: 0.5rem;
}

.info-box .note {
    font-size: 0.85rem;
    color: #6a7f78;
    margin-top: 0.5rem;
}

/* Do's and Don'ts */
.dos-donts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.dos-col, .donts-col {
    padding: 1.75rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.dos-col {
    background: linear-gradient(135deg, #edf7ed, #e0f0e0);
    border: 1px solid rgba(46,125,50,0.12);
    border-top: 4px solid #2e7d32;
}

.donts-col {
    background: linear-gradient(135deg, #fef5f2, #fdeee9);
    border: 1px solid rgba(198,40,40,0.1);
    border-top: 4px solid #c62828;
}

.dos-col h3 { color: #2e7d32; margin: 0 0 1rem; font-size: 1.2rem; }
.donts-col h3 { color: #c62828; margin: 0 0 1rem; font-size: 1.2rem; }

.dos-col li, .donts-col li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #444;
    line-height: 1.55;
}

.dos-col ul, .donts-col ul {
    margin: 0;
    padding-left: 1.25rem;
}

/* Protocol Steps */
.protocol-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.protocol-step {
    padding: 1.5rem;
    border-radius: 12px;
    background: white;
    border: 1px solid rgba(45,80,22,0.1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: center;
    transition: var(--transition);
}

.protocol-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.protocol-step .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 6px rgba(45,80,22,0.25);
}

.protocol-step .step-title {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.5rem;
}

.protocol-step strong {
    display: block;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

.protocol-step p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.55;
    margin: 0;
}

/* Method Cards */
.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.method-card {
    padding: 0;
    border-radius: 12px;
    background: white;
    border: 1px solid rgba(45,80,22,0.1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: var(--transition);
}

.method-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.method-card h3 {
    margin: 0;
    font-size: 1.05rem;
    color: white;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.method-card p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
    padding: 1rem 1.5rem 0.5rem;
    line-height: 1.6;
}

.method-card .method-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #4a5e50;
    padding: 0 1.5rem;
    margin: 0.5rem 0;
}

.method-card .method-meta div {
    padding: 0.5rem 0.6rem;
    border-radius: 8px;
    background: var(--background-alt);
    border: 1px solid rgba(45,80,22,0.08);
    line-height: 1.4;
}

.method-card ol {
    margin: 0.5rem 0 1.25rem;
    padding-left: 2.75rem;
    padding-right: 1.5rem;
}

.method-card li {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 0.35rem;
    line-height: 1.5;
}

/* Size Guide */
.size-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.size-option {
    text-align: center;
    padding: 2rem 1.25rem;
    border-radius: 12px;
    border: 2px solid rgba(45,80,22,0.1);
    background: white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    transition: var(--transition);
}

.size-option:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.size-option .size-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.75rem;
}

.size-option .size-name {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.size-option .size-dims {
    font-size: 0.85rem;
    color: #888;
    margin: 0.25rem 0 0.5rem;
}

.size-option .size-desc {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.55;
}

/* Timeline */
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.timeline-item {
    text-align: center;
    padding: 1.25rem 0.75rem;
    border-radius: 12px;
    background: white;
    border: 1px solid rgba(45,80,22,0.1);
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    transition: var(--transition);
}

.timeline-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.timeline-item .season {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
    display: block;
    margin-bottom: 0.3rem;
}

.timeline-item .months {
    font-size: 0.78rem;
    color: #888;
    display: block;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(45,80,22,0.08);
}

.timeline-item .tasks {
    font-size: 0.82rem;
    color: #555;
    line-height: 1.5;
}

/* Calendar Table */
.calendar-wrap {
    overflow-x: auto;
    margin: 1rem 0;
    border-radius: 8px;
}

.calendar-table {
    width: 100%;
    font-size: 0.82rem;
    border-collapse: collapse;
    text-align: center;
}

.calendar-table thead tr {
    background: var(--primary-color);
    color: white;
    font-weight: 700;
}

.calendar-table thead td,
.calendar-table thead th {
    padding: 0.6rem 0.35rem;
    color: white;
    font-weight: 700;
}

.calendar-table tbody tr {
    border-bottom: 1px solid rgba(45,80,22,0.06);
}

.calendar-table tbody tr:nth-child(even) {
    background: rgba(45,80,22,0.03);
}

.calendar-table tbody tr:hover {
    background: rgba(45,80,22,0.06);
}

.calendar-table td {
    padding: 0.45rem 0.3rem;
    text-align: left;
    vertical-align: top;
    line-height: 1.55;
}

.calendar-table th {
    text-align: left;
}

.calendar-table td:first-child {
    text-align: left;
    padding-left: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
}

.cal-active {
    border-radius: 4px;
    font-weight: 700;
}

/* Table Wrap */
.table-wrap {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid rgba(45,80,22,0.12);
    background: #fff;
    margin: 1.5rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.table-wrap table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.table-wrap thead th {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: left;
    font-size: 0.88rem;
    padding: 0.9rem 1rem;
    border-bottom: none;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.table-wrap tbody td {
    vertical-align: top;
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(45,80,22,0.08);
    line-height: 1.6;
}

.table-wrap tbody tr:nth-child(even) {
    background: rgba(45,80,22,0.025);
}

.table-wrap tbody tr:hover {
    background: rgba(45,80,22,0.05);
}

.table-wrap tbody tr:last-child td {
    border-bottom: none;
}

.table-wrap .pill {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: rgba(45,80,22,0.08);
    border: 1px solid rgba(45,80,22,0.16);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.8rem;
    white-space: nowrap;
}

/* CTA Box */
.cta-box {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #eaf5ea 0%, #dcefd8 50%, #f4f9f0 100%);
    border: 2px solid rgba(45,80,22,0.12);
    box-shadow: 0 4px 16px rgba(45,80,22,0.08);
    margin: 2.5rem 0;
}

.cta-box h3 {
    margin: 0 0 0.75rem;
    color: var(--primary-color);
    font-size: 1.4rem;
}

.cta-box p {
    margin: 0 0 1.5rem;
    font-size: 1.05rem;
    color: #444;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-box .cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-box .cta-actions span {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    background: white;
    border: 1px solid rgba(45,80,22,0.15);
    border-radius: 999px;
    font-size: 0.88rem;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.cta-box .cta-actions span:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(45,80,22,0.2);
}

/* Learn Landing Page */
.learn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.learn-card {
    background: white;
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
    border: 1px solid rgba(45,80,22,0.06);
    border-bottom: 4px solid transparent;
    position: relative;
}

.learn-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    border-bottom-color: var(--secondary-color);
}

.learn-card::after {
    content: '→';
    position: absolute;
    top: 2rem;
    right: 1.5rem;
    font-size: 1.25rem;
    color: var(--secondary-color);
    opacity: 0;
    transform: translateX(-8px);
    transition: var(--transition);
}

.learn-card:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.learn-card .card-icon {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    display: block;
}

.learn-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
}

.learn-card p {
    color: #555;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* Category Headers */
.category-header {
    text-align: center;
    margin: 3.5rem 0 2rem;
}

.category-header h2 {
    margin-bottom: 0.5rem;
}

.category-header p {
    font-size: 0.95rem;
    color: #6a7f78;
}

.cat-divider {
    height: 3px;
    width: 80px;
    margin: 0.75rem auto 0;
    border-radius: 3px;
}

.cat-divider.berry { background: linear-gradient(90deg, #7b2d8b, #a44fb5); }
.cat-divider.green { background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)); }
.cat-divider.earth { background: linear-gradient(90deg, #6b4226, #8c6239); }

/* Blockquote */
.learn-quote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--accent-color);
    background: linear-gradient(135deg, #fbf8f3, #f7f2ea);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    font-size: 1.1rem;
    color: #4a3f30;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    line-height: 1.6;
}

/* Two Column Layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

/* Footnote */
.footnote {
    font-size: 0.8rem;
    color: #6a7f78;
    text-align: center;
    margin: 0.5rem 0 1.5rem;
}

/* Prev / Next Navigation */
.page-nav {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
}

.page-nav a {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.25rem 1.5rem;
    background: white;
    border: 1px solid rgba(45,80,22,0.1);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.page-nav a:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.page-nav a .nav-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #888;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.page-nav a .nav-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.page-nav a.next {
    text-align: right;
}

.page-nav a.prev .nav-label::before { content: '← '; }
.page-nav a.next .nav-label::after { content: ' →'; }

/* ===================================
   Responsive Updates
   =================================== */
@media (max-width: 768px) {
    .nav-dropdown .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        min-width: auto;
        margin-top: 0;
        padding: 0;
        background: transparent;
    }

    .nav-dropdown .dropdown-menu::before {
        display: none;
    }

    .nav-dropdown .dropdown-menu a {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }

    .stats-banner {
        grid-template-columns: 1fr 1fr;
    }

    .dos-donts,
    .two-col {
        grid-template-columns: 1fr;
    }

    .timeline-grid {
        grid-template-columns: 1fr 1fr;
    }

    .page-hero {
        padding: 3.5rem 1.5rem 3rem;
    }

    .page-hero h1 {
        font-size: 1.85rem;
    }

    .page-hero .hero-subtitle {
        font-size: 1.05rem;
    }

    .learn-grid {
        grid-template-columns: 1fr;
    }

    .page-nav {
        flex-direction: column;
    }

    .page-nav a.next {
        text-align: left;
    }

    .benefits-grid,
    .plant-grid {
        grid-template-columns: 1fr;
    }

    .breadcrumb {
        padding: 0.75rem 1.5rem;
    }

    .protocol-grid {
        grid-template-columns: 1fr;
    }

    .lead-intro {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .stats-banner {
        grid-template-columns: 1fr;
    }

    .timeline-grid {
        grid-template-columns: 1fr;
    }

    .cta-box .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Accessibility */
a:focus,
button:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    header {
        position: relative;
    }
    
    .hero-buttons,
    .contact-form-notice,
    .page-nav {
        display: none;
    }

    .page-hero {
        background: var(--primary-color) !important;
        padding: 2rem;
    }
}

/* === GTL overrides === */
/* Equalize panel borders site-wide (remove darker left edge) */
.info-box.green,
.info-box.warm,
.info-box.gold,
.info-box.safety,
.benefit-card,
.benefit-card:hover,
.status-box {
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: rgba(45,80,22,0.12);
}
.info-box.warm { border-left-color: rgba(180,160,120,0.18); }
.info-box.gold { border-left-color: rgba(212,160,23,0.18); }
.info-box.safety { border-left-color: rgba(212,160,23,0.35); border-left-width: 2px; }

/* Ensure plant cards always have bottom padding, even without tags */
.plant-card { padding-bottom: 1.25rem; }
.plant-card .plant-tags { padding-bottom: 0; }


/* Tighten vertical rhythm between major sections */
.section { padding: 2.5rem 2rem; }
.section h2 { margin-bottom: 1.75rem; }


/* Collapse doubled padding between adjacent sections */
.section:has(+ .section) { padding-bottom: 0.75rem; }
.section + .section { padding-top: 0.75rem; }

/* Force 2x2 method-card grid with more readable text */
.method-grid { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 720px) { .method-grid { grid-template-columns: 1fr; } }
.method-card h3 { font-size: 1.15rem; padding: 1.1rem 1.5rem; }
.method-card p { font-size: 1rem; padding: 1.25rem 1.5rem 0.75rem; }
.method-card .method-meta { font-size: 0.95rem; }
.method-card li { font-size: 1rem; margin-bottom: 0.5rem; }

/* Restore breathing room around section-alt boundaries */
.section + .section-alt, .section-alt + .section { padding-top: 2rem; }
.section:has(+ .section-alt), .section-alt:has(+ .section) { padding-bottom: 2rem; }

/* Compact back-to-top nav (replaces big prev/next pager) */
.back-to-top-nav {
    max-width: 1100px;
    margin: 1.5rem auto 2.5rem;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.back-to-top-nav a {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(45,80,22,0.18);
    border-radius: 999px;
    background: white;
    transition: var(--transition);
}
.back-to-top-nav a:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* === Final consistency pass === */
/* Uniform info-box borders: same thickness and tone on every side, every variant.
   Background colors still differentiate green/warm/gold/safety. */
.info-box,
.info-box.green,
.info-box.warm,
.info-box.gold,
.info-box.safety {
    border: 1px solid rgba(45,80,22,0.15);
    border-left: 1px solid rgba(45,80,22,0.15);
    padding: 1.75rem 2rem;
    margin-bottom: 1.5rem;
}
.info-box + .info-box { margin-top: 0.5rem; }

/* Uniform section padding rhythm */
.section, .section.section-alt { padding: 2.5rem 2rem; }
