/* ==========================================================
   Shankev LLC — Modern Responsive
   Mobile-first adjustments for tablet and phone breakpoints.
   ========================================================== */

/* ── Tablet (≤ 900px) ───────────────────────────────────── */

@media (max-width: 900px) {

    .header-inner {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem 0 0.5rem;
    }

    .logo img {
        height: 50px;
    }

    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.25rem;
    }

    .nav a {
        font-size: 0.85rem;
        padding: 0.4rem 0.7rem;
    }

    .hero {
        padding: 4rem 1rem 3rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 320px;
    }

    .section {
        padding: 3rem 0;
    }

    .section-lead {
        margin-bottom: 2rem;
    }

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

    .process-list {
        grid-template-columns: 1fr;
    }

    .cta {
        padding: 3rem 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* ── Phone (≤ 520px) ────────────────────────────────────── */

@media (max-width: 520px) {

    :root {
        --space-section: 2.5rem;
    }

    .nav ul {
        gap: 0;
    }

    .nav a {
        font-size: 0.8rem;
        padding: 0.35rem 0.5rem;
    }

    .logo img {
        height: 36px;
    }

    .hero {
        padding: 3rem 0.75rem 2.5rem;
    }

    .hero-eyebrow {
        font-size: 0.7rem;
        letter-spacing: 0.15em;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-sub {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-lead {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .card {
        padding: 1.25rem;
    }

    .tag-grid {
        gap: 0.5rem;
    }

    .tag {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .cta h2 {
        font-size: 1.35rem;
    }

    .cta p {
        font-size: 0.95rem;
    }

    .contact-form {
        padding: 1.25rem;
        border-radius: var(--radius-md);
    }

    .contact-form button {
        font-size: 0.9rem;
    }

    .site-footer {
        padding: 2rem 1rem;
        font-size: 0.82rem;
    }
}