:root {
    --color-green-950: #083516;
    --color-green-900: #0b421f;
    --color-green-800: #145c2c;
    --color-green-700: #1d7439;
    --color-green-100: #eaf6e9;
    --color-green-50: #f5fbf2;
    --color-cream: #fffaf0;
    --color-sun: #f4a51c;
    --color-sun-soft: #fff5d6;
    --color-tomato: #c92222;
    --color-text: #152318;
    --color-muted: #667263;
    --color-line: #dde8dc;
    --color-card: #ffffff;
    --color-page: #fbfcf8;
    --shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.06);
    --shadow-card: 0 10px 24px rgba(16, 55, 27, 0.08);
    --shadow-card-hover: 0 16px 34px rgba(16, 55, 27, 0.14);
    --radius-card: 16px;
    --radius-control: 12px;
    --container: 1280px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--color-text);
    background: var(--color-page);
    font-family: "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input {
    font: inherit;
}

:focus-visible {
    outline: 3px solid rgba(244, 165, 28, 0.78);
    outline-offset: 3px;
}

.site-container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.site-main {
    min-height: 60vh;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    transform: translateY(-150%);
    border-radius: var(--radius-control);
    padding: 10px 14px;
    color: #ffffff;
    background: var(--color-green-900);
    box-shadow: var(--shadow-soft);
}

.skip-link:focus {
    transform: translateY(0);
}

.ui-icon {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    border: 1px solid transparent;
    border-radius: var(--radius-control);
    padding: 11px 20px;
    font-weight: 800;
    line-height: 1.1;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    color: #ffffff;
    background: var(--color-green-800);
    box-shadow: 0 10px 20px rgba(20, 92, 44, 0.2);
}

.button-primary:hover {
    background: var(--color-green-900);
    box-shadow: 0 14px 26px rgba(20, 92, 44, 0.26);
}

.button-light {
    color: var(--color-green-900);
    background: #ffffff;
    border-color: rgba(20, 92, 44, 0.18);
}

.button-light:hover {
    background: var(--color-green-50);
    border-color: rgba(20, 92, 44, 0.34);
}

.card {
    overflow: hidden;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-card);
    background: var(--color-card);
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(20, 92, 44, 0.22);
    box-shadow: var(--shadow-card-hover);
}

.card-body {
    padding: 16px;
}

.card h3 {
    margin: 0 0 7px;
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.28;
    font-weight: 800;
}

.card p {
    margin: 0;
}

.card-meta {
    color: var(--color-muted);
    font-size: 13px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    color: var(--color-muted);
    font-size: 13px;
}

.rating span[aria-hidden="true"] {
    color: var(--color-sun);
    letter-spacing: 0;
}

.rating strong {
    color: var(--color-green-800);
}

.chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 13px;
}

.chip {
    border-radius: 999px;
    padding: 6px 9px;
    color: #40503f;
    background: #f1f4ee;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
}
