/* ==========================================================================
   ThisPlantGirl.com — Site Styles
   Brand: Navy + Green, Clean + Warm
   Stack: Web Awesome (components) + HTMX (interactivity) + custom CSS (brand)
   ========================================================================== */

/* --- Web Awesome Theme Overrides --- */
:root {
    /* Map our brand colors to Web Awesome's design tokens */
    --wa-color-primary-500: #4A7C59;
    --wa-color-primary-600: #2D5A3D;
    --wa-border-radius-medium: 12px;
    --wa-font-size-base: 16px;
}

/* --- Brand CSS Variables --- */
:root {
    --navy: #1B2A4A;
    --navy-light: #253660;
    --forest: #2D5A3D;
    --sage: #7A9E7E;
    --sage-light: #E8F0E9;
    --cream: #F9F7F2;
    --leaf: #4A7C59;
    --warm-gray: #6B7280;
    --white: #FFFFFF;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    --font-accent: 'Caveat', cursive;
    --radius: 12px;
    --shadow-sm: 0 2px 8px rgba(27,42,74,0.06);
    --shadow-md: 0 8px 25px rgba(27,42,74,0.08);
    --shadow-lg: 0 12px 40px rgba(27,42,74,0.12);
    --transition: 0.2s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    /*padding: 0;*/
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: #374151;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Subtle texture overlay on body */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
}

a {
    color: var(--leaf);
    text-decoration: none;
    transition: color var(--transition);
}

    a:hover {
        color: var(--forest);
    }

img {
    max-width: 100%;
    height: auto;
}

/* --- Layout --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.section {
    padding: 4.5rem 0;
}

.bg-sage-light {
    background: var(--sage-light);
}

/* --- Typography --- */
h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--navy);
    line-height: 1.2;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.content-narrow h2 {
    margin-top: 2.5rem;
}

.content-narrow p {
    margin-bottom: 1rem;
}

.text-green {
    color: var(--sage);
}

.pre-title {
    font-family: var(--font-accent);
    color: var(--sage);
    font-size: 1.2rem;
    display: block;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

    .section-header p {
        color: var(--warm-gray);
        max-width: 520px;
        margin: 0.3rem auto 0;
        font-size:15px;
    }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 10px;
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--leaf);
    color: white;
}

    .btn-primary:hover {
        background: var(--forest);
        color: white;
        transform: translateY(-1px);
        box-shadow: var(--shadow-md);
    }

.btn-secondary {
    background: var(--sage-light);
    color: var(--forest);
}

    .btn-secondary:hover {
        background: #d4e6d7;
        color: var(--forest);
    }

.btn-outline {
    border: 1.5px solid rgba(255,255,255,0.35);
    color: white;
    background: transparent;
}

    .btn-outline:hover {
        border-color: var(--sage);
        color: white;
        background: rgba(122,158,126,0.1);
    }

.btn-outline-dark {
    border: 1.5px solid var(--navy);
    color: var(--navy);
    background: transparent;
}

    .btn-outline-dark:hover {
        background: var(--navy);
        color: white;
    }

/* --- Navigation --- */
.site-nav {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #E5E7EB;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

    .logo:hover {
        color: var(--navy);
    }

.logo-leaf {
    color: var(--leaf);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.8rem;
    align-items: center;
}

    .nav-links a {
        color: var(--warm-gray);
        font-weight: 500;
        font-size: 0.95rem;
        position: relative;
    }

        .nav-links a:hover {
            color: var(--navy);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--sage);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

.nav-cta {
    background: var(--navy) !important;
    color: white !important;
    padding: 0.45rem 1.1rem !important;
    border-radius: 8px;
}

    .nav-cta:hover {
        background: var(--navy-light) !important;
    }

    .nav-cta::after {
        display: none !important;
    }

.mobile-toggle {
    display: none;
}

/* Ensure mobile drawer is hidden on desktop */
wa-drawer#mobile-nav {
    display: none;
}

@media (max-width: 768px) {
    wa-drawer#mobile-nav {
        display: block;
    }
}

/* --- Hero --- */
.hero {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.hero-small {
    padding: 3.5rem 0;
}

    .hero-small h1 {
        font-size: 2.4rem;
    }

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(122,158,126,0.15) 0%, transparent 50%), radial-gradient(circle at 20% 80%, rgba(74,124,89,0.1) 0%, transparent 40%);
}

