body {
    margin: 0;
    font-family: system-ui, sans-serif;
    background: #f5f3ed;
    color: #243024;
}

.site-header,
.site-footer {
    padding: 1rem 2rem;
    background: #dfe8d8;
}

.logo {
    color: #243024;
    font-weight: 700;
    text-decoration: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.card {
    display: block;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.card:hover {
  transform: translateY(-2px);
}
