*{
box-sizing:border-box;
}

body{
margin:0;
font-family:Arial,Helvetica,sans-serif;
color:#222;
background:#fff;
}

.header{
position:sticky;
top:0;
z-index:10;
height:80px;
background:#fff;
display:flex;
align-items:center;
justify-content:space-between;
padding:0 5%;
border-bottom:1px solid #eee;
}

.logo img{
height:42px;
}

.contact-btn{
background:#b89545;
color:#fff;
padding:12px 28px;
text-decoration:none;
font-size:14px;
}

.hero{
text-align:center;
padding:80px 20px 50px;
}

.hero h1{
font-size:48px;
margin:0 0 15px;
}

.hero p{
color:#666;
}

.catalog-grid{
width:90%;
max-width:1400px;
margin:auto;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
padding-bottom:80px;
}

.catalog-card{
background:#faf7f0;
padding:25px;
transition:.3s;
}

.catalog-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.cover{
aspect-ratio:3/4;
background:#eee;
display:flex;
align-items:center;
justify-content:center;
overflow:hidden;
}

.cover img{
width:100%;
height:100%;
object-fit:cover;
}

.year{
font-size:12px;
color:#b89545;
margin-top:20px;
}

.catalog-card h2{
font-size:18px;
line-height:1.4;
}

.view-btn{
display:inline-block;
margin-top:15px;
padding:10px 20px;
background:#222;
color:#fff;
text-decoration:none;
font-size:14px;
}

.catalog-card:hover .view-btn{
background:#b89545;
}

footer{
background:#202020;
color:#fff;
padding:50px 5%;
}

footer a{
color:#fff;
}

@media(max-width:1100px){
.catalog-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.catalog-grid{
grid-template-columns:1fr;
}
.hero h1{
font-size:36px;
}
}
