/* ── Starr Talent Contact Form ── */

.stcf-wrapper {
    max-width: 640px;
    margin: 40px auto;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
}

.stcf-form-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    padding: 40px 44px;
}

/* Field groups */
.stcf-field-group {
    margin-bottom: 28px;
}

.stcf-field-group label {
    display: block;
    font-size: 11px;
    font-family: 'Montserrat', 'Trebuchet MS', sans-serif;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c8a97e;
    margin-bottom: 8px;
}

.stcf-required {
    color: #c8a97e;
    opacity: 0.7;
}

.stcf-optional {
    color: rgba(255,255,255,0.35);
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-left: 6px;
    font-weight: 400;
}

/* Inputs & textarea */
.stcf-form-container input[type="text"],
.stcf-form-container input[type="email"],
.stcf-form-container input[type="tel"],
.stcf-form-container textarea,
.stcf-form-container select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    color: #f0ece4;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 16px;
    padding: 12px 16px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease;
    -webkit-appearance: none;
    appearance: none;
}

.stcf-form-container input::placeholder,
.stcf-form-container textarea::placeholder {
    color: rgba(240, 236, 228, 0.3);
}

.stcf-form-container input:focus,
.stcf-form-container textarea:focus,
.stcf-form-container select:focus {
    border-color: #c8a97e;
    background: rgba(200, 169, 126, 0.06);
}

.stcf-form-container input.stcf-valid,
.stcf-form-container textarea.stcf-valid,
.stcf-form-container select.stcf-valid {
    border-color: rgba(200, 169, 126, 0.5);
}

.stcf-form-container input.stcf-invalid,
.stcf-form-container textarea.stcf-invalid {
    border-color: rgba(210, 80, 80, 0.6);
}

.stcf-form-container textarea {
    resize: vertical;
    min-height: 120px;
}

/* Select styling */
.stcf-form-container select {
    cursor: pointer;
    color: #f0ece4;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c8a97e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
}

.stcf-form-container select option {
    background: #1a1a1a;
    color: #f0ece4;
}

/* Social row */
.stcf-social-row {
    display: flex;
    gap: 12px;
}

.stcf-social-row input {
    flex: 1;
}

.stcf-social-row select {
    width: 160px;
    flex-shrink: 0;
}

/* Character count */
.stcf-char-count {
    text-align: right;
    font-size: 11px;
    font-family: 'Montserrat', sans-serif;
    color: rgba(255,255,255,0.3);
    margin-top: 6px;
    letter-spacing: 0.05em;
}

/* Error messages */
.stcf-error {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 0.08em;
    color: #e07070;
    margin-top: 6px;
    min-height: 14px;
    transition: opacity 0.2s ease;
}

/* Submit row */
.stcf-submit-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 36px;
    flex-wrap: wrap;
}

/* Button */
.stcf-btn {
    font-family: 'Montserrat', 'Trebuchet MS', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid #c8a97e;
    color: #c8a97e;
    padding: 13px 36px;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.25s ease, color 0.25s ease, opacity 0.25s ease;
    white-space: nowrap;
}

.stcf-btn:not(:disabled):hover {
    background: #c8a97e;
    color: #0d0d0d;
}

.stcf-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Feedback message */
.stcf-feedback {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 15px;
    font-style: italic;
    line-height: 1.5;
    flex: 1;
}

.stcf-feedback.stcf-success {
    color: #c8a97e;
}

.stcf-feedback.stcf-error-msg {
    color: #e07070;
}

/* Responsive */
@media (max-width: 600px) {
    .stcf-form-container {
        padding: 28px 20px;
    }
    .stcf-social-row {
        flex-direction: column;
    }
    .stcf-social-row select {
        width: 100%;
    }
    .stcf-submit-row {
        flex-direction: column;
        align-items: flex-start;
    }
}
