*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
    color:#111;
    background:#fff;
}

/* HEADER */

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 60px;
    border-bottom:1px solid #eee;
}

.logo{
    font-family:"Times New Roman", serif;
    font-size:90px;
    font-weight:500;
    letter-spacing:-3px;
    line-height:1;
    margin-left:-30px;
    cursor:pointer;

    text-decoration:none;
    color:#111;
    display:inline-block;
}



nav{
    display:flex;
    gap:35px;
}

nav a{
    text-decoration:none;
    color:#111;
    font-size:16px;
}

button{
    background:#111;
    color:#fff;
    border:none;
    padding:14px 26px;
    cursor:pointer;
    border-radius:4px;
}

/* HERO */

.hero{
    display:grid;
    grid-template-columns:1fr 1fr;
    min-height:750px;
}

.hero-content{
    padding:90px 80px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.hero-content span{
    font-size:14px;
    letter-spacing:2px;
    color:#777;
}

.hero-content h1{
    font-size:72px;
    line-height:1.05;
    margin:20px 0;
    font-family:"Times New Roman", serif;
    font-weight:500;
}

.hero-content p{
    font-size:18px;
    color:#666;
    max-width:550px;
    margin-bottom:35px;
    line-height:1.7;
}

.hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* VALUES */

.values{
    padding:100px 80px;
}

.values h2{
    font-size:48px;
    margin-bottom:50px;
    font-family:"Times New Roman", serif;
    font-weight:500;
}

.value-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.card{
    border:1px solid #e5e5e5;
    padding:30px;
}

.card h3{
    margin-bottom:12px;
    font-size:22px;
}

.card p{
    color:#666;
    line-height:1.6;
}

/* FOOTER */

.footer{
    background:#111;
    color:#fff;
    padding:40px 80px 20px;
    margin-top:80px;
}

.footer-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:40px;
    padding-bottom:20px;
    border-bottom:1px solid rgba(255,255,255,0.1);
}

.footer-bottom{
    padding-top:20px;
    text-align:center;
}

.footer-logo h3{
    font-family:"Times New Roman", serif;
    font-size:42px;
    font-weight:500;
    margin-bottom:15px;
}

.footer-logo a{
    font-family:"Times New Roman", serif;
    font-size:42px;
    font-weight:500;
    margin-bottom:15px;
    color:#fff;
    text-decoration:none;
    display:inline-block;
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.footer-links a{
    text-decoration:none;
    color:#fff;
    font-size:15px;
    transition:0.3s;
}

.footer-links a:hover{
    color:#c9c9c9;
    transform:translateX(5px);
}



.footer-bottom span{
    color:#888;
    font-size:14px;
}

.footer-contact{
    margin-top:10px;
    color:#aaa;
    font-size:14px;
    line-height:1.6;
}

.footer-contact a{
    color:#fff;
    text-decoration:none;
    word-break:break-word;
}

.footer-contact a:hover{
    color:#c9c9c9;
}

.btn{
    background:#111;
    color:#fff;
    padding:14px 26px;
    border-radius:4px;
    text-decoration:none;

    display:flex;
    align-items:center;
    justify-content:center;

    width:250px; /* нужная ширина */
}



/* MOBILE ADAPTATION */

@media (max-width: 768px){

    /* HEADER */

    header{
        padding:15px 20px;
        flex-direction:column;
        gap:20px;
    }

    .logo{
        font-size:55px;
        margin-left:0;
        letter-spacing:-2px;
    }

    nav{
        gap:20px;
        flex-wrap:wrap;
        justify-content:center;
    }

    nav a{
        font-size:14px;
    }


    /* HERO */

    .hero{
        grid-template-columns:1fr;
        min-height:auto;
    }

    .hero-content{
        padding:50px 25px;
        text-align:center;
        align-items:center;
    }

    .hero-content span{
        font-size:12px;
    }

    .hero-content h1{
        font-size:45px;
        line-height:1.1;
        margin:15px 0;
    }

    .hero-content p{
        font-size:16px;
        line-height:1.6;
        margin-bottom:25px;
    }

    .hero-image{
        height:400px;
    }

    .hero-image img{
        height:400px;
    }


    /* BUTTON */

    .btn{
        width:100%;
        max-width:280px;
    }


    /* VALUES */

    .values{
        padding:60px 25px;
    }

    .values h2{
        font-size:38px;
        text-align:center;
        margin-bottom:35px;
    }

    .value-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

    .card{
        padding:25px;
    }

    .card h3{
        font-size:20px;
    }


    /* FOOTER */

    .footer{
        padding:40px 25px 20px;
        margin-top:50px;
    }

    .footer-top{
        flex-direction:column;
        gap:35px;
        text-align:center;
        align-items:center;
    }

    .footer-logo a,
    .footer-logo h3{
        font-size:36px;
    }

    .footer-links{
        align-items:center;
    }

    .footer-bottom{
        padding-top:20px;
    }

}


/* VERY SMALL PHONES */

@media (max-width: 400px){

    .logo{
        font-size:45px;
    }

    .hero-content h1{
        font-size:38px;
    }

    .hero-content{
        padding:40px 20px;
    }

    nav{
        gap:15px;
    }

    nav a{
        font-size:13px;
    }

}