/* ====================== MAIN HERO ====================== */
.home-hero {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.home-slides {
    position: relative;
    width: 100%;
}

/* ====================== SINGLE SLIDE ====================== */
.home-slide-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 1000ms cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    display: flex;
    flex-direction: column;
}

.home-slide-item.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 10;
}

/* Responsive: Side by side on medium+ screens */
@media (min-width: 768px) {
    .home-slide-item {
        flex-direction: row;
    }
}

/* ====================== LEFT CONTENT SIDE ====================== */
.content-side {
    flex: 1;
    flex-basis: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 48px 20px;
}

@media (min-width: 768px) {
    .content-side {
        padding: 64px 32px;
    }
}

@media (min-width: 1024px) {
    .content-side {
        padding: 96px 64px 96px 96px;
    }
}

.content-wrapper {
    width: 100%;
    max-width: 520px;
}

/* Eyebrow */
.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

@media only screen and (max-width: 767.98px) {
    .eyebrow {
        margin-bottom: 16px;
    }
}

.eyebrow-line {
    height: 1px;
    width: 40px;
    background-color: #4c0f2e;
}

.eyebrow-text {
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #4c0f2e;
    font-weight: 500;
}

/* Title */
.home-hero-title {
    margin-bottom: 24px;
}

@media (min-width: 640px) {
    .home-hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .home-hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1280px) {
    .home-hero-title {
        font-size: 4.5rem;
    }
}

@media only screen and (max-width: 767.98px) {
    .home-hero-title {
        margin-bottom: 16px;
    }
}

.home-hero-title-italic {
    font-style: italic;
    color: #4c0f2e;
}

/* Description */
.home-hero-description {
    max-width: 420px;
}

/* Buttons */
.buttons-wrapper {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

@media only screen and (max-width: 767.98px) {
    .buttons-wrapper {
        margin-top: 24px;
    }
}

.home-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #4c0f2e;
    color: #ebe2db;
    padding: 12px 24px;
    transition: all 0.5s ease;
}

@media (min-width: 992px) {
    .home-primary-btn {
        padding: 14px 28px;
    }
}

@media (min-width: 1024px) {
    .home-primary-btn {
        padding: 16px 32px;
    }
}

.arrow-icon {
    transition: transform 0.4s ease;
}

.home-primary-btn:hover .arrow-icon {
    transform: translateX(4px);
}

.home-secondary-btn {
    color: #2d161e;
    border-bottom: 1px solid #2d161e;
    padding-bottom: 4px;
    transition: all 0.4s ease;
}

.home-secondary-btn:hover {
    color: #4c0f2e;
    border-color: #4c0f2e;
}

/* ====================== RIGHT IMAGE SIDE ====================== */
.image-side {
    position: relative;
    flex: 1;
    min-height: 400px;
    overflow: hidden;
}

.home-slide-img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    transition: transform 1200ms ease;

    /* Force these two together */
    object-fit: cover !important;
    object-position: center center !important;
}

/* Additional high-specificity rules */
.home-slide-item .home-slide-img,
.home-slide-item.active .home-slide-img {
    object-fit: cover !important;
    object-position: center center !important;
}

/* Active slide gentle zoom */
.home-slide-item.active .home-slide-img {
    transform: scale(1.05);
}

.home-overlay {
    position: absolute;
    inset: 0;
    mix-blend-mode: multiply;
    pointer-events: none;
}

.image-border {
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    pointer-events: none;
}

/* Navigation */
.hero-navigation {
    position: absolute;
    bottom: 32px;
    right: 32px;
    display: flex;
    gap: 12px;
    z-index: 30;
}

.home-hero-prev,
.home-hero-next {
    padding: 15px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent !important;
    color: #2d161e !important;
    transition: all 0.3s ease;
}

.home-hero-next {
    background-color: #4c0f2e !important;
    color: #ebe2db !important;
}

.home-hero-prev:hover,
.home-hero-next:hover {
    /* transform: scale(1.1); */
}

.home-hero-prev svg,
.home-hero-next svg {}