.home-page {
    background:
        radial-gradient(circle at top left, rgba(255, 179, 71, 0.24), transparent 32%),
        linear-gradient(180deg, #fff8ef 0%, #fffaf4 20%, #f6f6f8 100%);
}

.home-page #content {
    padding-top: 130px;
    overflow: hidden;
}

.home-page .row-fluid {
    z-index: 1;
}

.home-hero {
    position: relative;
    padding: 24px 0 20px;
}

.home-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -140px;
    top: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(226, 29, 47, 0.18), rgba(226, 29, 47, 0));
    pointer-events: none;
}

.home-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
    gap: 34px;
    align-items: center;
}

.home-hero__content,
.home-hero__visual {
    min-width: 0;
}

.home-hero__content {
    position: relative;
    z-index: 2;
}

.home-kicker,
.home-section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(226, 29, 47, 0.08);
    color: var(--brand-red);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.home-section__eyebrow--light {
    background: rgba(255, 255, 255, 0.16);
    color: #fff8eb;
}

.home-hero__title {
    margin: 0;
    font-size: 58px;
    line-height: 1.04;
    letter-spacing: -1.4px;
    color: #231815;
}

.home-hero__subtitle {
    max-width: 520px;
    margin: 16px 0 0;
    font-size: 17px;
    line-height: 1.7;
    color: #5e5450;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.home-hero__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}

.home-hero__action:hover {
    transform: translateY(-2px);
}

.home-hero__action--primary {
    background: linear-gradient(135deg, #b81422, #e21d2f 55%, #f06f2a);
    color: #fff;
    box-shadow: 0 18px 30px rgba(184, 20, 34, 0.24);
}

.home-hero__action--primary:hover {
    box-shadow: 0 22px 36px rgba(184, 20, 34, 0.28);
}

.home-hero__action--primary:hover {
    color: #fff;
}

.home-hero__action--secondary {
    background: rgba(255, 255, 255, 0.92);
    color: #463432;
    border: 1px solid rgba(70, 52, 50, 0.08);
    box-shadow: 0 14px 28px rgba(38, 22, 18, 0.08);
}

.home-hero__action--secondary:hover {
    box-shadow: 0 18px 30px rgba(38, 22, 18, 0.12);
}

.home-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.home-info-card {
    min-width: 0;
}

.home-info-card__value {
    word-break: break-word;
}

.home-info-card,
.home-panel {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(90, 67, 49, 0.08);
    border-radius: 28px;
    box-shadow: 0 22px 44px rgba(63, 33, 17, 0.08);
}

.home-info-card {
    padding: 18px 18px 16px;
    backdrop-filter: blur(10px);
}

.home-info-card__label {
    display: block;
    margin-bottom: 10px;
    color: #8a6d63;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.home-info-card__value {
    display: block;
    font-size: 19px;
    line-height: 1.3;
    color: #241715;
}

.home-page [data-status="open"] {
    color: #0f8a52;
}

.home-page [data-status="closed"] {
    color: #b81422;
}

.home-page [data-status="pending"] {
    color: #7c6a64;
}

.home-hero__visual {
    position: relative;
    z-index: 1;
}

.home-page #sliderFrame {
    height: auto;
    padding-top: 0;
}

.home-page #slider {
    width: 100%;
    height: 540px;
    margin: 0;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 28px 60px rgba(71, 32, 12, 0.18);
}

.home-page #slider::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 9, 7, 0.08), rgba(15, 9, 7, 0.22));
    pointer-events: none;
}

.home-page .button-prev,
.home-page .button-next {
    top: auto;
    bottom: 30px;
    transform: none;
    width: 80px;
}

.home-page .button-prev {
    left: 18px;
    right: auto;
}

.home-page .button-next {
    right: 18px;
    left: auto;
}

.home-page .swiper-pagination {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    margin-top: 0;
    z-index: 11;
}

.home-page .swiper-pagination span {
    width: 54px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.36);
}

.home-page .swiper-pagination span.swiper-pagination-bullet-active {
    background: #fff;
}

.home-section,
.home-cta {
    position: relative;
}

.home-section__title,
.home-cta__panel h3 {
    margin: 0;
    color: #241715;
}

