body.home {
    overflow-x: hidden;
}

body.home em {
    font-style: italic;
    color: var(--green);
}

.shell-front-page a {
    text-decoration: none;
}

.featured-btns,
.listing-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.featured-btns {
    justify-content: flex-start;
}

.btn-shell {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: all .2s;
    border: 1px solid transparent;
    text-align: center;
}

.btn-shell--primary {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}

.btn-shell--primary:hover {
    background: var(--green-dark);
    color: #fff;
    border-color: var(--green-dark);
}

.btn-shell--gold {
    border-color: var(--gold);
    color: var(--gold);
    background: transparent;
}

.btn-shell--gold:hover {
    background: var(--gold-glow);
    color: var(--gold);
}

.btn-shell--outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text);
    background: transparent;
}

.btn-shell--outline:hover {
    border-color: var(--green);
    color: var(--green);
}

.listings-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.results-count {
    font-size: .78rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.results-count strong {
    color: var(--text);
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.listing-card.hidden,
.featured-card.hidden {
    display: none;
}

.listing-img-icon {
    font-size: 3rem;
    opacity: 0.15;
}

.featured-card {
    grid-column: 1 / -1;
    margin-bottom: 28px;
}

.featured-ref {
    font-size: .68rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.featured-desc,
.featured-desc p {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 12px;
}

.list-section {
    background: var(--navy-mid);
    border-top: 1px solid var(--border-subtle);
    padding: 90px 40px;
}

.list-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.list-kicker {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 14px;
}

.list-inner h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: #fff;
    font-weight: 400;
    margin-bottom: 16px;
}

.list-inner p {
    font-size: .92rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0 auto 32px;
}

.list-benefits {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.list-benefit {
    text-align: center;
    max-width: 220px;
}

.list-benefit-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.list-benefit-title {
    font-size: .78rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.list-benefit-desc {
    font-size: .75rem;
    color: var(--text-muted);
}

.list-contact {
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.list-contact a {
    color: var(--green);
    font-weight: 600;
}

@media (max-width:1024px) {
    .listings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:900px) {
    .filter-inner {
        gap: 16px;
    }

    .listings-section {
        padding: 40px 20px;
    }

    .list-section {
        padding: 60px 20px;
    }
}

@media (max-width:600px) {
    .featured-specs {
        gap: 16px;
    }

    .featured-btns .btn-shell {
        text-align: left;
    }

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

    .filter-group {
        flex-wrap: wrap;
    }

    .list-benefits {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
}