html, body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #fff;
    color: #222;
    min-height: 100vh;
    font-size: 16px;
}
img {
    max-width: 100%;
}
.wrapper {
    max-width: 680px;
    margin: 0 auto;
}
.header {
    background: #fff;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 10;
}
.header img {
    height: 40px;
}
.header a {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #222;
    font-size: 1em;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s cubic-bezier(.4, 0, .2, 1);
}
.header a:hover {
    color: #000;
}
.about {
    background: #f6f6f6;
    color: #222;
    padding: 20px 15px;
    border-radius: 12px;
    margin: 20px;
    font-size: .9em;
    line-height: 1.5;
    animation: fadeIn 0.7s;
}
.about h1 {
    font-size: 1.1em;
    margin-top: 0;
}
.menu-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: space-between;
    margin: 20px;
}
.menu-card {
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s cubic-bezier(.4, 0, .2, 1), box-shadow 0.3s cubic-bezier(.4, 0, .2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.menu-card:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
}
.menu-card img {
    width: 100%;
    height: 230px;
    display: block;
    object-fit: cover;
    aspect-ratio: 1/1.22;
}
.menu-card span {
    color: #fff;
    font-weight: 500;
    font-size: 2em;
    display: block;
    text-align: center;
    width: 100%;
    letter-spacing: 0.01em;
    position: absolute;
    top: 40%;
}
.contacts {
    border-radius: 12px;
    padding: 20px;
    margin: 20px 15px;
    animation: fadeIn 1s;
    background: #f6f6f6;
    color: #222;
}
.contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contacts li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: .9em;
    gap: 10px;
}
.contacts li:last-child {
    margin-bottom: 0;
}
.contacts p {
    margin: 0;
}
.contacts h4 {
    margin: 0 0 20px;
}
.contacts a {
    color: #222;
    text-decoration: none;
    transition: 0.3s cubic-bezier(.4, 0, .2, 1);
}
.contacts a:hover {
    color: #000;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}