/* CONTACT (CONTACTO) STYLES */

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    padding-top: 160px;
}

.contact-info {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #080808;
    border-right: 1px solid #222;
    position: relative;
    overflow: hidden;
}

.line-decoration {
    position: absolute;
    top: 0;
    left: 4rem;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold), transparent);
    opacity: 0.2;
}

.meta-label {
    display: block;
    color: #444;
    font-family: monospace;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.lore-text {
    color: #888;
    line-height: 1.8;
    margin-bottom: 3rem;
    font-family: var(--font-body);
    font-size: 1.1rem;
}

.contact-details {
    margin-top: 3rem;
}

.c-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    color: #999;
}

.icon-tech {
    font-size: 1.5rem;
    color: var(--gold);
    font-family: monospace;
    opacity: 0.8;
}

.c-data label {
    display: block;
    font-size: 0.65rem;
    color: #444;
    letter-spacing: 1px;
    margin-bottom: 4px;
    font-family: var(--font-title);
}

.c-data p {
    font-family: var(--font-title);
    letter-spacing: 1px;
    margin: 0;
    font-size: 1rem;
}

.contact-form-wrapper {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #050505;
}

.form-header {
    margin-bottom: 2rem;
    color: #333;
    font-family: monospace;
    font-size: 0.8rem;
}

.select-wrapper {
    position: relative;
}

.rheikan-textarea.contact-msg {
    height: 150px;
}

.form-actions {
    margin-top: 2rem;
}

.form-disclaimer {
    margin-top: 2rem;
    color: #444;
    font-size: 0.75rem;
    font-style: italic;
    font-family: var(--font-body);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .contact-split {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 4rem 2rem;
        border-right: none;
        border-bottom: 1px solid #222;
    }

    .contact-form-wrapper {
        padding: 4rem 2rem;
    }

    .line-decoration {
        left: 2rem;
    }
}
