* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0a0a0a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    padding: 2rem;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 420px;
}

.logo {
    width: 500px;
    max-width: 90vw;
    height: auto;
}

.tagline {
    color: #a0a0a0;
    font-size: 1.1rem;
    text-align: center;
    font-style: italic;
}

.contact-form {
    width: 100%;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.5rem 0.75rem;
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    color: #e0e0e0;
    font-size: 0.85rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #666;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #d4a44c;
    box-shadow: 0 0 0 3px rgba(212, 164, 76, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 60px;
}

.contact-form button {
    padding: 0.4rem 0.8rem;
    background: transparent;
    border: 1px solid #1a1a1a;
    border-radius: 4px;
    color: #444;
    font-size: 0.75rem;
    font-weight: 400;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    align-self: flex-end;
}

.contact-form button:hover {
    border-color: #333;
    color: #555;
}

.contact-form button:active {
    border-color: #444;
}

.success-message {
    color: #4ade80;
    text-align: center;
    padding: 1rem;
}

.error-message {
    color: #f87171;
    text-align: center;
    padding: 1rem;
}
