.home-page .hero {
    background-image: url('/test-background-image.jpg');
    background-size: cover;
    background-position: center;
    min-height: 380px;
    padding: 28px 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 24px 40px rgba(79, 59, 39, 0.14);
}

.home-page .hero__content-shell {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 32px));
    display: flex;
    justify-content: center;
    margin-inline: auto;
}

.home-page .hero__content-shell--single {
    justify-content: center;
}

.home-page .hero__panel {
    background: rgba(56, 41, 28, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 28px 24px;
    backdrop-filter: blur(6px);
    box-shadow: 0 18px 30px rgba(22, 15, 9, 0.18);
}

.home-page .hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(24, 17, 10, 0.28) 0%, rgba(24, 17, 10, 0.56) 100%),
        radial-gradient(circle at top, rgba(255, 255, 255, 0.12), transparent 45%);
}

.home-page .hero__content {
    position: relative;
}

.home-page .hero__story-panel {
    display: grid;
    gap: 0;
    width: min(100%, 980px);
    margin-inline: auto;
    min-width: 0;
}

.home-page .hero__story-link {
    display: block;
}

.home-page .hero__content--story-link {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.home-page .hero__content--story-link:hover,
.home-page .hero__content--story-link:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 24px 36px rgba(22, 15, 9, 0.22);
    border-color: rgba(255, 255, 255, 0.36);
    background: rgba(72, 52, 35, 0.42);
}

.home-page .hero__eyebrow {
    margin: 0 0 12px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #f8ead8;
}

.home-page .hero__title {
    margin: 0;
    font-size: clamp(2rem, 5vw, 4.25rem);
    line-height: 0.98;
    font-weight: 400;
    color: #fff;
    text-wrap: balance;
}

.home-page .hero__subtitle {
    margin: 16px auto 0;
    max-width: 30ch;
    font-size: clamp(0.98rem, 2vw, 1.2rem);
    line-height: 1.5;
    color: #f8f0e7;
}