/* Floating leaf decorations in hero */
.hero-leaf {
    position: absolute;
    font-size: 2rem;
    opacity: 0.12;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.hero-leaf:nth-child(2) {
    top: 15%;
    right: 10%;
    animation-delay: -1s;
    font-size: 3rem;
}

.hero-leaf:nth-child(3) {
    top: 60%;
    right: 25%;
    animation-delay: -3s;
    font-size: 1.5rem;
}

.hero-leaf:nth-child(4) {
    top: 30%;
    left: 8%;
    animation-delay: -2s;
    font-size: 2.5rem;
}

.hero-leaf:nth-child(5) {
    bottom: 20%;
    left: 15%;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-tagline {
    font-family: var(--font-accent);
    color: var(--sage);
    font-size: 1.3rem;
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.2s;
}

.hero h1 {
    color: white;
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.4s;
}

.hero p {
    color: #BCC6D6;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 520px;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.6s;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.8s;
}

/* Fade up animation keyframes */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero plant card stack */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.5s;
}

.plant-card-stack {
    position: relative;
    width: 340px;
    height: 380px;
}

.plant-preview-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    width: 280px;
}

    .plant-preview-card:nth-child(1) {
        top: 0;
        left: 0;
        transform: rotate(-3deg);
        z-index: 3;
    }

    .plant-preview-card:nth-child(2) {
        top: 40px;
        left: 50px;
        transform: rotate(2deg);
        z-index: 2;
        opacity: 0.7;
    }

.plant-card-icon {
    font-size: 3rem;
    margin-bottom: 0.8rem;
    display: block;
}

.plant-card-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.3rem;
}

.plant-card-difficulty {
    font-size: 0.8rem;
    color: var(--sage);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
}

    .plant-card-difficulty wa-icon {
        font-size: 0.7rem;
    }

.plant-card-tags {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

/* Tag styling for plant preview cards in hero */
.plant-preview-card .tag {
    background: var(--sage-light);
    color: var(--forest);
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.plant-preview-card wa-tag {
    font-weight: 500;
}

/* --- Guide Cards --- */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.guide-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid #E5E7EB;
    transition: all 0.3s;
    display: block;
    color: inherit;
}

    .guide-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
        border-color: var(--sage);
        color: inherit;
    }

