.home .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex: 1;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.home .content {
    padding: 60px 40px;
    z-index: 2;
}

.home .visual {
    margin-top: 20px;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    position: relative;
    background: linear-gradient(135deg, var(--charcol) 0%, var(--dark-bg) 100%);
}

.home h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--font-colour);
}

.home h1 .highlight {
    color: var(--brand-colour);
}

.home p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--light-grey);
    margin-bottom: 12px;
}

.home .status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--light-grey);
    margin-bottom: 40px;
    padding: 12px 16px;
    background: rgba(255, 179, 71, 0.06);
    border-radius: 6px;
    border-left: 2px solid var(--brand-colour);
}

.home .status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--brand-colour);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.home .logo-image {
    max-width: 100%;
    max-height: 500px;
    width: auto;
    height: auto;
    object-fit: contain;
    z-index: 2;
    position: relative;
    transition: opacity 0.3s ease; 
}

.home .logo-image:hover { opacity: 0.8;}

@media (max-width: 1024px) {
    .home .container {
        grid-template-columns: 1fr;
    }

    .home .content {
        padding: 60px 40px;
    }

    .home .visual {
        min-height: 400px;
        padding: 40px;
    }

    .home h1 {
        font-size: 42px;
    }
}

@media (max-width: 640px) {
    .home .content {
        padding: 40px 24px;
    }

    .home .visual {
        min-height: 175px;
        padding: 15px;
        border-radius: 24px 24px 0 0;
    }

    .home h1 {
        font-size: 32px;
    }

    .home p {
        font-size: 14px;
    }

    .home .logo-image {
        max-height: 150px;
    }
}