/* Contact page styles */

.tl-contact-shell {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.tl-contact-header {
    margin-bottom: 32px;
}

.tl-contact-header h1 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 8px;
}

.tl-contact-header p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
}

.tl-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 48px;
}

.tl-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tl-field__label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.tl-field__input {
    background: var(--surface3, #202631);
    border: 1px solid var(--border, #28303a);
    border-radius: 8px;
    color: var(--text-field, #c8cfd8);
    font-family: inherit;
    font-size: 0.9375rem;
    padding: 10px 14px;
    width: 100%;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.tl-field__input:focus {
    border-color: rgba(182, 80, 58, 0.88);
    box-shadow: 0 0 0 3px rgba(182, 80, 58, 0.16);
}

.tl-field textarea.tl-field__input {
    resize: vertical;
    min-height: 120px;
}

.tl-contact-alt {
    padding-top: 32px;
    border-top: 1px solid var(--border, #28303a);
}

.tl-contact-alt h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 8px;
}

.tl-contact-alt p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0 0 20px;
}

.tl-contact-alt ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tl-contact-alt a {
    color: var(--accent, #b6503a);
    text-decoration: none;
    font-size: 0.9375rem;
}

.tl-contact-alt a:hover {
    text-decoration: underline;
}

.tl-form-msg {
    font-size: 0.875rem;
    padding: 10px 14px;
    border-radius: 8px;
    margin: 0;
}

.tl-form-msg--ok {
    background: rgba(95, 122, 104, 0.12);
    color: var(--success, #5f7a68);
    border: 1px solid rgba(95, 122, 104, 0.3);
}

.tl-form-msg--err {
    background: rgba(168, 74, 65, 0.08);
    color: var(--error, #a84a41);
    border: 1px solid rgba(168, 74, 65, 0.25);
}

@media (max-width: 640px) {
    .tl-contact-shell {
        padding: 24px 16px 60px;
    }
}
