/**
 * Homepage — immersive hero carousel + softer sections (spiritual-first).
 */

.home-experience {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 0 3rem;
}

.home-hero-carousel {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: min(72vh, 560px);
    margin: 0 1rem 2rem;
    box-shadow:
        0 28px 60px rgba(0, 0, 0, 0.45),
        inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

@media (max-width: 576px) {
    .home-hero-carousel {
        min-height: 78vh;
        margin: 0 0.65rem 1.5rem;
        border-radius: 22px;
    }
}

.home-hero-carousel__slides {
    position: absolute;
    inset: 0;
}

.home-hero-carousel__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.85s ease-in-out;
    pointer-events: none;
}

.home-hero-carousel__slide.is-active {
    opacity: 1;
}

.home-hero-carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.035);
}

.home-hero-carousel__slide.is-active img {
    animation: homeHeroKenburns 18s ease-out both;
}

@keyframes homeHeroKenburns {
    0% {
        transform: scale(1.06);
    }
    100% {
        transform: scale(1.12);
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero-carousel__slide img,
    .home-hero-carousel__slide.is-active img {
        animation: none !important;
        transform: scale(1) !important;
    }

    .home-hero-carousel__slide {
        transition: opacity 0.01ms linear;
    }
}

.home-hero-carousel__veil {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(5, 6, 14, 0.15) 0%, rgba(5, 6, 14, 0.55) 45%, rgba(5, 6, 14, 0.88) 100%),
        linear-gradient(90deg, rgba(8, 7, 18, 0.75) 0%, transparent 55%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .home-hero-carousel__veil {
        background: linear-gradient(180deg, rgba(5, 6, 14, 0.25) 0%, rgba(5, 6, 14, 0.82) 100%);
    }
}

.home-hero-carousel__content {
    position: relative;
    z-index: 3;
    min-height: min(72vh, 560px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem 1.75rem 2.5rem;
    max-width: min(42rem, 94vw);
}

@media (max-width: 576px) {
    .home-hero-carousel__content {
        min-height: 78vh;
        padding: 1.5rem 1.15rem 2rem;
    }
}

.home-hero-kicker {
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(230, 222, 255, 0.72);
    margin-bottom: 0.65rem;
}

.home-hero-kicker--brand {
    text-transform: none;
    letter-spacing: 0.06em;
    font-size: clamp(0.85rem, 1.35vw, 1rem);
    line-height: 1.35;
}

.home-hero-title {
    font-family: var(--site-font-display);
    font-size: clamp(1.85rem, 4.2vw, 2.75rem);
    line-height: 1.12;
    font-weight: 500;
    margin: 0 0 0.85rem;
    letter-spacing: 0.04em;
    text-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.home-hero-lede {
    font-size: clamp(0.98rem, 1.55vw, 1.12rem);
    line-height: 1.65;
    color: rgba(236, 232, 252, 0.86);
    margin: 0 0 1.35rem;
    max-width: 36ch;
}

.home-hero-lede-stack {
    font-size: clamp(0.95rem, 1.45vw, 1.06rem);
    line-height: 1.62;
    color: rgba(236, 232, 252, 0.86);
    margin: 0 0 1.35rem;
}

.home-hero-lede-stack p {
    margin: 0 0 0.75rem;
    max-width: 52ch;
}

.home-hero-lede-stack p:last-child {
    margin-bottom: 0;
}

.home-collection-card--intro .spiritual-sub--left {
    text-align: left;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.home-collection-card--intro .spiritual-sub--left p {
    margin-bottom: 0.65rem;
}

.home-collection-card--intro .spiritual-sub--left p:last-child {
    margin-bottom: 0;
}

/* Collection band — stacked glass cards (intro + two CTAs) */
.home-collection-cards {
    max-width: min(920px, 100%);
    margin: 0 auto 1.35rem;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.home-collection-card {
    border-radius: 22px;
    padding: 1.35rem 1.45rem;
    background: rgba(12, 13, 30, 0.78);
    border: 1px solid rgba(198, 170, 255, 0.24);
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.home-collection-card--intro {
    text-align: center;
}

.home-collection-card__eyebrow {
    margin-bottom: 0.85rem;
}

.home-collection-card__body {
    margin-bottom: 0;
}

.home-collection-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.home-collection-card--mini {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 1.25rem 1.35rem;
    min-height: 100%;
}

.home-collection-card__title {
    font-family: var(--site-font-display);
    font-size: clamp(0.98rem, 1.65vw, 1.18rem);
    letter-spacing: 0.06em;
    font-weight: 500;
    margin: 0 0 0.65rem;
    color: var(--site-text);
    line-height: 1.35;
}

.home-collection-card__text {
    font-size: 0.86rem;
    line-height: 1.58;
    color: var(--site-text-muted);
    margin: 0 0 1rem;
    flex: 1;
}

.home-collection-card__btn {
    align-self: center;
    margin-top: auto;
}

@media (max-width: 640px) {
    .home-collection-card-grid {
        grid-template-columns: 1fr;
    }

    .home-collection-card {
        padding: 1.15rem 1.15rem;
    }
}

.home-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
}

.btn-spirit-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.72rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, rgba(139, 92, 230, 0.95), rgba(94, 51, 168, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 12px 28px rgba(60, 20, 120, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-spirit-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(60, 20, 120, 0.45);
}

.btn-spirit-soft {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-decoration: none;
    color: rgba(248, 246, 255, 0.92);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    transition: background 0.2s ease;
}

.btn-spirit-soft:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
}

.home-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 0.85rem;
    margin: 0 1rem 2.25rem;
}

.home-pillar {
    border-radius: 22px;
    padding: 1rem 1.1rem;
    background: rgba(10, 11, 24, 0.65);
    border: 1px solid rgba(198, 170, 255, 0.16);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.home-pillar h3 {
    font-family: var(--site-font-display);
    font-size: clamp(0.92rem, 1.2vw, 1.05rem);
    line-height: 1.3;
    margin: 0 0 0.35rem;
    letter-spacing: 0.04em;
}

.home-pillar p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.48;
    color: var(--site-text-muted);
}

.home-collection-band {
    background: rgba(8, 9, 18, 0.35);
    border-top: 1px solid rgba(198, 170, 255, 0.1);
    border-bottom: 1px solid rgba(198, 170, 255, 0.1);
    padding: 2.25rem 0 2.75rem;
    margin-bottom: 0;
}

.home-collection-band .page-wrap {
    padding-top: 0;
}

.home-soft-cta {
    text-align: center;
    padding: 2rem 1rem 2.5rem;
    margin: 0 1rem 2rem;
}

.home-soft-cta p {
    max-width: 40ch;
    margin: 0 auto 1rem;
    color: var(--site-text-muted);
    font-size: 0.92rem;
    line-height: 1.58;
}

.home-soft-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    align-items: center;
}
