/* ===== Responsive ===== */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    color: #4a3a3c;
    cursor: pointer;
    padding: 6px;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #fff;
    border-bottom: 1px solid #eee;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .15);
    padding: 8px 24px 18px;
    z-index: 99;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-nav a {
    display: block;
    padding: 12px 4px;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    color: #4a3a3c;
}

.mobile-nav a.active {
    color: var(--maroon);
}

@media (max-width: 1180px) {
    nav.mainnav {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 980px) {
    .hero-slide, .about .wrap, .dates .wrap {
        grid-template-columns:1fr;
    }

    .service-grid {
        grid-template-columns:repeat(3, 1fr);
    }

    .article-grid {
        grid-template-columns:repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns:1fr 1fr;
    }

    .hero-text, .about-text {
        text-align: center;
    }

    .hero-feats, .about-feats {
        justify-content: center;
    }

    .about-feats li {
        justify-content: center;
    }

    .hero-text p {
        margin: 0 auto 22px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-arrow {
        display: none;
    }
}

@media (max-width: 600px) {
    .service-grid {
        grid-template-columns:repeat(2, 1fr);
    }

    .article-grid {
        grid-template-columns:1fr;
    }

    .footer-grid {
        grid-template-columns:1fr;
    }

    h2.section-title {
        font-size: 22px;
    }

    .hero-text h1 {
        font-size: 24px;
    }
}
