/* Contact Page - Ultra Minimal */

.contact-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.minimal-form form {
    position: relative;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.submit-button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
    pointer-events: none;
}

/* Reset and Base */
.contact-hero {
    display: none;
}

/* Main Contact Section */
.contact-main {
    min-height: 100vh;
    background: #000;
    padding: 150px 0 100px;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Simple Title */
.contact-title {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 80px;
}

/* Two Column Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
}

/* Talent intro line */
.contact-talent-line {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    white-space: nowrap;
    color: #d4af37;
    margin-bottom: 60px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(200, 167, 80, 0.2);
    cursor: default;
    transition: letter-spacing 0.4s ease, border-color 0.4s ease;
}

.contact-talent-line:hover {
    letter-spacing: 6px;
    border-color: rgba(200, 167, 80, 0.6);
}

/* Left Column - Info */
.contact-info h2 {
    font-size: 32px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 40px;
    line-height: 1.2;
}

.info-block {
    margin-bottom: 40px;
}

.info-block p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.info-block p:first-child {
    color: var(--white);
    margin-bottom: 5px;
}

/* Right Column - Form */
.minimal-form {
    padding-top: 10px;
}

.form-field {
    margin-bottom: 40px;
}

.field-label {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--white);
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-bottom-color: rgba(255, 255, 255, 0.8);
}

.form-field textarea {
    resize: none;
    min-height: 120px;
}

/* Submit Button — matches site glass style */
.submit-button {
    margin-top: 40px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(
        135deg,
        rgba(200, 167, 80, 0.25) 0%,
        rgba(200, 167, 80, 0.08) 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border: 1px solid rgba(200, 167, 80, 0.3);
    border-radius: 50px;
    box-shadow:
        0 4px 24px rgba(200, 167, 80, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.submit-button .btn-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.submit-button:hover {
    border-color: rgba(200, 167, 80, 0.6);
    box-shadow:
        0 8px 32px rgba(200, 167, 80, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    gap: 14px;
}

.submit-button:hover .btn-arrow {
    transform: translateX(4px);
}

/* Mobile */
@media (max-width: 768px) {
    .contact-main {
        padding: 120px 0 80px;
    }
    
    .contact-container {
        padding: 0 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-info h2 {
        font-size: 28px;
    }
    
    .submit-button {
        width: 100%;
        justify-content: center;
    }
}