body.theme-emerald .site-main.is-contact {
    padding: 0 0 3rem;
    background: var(--em-soft, #f4f4f7);
}

body.theme-emerald .em-contact,
body.theme-emerald .em-contact *,
body.theme-emerald .em-contact *::before,
body.theme-emerald .em-contact *::after {
    box-sizing: border-box;
}

body.theme-emerald .em-contact {
    --em-contact-ink: var(--theme-text, var(--em-ink, #111118));
    --em-contact-muted: var(--theme-text-muted, var(--em-muted, #6b6b76));
    --em-contact-line: var(--theme-border, var(--em-line, #e6e6ec));
    --em-contact-accent: var(--theme-accent, var(--em-primary, #6b4eff));
    --em-contact-soft: var(--theme-surface-alt, var(--em-soft, #f4f4f7));
    --em-contact-surface: var(--theme-surface, #ffffff);
    --em-contact-invalid: #c62828;
    --em-contact-invalid-bg: #fff5f5;
    --em-contact-valid: #1b7a45;
    --em-contact-valid-bg: #f1faf4;
    overflow-x: clip;
    color: var(--em-contact-ink);
}

body.theme-emerald .em-contact-hero {
    padding: 1.35rem 0 1.6rem;
    background:
        radial-gradient(120% 90% at 8% -20%, color-mix(in srgb, var(--em-contact-accent) 22%, transparent), transparent 58%),
        linear-gradient(180deg, #fff 0%, var(--em-contact-soft) 100%);
    border-bottom: 1px solid var(--em-contact-line);
}

body.theme-emerald .em-contact-hero .storefront-breadcrumbs {
    margin: 0 0 .85rem;
}

body.theme-emerald .em-contact-hero .storefront-breadcrumbs__list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: .3rem .45rem;
    margin: 0;
    padding: 0;
    font-size: .82rem;
}

body.theme-emerald .em-contact-hero .storefront-breadcrumbs__item {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}

body.theme-emerald .em-contact-hero .storefront-breadcrumbs a {
    color: color-mix(in srgb, var(--em-contact-accent) 72%, var(--em-contact-ink));
    font-weight: 600;
}

body.theme-emerald .em-contact-hero .storefront-breadcrumbs a:hover,
body.theme-emerald .em-contact-hero .storefront-breadcrumbs a:focus-visible {
    color: var(--em-contact-accent);
}

body.theme-emerald .em-contact-hero__eyebrow {
    margin: 0 0 .4rem;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--em-contact-accent);
}

body.theme-emerald .em-contact-hero__title {
    margin: 0;
    font-size: clamp(1.7rem, 4vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: 1.15;
    color: var(--em-contact-ink);
}

body.theme-emerald .em-contact-hero__lead {
    margin: .55rem 0 0;
    max-width: 38rem;
    color: var(--em-contact-muted);
    font-size: 1.02rem;
    line-height: 1.5;
}

body.theme-emerald .em-contact__body {
    padding: 1.35rem 0 0;
}

body.theme-emerald .em-contact__grid {
    display: grid;
    grid-template-columns: minmax(0, 16.5rem) minmax(0, 1fr);
    gap: 1.15rem 1.35rem;
    align-items: start;
}

body.theme-emerald .em-contact__aside {
    display: grid;
    gap: .85rem;
}

body.theme-emerald .em-contact-card {
    padding: 1.05rem 1.1rem;
    background: var(--em-contact-surface);
    border: 1px solid var(--em-contact-line);
    border-radius: var(--em-radius, 16px);
    box-shadow: 0 8px 24px rgba(17, 17, 24, 0.05);
}

body.theme-emerald .em-contact-card h2 {
    margin: 0 0 .55rem;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--em-contact-accent);
}

body.theme-emerald .em-contact-card p {
    margin: 0;
    color: var(--em-contact-muted);
    font-size: .92rem;
    line-height: 1.5;
}

body.theme-emerald .em-contact-points {
    list-style: none;
    margin: 0;
    padding: 0;
}

body.theme-emerald .em-contact-points li {
    position: relative;
    padding: .28rem 0 .28rem 1.05rem;
    color: var(--em-contact-ink);
    font-size: .94rem;
    font-weight: 600;
}

body.theme-emerald .em-contact-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .72rem;
    width: .45rem;
    height: .45rem;
    border-radius: 999px;
    background: var(--em-contact-accent);
}

body.theme-emerald .em-contact-card .em-social {
    margin-top: .75rem;
}

body.theme-emerald .em-contact-card--links {
    display: flex;
    flex-direction: column;
    gap: .15rem;
}

body.theme-emerald .em-contact-card--links a {
    display: block;
    padding: .4rem 0;
    color: var(--em-contact-ink);
    font-weight: 650;
    border-bottom: 1px solid var(--em-contact-line);
}

body.theme-emerald .em-contact-card--links a:last-of-type {
    border-bottom: 0;
}

body.theme-emerald .em-contact-card--links a:hover,
body.theme-emerald .em-contact-card--links a:focus-visible {
    color: var(--em-contact-accent);
}

body.theme-emerald .em-contact__panel {
    min-width: 0;
    padding: 1.25rem 1.15rem 1.4rem;
    background: var(--em-contact-surface);
    border: 1px solid var(--em-contact-line);
    border-top: 3px solid var(--em-contact-accent);
    border-radius: var(--em-radius, 16px);
    box-shadow: 0 10px 28px rgba(17, 17, 24, 0.06);
}

body.theme-emerald .em-contact__panel-title {
    margin: 0 0 1rem;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -.02em;
}

body.theme-emerald .em-contact .tl-contact {
    max-width: none;
    width: 100%;
    color: var(--em-contact-ink);
}

body.theme-emerald .em-contact .tl-contact__form {
    gap: 1rem;
}

body.theme-emerald .em-contact .tl-contact__heading h3 {
    font-size: 1rem;
    font-weight: 800;
    color: color-mix(in srgb, var(--em-contact-accent) 70%, var(--em-contact-ink));
}

body.theme-emerald .em-contact .tl-contact__field-label {
    font-size: .9rem;
    font-weight: 700;
    color: color-mix(in srgb, var(--em-contact-ink) 88%, var(--em-contact-muted));
}

body.theme-emerald .em-contact .tl-contact__req {
    color: var(--em-contact-invalid);
}

body.theme-emerald .em-contact .tl-contact__field input,
body.theme-emerald .em-contact .tl-contact__field select,
body.theme-emerald .em-contact .tl-contact__field textarea,
body.theme-emerald .em-contact .tl-contact__field .tl-contact__geo-control {
    min-height: 2.85rem;
    padding: .7rem .8rem;
    border: 1.5px solid var(--em-contact-line);
    border-radius: 12px;
    background: #fff;
    color: var(--em-contact-ink);
    font: inherit;
}

body.theme-emerald .em-contact .tl-contact__field textarea {
    min-height: 8.5rem;
    resize: vertical;
}

body.theme-emerald .em-contact .tl-contact__field select,
body.theme-emerald .em-contact .tl-contact__field .tl-contact__geo-control {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--em-contact-muted) 50%),
        linear-gradient(135deg, var(--em-contact-muted) 50%, transparent 50%);
    background-position: calc(100% - 16px) calc(50% - 2px), calc(100% - 11px) calc(50% - 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    padding-right: 2rem;
}

body.theme-emerald .em-contact .tl-contact__field input:focus,
body.theme-emerald .em-contact .tl-contact__field select:focus,
body.theme-emerald .em-contact .tl-contact__field textarea:focus,
body.theme-emerald .em-contact .tl-contact__field .tl-contact__geo-control:focus {
    outline: none;
    border-color: var(--em-contact-accent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--em-contact-accent) 22%, transparent);
}

body.theme-emerald .em-contact .tl-contact__field input.is-invalid,
body.theme-emerald .em-contact .tl-contact__field select.is-invalid,
body.theme-emerald .em-contact .tl-contact__field textarea.is-invalid,
body.theme-emerald .em-contact .tl-contact__field .tl-contact__geo-control.is-invalid {
    border-color: var(--em-contact-invalid) !important;
    background-color: var(--em-contact-invalid-bg) !important;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--em-contact-invalid) 20%, transparent) !important;
}

body.theme-emerald .em-contact .tl-contact__field input.is-valid,
body.theme-emerald .em-contact .tl-contact__field select.is-valid,
body.theme-emerald .em-contact .tl-contact__field textarea.is-valid,
body.theme-emerald .em-contact .tl-contact__field .tl-contact__geo-control.is-valid {
    border-color: var(--em-contact-valid) !important;
    background-color: var(--em-contact-valid-bg) !important;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--em-contact-valid) 18%, transparent) !important;
}

body.theme-emerald .em-contact .tl-contact__field.is-invalid,
body.theme-emerald .em-contact .tl-contact__field.is-invalid .tl-contact__field-label {
    color: var(--em-contact-invalid);
}

body.theme-emerald .em-contact .tl-contact__field.is-valid .tl-contact__field-label {
    color: var(--em-contact-valid);
}

body.theme-emerald .em-contact .tl-contact__optin {
    padding: .75rem .85rem;
    border: 1px solid var(--em-contact-line);
    border-radius: 12px;
    background: color-mix(in srgb, var(--em-contact-soft) 80%, #fff);
}

body.theme-emerald .em-contact .tl-contact__optin.is-invalid,
body.theme-emerald .em-contact .tl-contact__optin:has(input.is-invalid) {
    border-color: var(--em-contact-invalid);
    background: var(--em-contact-invalid-bg);
}

body.theme-emerald .em-contact .tl-contact__optin:has(input.is-valid) {
    border-color: color-mix(in srgb, var(--em-contact-valid) 50%, var(--em-contact-line));
    background: var(--em-contact-valid-bg);
}

body.theme-emerald .em-contact .tl-contact__notice--error {
    border-radius: 12px;
    border-color: color-mix(in srgb, var(--em-contact-invalid) 40%, #e0b4b4);
    background: var(--em-contact-invalid-bg);
    color: var(--em-contact-invalid);
}

body.theme-emerald .em-contact .tl-contact__recaptcha {
    max-width: 100%;
    overflow: hidden;
}

body.theme-emerald .em-contact .tl-contact__recaptcha .g-recaptcha {
    transform-origin: left top;
}

body.theme-emerald .em-contact .tl-contact__recaptcha.is-invalid {
    border-color: var(--em-contact-invalid);
    background: var(--em-contact-invalid-bg);
}

body.theme-emerald .em-contact .tl-contact__recaptcha.is-valid {
    border-color: var(--em-contact-valid);
    background: var(--em-contact-valid-bg);
}

body.theme-emerald .em-contact .tl-contact__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 3.05rem;
    padding: .85rem 1.3rem;
    border: 0;
    border-radius: 999px;
    background: var(--em-contact-accent);
    color: #fff;
    font: inherit;
    font-weight: 750;
    cursor: pointer;
    box-shadow: 0 10px 22px color-mix(in srgb, var(--em-contact-accent) 28%, transparent);
}

body.theme-emerald .em-contact .tl-contact__submit:hover,
body.theme-emerald .em-contact .tl-contact__submit:focus-visible {
    filter: brightness(1.05);
}

body.theme-emerald .em-contact__thanks {
    max-width: 36rem;
    margin: 0 auto;
    padding: 1.75rem 1.25rem 1.85rem;
    text-align: center;
    background: var(--em-contact-surface);
    border: 1px solid var(--em-contact-line);
    border-top: 3px solid var(--em-contact-accent);
    border-radius: var(--em-radius, 16px);
    box-shadow: 0 10px 28px rgba(17, 17, 24, 0.06);
}

body.theme-emerald .em-contact__mark {
    display: grid;
    place-items: center;
    width: 3.1rem;
    height: 3.1rem;
    margin: 0 auto .85rem;
    border-radius: 999px;
    background: var(--em-contact-valid-bg);
    color: var(--em-contact-valid);
}

body.theme-emerald .em-contact__thanks-copy {
    margin: 0 0 1.15rem;
    color: var(--em-contact-muted);
    line-height: 1.5;
}

body.theme-emerald .em-contact__thanks-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    justify-content: center;
}

body.theme-emerald .em-contact__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.85rem;
    min-width: 10rem;
    padding: .7rem 1.2rem;
    border-radius: 999px;
    font-weight: 750;
    text-decoration: none;
}

body.theme-emerald .em-contact__btn--primary {
    background: var(--em-contact-accent);
    color: #fff;
}

body.theme-emerald .em-contact__btn--ghost {
    background: #fff;
    color: var(--em-contact-ink);
    border: 1.5px solid var(--em-contact-line);
}

body.theme-emerald .em-contact__btn--ghost:hover,
body.theme-emerald .em-contact__btn--ghost:focus-visible {
    border-color: var(--em-contact-accent);
    color: var(--em-contact-accent);
}

@media (max-width: 900px) {
    body.theme-emerald .em-contact__grid {
        grid-template-columns: 1fr;
    }

    body.theme-emerald .em-contact__aside {
        order: 2;
    }
}

@media (max-width: 640px) {
    body.theme-emerald .em-contact-hero {
        padding: 1rem 0 1.2rem;
    }

    body.theme-emerald .em-contact__panel,
    body.theme-emerald .em-contact__thanks {
        padding: 1.05rem .95rem 1.2rem;
    }

    body.theme-emerald .em-contact .tl-contact__width-half,
    body.theme-emerald .em-contact .tl-contact__width-third {
        flex: 0 0 100%;
        max-width: 100%;
    }

    body.theme-emerald .em-contact .tl-contact__submit,
    body.theme-emerald .em-contact__btn {
        width: 100%;
    }

    body.theme-emerald .em-contact__thanks-actions {
        flex-direction: column;
    }

    body.theme-emerald .em-contact .tl-contact__recaptcha .g-recaptcha {
        transform: scale(0.92);
    }
}