.home-page .hero__supporting-cards {
    margin-top: 22px;
    display: grid;
    grid-template-columns: minmax(280px, 1fr);
    gap: 18px;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.home-page .hero__supporting-cards--single {
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.home-page .hero__supporting-cards:not(.hero__supporting-cards--single) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
}

.home-page .hero__award-inline {
    display: grid;
    gap: 0;
    overflow: hidden;
    background: #f8f1eb;
    border: 1px solid rgba(179, 139, 109, 0.24);
    border-radius: 22px;
}

.home-page .hero__award-image {
    width: 100%;
    height: 190px;
    display: block;
    object-fit: contain;
    object-position: center;
    padding: 10px 12px;
    box-sizing: border-box;
    background: #fff;
}

.home-page .hero__award-copy {
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 0;
    min-height: 190px;
    padding: 18px 20px 20px;
    text-align: left;
    background: #f8f1eb;
}

.home-page .hero__award-kicker {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #a0734c;
}

.home-page .hero__award-title {
    margin: 12px 0 0;
    font-size: clamp(1.05rem, 2.4vw, 1.35rem);
    line-height: 1.28;
    font-weight: 400;
    color: #4f3827;
}

.home-page .hero__award-link {
    margin: auto 0 0;
    font-size: 0.96rem;
    font-weight: 700;
    color: #8f5e37;
}

.home-page .hero__award-card {
    text-decoration: none;
    color: inherit;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.home-page .hero__award-card:hover,
.home-page .hero__award-card:focus-visible {
    transform: translateY(-2px);
}

.home-page .hero__featured-panel {
    display: grid;
    gap: 0;
    align-content: start;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    max-width: none;
    width: 100%;
    min-width: 0;
    border-radius: 22px;
    background: #f8f1eb;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.home-page .hero__featured-panel:hover,
.home-page .hero__featured-panel:focus-visible {
    transform: translateY(-2px);
}

.home-page .hero__featured-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    background: rgba(255, 255, 255, 0.2);
}

.home-page .hero__featured-copy {
    padding: 18px 20px 20px;
    text-align: left;
    background: #f8f1eb;
    min-height: 190px;
    display: grid;
    align-content: start;
}

.home-page .hero__featured-kicker {
    margin: 0 0 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #a0734c;
}

.home-page .hero__featured-title {
    margin: 0;
    font-size: clamp(1.2rem, 2.2vw, 1.7rem);
    line-height: 1.2;
    color: #4f3827;
}

.home-page .hero__featured-price {
    margin: 12px 0 0;
    font-size: 1.12rem;
    font-weight: 700;
    color: #8f5e37;
}

.home-page .hero__featured-link {
    margin: 12px 0 0;
    font-size: 0.96rem;
    font-weight: 700;
    color: #8f5e37;
}

.home-page__item-output,
.home-page__all-items-link {
    margin-top: 10px;
    font-weight: 700;
}

.home-page #itemOutput {
    justify-content: center;
}

.home-page__all-items-link {
    display: flex;
    justify-content: center;
}

.test-warning-label {
    background: red;
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 12px 24px;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 2;
    letter-spacing: 1px;
    width: 100%;
    text-align: center;
    max-width: 600px;
}

@media (max-width: 768px) {
    .home-page .hero {
        min-height: 320px;
        padding: 18px 0;
        border-radius: 0 0 14px 14px;
    }

    .home-page .hero__content-shell {
        width: calc(100% - 24px);
        display: flex;
        justify-content: center;
        margin-inline: auto;
    }

    .home-page .hero__panel {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .home-page .hero__featured-image {
        height: 220px;
    }

    .home-page .hero__title {
        font-size: clamp(1.8rem, 10vw, 3rem);
        line-height: 1.02;
    }

    .home-page .hero__subtitle {
        font-size: 0.98rem;
    }

    .home-page .hero__award-inline {
        max-width: 420px;
    }

    .home-page .hero__supporting-cards:not(.hero__supporting-cards--single) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        max-width: 100%;
    }

}

@media (max-width: 480px) {
    .home-page .hero {
        min-height: 280px;
        align-items: flex-end;
    }

    .home-page .hero__content-shell {
        width: calc(100% - 20px);
        padding: 18px 16px;
        background: rgba(56, 41, 28, 0.34);
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 20px;
        backdrop-filter: blur(6px);
        box-shadow: 0 18px 30px rgba(22, 15, 9, 0.18);
        margin-inline: auto;
    }

    .home-page .hero__panel {
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
    }

    .home-page .hero__story-panel {
        gap: 0;
    }

    .home-page .hero__eyebrow {
        font-size: 0.76rem;
        letter-spacing: 0.14em;
        text-align: center;
    }

    .home-page .hero__title {
        font-size: clamp(1.55rem, 9vw, 2.35rem);
        text-align: center;
    }

    .home-page .hero__subtitle {
        display: none;
    }

    .home-page .hero__supporting-cards:not(.hero__supporting-cards--single) {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 12px;
        align-items: start;
        margin-top: 16px;
        max-width: 100%;
    }

    .home-page .hero__award-inline {
        margin-top: 0;
        min-height: 100%;
        align-content: center;
        justify-items: center;
        min-width: 0;
    }

    .home-page .hero__award-image {
        height: 140px;
        padding: 8px 10px;
    }

    .home-page .hero__award-copy {
        min-height: 0;
        padding: 14px 12px 16px;
        text-align: center;
        justify-items: center;
        align-content: start;
    }

    .home-page .hero__featured-copy {
        text-align: center;
    }

    .home-page .hero__featured-image {
        height: 140px;
        border-radius: 18px 18px 0 0;
    }

    .home-page .hero__featured-panel {
        min-height: 100%;
        min-width: 0;
    }

    .home-page .hero__featured-copy {
        padding: 14px 12px 16px;
    }

    .home-page .hero__featured-title {
        font-size: 1rem;
    }

    .home-page .hero__featured-price,
    .home-page .hero__featured-link,
    .home-page .hero__award-title,
    .home-page .hero__award-link {
        font-size: 0.88rem;
    }
}
