/* ----- CONTACT PAGE WIDGET STYLES ----- */
.uc-contact-widget-wrapper {
    background: #F6F2EA;
    color: #1A1815;
    font-family: 'Figtree', -apple-system, system-ui, sans-serif;
}

.uc-contact-widget-wrapper .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
}

.uc-contact-widget-wrapper .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 100px;
    padding: 100px 0;
}

.uc-contact-widget-wrapper .brand-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 32px;
    line-height: 1.15;
    color: #1A1815;
    margin-top: 28px;
}

.uc-contact-widget-wrapper .label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 500;
    color: #6B655C;
    display: block;
}

.uc-contact-widget-wrapper .lead {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.5;
    color: #3F3A33;
    margin-bottom: 48px;
}

.uc-contact-widget-wrapper .info-block {
    margin-bottom: 36px;
}

.uc-contact-widget-wrapper .info-block .label {
    margin-bottom: 10px;
}

.uc-contact-widget-wrapper .info-block .value {
    font-size: 17px;
    color: #1A1815;
    line-height: 1.5;
}

.uc-contact-widget-wrapper .hr {
    height: 1px;
    background: rgba(26, 24, 21, 0.14);
    width: 100%;
    margin: 48px 0;
}

.uc-contact-widget-wrapper .link-underline {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #1A1815;
    padding-bottom: 6px;
    border-bottom: 1px solid #1A1815;
    transition: gap 400ms ease, border-color 400ms ease;
    text-decoration: none;
}

.uc-contact-widget-wrapper .link-underline:hover {
    gap: 20px;
    border-color: #8A6E3F;
    color: #8A6E3F;
}

/* Contact Form 7 Custom Styling to match the design */
.uc-contact-widget-wrapper .wpcf7-form {
    width: 100%;
}

.uc-contact-widget-wrapper .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
}

.uc-contact-widget-wrapper .form-grid .full {
    grid-column: span 2;
}

.uc-contact-widget-wrapper .form-field {
    width: 100%;
}

.uc-contact-widget-wrapper .form-field label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #6B655C;
    display: block;
    margin-bottom: 8px;
}

.uc-contact-widget-wrapper .form-field input,
.uc-contact-widget-wrapper .form-field select,
.uc-contact-widget-wrapper .form-field textarea {
    width: 100%;
    padding: 14px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(26, 24, 21, 0.14);
    font-family: 'Figtree', sans-serif;
    font-size: 15px;
    color: #1A1815;
    transition: border-color 300ms ease;
}

.uc-contact-widget-wrapper .form-field input:focus,
.uc-contact-widget-wrapper .form-field select:focus,
.uc-contact-widget-wrapper .form-field textarea:focus {
    outline: none;
    border-bottom-color: #1A1815;
}

.uc-contact-widget-wrapper .form-field select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'><path fill='none' stroke='%236B655C' stroke-width='1' d='M1 1l4 4 4-4'/></svg>");
    background-repeat: no-repeat;
    background-position: right 4px center;
    background-size: 10px;
}

.uc-contact-widget-wrapper .form-field textarea {
    resize: vertical;
    min-height: 100px;
}

.uc-contact-widget-wrapper .form-consent {
    font-size: 12px;
    color: #6B655C;
    line-height: 1.6;
    margin: 28px 0;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.uc-contact-widget-wrapper .form-consent input {
    margin-top: 4px;
    accent-color: #1A1815;
}

.uc-contact-widget-wrapper .wpcf7-submit {
    padding: 18px 36px;
    background: #1A1815;
    color: #F6F2EA;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    border: none;
    display: inline-flex;
    gap: 14px;
    align-items: center;
    transition: background 400ms ease, gap 400ms ease;
    cursor: pointer;
    width: auto;
}

.uc-contact-widget-wrapper .wpcf7-submit:hover {
    background: #8A6E3F;
}

.uc-contact-widget-wrapper .wpcf7-spinner {
    margin: 0 10px;
}

/* Responsive */
@media (max-width: 960px) {
    .uc-contact-widget-wrapper .container {
        padding: 0 24px;
    }
    .uc-contact-widget-wrapper .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 80px 0;
    }
    .uc-contact-widget-wrapper .brand-title {
        font-size: 40px;
    }
    .uc-contact-widget-wrapper .form-grid {
        grid-template-columns: 1fr;
    }
    .uc-contact-widget-wrapper .form-grid .full {
        grid-column: span 1;
    }
}
