.forest-page {
    color: var(--site-text, #0f120c);
    background: #f9fbf8;
}

.forest-hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--size-6);
    align-items: stretch;
    padding: var(--size-8);
    background: linear-gradient(180deg, rgba(17, 40, 25, 0.9), rgba(17, 40, 25, 0.65));
    color: #f4fff4;
    overflow: hidden;
}

.forest-hero-media {
    position: relative;
    border-radius: var(--radius-4);
    overflow: hidden;
    min-height: 260px;
    box-shadow: var(--shadow-4);
}

.forest-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.forest-hero-copy {
    backdrop-filter: blur(10px);
    background: rgba(7, 20, 10, 0.45);
    border-radius: var(--radius-4);
    padding: var(--size-6);
}

.forest-hero .button-row .button-secondary {
    border-color: rgba(244, 255, 244, 0.5);
    color: #f4fff4;
}

.forest-highlights,
.forest-notes {
    background: white;
    border-radius: var(--radius-4);
}

.forest-highlights h2,
.forest-notes h2 {
    margin-bottom: var(--size-2);
}

.forest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--size-4);
}

.forest-card {
    padding: var(--size-4);
    border-radius: var(--radius-3);
    border: 1px solid rgba(22, 40, 28, 0.08);
    background: #f6fcf3;
    box-shadow: var(--shadow-1);
}

.forest-card h3 {
    margin-top: 0;
    margin-bottom: var(--size-2);
}

.forest-card p {
    margin: 0;
    color: var(--site-text-muted);
}

.forest-checklist {
    margin: 0;
    padding-left: var(--size-5);
    display: grid;
    gap: var(--size-3);
    color: var(--site-text-muted);
}

.forest-checklist strong {
    color: var(--site-text, #0f120c);
}

@media (max-width: 640px) {
    .forest-hero {
        padding: var(--size-6);
    }

    .forest-hero-copy {
        padding: var(--size-4);
    }
}
