.holohomeo-page {
    position: relative;
    background: linear-gradient(180deg, #f7f3ec 0%, #f4eee3 34%, #f7f3ec 100%);
}

.holohomeo-section {
    position: relative;
    overflow: hidden;
}

.holohomeo-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.12);
    will-change: transform;
}

.holohomeo-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(165deg, rgba(19, 16, 12, 0.7) 0%, rgba(19, 16, 12, 0.38) 44%, rgba(179, 139, 83, 0.22) 100%),
        radial-gradient(circle at 15% 26%, rgba(179, 139, 83, 0.28) 0%, transparent 43%);
}

.holohomeo-gridlines {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image:
        linear-gradient(to right, rgba(247, 243, 236, 0.09) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(247, 243, 236, 0.07) 1px, transparent 1px);
    background-size: 68px 68px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.68) 0%, transparent 90%);
}

.holohomeo-orb {
    position: absolute;
    z-index: 3;
    border-radius: 9999px;
    filter: blur(2px);
    pointer-events: none;
    opacity: 0.26;
}

.holohomeo-orb--one {
    top: -5rem;
    right: -3rem;
    width: 23rem;
    height: 23rem;
    background: radial-gradient(circle, rgba(179, 139, 83, 0.42) 0%, rgba(179, 139, 83, 0) 72%);
}

.holohomeo-orb--two {
    bottom: -6rem;
    left: -3rem;
    width: 24rem;
    height: 24rem;
    background: radial-gradient(circle, rgba(247, 243, 236, 0.2) 0%, rgba(247, 243, 236, 0) 72%);
}

.holohomeo-marquee {
    border-top: 1px solid rgba(179, 139, 83, 0.35);
    border-bottom: 1px solid rgba(179, 139, 83, 0.35);
    padding: 0.9rem 0;
}

.holohomeo-marquee-track {
    display: flex;
    gap: 2.4rem;
    white-space: nowrap;
    overflow: hidden;
    font-family: "Cormorant Garamond", serif;
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(247, 243, 236, 0.86);
}

.holohomeo-marquee-track span {
    animation: hs-marquee 22s linear infinite;
}

@keyframes hs-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.holohomeo-visual-stack {
    position: relative;
    min-height: 30rem;
}

.holohomeo-image {
    width: 100%;
    height: 26rem;
    object-fit: cover;
    border-radius: 0;
    border: 1px solid rgba(179, 139, 83, 0.22);
    box-shadow: 0 22px 55px rgba(21, 17, 13, 0.17);
}

.holohomeo-image-floating {
    position: absolute;
    right: 0.7rem;
    bottom: -4rem;
    width: 48%;
    height: 16rem;
    border: 1px solid rgba(247, 243, 236, 0.5);
    box-shadow: 0 18px 50px rgba(21, 17, 13, 0.21);
}

.holohomeo-big-quote {
    border-left: 2px solid rgba(179, 139, 83, 0.42);
    padding-left: 1rem;
    font-family: "Playfair Display", serif;
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    line-height: 1.3;
    color: rgba(49, 44, 37, 0.82);
}

.holohomeo-gallery-band {
    background:
        radial-gradient(circle at 20% 18%, rgba(179, 139, 83, 0.14) 0%, transparent 42%),
        linear-gradient(180deg, rgba(247, 243, 236, 0.7) 0%, rgba(244, 238, 227, 0.76) 100%);
}

.holohomeo-gallery-item {
    overflow: hidden;
    min-height: 22rem;
    border: 1px solid rgba(179, 139, 83, 0.24);
    box-shadow: 0 18px 38px rgba(21, 17, 13, 0.12);
}

.holohomeo-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.holohomeo-kicker {
    font-family: "Cormorant Garamond", serif;
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgb(179 139 83 / 0.9);
}

.hs-btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: 1px solid rgb(179 139 83 / 0.7);
    background: linear-gradient(135deg, rgb(179 139 83 / 0.2) 0%, rgb(179 139 83 / 0.08) 100%);
    padding: 0.75rem 1.5rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgb(49 44 37 / 0.95);
    transition: all 300ms ease;
}

.hs-btn-gold:hover,
.hs-btn-gold:focus-visible {
    border-color: rgb(179 139 83 / 1);
    background: rgb(179 139 83 / 0.92);
    color: rgb(247 243 236 / 1);
}

.hs-btn-gold:focus-visible {
    outline: 2px solid rgb(179 139 83 / 0.6);
    outline-offset: 3px;
}

.hs-btn-gold--hero {
    border-color: rgb(179 139 83 / 0.95);
    background: rgb(179 139 83 / 0.88);
    color: rgb(247 243 236 / 1);
}

.hs-btn-gold--hero:hover,
.hs-btn-gold--hero:focus-visible {
    border-color: rgb(179 139 83 / 1);
    background: rgb(146 110 60 / 0.95);
    color: rgb(247 243 236 / 1);
}