.home-copy,
.home-quick-card p,
.home-cta__panel p {
    color: #5e5450;
    line-height: 1.8;
}

.home-quick-card p,
.home-cta__panel p {
    margin: 10px 0 0;
    font-size: 15px;
}

.home-section {
    padding: 10px 0 28px;
}

.home-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 24px;
    align-items: start;
}

.home-panel {
    padding: 28px;
}

.home-section__title {
    font-size: 36px;
    line-height: 1.15;
}

.home-copy {
    margin-top: 18px;
    font-size: 16px;
}

.home-copy p {
    margin: 0 0 14px;
}

.home-copy p:last-child {
    margin-bottom: 0;
}

.home-intro__aside {
    display: grid;
    gap: 18px;
}

.home-section--compact {
    padding-bottom: 34px;
}

.home-quick-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 241, 0.96));
}

.home-quick-card__title {
    display: block;
    color: #241715;
    font-size: 22px;
    font-weight: 700;
}

.home-cta {
    padding: 0 0 72px;
}

.home-cta__panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 38px;
    border-radius: 34px;
    background: linear-gradient(135deg, #72110f 0%, #b81422 45%, #e21d2f 72%, #f2a13a 100%);
    box-shadow: 0 30px 60px rgba(114, 17, 15, 0.24);
}

.home-cta__panel:hover {
    box-shadow: 0 38px 70px rgba(114, 17, 15, 0.3);
}

.home-cta__copy {
    max-width: 520px;
}

.home-cta__panel h3 {
    font-size: 38px;
    line-height: 1.12;
    color: #fff;
}

.home-cta__panel p {
    color: rgba(255, 244, 233, 0.88);
}

.home-page .order-btn {
    width: auto;
    min-width: 260px;
    height: 68px;
    margin: 0;
    padding: 0 30px;
    border-radius: 999px;
    background: #fff;
    color: #8d1613;
    font-size: 23px;
    text-shadow: none;
    box-shadow: 0 18px 36px rgba(42, 17, 16, 0.18);
}

.home-page .order-btn:hover {
    background: #fff4e8;
    color: #8d1613;
}

@media screen and (max-width: 960px) {
    .home-page #content {
        padding-top: 110px;
    }

    .home-hero__layout,
    .home-intro {
        grid-template-columns: 1fr;
    }

    .home-hero__title {
        font-size: 48px;
    }

    .home-info-grid {
        grid-template-columns: 1fr;
    }

    .home-cta__panel {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media screen and (max-width: 768px) {
    .home-page #content {
        padding-top: 70px;
    }

    .home-hero__layout {
        gap: 18px;
    }

    .home-hero__content,
    .home-hero__visual {
        width: 100%;
    }

    .home-hero {
        padding: 16px 0 12px;
    }

    .home-kicker,
    .home-section__eyebrow {
        margin-bottom: 14px;
        padding: 7px 12px;
        font-size: 11px;
        letter-spacing: 1.2px;
    }

    .home-hero__title {
        font-size: 34px;
        line-height: 1.08;
        letter-spacing: -1px;
    }

    .home-hero__subtitle,
    .home-copy,
    .home-quick-card p,
    .home-cta__panel p {
        font-size: 15px;
        line-height: 1.75;
    }

    .home-hero__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .home-hero__action {
        width: 100%;
        min-height: 52px;
        max-width: 100%;
        box-sizing: border-box;
        white-space: normal;
        text-align: center;
    }

    .home-info-grid {
        gap: 12px;
        margin-top: 22px;
        grid-template-columns: minmax(0, 1fr);
    }

    .home-info-card,
    .home-panel {
        border-radius: 22px;
    }

    .home-info-card,
    .home-panel,
    .home-cta__panel {
        padding: 22px;
    }

    .home-page #slider {
        height: 380px;
        border-radius: 24px;
    }

    .home-section__title,
    .home-cta__panel h3 {
        font-size: 30px;
    }

    .home-cta {
        padding-bottom: 48px;
    }

    .home-page .order-btn {
        min-width: 100%;
        height: 56px;
        font-size: 18px;
        max-width: 100%;
        box-sizing: border-box;
    }
}
