@font-face {
    font-family: 'Foco';
    src: url('fonts/Foco.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Foco';
    src: url('fonts/Foco_Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Foco';
    src: url('fonts/Foco_Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}


:root {
    --bg: #e9ddce;
    --card: #f7efe4;
    --ink: #2b1d15;
    --muted: #5a463b;
    --brand: #6b3e22;
    --line: rgba(43, 29, 21, .25);
    --beige: #FFEED4;
    --green: #6f7f47;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Foco', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--ink);
}

.content-1440 {
    max-width: 1440px;
    margin: 0 auto;
    /* padding: 0 24px; */
}

.banner-fw {
    width: 100%;
    background: #fff;
}

.banner-img {
    width: 100%;
    display: block;
    object-fit: cover;
}


.page-bg {
    width: 100%;
    background: #ffffff;
}

.content-card {
    padding: 30px 22px;
}

.small-top {
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--brand);
    font-weight: 700;
}

.title {
    font-weight: 400;
    color: var(--brand);
    font-size: clamp(28px, 3.4vw, 48px);
    line-height: 1.05;
}

.sub {
    color: var(--muted);
    font-size: 20px;
}

.para {
    max-width: 980px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.55;
    text-align: center;
}

.form-bg {
    background-color: #FFEED4;
}

.trace-box {
    position: relative;
    background-image: url('./img/form.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 1440px;
    margin: 0 auto;
}

.trace-title {
    position: relative;
    z-index: 2;
    font-weight: 700;
    color: var(--brand);
    font-size: clamp(28px, 3.4vw, 48px);
    line-height: 1.05;
    margin: 4px 0 16px;
    padding-top: 100px;
}


.trace-form {
    position: relative;
    z-index: 2;
    max-width: 560px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.form-field {
    margin-bottom: 15px;
}

.lbl {
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: var(--muted);
    margin-bottom: 6px;
}

.inp {
    width: 100%;
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--line);
    padding: 8px 12px;
    background: #fff;
    outline: none;
}

.inp:focus {
    border-color: rgba(107, 62, 34, .55);
    box-shadow: 0 0 0 3px rgba(107, 62, 34, .12);
}

.trace-btn {
    padding: 10px 16px;
    border: none;
    border-radius: 10px;
    background: #5f331b;
    color: #fff;
    font-weight: 400;
    letter-spacing: .06em;
    font-size: 16px;
}



.bottom-area {
    width: 100%;
    background: #fff;
    padding: 50px;
}

.bottom-title {
    font-weight: 700;
    color: var(--brand);
    font-size: clamp(28px, 3.4vw, 48px);
    line-height: 1.05;
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
}

.bottom-title::after {
    content: "";
    position: absolute;
    left: 6%;
    right: 6%;
    bottom: 0;
    height: 3px;
    background: var(--brand);
    border-radius: 999px;
    opacity: .9;
}

.prod-card {
    background: #fff;
    max-width: 280px;
    margin: 0 auto;
}

.prod-img {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.prod-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    display: block;
}

.prod-btn {
    margin-top: 14px;
    border: none;
    background: #5f331b;
    color: #fff;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: .06em;
    padding: 8px 22px;
    border-radius: 999px;
}

.why-section {
    background-color: var(--beige);
    padding: 30px 20px;
}

.why-title {
    font-weight: 700;
    color: var(--brand);
    font-size: clamp(28px, 3.4vw, 48px);
    line-height: 1.05;
    margin-bottom: 12px;
}

.why-para {
    max-width: 980px;
    margin: 0 auto;
    color: var(--brand);
    font-size: 20px;
    line-height: 1.55;
}

.cert-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.cert {
    color: var(--brand);
    font-weight: 700;
    font-size: 18px;
}

.cert-icons {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.cert-icons img {
    width: 60px;
    height: 60px;
    border-radius: 999px;
    object-fit: cover;
    background: #fff;
    border: 2px solid rgba(107, 62, 34, .25);
}

@media (min-width: 992px) and (max-width: 1280px) {
    .trace-title {
        padding-top: 60px;
    }

    .trace-form {
        max-width: 500px;
        padding-bottom: 70px;
    }

    .trace-box {
        background-image: url('./img/tab-img.jpg');
    }
}

@media (max-width: 992px) {

    .trace-box {
        background-image: url('./img/tab-img-2.jpg');
    }

    .trace-title {
        padding-top: 40px;
    }

    .trace-form {
        max-width: 500px;
        padding-bottom: 40px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    .trace-form {
        max-width: 450px;
    }

    .inp {
        height: 37px;
    }

    .trace-btn {
        padding: 6px 13px;
        font-size: 14px;
    }

}

@media (max-width: 576px) {
    /* .content-1440 {
        padding: 0 14px;
    } */

    .content-card {
        padding: 18px 14px;
    }

    .prod-card {
        max-width: 320px;
        border-radius: 28px;
    }

    .prod-img {
        width: 100%;
        height: 210px;
    }

    .sub,
    .para,
    .lbl,
    .why-para {
        font-size: 16px;
    }

    .bottom-area {
        padding: 25px;
    }

    .trace-btn {
        padding: 7px 12px;
        font-size: 12px;
        margin-top: 10px;
    }

    .trace-title {
        padding-top: 20px;
    }

    .trace-box {
        background-image: url(./img/form-m.jpg);
        background-repeat: no-repeat;
        background-size: cover;
    }

    .trace-form {
        max-width: 230px;
        padding-bottom: 20px;
    }

    .form-field {
        margin-bottom: 10px;
    }

    .inp {
        height: 32px;
    }

    .lbl {

        margin-bottom: 0;
    }

    .cert {
        font-size: 16px;
    }

    .cert-wrap img {
        width: 47px;
        height: 47px;
    }

    .cert-icons {
        gap: 9px
    }

    .why-section {
        padding: 20px;
    }

}

@media (min-width: 300px) and (max-width: 330px) {



    .trace-box {
        background-image: url('./img/mobile.jpg');
    }


    .trace-title {
        padding-top: 0;
    }

    .trace-form {
        max-width: 200px;
        padding-bottom: 0;
    }

    .form-bg {
        background-color: #FFEED4;
        padding: 20px 0;
    }
}