* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #e8e8ed;
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-shell {
    min-height: 100vh;
}

.form-band {
    scroll-margin-top: 72px;
}

.hero-video {
    margin-left: auto;
    margin-right: auto;
}

.hp-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.lead-form {
    display: grid;
    gap: 14px;
}

.lead-field {
    display: grid;
    gap: 6px;
}

.lead-field span {
    color: var(--ink);
    font-size: 13.5px;
    font-weight: 850;
    line-height: 1.35;
}

.lead-field input,
.lead-field select {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 8px;
    background: #ffffff;
    color: var(--ink);
    font: inherit;
    font-size: 15.5px;
    outline: none;
}

.lead-field input:focus,
.lead-field select:focus {
    border-color: var(--luxury-gold);
    box-shadow: 0 0 0 3px rgba(184, 150, 95, .18);
}

.lead-form button {
    justify-self: center;
    min-height: 54px;
    width: min(100%, 300px);
    margin-top: 6px;
    padding: 0 20px;
    border: 1px solid var(--luxury-border);
    border-radius: 999px;
    background: var(--luxury-gradient);
    color: var(--luxury-champagne);
    box-shadow: var(--luxury-shadow), inset 0 1px 0 rgba(255, 255, 255, .16);
    cursor: pointer;
    font: inherit;
    font-size: 16px;
    font-weight: 850;
}

.lead-form button:disabled {
    cursor: wait;
    opacity: .72;
}

.form-status {
    min-height: 22px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
    text-align: center;
}

.form-status.is-error {
    color: #9f2a2a;
}

.form-status.is-success {
    color: #146c43;
}

.form-key-points {
    display: grid;
    gap: 6px;
    margin-top: 14px;
    color: var(--luxury-espresso);
    font-size: 15px;
    line-height: 1.38;
}

.form-key-points strong {
    display: block;
    font-weight: 850;
}

.form-helper {
    display: none !important;
}

.mobile-sticky-cta.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
}

@media (max-width: 430px) {
    body {
        background: #f5f5f7;
    }

    .mobile-sticky-cta {
        display: none !important;
    }

    .form-band {
        scroll-margin-top: 118px;
        padding-top: 42px !important;
        padding-bottom: 64px !important;
    }

    .section + .form-band {
        margin-top: 0 !important;
    }

    .form-layout {
        gap: 18px !important;
    }

    .form-copy + div {
        margin-top: 0 !important;
    }

    .form-key-points {
        margin-top: 12px;
        margin-bottom: 18px;
        font-size: 14.5px;
    }

    .lead-form {
        width: 100%;
        margin-top: 0 !important;
        padding: 26px 16px 18px !important;
        overflow: visible;
    }

    .lead-form::before {
        height: 4px !important;
    }

    .lead-field {
        min-width: 0;
    }

    .lead-field span {
        display: block;
        overflow-wrap: anywhere;
    }

    .lead-field input,
    .lead-field select {
        width: 100%;
        max-width: 100%;
    }
}
