.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    isolation: isolate;
}

.hero__backdrop {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: url('/images/home/home-backdrop.webp');
    background-size: cover;
    background-position: center;
    filter: saturate(0.86) contrast(0.95);
}

.hero--foundation .hero__backdrop {
    background-image: url('/images/foundation/foundation_page.jpg');
}

.hero--foundation-events .hero__backdrop {
    background-image: url('/images/foundation/events_page.jpeg');
}

.hero--foundation-history .hero__backdrop {
    background-image: url('/images/foundation/history_page.jpg');
}

.hero--reserve .hero__backdrop {
    background-image: url('/images/reserve/reserve_page.jpg');
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(13, 17, 13, 0.25) 0%, rgba(13, 17, 13, 0.74) 68%, rgba(13, 17, 13, 0.88) 100%),
        radial-gradient(circle at 20% 10%, rgba(108, 141, 191, 0.2), transparent 38%);
}

.hero__content {
    max-width: 44rem;
    padding: 4rem 1.7rem 5rem;
    color: #f7f4eb;
}

.hero__content h1 {
    font-size: clamp(2.3rem, 4.4vw, 4.6rem);
    letter-spacing: -0.02em;
}

.hero__content p {
    max-width: 39rem;
    color: rgba(247, 244, 235, 0.92);
    font-size: 1.05rem;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.hero__jump-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.62rem 0.98rem;
    border: 1px solid rgba(244, 239, 229, 0.55);
    color: rgba(247, 244, 235, 0.92);
    background: rgba(13, 17, 13, 0.22);
    font-weight: 500;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.hero__jump-link:hover,
.hero__jump-link:focus-visible {
    border-color: rgba(154, 181, 217, 0.8);
    background: rgba(108, 141, 191, 0.3);
    outline: none;
}

.home-section {
    scroll-margin-top: 1.6rem;
}

.values-list {
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(49, 68, 49, 0.2);
    counter-reset: value-item;
}

.values-list__item {
    counter-increment: value-item;
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 12rem) minmax(0, 1fr);
    gap: 0.7rem 1.2rem;
    padding: 1rem 0 1rem 2.5rem;
    border-bottom: 1px solid rgba(49, 68, 49, 0.2);
}

.values-list__item::before {
    content: counter(value-item, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 1.05rem;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-chicory-soft);
}

.values-list__item h2 {
    font-size: 1.35rem;
    margin: 0;
}

.values-list__item p {
    margin: 0;
    color: var(--color-text-soft);
}

.content-panel h1 {
    font-size: clamp(2.1rem, 4vw, 3.4rem);
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .hero__jump-link {
        transition: none;
    }
}

@media (max-width: 900px) {
    .values-list__item {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }
}
