.site-body.page-home {
    --site-gradient-depth: 88rem;
    background:
        radial-gradient(circle at 18% 16%, rgba(190, 118, 61, 0.20), transparent 30rem),
        radial-gradient(circle at 82% 14%, rgba(42, 165, 160, 0.22), transparent 28rem),
        linear-gradient(
            180deg,
            rgba(18, 14, 13, 0.76) 0,
            rgba(18, 14, 13, 0.58) 18rem,
            rgba(18, 14, 13, 0.34) 42rem,
            rgba(18, 14, 13, 0.16) 68rem,
            rgba(18, 14, 13, 0.05) 96rem,
            transparent 118rem
        ),
        radial-gradient(circle at 18% 16%, rgba(190, 118, 61, 0.12), transparent 30rem),
        radial-gradient(circle at 82% 14%, rgba(42, 165, 160, 0.12), transparent 30rem),
        linear-gradient(
            180deg,
            #130f0e 0,
            #171110 24rem,
            #211916 38rem,
            #514840 52rem,
            #b8aea3 62rem,
            var(--bg) 72rem,
            var(--bg-soft) 100%
        );
}

.page-home .page-shell {
    padding-bottom: 0;
}

.page-home .hero {
    min-height: 660px;
    padding: 118px 0 72px;
}

.page-home .hero__grid {
    grid-template-areas:
        "content visual"
        "facts visual";
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    grid-template-rows: auto 1fr;
    align-items: center;
    gap: 24px 38px;
}

.page-home .hero__content {
    grid-area: content;
    display: grid;
    gap: 14px;
    align-self: end;
}

.page-home .hero__caption {
    max-width: 42ch;
    color: rgba(247, 240, 231, 0.62);
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.page-home .hero__title {
    max-width: 19ch;
    color: white;
    font-size: 3rem;
    line-height: 1.02;
    text-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.page-home .hero__lead {
    max-width: 50ch;
    color: rgba(247, 240, 231, 0.84);
    font-size: 1rem;
}

.page-home .hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.page-home .hero__facts {
    grid-area: facts;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    align-self: start;
}

.page-home .hero__fact {
    min-height: 94px;
    padding: 12px 13px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(19, 15, 13, 0.78), rgba(19, 15, 13, 0.58));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
}

.page-home .hero__fact span {
    display: block;
    margin-bottom: 5px;
    color: var(--resin-soft);
    font-size: 0.66rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.page-home .hero__fact strong {
    display: block;
    color: white;
    font-size: 0.84rem;
    line-height: 1.32;
}

.page-home .hero__visual {
    grid-area: visual;
    position: relative;
    min-height: 30rem;
    align-self: stretch;
}

.page-home .hero-composition {
    position: relative;
    min-height: 30rem;
    height: 100%;
}

.page-home .hero-composition::before,
.page-home .hero-composition::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.page-home .hero-composition::before {
    inset: 13% 3% 0 13%;
    border-radius: 40px 32px 40px 26px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-hero);
    backdrop-filter: blur(10px);
}

.page-home .hero-composition::after {
    right: -8%;
    bottom: 2%;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42, 165, 160, 0.18), transparent 70%);
    filter: blur(8px);
}

.page-home .hero-composition__figure {
    position: absolute;
    inset: 4% 4% 8% 8%;
    z-index: 1;
    margin: 0;
    overflow: hidden;
    border-radius: 42px 28px 38px 24px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background:
        radial-gradient(circle at 22% 20%, rgba(190, 118, 61, 0.16), transparent 34%),
        radial-gradient(circle at 78% 22%, rgba(42, 165, 160, 0.18), transparent 42%),
        linear-gradient(135deg, rgba(19, 15, 13, 0.90), rgba(14, 22, 23, 0.90));
    box-shadow: var(--shadow-hero);
}

.page-home .hero-composition__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.03) contrast(1.04);
}

.page-home .hero-composition__card,
.page-home .hero__note {
    position: absolute;
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-card);
    z-index: 2;
}

.page-home .hero-composition__card {
    max-width: 14rem;
    background: rgba(19, 15, 13, 0.76);
    color: var(--ink-inverse);
}

