.block__signup {
    box-sizing: border-box;
    max-width: 100%;
    min-height: calc(100vh - 150px);
    padding: 56px 24px 88px;
    background: #f4f1eb;
    color: #171717;
}

.b_signup--wrapper {
    box-sizing: border-box;
    min-width: 0;
    width: min(1120px, 100%);
    margin: 0 auto;
}

.b_signup--header {
    margin-bottom: 30px;
}

.b_signup--eyebrow {
    margin: 0 0 10px;
    color: #7e2225;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.b_signup--title,
.b_signup--subtitle,
.b_signup--dialog-title {
    font-family: Georgia, "Times New Roman", serif;
}

.b_signup--title {
    margin: 0 0 30px;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 400;
    line-height: 1.05;
}

.b_signup--steps {
    display: grid;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(3, 1fr);
    list-style: none;
}

.b_signup--step {
    position: relative;
    display: flex;
    gap: 12px;
    align-items: center;
    min-height: 58px;
    padding: 12px 20px 12px 0;
    border-top: 1px solid #c8c1b7;
    color: #79736b;
}

.b_signup--step.__active,
.b_signup--step.__complete {
    border-color: #7e2225;
    color: #171717;
}

.b_signup--step-number {
    display: grid;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
}

.b_signup--step.__active .b_signup--step-number,
.b_signup--step.__complete .b_signup--step-number {
    border-color: #7e2225;
    background: #7e2225;
    color: #fff;
}

.b_signup--step-label {
    max-width: 220px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    overflow-wrap: anywhere;
}

.b_signup--panel {
    box-sizing: border-box;
    min-width: 0;
    max-width: 100%;
    padding: clamp(28px, 5vw, 62px);
    border: 1px solid #d8d1c7;
    background: #fff;
    box-shadow: 0 18px 55px rgb(48 39 30 / 8%);
}

.b_signup--intro {
    max-width: 760px;
    margin-bottom: 32px;
}

.b_signup--subtitle {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 400;
}

.b_signup--lead {
    margin: 0;
    color: #5f5a53;
    font-size: 16px;
    line-height: 1.65;
}

.b_signup--form {
    min-width: 0;
    max-width: 100%;
    max-width: 820px;
}

.b_signup--field {
    min-width: 0;
    margin-bottom: 22px;
}

.b_signup--field .form-label,
.b_signup--address-search .form-label {
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
}

.b_signup--field .form-control,
.b_signup--field .form-select,
.b_signup--address-search .form-control {
    min-height: 50px;
    border: 1px solid #bcb4aa;
    border-radius: 0;
    background: #fff;
}

.b_signup--field .form-control:focus,
.b_signup--field .form-select:focus,
.b_signup--address-search .form-control:focus {
    border-color: #7e2225;
    box-shadow: 0 0 0 3px rgb(126 34 37 / 12%);
}

.b_signup--grid {
    display: grid;
    gap: 0 24px;
    min-width: 0;
}

.b_signup--grid > * {
    min-width: 0;
}

.b_signup--grid.__two,
.b_signup--grid.__address {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.b_signup--field.__wide {
    grid-column: 1 / -1;
}

.b_signup--consents,
.b_signup--mailing {
    margin: 8px 0 26px;
    padding: 22px;
    border: 1px solid #ddd6cc;
    background: #faf8f4;
}

.b_signup--check {
    margin-bottom: 12px;
}

.b_signup--check:last-child {
    margin-bottom: 0;
}

.b_signup--check a {
    color: #7e2225;
}

.b_signup--check .form-check-label {
    max-width: 100%;
    overflow-wrap: anywhere;
}

.b_signup--legend {
    float: none;
    width: auto;
    margin: 0 0 16px;
    font-size: 15px;
    font-weight: 700;
}

.b_signup--legend small {
    color: #706a63;
    font-weight: 400;
}

.b_signup--checks .form-check {
    margin-bottom: 11px;
}

.b_signup--captcha {
    display: flex;
    gap: 14px;
    align-items: stretch;
}

.b_signup--captcha img {
    width: 150px;
    min-height: 50px;
    border: 1px solid #bcb4aa;
    object-fit: cover;
}

.b_signup--actions,
.b_signup--dialog-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.b_signup--button {
    min-height: 48px;
    padding: 12px 24px;
    border: 1px solid #171717;
    border-radius: 0;
    background: transparent;
    color: #171717;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.b_signup--button.__primary,
.b_signup--button.__danger {
    border-color: #7e2225;
    background: #7e2225;
    color: #fff;
}

.b_signup--button:hover,
.b_signup--button:focus-visible {
    border-color: #7e2225;
    outline: none;
    color: #7e2225;
}

.b_signup--button.__primary:hover,
.b_signup--button.__primary:focus-visible,
.b_signup--button.__danger:hover,
.b_signup--button.__danger:focus-visible {
    background: #5f1719;
    color: #fff;
}

.b_signup--notice {
    margin-bottom: 24px;
    padding: 20px;
    border-left: 3px solid #7e2225;
    background: #f7f2ed;
}

.b_signup--notice-title {
    margin: 0 0 6px;
    font-size: 18px;
}

.b_signup--notice p,
.b_signup--help {
    margin: 0;
    color: #686159;
}

.b_signup--address-search {
    position: relative;
    margin-bottom: 24px;
}

.b_signup--help {
    margin-top: 8px;
    font-size: 12px;
}

.b_signup--suggestions {
    position: absolute;
    z-index: 20;
    right: 0;
    left: 0;
    overflow: hidden;
    border: 1px solid #bcb4aa;
    border-top: 0;
    background: #fff;
    box-shadow: 0 14px 24px rgb(0 0 0 / 10%);
}

.b_signup--suggestion {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border: 0;
    border-top: 1px solid #eee9e2;
    background: #fff;
    text-align: left;
}

.b_signup--suggestion:hover,
.b_signup--suggestion:focus-visible {
    background: #f7f2ed;
    outline: none;
}

.b_signup--dialog {
    position: fixed;
    z-index: 1100;
    inset: 0;
    display: grid;
    padding: 24px;
    place-items: center;
    background: rgb(16 13 11 / 66%);
}

.b_signup--dialog[hidden] {
    display: none;
}

.b_signup--dialog-window {
    width: min(500px, 100%);
    padding: 34px;
    background: #fff;
}

.b_signup--dialog-title {
    margin: 0 0 12px;
    font-size: 32px;
}

@media (max-width: 720px) {
    .block__signup {
        padding: 34px 16px 60px;
    }

    .b_signup--steps {
        gap: 8px;
    }

    .b_signup--step {
        display: block;
        padding-right: 8px;
    }

    .b_signup--step-label {
        display: block;
        margin-top: 8px;
        font-size: 11px;
    }

    .b_signup--grid.__two,
    .b_signup--grid.__address {
        grid-template-columns: 1fr;
    }

    .b_signup--captcha {
        align-items: stretch;
        flex-direction: column;
    }

    .b_signup--captcha img {
        width: 100%;
    }

    .b_signup--actions .b_signup--button,
    .b_signup--dialog-actions .b_signup--button,
    .b_signup--dialog-actions form {
        width: 100%;
    }
}