.holohomeo-card {
    height: 100%;
    border: 1px solid rgb(179 139 83 / 0.2);
    background: rgb(255 255 255 / 0.66);
    padding: 1.5rem 1.25rem;
    backdrop-filter: blur(1px);
}

.holohomeo-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.3rem;
    height: 2.3rem;
    margin-bottom: 0.9rem;
    border: 1px solid rgb(179 139 83 / 0.28);
    color: rgb(179 139 83 / 0.95);
    background: linear-gradient(140deg, rgb(179 139 83 / 0.14), rgb(247 243 236 / 0.7));
    font-size: 1.05rem;
}

.holohomeo-card-title {
    margin-bottom: 0.75rem;
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    color: rgb(49 44 37 / 0.95);
}

.holohomeo-card p {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.08rem;
    line-height: 1.6;
    color: rgb(49 44 37 / 0.76);
}

.holohomeo-step {
    position: relative;
    overflow: hidden;
    border: 1px solid rgb(179 139 83 / 0.22);
    background: rgb(247 243 236 / 0.65);
    padding: 1.5rem;
}

.holohomeo-step-index {
    position: absolute;
    top: -1.7rem;
    left: -0.55rem;
    z-index: 0;
    transform: none;
    font-family: "Playfair Display", serif;
    font-size: clamp(8rem, 13vw, 12rem);
    line-height: 1;
    letter-spacing: 0.04em;
    color: rgb(179 139 83 / 0.12);
    pointer-events: none;
    user-select: none;
}

.holohomeo-step > *:not(.holohomeo-step-index) {
    position: relative;
    z-index: 1;
}

.holohomeo-step h3 {
    margin-bottom: 0.7rem;
    font-family: "Playfair Display", serif;
    font-size: 1.45rem;
    color: rgb(49 44 37 / 0.95);
}

.holohomeo-step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    margin-bottom: 0.85rem;
    border: 1px solid rgb(179 139 83 / 0.35);
    color: rgb(179 139 83 / 0.95);
    background: rgb(247 243 236 / 0.72);
    font-size: 1rem;
}

.holohomeo-step p {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.08rem;
    line-height: 1.65;
    color: rgb(49 44 37 / 0.75);
}

.holohomeo-benefit {
    border-top: 1px solid rgb(179 139 83 / 0.45);
    padding-top: 1.25rem;
}

.holohomeo-benefit h3 {
    margin-bottom: 0.5rem;
    font-family: "Playfair Display", serif;
    font-size: 1.45rem;
    color: rgb(49 44 37 / 0.95);
}

.holohomeo-benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    color: rgb(179 139 83 / 0.95);
    font-size: 1.25rem;
}

.holohomeo-benefit p {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.08rem;
    line-height: 1.65;
    color: rgb(49 44 37 / 0.75);
}

.holohomeo-terroir {
    background-image: radial-gradient(circle at 15% 20%, rgba(179, 139, 83, 0.26) 0%, rgba(179, 139, 83, 0) 45%);
}

.holohomeo-signature {
    background:
        linear-gradient(180deg, rgba(247, 243, 236, 0.82) 0%, rgba(255, 255, 255, 0.7) 100%);
}

.holohomeo-signature-image {
    width: 100%;
    height: 30rem;
    object-fit: cover;
    border: 1px solid rgba(179, 139, 83, 0.25);
    box-shadow: 0 20px 45px rgba(21, 17, 13, 0.14);
}

.holohomeo-faq {
    border: 1px solid rgb(179 139 83 / 0.24);
    background: rgb(255 255 255 / 0.72);
    padding: 1rem 1.25rem;
}

.holohomeo-faq summary {
    cursor: pointer;
    list-style: none;
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    color: rgb(49 44 37 / 0.95);
}

.holohomeo-faq summary::-webkit-details-marker {
    display: none;
}

.holohomeo-faq p {
    margin-top: 0.8rem;
    border-top: 1px solid rgb(179 139 83 / 0.2);
    padding-top: 0.8rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.06rem;
    line-height: 1.6;
    color: rgb(49 44 37 / 0.76);
}

.holohomeo-reveal {
    opacity: 1;
    transform: none;
    will-change: transform, opacity;
}

@media (min-width: 768px) {
    .holohomeo-card {
        padding: 1.75rem 1.4rem;
    }

    .holohomeo-step {
        padding: 1.75rem;
    }

    .holohomeo-gallery-item {
        min-height: 26rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .holohomeo-marquee-track span {
        animation: none;
    }

    .holohomeo-reveal {
        transition: none !important;
        transform: none !important;
    }
}

@media (max-width: 767px) {
    .holohomeo-visual-stack {
        min-height: auto;
        display: grid;
        gap: 1rem;
    }

    .holohomeo-image {
        height: 18rem;
    }

    .holohomeo-image-floating {
        position: static;
        width: 100%;
        height: 14rem;
    }

    .holohomeo-signature-image {
        height: 20rem;
    }
}