.page-home .hero-composition__card span {
    color: var(--resin-soft);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.page-home .hero-composition__card strong {
    font-size: 1.12rem;
    line-height: 1.12;
}

.page-home .hero-composition__card--top {
    top: 0;
    right: 0;
}

.page-home .hero-composition__card--bottom {
    left: 0;
    bottom: 2%;
}

.page-home .hero__note {
    right: 6%;
    bottom: 3%;
    max-width: 18rem;
    background: linear-gradient(180deg, rgba(255, 248, 240, 0.96), rgba(255, 244, 234, 0.88));
    border-color: rgba(83, 58, 35, 0.12);
    color: var(--ink-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.page-home .content-section {
    padding: 76px 0;
}

.page-home .home-about,
.page-home .home-showcase,
.page-home .home-process {
    background:
        linear-gradient(180deg, rgba(242, 236, 227, 0.66), rgba(248, 241, 232, 0.60));
}

.page-home .home-about {
    padding-top: 86px;
}

.page-home .home-stock {
    background:
        radial-gradient(circle at 84% 18%, rgba(42, 165, 160, 0.06), transparent 26rem),
        linear-gradient(180deg, rgba(238, 229, 218, 0.68), rgba(247, 240, 231, 0.60));
}

.page-home .intro-split {
    align-items: center;
}

.page-home .rich-panel--story {
    display: grid;
    gap: 18px;
    padding: 30px;
}

.page-home .rich-panel--story .section-copy {
    margin-top: 0;
}

.page-home .manifesto-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.page-home .manifesto-tags span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(42, 165, 160, 0.10);
    color: var(--resin-deep);
    font-size: 0.84rem;
}

.page-home .section-head {
    margin-bottom: 28px;
}

.page-home .section-head--with-stage {
    padding-left: 92px;
}

.page-home .section-stage {
    top: -4px;
    font-size: 4.6rem;
}

.page-home .section-title {
    max-width: 21ch;
    font-size: 2.6rem;
}

.page-home .section-copy {
    margin-top: 14px;
    font-size: 1rem;
}

.page-home .home-process .section-head .section-copy {
    align-self: end;
    margin-top: 0;
}

.page-home .button {
    padding: 12px 18px;
}

.page-home .card-grid--featured {
    align-items: stretch;
}

.page-home .showcase-card,
.page-home .product-card {
    height: 100%;
}

.page-home .showcase-card__body,
.page-home .product-card__body {
    gap: 12px;
    padding: 20px;
}

.page-home .showcase-card h3,
.page-home .product-card h3 {
    font-size: 1.38rem;
}

.page-home .showcase-card__body p,
.page-home .product-card__body p {
    color: var(--ink-muted);
}

.page-home .meta-line {
    font-size: 0.86rem;
}

.page-home .status-badge {
    padding: 7px 10px;
    font-size: 0.76rem;
}

.page-home .process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.page-home .process-step {
    display: grid;
    align-content: start;
    gap: 12px;
    min-height: 250px;
    padding: 22px;
    border: 1px solid rgba(83, 58, 35, 0.12);
    border-radius: 28px 22px 28px 18px;
    background:
        linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(252, 244, 235, 0.82));
    box-shadow: var(--shadow-card);
}

.page-home .process-step span {
    color: var(--resin-deep);
    font-weight: 800;
    font-size: 0.82rem;
}

.page-home .process-step h3 {
    font-size: 1.34rem;
}

.page-home .process-step p {
    color: var(--ink-muted);
}

@media (max-width: 1100px) {
    .page-home .hero {
        min-height: 0;
        padding-top: 108px;
        padding-bottom: 64px;
    }

    .page-home .hero__grid {
        grid-template-areas:
            "content"
            "visual"
            "facts";
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .page-home .hero__content {
        align-self: start;
    }

    .page-home .hero__title {
        max-width: 20ch;
        font-size: 2.72rem;
    }

    .page-home .hero__lead {
        max-width: 48ch;
    }

    .page-home .hero__visual {
        justify-self: center;
        width: min(100%, 40rem);
    }

    .page-home .hero__visual,
    .page-home .hero-composition {
        min-height: 25rem;
    }

    .page-home .hero__facts {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .page-home .hero-composition__card {
        max-width: 12rem;
        padding: 14px;
    }

    .page-home .hero-composition__card strong {
        font-size: 1rem;
    }

    .page-home .hero__note {
        max-width: 14rem;
        font-size: 0.88rem;
    }

    .page-home .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    .page-home .hero__title {
        font-size: 2.5rem;
    }

    .page-home .hero__visual {
        width: min(100%, 38rem);
    }

    .page-home .intro-split,
    .page-home .section-head {
        grid-template-columns: 1fr;
    }

    .page-home .home-process .section-head .section-copy {
        margin-top: 14px;
    }

    .page-home .section-head--with-stage {
        padding-left: 74px;
    }
}

@media (max-width: 820px) {
    .page-home .content-section {
        padding: 62px 0;
    }

    .page-home .home-about {
        padding-top: 66px;
    }

    .page-home .section-title {
        max-width: 22ch;
        font-size: 2.12rem;
    }

    .page-home .card-grid--featured,
    .page-home .process-grid {
        grid-template-columns: 1fr;
    }

    .page-home .process-step {
        min-height: 0;
    }
}

@media (max-width: 720px) {
    .page-home .hero {
        padding-top: 100px;
        padding-bottom: 52px;
    }

    .page-home .hero__grid {
        gap: 18px;
    }

    .page-home .hero__caption {
        font-size: 0.72rem;
    }

    .page-home .hero__title {
        max-width: none;
        font-size: 2.05rem;
    }

    .page-home .hero__lead {
        max-width: none;
        font-size: 0.95rem;
    }

    .page-home .hero__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .page-home .hero__actions .button {
        width: 100%;
    }

    .page-home .hero__visual,
    .page-home .hero-composition {
        min-height: 16rem;
        width: 100%;
    }

    .page-home .hero-composition::before {
        inset: 8% 0 0 8%;
        border-radius: 30px;
    }

    .page-home .hero-composition::after {
        right: -18%;
        bottom: -8%;
    }

    .page-home .hero-composition__figure {
        inset: 0;
        border-radius: 30px 22px 28px 20px;
    }

    .page-home .hero-composition__card,
    .page-home .hero__note {
        display: none;
    }

    .page-home .hero__facts {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .page-home .hero__fact {
        min-height: 0;
        padding: 12px 14px 14px;
        border-radius: 18px;
    }

    .page-home .hero__fact strong {
        font-size: 0.88rem;
    }

    .page-home .section-head--with-stage {
        padding-left: 48px;
    }

    .page-home .section-stage {
        top: 4px;
        font-size: 2.9rem;
    }

    .page-home .section-title {
        font-size: 1.95rem;
    }

    .page-home .rich-panel--story {
        padding: 24px;
    }

}

@media (max-width: 420px) {
    .page-home .hero__title,
    .page-home .section-title {
        font-size: 1.8rem;
    }

    .page-home .hero__caption {
        letter-spacing: 0.08em;
    }
}
