/* ==============================================
   AEROFIELD — RESPONSIVE BREAKPOINTS
   Mobile-first overrides.
   ============================================== */

/* --- iPad Landscape / Small Tablets (1024px and below) --- */
@media (max-width: 1024px) {
    .navbar {
        padding: 0 clamp(12px, 3vw, 24px);
    }

    .navbar-inner {
        height: 58px;
    }

    .nav-logo-icon {
        width: 34px;
        height: 34px;
        border-radius: 8px;
        padding: 6px;
    }

    .nav-logo-icon svg {
        width: 22px;
        height: 22px;
    }

    .nav-logo-text {
        font-size: 16px;
        letter-spacing: 1.5px;
    }

    .nav-links {
        gap: 4px;
    }

    .nav-link {
        font-size: 11px;
        letter-spacing: 1px;
        padding: 6px 10px;
        border-radius: 6px;
    }

    .nav-btc {
        font-size: 11px;
        letter-spacing: 0.8px;
        padding: 6px 12px;
        border-radius: 8px;
        gap: 6px;
    }

    .nav-btc svg {
        width: 16px;
        height: 16px;
    }

    /* Hero adjustments */
    .hero {
        padding: 90px 20px 60px;
    }

    .hero-seal {
        width: 160px;
        height: 160px;
        margin-bottom: var(--space-lg);
    }

    .hero-seal-svg {
        width: 72px;
        height: 72px;
    }

    .hero-title {
        letter-spacing: 4px;
    }

    .hero-subtitle {
        letter-spacing: 6px;
        margin-bottom: 24px;
    }

    .hero-tagline {
        font-size: 14px;
        max-width: 520px;
        margin-bottom: 36px;
    }

    .hero-badge {
        padding: 8px 18px;
        font-size: 11px;
        letter-spacing: 2px;
        gap: 8px;
    }

    .hero-badge-dot {
        width: 5px;
        height: 5px;
    }
}

/* --- Tablet (768px and below) --- */
@media (max-width: 768px) {
    .navbar-inner {
        height: 60px;
    }

    .nav-links {
        display: none;
    }

    .nav-motto {
        display: none;
    }

    .hero-seal {
        width: 150px;
        height: 150px;
    }

    .hero-seal-svg {
        width: 65px;
        height: 65px;
    }

    .profiles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .profile-avatar {
        width: 110px;
        height: 110px;
    }

    .profile-avatar svg {
        width: 44px;
        height: 44px;
    }

    .journal-categories {
        grid-template-columns: 1fr;
    }

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

    .protocol-banner {
        padding: 28px 20px;
    }
}

/* --- Mobile (480px and below) --- */
@media (max-width: 480px) {
    .profiles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .profile-avatar {
        width: 90px;
        height: 90px;
    }

    .profile-avatar svg {
        width: 36px;
        height: 36px;
    }
}
