* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #F9F9F7 0%, #F3F3EE 100%);
    color: #333333;
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.cultivation-bounds {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.seed-crown {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(85, 107, 47, 0.08);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.brand-sprout {
    display: flex;
    align-items: center;
}

.sprout-mark {
    font-size: 1.75rem;
    font-weight: 700;
    color: #556B2F;
    letter-spacing: -0.5px;
}

.growth-chamber {
    flex: 1;
    padding: 3rem 0;
}

.harvest-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

.primary-soil {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    min-height: 600px;
}

.strain-navigator {
    margin-bottom: 2rem;
    border: 2px solid #E9E6E0;
    border-radius: 12px;
    overflow: hidden;
}

.strain-navigator summary {
    background: linear-gradient(135deg, #556B2F 0%, #6B8E23 100%);
    color: #FFFFFF;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    user-select: none;
    transition: all 0.3s ease;
}

.strain-navigator summary:hover {
    background: linear-gradient(135deg, #6B8E23 0%, #556B2F 100%);
}

.strain-navigator ul {
    list-style: none;
    padding: 1rem;
    background: #FAFAF8;
}

.strain-navigator ul li {
    padding: 0.75rem 1rem;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
}

.strain-navigator ul li:hover {
    border-left-color: #556B2F;
    background: #FFFFFF;
    transform: translateX(4px);
}

.organic-content {
    color: #444444;
    font-size: 1.05rem;
    line-height: 1.8;
}

.phenotype-vault {
    background: #E9E6E0;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(85, 107, 47, 0.12);
    position: sticky;
    top: 100px;
}

.vault-label {
    color: #556B2F;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.specimen-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.specimen-frame {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #FFFFFF;
}

.specimen-frame:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(85, 107, 47, 0.25);
}

.specimen-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.4s ease;
}

.specimen-frame:hover img {
    filter: brightness(1.05) contrast(1.05);
}

.root-foundation {
    background: linear-gradient(180deg, rgba(85, 107, 47, 0.95) 0%, rgba(75, 93, 41, 1) 100%);
    color: #FFFFFF;
    padding: 2.5rem 0;
    margin-top: 4rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.foundation-cells {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.contact-soil {
    font-size: 1rem;
    opacity: 0.95;
}

.contact-soil a {
    color: #FFFFFF;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.2s ease;
    margin: 0 0.5rem;
}

.contact-soil a:hover {
    border-bottom-color: #FFFFFF;
    opacity: 1;
}

.heritage-mark {
    font-size: 0.9rem;
    opacity: 0.85;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .harvest-layout {
        grid-template-columns: 1fr;
    }

    .phenotype-vault {
        position: static;
    }

    .specimen-stack {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .specimen-frame {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 200px;
    }
}

@media (max-width: 640px) {
    .cultivation-bounds {
        padding: 0 1rem;
    }

    .primary-soil {
        padding: 1.5rem;
    }

    .phenotype-vault {
        padding: 1.5rem;
    }

    .specimen-stack {
        flex-direction: column;
    }

    .specimen-frame {
        flex: 1 1 100%;
    }

    .foundation-cells {
        flex-direction: column;
        text-align: center;
    }
}

