/* ==========================================================
   Responsive styles
========================================================== */

@media (max-width: 980px) {

    .nav-toggle {
        display: block;
    }

    .nav {
        position: absolute;
        top: 88px;
        left: 18px;
        right: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 20px;
        background: rgba(5, 4, 10, 0.96);
        border: 1px solid var(--border);
        border-radius: 22px;
        box-shadow: var(--shadow);
    }

    .nav.open {
        display: flex;
    }

    .nav .nav-cta {
        width: 100%;
        justify-content: center;
    }

    .hero,
    .about-grid,
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 52px;
        text-align: center;
    }

    .hero-copy {
        order: 2;
    }

    .hero-art {
        order: 1;
        margin-bottom: 24px;
    }

    .hero-photo,
    .ashley-photo-frame {
        max-width: 360px;
        margin: 0 auto;
    }

    .check-group,
    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {

    .brand span {
        font-size: 0.92rem;
    }

    .brand img {
        width: 48px;
        height: 48px;
    }

    .site-header {
        padding-inline: 14px;
    }

    .section {
        padding: 56px 0;
    }

    .hero h1 {
        font-size: clamp(2.3rem, 12vw, 3.4rem);
    }

    .button-row {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .trust-strip {
        justify-content: center;
    }

    .trust-strip span {
        width: 100%;
        justify-content: center;
    }

    .hero-photo,
    .ashley-photo-frame {
        max-width: 280px;
    }
}