* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-linen: #F9F6F1;
    --text-graphite: #3D403A;
    --accent-foliage: #4A5C43;
    --secondary-terracotta: #D7BFA9;
    --border-subtle: rgba(61, 64, 58, 0.15);
}

body {
    font-family: 'Nunito Sans', -apple-system, sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-graphite);
    background-color: var(--bg-linen);
    font-weight: 400;
}

.naturalist-header {
    padding: 60px 20px 40px;
    text-align: center;
}

.site-identity {
    max-width: 800px;
    margin: 0 auto;
}

.site-nameplate {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--accent-foliage);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.earthy-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-foliage), transparent);
    margin: 0 auto;
}

.content-vessel {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
}

.botanical-nav {
    margin: 50px 0 40px;
}

.menu-disclosure {
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.5);
}

.menu-trigger {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    padding: 15px 20px;
    cursor: pointer;
    color: var(--accent-foliage);
    font-weight: 600;
    list-style: none;
    user-select: none;
    transition: background 0.3s ease;
}

.menu-trigger:hover {
    background: rgba(74, 92, 67, 0.05);
}

.menu-trigger::marker {
    display: none;
}

.menu-trigger::-webkit-details-marker {
    display: none;
}

.path-list {
    list-style: none;
    padding: 0 20px 15px;
}

.path-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.path-list li:last-child {
    border-bottom: none;
}

.path-list a {
    color: var(--text-graphite);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.path-list a:hover {
    color: var(--accent-foliage);
    padding-left: 10px;
}

.naturalist-post {
    margin-bottom: 60px;
}

.naturalist-post h1,
.naturalist-post h2,
.naturalist-post h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-foliage);
    line-height: 1.3;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.naturalist-post h1 {
    font-size: 2.5rem;
    margin-top: 0;
}

.naturalist-post h2 {
    font-size: 2rem;
}

.naturalist-post h3 {
    font-size: 1.5rem;
}

.naturalist-post p {
    margin-bottom: 20px;
    text-align: justify;
}

.naturalist-post a {
    color: var(--accent-foliage);
    text-decoration: none;
    border-bottom: 1px solid var(--secondary-terracotta);
    transition: border-color 0.3s ease;
}

.naturalist-post a:hover {
    border-bottom-color: var(--accent-foliage);
}

.naturalist-post ul,
.naturalist-post ol {
    margin: 20px 0 20px 30px;
}

.naturalist-post li {
    margin-bottom: 10px;
}

.naturalist-post img {
    max-width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 4px;
}

.naturalist-post blockquote {
    border-left: 4px solid var(--accent-foliage);
    padding-left: 25px;
    margin: 30px 0;
    font-style: italic;
    color: rgba(61, 64, 58, 0.85);
}

.fact-box {
    background: linear-gradient(135deg, rgba(215, 191, 169, 0.3) 0%, rgba(215, 191, 169, 0.15) 100%);
    border: 2px solid var(--secondary-terracotta);
    border-radius: 12px;
    padding: 35px;
    margin: 50px 0 70px;
}

.fact-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.leaf-icon {
    color: var(--accent-foliage);
    flex-shrink: 0;
}

.fact-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--accent-foliage);
    margin: 0;
}

.fact-grid {
    list-style: none;
    display: grid;
    gap: 15px;
}

.fact-item {
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
}

.fact-item::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--accent-foliage);
    font-size: 0.9rem;
}

.garden-gallery {
    width: 100%;
    margin: 80px 0;
    padding: 0;
}

.gallery-mosaic {
    display: flex;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.mosaic-primary {
    flex: 1.3;
    min-width: 0;
}

.mosaic-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    min-width: 0;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(61, 64, 58, 0.2);
}

.nature-footer {
    margin-top: 80px;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 30px 60px;
    text-align: center;
}

.footer-content .earthy-divider {
    margin-bottom: 30px;
}

.contact-line {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.contact-line a {
    color: var(--accent-foliage);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.contact-line a:hover {
    border-bottom-color: var(--accent-foliage);
}

.copyright-note {
    font-size: 0.85rem;
    color: rgba(61, 64, 58, 0.6);
    margin-top: 15px;
}

@media (max-width: 1024px) {
    .gallery-mosaic {
        flex-direction: column;
    }

    .mosaic-primary {
        max-height: 500px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .site-nameplate {
        font-size: 2.2rem;
    }

    .content-vessel {
        padding: 0 20px;
    }

    .naturalist-post h1 {
        font-size: 2rem;
    }

    .naturalist-post h2 {
        font-size: 1.6rem;
    }

    .fact-box {
        padding: 25px;
    }

    .mosaic-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 480px) {
    .site-nameplate {
        font-size: 1.8rem;
    }

    .naturalist-post h1 {
        font-size: 1.6rem;
    }

    .naturalist-post p {
        text-align: left;
    }

    .fact-box {
        padding: 20px;
    }

    .gallery-mosaic {
        padding: 0 10px;
    }
}

