* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Georgia, serif;
    background: linear-gradient(180deg, #f2ead7 0%, #e1d3b0 100%);
    color: #1f1a14;
    min-height: 100vh;
}

.page {
    width: min(1280px, 92%);
    margin: 0 auto;
    padding: 40px 0 60px;
}

.hero {
    text-align: center;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    color: #1f3b2d;
}

.hero p {
    font-size: 1.05rem;
    color: #4c4337;
}

.categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.category {
    background: rgba(255, 248, 235, 0.82);
    border: 1px solid rgba(84, 61, 35, 0.2);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(4px);
}

.category h2 {
    font-size: 1.35rem;
    margin-bottom: 18px;
    color: #244734;
    text-align: center;
}

.card-grid {
    display: grid;
    gap: 18px;
}

.card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fffaf0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(50, 40, 25, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
}

.card img {
    display: block;
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.card span {
    display: block;
    padding: 14px 16px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    color: #1f3b2d;
}

@media (max-width: 980px) {
    .categories {
        grid-template-columns: 1fr;
    }

    .card img {
        height: 280px;
    }
}
