.products-hero {
    position: relative;
    display: grid;
    height: clamp(280px, 17.45vw, 335px);
    place-items: center;
    color: #fff;
    background: url("../images/products-hero.jpg") center / cover no-repeat;
}

.products-hero::after {
    position: absolute;
    right: 0;
    bottom: -14px;
    left: 0;
    height: 28px;
    content: "";
    background: url("../images/border-white.png") center / 100% 100% no-repeat;
}

.products-hero-copy {
    width: min(90%, 760px);
    text-align: center;
}

.products-hero-copy > img {
    width: 20px;
    height: 42px;
    margin: 0 auto 14px;
    object-fit: contain;
}

.products-hero-copy h1 {
    margin: 0;
    color: var(--orange);
    font-size: var(--type-page-title);
    line-height: 1.1;
}

.products-hero-copy p {
    max-width: 720px;
    margin: 16px auto 20px;
    font-size: var(--type-body);
    line-height: 1.5;
}

.catalog-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 28px;
    color: var(--orange);
    background: #fff;
    border: 2px solid var(--orange);
    border-radius: 28px;
    font-size: var(--type-note);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}

.catalog {
    padding-block: clamp(90px, 7vw, 135px) clamp(100px, 8vw, 150px);
}

.catalog-layout {
    display: flex;
    justify-content: center;
}

.catalog-special-slot {
    width: min(100%, 560px);
    scroll-margin-top: 110px;
}

.catalog-request-form {
    display: grid;
    gap: 10px;
    padding: clamp(28px, 4vw, 48px) clamp(24px, 4vw, 44px);
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgb(0 0 0 / 8%);
}

.catalog-request-form h2 {
    margin: 0;
    color: var(--ink);
    font-size: var(--type-subtitle);
    font-weight: 400;
    line-height: 1.25;
    text-align: center;
}

.catalog-request-form > p:not(.catalog-form-status) {
    margin: 0 0 8px;
    color: #666;
    font-size: var(--type-body);
    line-height: 1.5;
    text-align: center;
}

.catalog-request-form input {
    width: 100%;
    height: 46px;
    padding: 0 18px;
    background: #f1f1f1;
    border: 0;
    border-radius: 26px;
    font-size: var(--type-body);
    outline: 0;
}

.catalog-request-form input:focus {
    box-shadow: 0 0 0 2px var(--orange);
}

.catalog-request-form input.is-invalid {
    background: #fdf0f0;
    box-shadow: 0 0 0 2px #d64545;
}

.field-error {
    display: block;
    min-height: 12px;
    margin: -4px 0 0;
    color: #d64545;
    font-size: 9px;
    line-height: 1.4;
}

.catalog-request-form button {
    min-height: 46px;
    margin-top: 8px;
    color: #fff;
    background: var(--orange);
    border: 0;
    border-radius: 24px;
    font-size: var(--type-note);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.catalog-form-status {
    min-height: 18px;
    margin: 0;
    color: var(--blue);
    font-size: var(--type-note);
    text-align: center;
}

.chef-fab {
    display: none;
}

@media (max-width: 900px) {
    .products-hero {
        height: 305px;
    }

    .products-hero-copy {
        width: calc(100% - 40px);
    }

    .products-hero-copy > img {
        margin-bottom: 18px;
    }

    .products-hero-copy p {
        max-width: 320px;
        margin-block: 18px 24px;
    }

    .catalog-download {
        min-height: 44px;
        padding-inline: 20px;
    }

    .catalog {
        width: 100%;
        padding: 118px var(--page-gutter) 90px;
    }

    .catalog-request-form {
        padding: 32px 22px;
    }
}
