/* ─── Vine Contact Form ─────────────────────────────────────────── */

.vine-contact-form-wrapper {
    max-width: 560px;
    margin: 0 auto;
    padding: 0;
}

.vine-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Honeypot — completely hidden */
.vine-contact-hp {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
}

/* ─── Fields ─────────────────────────────────────────────────────── */

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

.vine-contact-field label {
    font-family: "Helvetica Now Display", Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.48px;
    text-transform: uppercase;
    color: rgba(155, 142, 126, 1);
}

.vine-contact-field label .required {
    color: rgb(96, 27, 28);
}

.vine-contact-field input,
.vine-contact-field select,
.vine-contact-field textarea {
    font-family: "Helvetica Now Display", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 22px;
    color: #333;
    background-color: #fff;
    border: 1px solid rgba(155, 142, 126, 0.3);
    border-radius: 4px;
    padding: 12px 14px;
    width: 100%;
    transition: border-color 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
}

.vine-contact-field input:focus,
.vine-contact-field select:focus,
.vine-contact-field textarea:focus {
    outline: none;
    border-color: rgb(96, 27, 28);
}

.vine-contact-field input.has-error,
.vine-contact-field select.has-error,
.vine-contact-field textarea.has-error {
    border-color: rgb(180, 40, 40);
}

.vine-contact-field textarea {
    resize: vertical;
    min-height: 120px;
}

/* ─── Error Messages ─────────────────────────────────────────────── */

.vine-contact-error {
    font-family: "Helvetica Now Display", Helvetica, Arial, sans-serif;
    font-size: 12px;
    color: rgb(180, 40, 40);
    min-height: 0;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.vine-contact-error.visible {
    opacity: 1;
}

/* ─── Submit Button ──────────────────────────────────────────────── */

.vine-contact-submit-row {
    padding-top: 4px;
}

.vine-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(96, 27, 28);
    color: #fff;
    font-family: "Helvetica Now Display", Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.48px;
    text-transform: none;
    padding: 15px 32px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.vine-contact-btn:hover {
    background-color: rgb(82, 15, 15);
}

.vine-contact-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ─── Status Messages ────────────────────────────────────────────── */

.vine-contact-status {
    font-family: "Helvetica Now Display", Helvetica, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.4;
    text-align: center;
    padding: 0;
    border-radius: 4px;
}

.vine-contact-status:empty {
    display: none;
}

.vine-contact-status--success {
    display: block;
    color: rgb(30, 100, 30);
    background-color: rgba(30, 100, 30, 0.08);
    padding: 14px 16px;
}

.vine-contact-status--error {
    display: block;
    color: rgb(180, 40, 40);
    background-color: rgba(180, 40, 40, 0.08);
    padding: 14px 16px;
}

/* ─── reCAPTCHA Notice ───────────────────────────────────────────── */

.vine-contact-recaptcha-notice {
    font-family: "Helvetica Now Display", Helvetica, Arial, sans-serif;
    font-size: 11px;
    color: rgba(155, 142, 126, 0.6);
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

.vine-contact-recaptcha-notice a {
    color: rgba(155, 142, 126, 0.8);
    text-decoration: underline;
}