.guide-card-img {
    height: 180px;
    background: linear-gradient(135deg, var(--sage-light), #D1E7D4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.guide-card-illustration {
    max-width: 140px;
    max-height: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.difficulty-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: white;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--leaf);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.guide-card-body {
    padding: 1.2rem;
}

    .guide-card-body p {
        color: var(--warm-gray);
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

/* --- Tags --- */
.tag-list {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

/* Override wa-tag to match brand — light minimal style */
wa-tag {
    --wa-color-neutral-0: #E8F0E9;
    --wa-color-neutral-300: transparent;
    --wa-color-neutral-700: #2D5A3D;
    font-family: var(--font-body) !important;
    font-weight: 500 !important;
}

wa-tag::part(base) {
    background-color: #E8F0E9 !important;
    border: none !important;
    color: #2D5A3D !important;
    border-radius: 20px !important;
    padding: 4px 10.4px !important;
    font-family: var(--font-body) !important;
    font-weight: 500 !important;
    font-size: 12px !important;
    line-height: 19.2px !important;
}

/* Legacy .tag class (fallback) */
.tag {
    background: var(--sage-light);
    color: var(--forest);
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* --- Filter Bar --- */
.filter-bar {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    justify-content: center;
}

.filter-tag {
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.filter-tag:hover {
    background: #d4e6d7;
    transform: translateY(-1px);
}

.filter-tag.active {
    background: var(--navy);
    color: white;
}

/* --- Plant Stats (Guide Detail) --- */
.plant-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.plant-stat {
    text-align: center;
    background: white;
    border-radius: var(--radius);
    padding: 1.2rem 0.8rem;
    border: 1px solid #E5E7EB;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--warm-gray);
    margin-bottom: 0.3rem;
}

.stat-value {
    display: block;
    font-weight: 600;
    color: var(--navy);
}

/* --- Callouts --- */
.callout {
    border-radius: var(--radius);
    padding: 1.2rem 1.5rem;
    margin: 1.5rem 0;
}

    .callout p {
        margin: 0.3rem 0 0;
    }

.callout-personal {
    background: #FFF7ED;
    border-left: 4px solid #F59E0B;
}

.callout-charlotte {
    background: var(--sage-light);
    border-left: 4px solid var(--sage);
}

/* --- Story Callout --- */
.story-callout {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

    .story-callout p {
        color: var(--warm-gray);
        margin: 1rem 0 1.5rem;
        font-size: 1.05rem;
        line-height: 1.7;
    }

/* --- Events --- */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 1.5rem;
}

.event-card {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid #E5E7EB;
    display: flex;
    gap: 1.3rem;
    transition: all 0.3s;
}

    .event-card:hover {
        border-color: var(--sage);
        box-shadow: var(--shadow-sm);
    }

.event-date {
    background: var(--sage-light);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    text-align: center;
    min-width: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-month {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--leaf);
}

.event-day {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.event-info h3 {
    font-size: 1.05rem;
}

.event-info p {
    color: var(--warm-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.event-location {
    color: var(--sage);
    font-size: 0.85rem;
    font-weight: 500;
}

/* --- Email Section --- */
.email-section {
    padding: 3rem 0;
}

.email-box {
    background: linear-gradient(135deg, var(--sage-light) 0%, #E0ECE5 100%);
    border-radius: 18px;
    padding: 3rem;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

    .email-box h2 {
        font-family: var(--font-heading);
    }

    .email-box > p {
        color: var(--warm-gray);
        margin-bottom: 1.3rem;
    }

    .email-box small {
        color: #9CA3AF;
        font-size: 0.8rem;
        display: block;
        margin-top: 0.7rem;
    }

.email-form {
    display: flex;
    gap: 0.6rem;
    max-width: 450px;
    margin: 0 auto;
    align-items: flex-end; /* align input and button bottoms */
}

    .email-form wa-input {
        flex: 1;
        --wa-input-border-color: rgba(122,158,126,0.3);
        --wa-input-border-color-focus: var(--sage);
        --wa-input-border-radius-medium: 10px;
        --wa-input-font-family: var(--font-body);
        --wa-input-required-content: ''; /* hide the asterisk */
    }

    .email-form wa-button {
        flex-shrink: 0;
    }

    .email-form input {
        flex: 1;
        padding: 0.8rem 1rem;
        border: 2px solid rgba(122,158,126,0.3);
        border-radius: 10px;
        font-family: var(--font-body);
        font-size: 0.95rem;
        background: white;
        outline: none;
        transition: border-color var(--transition);
    }

        .email-form input:focus {
            border-color: var(--sage);
        }

/* --- Empty State --- */
.empty-state {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: var(--radius);
    border: 1px dashed #D1D5DB;
}

/* --- Guide Content (Markdown) --- */
.guide-hero-image {
    margin: 2rem 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.guide-detail-photo {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

.guide-description {
    font-size: 1.1rem;
    color: var(--warm-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.guide-content h2 {
    margin-top: 2rem;
    font-size: 1.5rem;
}

.guide-content h3 {
    margin-top: 1.5rem;
    font-size: 1.2rem;
}

.guide-content p {
    margin-bottom: 1rem;
}

.guide-content ul, .guide-content ol {
    margin: 0.5rem 0 1rem 1.5rem;
}

.guide-content li {
    margin-bottom: 0.3rem;
}

.guide-content img {
    border-radius: var(--radius);
    margin: 1rem 0;
}

/* --- Footer --- */
.site-footer {
    background: var(--navy);
    padding: 3rem 0;
    color: #8B96A9;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 0.6rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-col h4 {
    color: white;
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.footer-col a {
    display: block;
    color: #8B96A9;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

    .footer-col a:hover {
        color: var(--sage);
    }

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
    }

        .mobile-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--navy);
            border-radius: 2px;
            transition: var(--transition);
        }

    .nav-links {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid #E5E7EB;
        gap: 0.8rem;
    }

    .site-nav.open .nav-links {
        display: flex;
    }

    .guides-grid {
        grid-template-columns: 1fr;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .plant-stats {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .email-form {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
    }

    .sisters-inner {
        padding: 2rem 0;
    }

    .sisters-left {
        flex-direction: column;
        text-align: center;
    }

    .sisters-headline-group {
        align-items: center;
    }

    .sisters-cards-row {
        flex-direction: column;
        gap: 0.8rem;
    }

    .sister-card-content {
        min-width: auto;
    }

    .potm-section {
        padding: 3rem 0;
    }

    .potm-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .potm-visual {
        order: 2;
        padding: 1.5rem;
    }

    .potm-emoji {
        font-size: 4rem;
    }

    .potm-text {
        order: 1;
        text-align: center;
    }

    .potm-text h2 {
        font-size: 1.8rem;
    }

    .potm-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
    }

    .potm-stat {
        padding: 0.8rem 0.3rem;
    }

    .potm-stat-value {
        font-size: 0.85rem;
    }

    .shop-teaser-inner {
        flex-direction: column;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mobile-toggle {
        display: flex !important;
    }

    .nav-links {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .mobile-toggle {
        display: none !important;
    }
}

/* --- HTMX Indicators --- */
.htmx-indicator {
    display: none;
}

.htmx-request .htmx-indicator {
    display: block;
}

.htmx-request.htmx-indicator {
    display: block;
}

/* --- Subscribe Results --- */
.success {
    color: var(--leaf);
    font-weight: 600;
    padding: 0.5rem;
}

.error {
    color: #DC2626;
    font-weight: 500;
    padding: 0.5rem;
}

/* --- Web Awesome component overrides --- */
wa-button[variant="brand"]::part(base) {
    font-family: var(--font-body);
}

wa-spinner {
    font-size: 1.5rem;
    --indicator-color: var(--leaf);
    --track-color: var(--sage-light);
}

wa-input {
    --wa-input-font-family: var(--font-body);
}

/* Web Awesome card styling with proper media support */
wa-card.guide-card {
    --padding: 0;
    border-radius: 14px;
    overflow: hidden;
}

wa-card.guide-card::part(base) {
    border: 1px solid #E5E7EB;
    transition: all 0.3s;
}

wa-card.guide-card:hover::part(base) {
    border-color: var(--sage);
    box-shadow: 0 12px 30px rgba(27,42,74,0.08);
    transform: translateY(-4px);
}

wa-card.guide-card wa-card-media::part(base) {
    padding: 0;
}

wa-card.guide-card wa-card-body::part(base) {
    padding: 1.3rem;
}

wa-card.guide-card h3 {
    font-family: var(--font-heading);
    color: var(--navy);
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
}

wa-card.guide-card p {
    color: var(--warm-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

wa-card.guide-card .tag-list {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.guide-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.guide-card-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.guide-card-img-1 {
    background: linear-gradient(135deg, #E8F0E9, #D1E7D4);
}

.guide-card-img-2 {
    background: linear-gradient(135deg, #E0ECE5, #C8DED0);
}

.guide-card-img-3 {
    background: linear-gradient(135deg, #EBF0E8, #D5E5D8);
}

/* Apply nth-child gradient variations to guide cards in grid */
.guides-grid .guide-card-link:nth-child(1) .guide-card-img,
.guides-grid .guide-card:nth-child(1) .guide-card-img {
    background: linear-gradient(135deg, #E8F0E9, #D1E7D4);
}

.guides-grid .guide-card-link:nth-child(2) .guide-card-img,
.guides-grid .guide-card:nth-child(2) .guide-card-img {
    background: linear-gradient(135deg, #E0ECE5, #C8DED0);
}

.guides-grid .guide-card-link:nth-child(3) .guide-card-img,
.guides-grid .guide-card:nth-child(3) .guide-card-img {
    background: linear-gradient(135deg, #EBF0E8, #D5E5D8);
}

.guide-card-plant-icon {
    font-size: 4rem;
    color: var(--forest);
    opacity: 0.6;
}

/* CSS-based plant illustrations */
.plant-illustration {
    position: relative;
    width: 100px;
    height: 100px;
}

.plant-emoji {
    font-size: 5rem;
    opacity: 0.7;
}

/* Pothos illustration - potted plant with trailing vines */
.pothos-illustration {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pothos-illustration .pot {
    width: 45px;
    height: 35px;
    background: linear-gradient(to bottom, #C4A35A, #9B7D3D);
    border-radius: 0 0 8px 8px;
    position: relative;
    box-shadow: inset 0 -3px 5px rgba(0,0,0,0.1);
}

.pothos-illustration .pot::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -5px;
    right: -5px;
    height: 10px;
    background: linear-gradient(to bottom, #C4A35A, #9B7D3D);
    border-radius: 8px 8px 0 0;
}

.pothos-illustration .vine {
    position: absolute;
    width: 3px;
    height: 40px;
    background: var(--forest);
    border-radius: 2px;
    top: 20px;
}

.pothos-illustration .vine::before,
.pothos-illustration .vine::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--sage);
    border-radius: 50% 0 50% 50%;
    transform: rotate(-45deg);
}

.pothos-illustration .vine::before {
    top: 8px;
    left: -6px;
}

.pothos-illustration .vine::after {
    top: 20px;
    right: -6px;
    transform: rotate(45deg);
}

.pothos-illustration .vine-1 {
    left: 35px;
    transform: rotate(-15deg);
}

.pothos-illustration .vine-2 {
    right: 35px;
    transform: rotate(15deg);
}

/* Monstera illustration - large fenestrated leaf */
.monstera-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
}

.monstera-illustration .monstera-leaf {
    width: 70px;
    height: 80px;
    background: var(--forest);
    border-radius: 0 50% 50% 50%;
    position: relative;
    opacity: 0.7;
    transform: rotate(-25deg);
}

.monstera-illustration .monstera-leaf::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 35px;
    background: var(--sage-light);
    top: 15px;
    left: 20px;
    border-radius: 4px;
}

.monstera-illustration .monstera-leaf::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 25px;
    background: var(--sage-light);
    top: 25px;
    right: 15px;
    border-radius: 4px;
}

/* Propagation illustration - seedling sprouting */
.propagation-illustration {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100px;
}

.propagation-illustration .seedling {
    width: 4px;
    height: 45px;
    background: var(--forest);
    border-radius: 2px;
    position: relative;
}

.propagation-illustration .seedling::before,
.propagation-illustration .seedling::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 25px;
    background: var(--sage);
    border-radius: 50% 50% 0 50%;
    top: -5px;
}

.propagation-illustration .seedling::before {
    left: -10px;
    transform: rotate(-30deg);
}

.propagation-illustration .seedling::after {
    right: -10px;
    transform: rotate(30deg) scaleX(-1);
}

/* Image-based illustrations */
.guide-card-illustration {
    max-width: 120px;
    max-height: 140px;
    object-fit: contain;
    opacity: 0.8;
}

.difficulty-badge {
    position: absolute;
    top: 12px;
    right: 12px;
}

/* wa-card for sisters */
wa-card.sister-card {
    --padding: 0;
}

    wa-card.sister-card::part(base) {
        background: var(--cream);
        border: 1px solid #E5E7EB;
        border-radius: 14px;
        padding: 1.1rem 1.4rem;
        transition: all 0.3s;
    }

    wa-card.sister-card:hover::part(base) {
        border-color: var(--sage);
        box-shadow: 0 6px 20px rgba(27,42,74,0.06);
        transform: translateY(-2px);
    }

.sister-card-content {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 260px;
}

/* wa-card for events */
wa-card.event-card {
    --padding: 0;
}

    wa-card.event-card::part(base) {
        border: 1px solid #E5E7EB;
        border-radius: 14px;
        padding: 1.8rem;
        transition: all 0.3s;
    }

    wa-card.event-card:hover::part(base) {
        border-color: var(--sage);
        box-shadow: 0 8px 25px rgba(27,42,74,0.06);
    }

.event-card-inner {
    display: flex;
    gap: 1.5rem;
}

/* wa-card for shop teaser */
wa-card.shop-teaser {
    --padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

    wa-card.shop-teaser::part(base) {
        border: 1px solid #E5E7EB;
        border-radius: 14px;
        padding: 2.5rem;
    }

.shop-teaser-inner {
    display: flex;
    gap: 2rem;
    align-items: center;
}

    .shop-teaser-inner .shop-teaser-icon {
        width: 80px;
        height: 80px;
        background: var(--sage-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .shop-teaser-inner h3 {
        font-family: var(--font-heading);
        color: var(--navy);
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }

    .shop-teaser-inner p {
        color: var(--warm-gray);
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

/* wa-card for quick stats on guide detail */
wa-card.quick-stats {
    --padding: 0;
    margin: 1.5rem 0;
}

    wa-card.quick-stats::part(base) {
        border: 1px solid #E5E7EB;
        border-radius: 14px;
        padding: 1.5rem;
    }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

    .stat wa-icon {
        font-size: 1.3rem;
    }

.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    color: var(--warm-gray);
}

.stat-value {
    color: var(--navy);
    font-weight: 600;
    font-size: 0.9rem;
}

/* wa-alert for callout boxes */
wa-alert.callout-box {
    margin: 1.5rem 0;
}

/* Filter bar with wa-tag */
.filter-bar {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.filter-tag {
    cursor: pointer;
    transition: all 0.2s;
}

    .filter-tag.active {
        --wa-tag-background-color: var(--navy);
        --wa-tag-color: white;
    }

/* Mobile drawer */
.mobile-drawer .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

    .mobile-drawer .mobile-nav-links a {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        text-decoration: none;
        color: var(--navy);
        font-weight: 500;
        padding: 0.6rem 0;
        font-size: 1.05rem;
    }

        .mobile-drawer .mobile-nav-links a wa-icon {
            color: var(--sage);
        }

/* Hero outline button override for dark bg */
.hero-btn-outline::part(base) {
    color: white;
    border-color: rgba(255,255,255,0.3);
}

.hero-btn-outline:hover::part(base) {
    border-color: var(--sage);
    background: rgba(122,158,126,0.1);
}

/* Section alternate bg */
.section-cream {
    background: var(--sage-light);
}

/* --- Plant of the Month --- */
.potm-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

    .potm-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 70% 50%, rgba(122,158,126,0.12) 0%, transparent 60%);
    }

.potm-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.potm-visual {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
}

.potm-emoji {
    font-size: 6rem;
    display: block;
    margin-bottom: 0.5rem;
}

.potm-badge {
    display: inline-block;
    background: var(--sage);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.potm-text .pre-title {
    font-family: var(--font-accent);
    color: var(--sage);
    font-size: 1.2rem;
}

.potm-text h2 {
    font-family: var(--font-heading);
    color: white;
    font-size: 2.4rem;
    margin: 0.3rem 0 0.8rem;
}

.potm-text p {
    color: #BCC6D6;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.potm-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.potm-stat {
    text-align: center;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 1rem 0.5rem;
    border: 1px solid rgba(255,255,255,0.08);
}

.potm-stat-icon {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

    .potm-stat-icon wa-icon {
        font-size: 1.3rem;
    }

.potm-stat-label {
    color: var(--sage);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.potm-stat-value {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 0.15rem;
}

/* --- Logo --- */
.logo-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
}

.logo-tagline {
    font-family: var(--font-accent);
    font-size: 0.78rem;
    color: var(--sage);
    margin-top: -1px;
}

/* --- Sisters Banner --- */
.sisters-banner {
    background: var(--white);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #E5E7EB;
}

    .sisters-banner::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 50%, rgba(122,158,126,0.08) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(196,163,90,0.06) 0%, transparent 50%);
    }

    .sisters-banner::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--forest), var(--sage), #C4A35A);
    }

.sisters-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2.8rem 0;
    position: relative;
    z-index: 2;
}

.sisters-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sisters-headline-group {
    display: flex;
    flex-direction: column;
}

.sisters-eyebrow {
    font-family: var(--font-accent);
    color: var(--sage);
    font-size: 1.05rem;
}

.sisters-headline {
    font-family: var(--font-heading);
    color: var(--navy);
    font-size: 1.6rem;
    font-weight: 700;
}

.sisters-cards-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sisters-heart {
    color: #C4A35A;
    font-size: 1.3rem;
    flex-shrink: 0;
    opacity: 0.8;
}

.sister-card {
    background: var(--cream);
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    padding: 1.1rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 280px;
    transition: all 0.3s;
}

    .sister-card:hover {
        border-color: var(--sage);
        box-shadow: 0 6px 20px rgba(27,42,74,0.06);
        transform: translateY(-2px);
    }

.sister-card-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.expert-avatar {
    background: rgba(74,124,89,0.15);
    box-shadow: 0 0 0 2px rgba(74,124,89,0.2);
}

.learner-avatar {
    background: rgba(196,163,90,0.12);
    box-shadow: 0 0 0 2px rgba(196,163,90,0.2);
}

.sister-card-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.sister-card-name {
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
}

.sister-card-desc {
    color: var(--warm-gray);
    font-size: 0.8rem;
    line-height: 1.4;
}

.sisters-cta {
    display: inline-block;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 0.6rem 1.6rem;
    border: 1.5px solid var(--navy);
    border-radius: 10px;
    transition: all var(--transition);
    margin-top: 0.3rem;
}

    .sisters-cta:hover {
        background: var(--navy);
        color: white;
    }

/* --- Shop Teaser --- */
.shop-teaser {
    background: white;
    border-radius: 14px;
    border: 1px solid #E5E7EB;
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.shop-teaser-icon {
    width: 80px;
    height: 80px;
    background: var(--sage-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.shop-teaser h3 {
    font-family: var(--font-heading);
    color: var(--navy);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.shop-teaser p {
    color: var(--warm-gray);
    font-size: 0.95rem;
}

.coming-badge {
    display: inline-block;
    background: rgba(196,163,90,0.15);
    color: #C4A35A;
    padding: 0.2rem 0.7rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.5rem;
}
