/* Auto-bundled below-fold homepage CSS — edit source files then rebuild. */

/* ===== lh-home-services.css ===== */
/* ==============================================
   Life Horoscope - Our Services (white / gold sample)
   ============================================== */

body.home .lh-home-services {
    --lh-gold: #d4af37;
    --lh-navy: #000b1e;
    --lh-navy-soft: #0b1f4d;
    --lh-ink: #1a2744;
    --lh-muted: #5a6578;
    --lh-svc-max: 1180px;
    --lh-svc-gutter: clamp(16px, 3vw, 28px);

    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: clamp(36px, 5vw, 56px) var(--lh-svc-gutter) clamp(48px, 6vw, 72px);
    background: #ffffff;
    box-sizing: border-box;
    overflow: hidden;
}

body.home .lh-home-services__inner {
    width: 100%;
    max-width: var(--lh-svc-max);
    margin: 0 auto;
}

body.home .lh-home-services__head {
    text-align: center;
    margin: 0 0 clamp(28px, 4vw, 40px);
}

body.home .lh-home-services__om {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0 auto 12px;
    border-radius: 50%;
    border: 1.5px solid var(--lh-gold);
    color: var(--lh-gold);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

body.home .lh-home-services__title {
    margin: 0 0 14px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.85rem, 3.8vw, 2.55rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lh-navy);
}

body.home .lh-home-services__title em {
    font-style: normal;
    color: var(--lh-gold);
}

body.home .lh-home-services__lead {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0 auto;
    max-width: 640px;
    font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
    font-size: clamp(0.92rem, 1.5vw, 1.02rem);
    font-weight: 500;
    line-height: 1.5;
    color: var(--lh-muted);
}

body.home .lh-home-services__lead::before,
body.home .lh-home-services__lead::after {
    content: '';
    flex: 0 0 clamp(24px, 5vw, 48px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lh-gold), transparent);
}

body.home .lh-home-services__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: clamp(12px, 1.8vw, 18px);
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: stretch;
}

body.home .lh-home-services__item {
    margin: 0;
    padding: 0;
    min-width: 0;
    display: flex;
}

body.home .lh-home-services__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 100%;
    padding: clamp(20px, 2.2vw, 26px) 12px 18px;
    border: 1px solid rgba(11, 31, 77, 0.08);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(11, 31, 77, 0.06);
    color: var(--lh-ink) !important;
    text-decoration: none !important;
    text-align: center;
    box-sizing: border-box;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

body.home .lh-home-services__card:hover,
body.home .lh-home-services__card:focus-visible {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 16px 36px rgba(11, 31, 77, 0.12);
    outline: 3px solid #d4af37;
    outline-offset: 3px;
}

body.home .lh-home-services__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 86px;
    height: 86px;
    margin: 0 0 14px;
    border-radius: 50%;
    background: linear-gradient(160deg, #0b1f4d 0%, #000b1e 100%);
    box-shadow: 0 8px 20px rgba(0, 11, 30, 0.22);
    flex-shrink: 0;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

body.home .lh-home-services__glow {
    display: none;
}

body.home .lh-home-services__card:hover .lh-home-services__icon,
body.home .lh-home-services__card:focus-visible .lh-home-services__icon {
    transform: scale(1.05);
    box-shadow: 0 10px 26px rgba(0, 11, 30, 0.3), 0 0 0 3px rgba(212, 175, 55, 0.2);
}

body.home .lh-home-services__icon picture,
body.home .lh-home-services__icon img {
    position: relative;
    z-index: 1;
    display: block;
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(1.05);
}

body.home .lh-home-services__name {
    display: block;
    margin: 0;
    font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
    font-size: clamp(0.88rem, 1.25vw, 0.98rem);
    font-weight: 700;
    line-height: 1.35;
    color: var(--lh-navy);
    letter-spacing: 0.01em;
}

/* Hide desc / learn-more for compact sample-style cards */
body.home .lh-home-services__desc,
body.home .lh-home-services__more {
    display: none;
}

@media (max-width: 1100px) {
    body.home .lh-home-services__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    body.home .lh-home-services {
        padding-top: 32px;
        padding-bottom: 40px;
    }

    body.home .lh-home-services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    body.home .lh-home-services__icon {
        width: 72px;
        height: 72px;
    }

    body.home .lh-home-services__icon picture,
    body.home .lh-home-services__icon img {
        width: 34px;
        height: 34px;
    }

    body.home .lh-home-services__lead::before,
    body.home .lh-home-services__lead::after {
        display: none;
    }
}

@media (max-width: 420px) {
    body.home .lh-home-services__grid {
        grid-template-columns: 1fr 1fr;
    }
}

body.home .wpb-content-wrapper > .cws-content:first-child .lh-home-services,
body.home .wpb-content-wrapper > .cws-content:first-child .lh-home-services__inner,
body.home .wpb-content-wrapper > .cws-content:first-child .lh-home-services__grid {
    width: 100%;
    box-sizing: border-box;
}

body.home .wpb-content-wrapper > .cws-content:first-child .lh-home-services__inner {
    max-width: var(--lh-svc-max);
}


/* ===== lh-home-products.css ===== */
/* ==============================================
   Life Horoscope - Our Products (hover reveal)
   ============================================== */

body.home .lh-home-products {
    --lh-gold: #d4af37;
    --lh-navy: #000b1e;
    --lh-ink: #1a2744;
    --lh-muted: #5a6578;
    --lh-prod-max: 1180px;
    --lh-prod-gutter: clamp(16px, 3vw, 28px);

    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: clamp(40px, 5.5vw, 64px) var(--lh-prod-gutter) clamp(52px, 6.5vw, 80px);
    background:
        radial-gradient(ellipse 70% 55% at 50% -10%, rgba(212, 175, 55, 0.12), transparent 50%),
        linear-gradient(165deg, #0a1a4a 0%, #000b1e 48%, #061433 100%);
    box-sizing: border-box;
    overflow: hidden;
}

body.home .lh-home-products__inner {
    width: 100%;
    max-width: var(--lh-prod-max);
    margin: 0 auto;
}

body.home .lh-home-products__head {
    text-align: center;
    margin: 0 0 clamp(28px, 4vw, 40px);
}

body.home .lh-home-products__om {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0 auto 12px;
    border-radius: 50%;
    border: 1.5px solid var(--lh-gold);
    color: var(--lh-gold);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

body.home .lh-home-products__title {
    margin: 0 0 14px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.85rem, 3.8vw, 2.55rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
}

body.home .lh-home-products__title em {
    font-style: normal;
    color: var(--lh-gold);
}

body.home .lh-home-products__lead {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0 auto;
    max-width: 560px;
    font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
    font-size: clamp(0.92rem, 1.5vw, 1.02rem);
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
}

body.home .lh-home-products__lead::before,
body.home .lh-home-products__lead::after {
    content: '';
    flex: 0 0 clamp(24px, 5vw, 48px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lh-gold), transparent);
}

body.home .lh-home-products__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 22px);
    margin: 0;
    padding: 0;
    list-style: none;
}

body.home .lh-home-products__item {
    margin: 0;
    padding: 0;
    min-width: 0;
}

body.home .lh-home-products__card {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1.12;
    border-radius: 18px;
    overflow: hidden;
    background: var(--lh-navy);
    text-decoration: none !important;
    color: #fff !important;
    box-shadow: 0 12px 32px rgba(0, 11, 30, 0.12);
    transform: translateZ(0);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

body.home .lh-home-products__card:hover,
body.home .lh-home-products__card:focus-visible {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(0, 11, 30, 0.22);
    outline: 3px solid #d4af37;
    outline-offset: 3px;
}

body.home .lh-home-products__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

body.home .lh-home-products__media picture {
    display: block;
    width: 100%;
    height: 100%;
}

body.home .lh-home-products__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}

body.home .lh-home-products__card:hover .lh-home-products__media img,
body.home .lh-home-products__card:focus-visible .lh-home-products__media img {
    transform: scale(1.08);
    filter: brightness(0.72);
}

body.home .lh-home-products__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(0, 11, 30, 0) 35%,
        rgba(0, 11, 30, 0.55) 72%,
        rgba(0, 11, 30, 0.88) 100%
    );
    opacity: 0.85;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

body.home .lh-home-products__card:hover .lh-home-products__shade,
body.home .lh-home-products__card:focus-visible .lh-home-products__shade {
    opacity: 1;
    background: linear-gradient(
        180deg,
        rgba(0, 11, 30, 0.25) 0%,
        rgba(0, 11, 30, 0.72) 48%,
        rgba(0, 11, 30, 0.94) 100%
    );
}

/* Always-visible name strip at bottom (idle) */
body.home .lh-home-products__label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 18px 16px 16px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.25;
    color: #fff;
    text-align: center;
    transition: opacity 0.3s ease, transform 0.35s ease;
}

body.home .lh-home-products__card:hover .lh-home-products__label,
body.home .lh-home-products__card:focus-visible .lh-home-products__label {
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
}

/* Hover overlay: name + details + CTA */
body.home .lh-home-products__overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 22px 18px 22px;
    text-align: center;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

body.home .lh-home-products__card:hover .lh-home-products__overlay,
body.home .lh-home-products__card:focus-visible .lh-home-products__overlay {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

body.home .lh-home-products__name {
    display: block;
    margin: 0 0 8px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.03em;
    color: #fff;
}

body.home .lh-home-products__desc {
    display: block;
    margin: 0 0 16px;
    max-width: 260px;
    font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.82);
}

body.home .lh-home-products__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1.5px solid var(--lh-gold);
    background: var(--lh-gold);
    color: var(--lh-navy) !important;
    font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

body.home .lh-home-products__btn:hover,
body.home .lh-home-products__btn:focus-visible {
    background: transparent;
    color: #fff !important;
    transform: translateY(-2px);
    outline: none;
}

@media (max-width: 1024px) {
    body.home .lh-home-products__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    body.home .lh-home-products__grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    body.home .lh-home-products__card {
        aspect-ratio: 1 / 1.05;
    }
}

/* Touch / no-hover: keep details reachable */
@media (hover: none) {
    body.home .lh-home-products__label {
        opacity: 0;
    }

    body.home .lh-home-products__overlay {
        opacity: 1;
        transform: none;
        pointer-events: auto;
        background: linear-gradient(
            180deg,
            transparent 30%,
            rgba(0, 11, 30, 0.75) 70%,
            rgba(0, 11, 30, 0.92) 100%
        );
    }

    body.home .lh-home-products__shade {
        opacity: 1;
    }

    body.home .lh-home-products__media img {
        filter: brightness(0.78);
    }
}


/* ===== lh-home-about.css ===== */
/* ==============================================
   Life Horoscope - About Us (sample style)
   ============================================== */

body.home .lh-home-about {
    --lh-gold: #d4af37;
    --lh-navy: #000b1e;
    --lh-about-max: 1180px;
    --lh-about-gutter: clamp(16px, 3vw, 28px);

    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: clamp(48px, 6vw, 80px) var(--lh-about-gutter) clamp(56px, 7vw, 88px);
    background:
        radial-gradient(ellipse 60% 45% at 85% 30%, rgba(212, 175, 55, 0.08), transparent 55%),
        linear-gradient(165deg, #000b1e 0%, #061433 55%, #000b1e 100%);
    box-sizing: border-box;
    overflow: hidden;
}

body.home .lh-home-about__inner {
    width: 100%;
    max-width: var(--lh-about-max);
    margin: 0 auto;
}

body.home .lh-home-about__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
}

body.home .lh-home-about__copy {
    min-width: 0;
}

body.home .lh-home-about__eyebrow {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin: 0 0 18px;
}

body.home .lh-home-about__eyebrow-row {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    max-width: 280px;
}

body.home .lh-home-about__eyebrow-row::before,
body.home .lh-home-about__eyebrow-row::after {
    content: '';
    flex: 1 1 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lh-gold), transparent);
    opacity: 0.85;
}

body.home .lh-home-about__eyebrow-text {
    flex: 0 0 auto;
    font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--lh-gold);
    white-space: nowrap;
}

body.home .lh-home-about__flourish {
    display: block;
    width: 36px;
    height: 14px;
    margin-left: 2px;
    color: var(--lh-gold);
}

body.home .lh-home-about__title {
    margin: 0 0 clamp(18px, 2.5vw, 26px);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 4.2vw, 3.05rem);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: 0.01em;
    color: #ffffff;
}

body.home .lh-home-about__title em {
    display: block;
    font-style: italic;
    font-weight: 600;
    color: var(--lh-gold);
}

body.home .lh-home-about__body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

body.home .lh-home-about__body p {
    margin: 0;
    font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
    font-size: clamp(0.95rem, 1.45vw, 1.05rem);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
}

body.home .lh-home-about__body strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

body.home .lh-home-about__media {
    position: relative;
    min-width: 0;
    justify-self: end;
    width: 100%;
    max-width: 420px;
}

body.home .lh-home-about__media::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    pointer-events: none;
    transform: rotate(2deg);
    opacity: 0.7;
}

body.home .lh-home-about__media picture {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
}

body.home .lh-home-about__media img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center top;
    border-radius: 18px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

@media (max-width: 900px) {
    body.home .lh-home-about__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    body.home .lh-home-about__media {
        justify-self: center;
        max-width: 340px;
        order: -1;
    }

    body.home .lh-home-about__eyebrow {
        align-items: center;
    }

    body.home .lh-home-about__eyebrow-row {
        max-width: 240px;
        margin: 0 auto;
    }

    body.home .lh-home-about__flourish {
        margin-left: auto;
        margin-right: auto;
    }

    body.home .lh-home-about__title {
        text-align: center;
    }

    body.home .lh-home-about__body {
        text-align: center;
    }
}

@media (max-width: 480px) {
    body.home .lh-home-about__media {
        max-width: 280px;
    }
}

/* Stats strip under About Us */
body.home .lh-home-about__stats {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: stretch;
    gap: 0;
    list-style: none;
    margin: clamp(36px, 5vw, 52px) 0 0;
    padding: clamp(18px, 2.2vw, 24px) clamp(10px, 1.5vw, 16px);
    border-radius: 18px;
    border: 1px solid rgba(212, 175, 55, 0.28);
    background: linear-gradient(180deg, rgba(12, 28, 68, 0.92) 0%, rgba(6, 16, 42, 0.96) 100%);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

body.home .lh-home-about__stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0;
    padding: 8px 12px;
    min-width: 0;
    position: relative;
}

body.home .lh-home-about__stat:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 18%;
    right: 0;
    bottom: 18%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.35), transparent);
}

body.home .lh-home-about__stat-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: var(--lh-gold);
}

body.home .lh-home-about__stat-icon svg {
    width: 28px;
    height: 28px;
    display: block;
}

body.home .lh-home-about__stat-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    min-width: 0;
}

body.home .lh-home-about__stat-value {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: #ffffff;
}

body.home .lh-home-about__stat-label {
    font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
    font-size: clamp(0.72rem, 1.1vw, 0.82rem);
    font-weight: 500;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 1100px) {
    body.home .lh-home-about__stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 8px;
    }

    body.home .lh-home-about__stat:nth-child(3n)::after {
        display: none;
    }

    body.home .lh-home-about__stat:nth-child(3) ~ .lh-home-about__stat {
        border-top: 1px solid rgba(212, 175, 55, 0.12);
        padding-top: 16px;
    }
}

@media (max-width: 640px) {
    body.home .lh-home-about__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 14px 8px;
    }

    body.home .lh-home-about__stat:nth-child(3n)::after {
        display: block;
    }

    body.home .lh-home-about__stat:nth-child(2n)::after {
        display: none;
    }

    body.home .lh-home-about__stat:nth-child(3) ~ .lh-home-about__stat {
        border-top: none;
        padding-top: 8px;
    }

    body.home .lh-home-about__stat:nth-child(n+3) {
        border-top: 1px solid rgba(212, 175, 55, 0.12);
        padding-top: 14px;
        margin-top: 4px;
    }
}

/* SEO / detail copy below About Us stats */
body.home .lh-home-about__detail {
    margin: clamp(36px, 5vw, 52px) 0 0;
    max-width: 100%;
    text-align: center;
}

body.home .lh-home-about__detail-title {
    margin: 0 auto 14px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.02em;
    color: #ffffff;
    text-align: center;
}

body.home .lh-home-about__detail-title + p + .lh-home-about__detail-title {
    margin-top: clamp(28px, 4vw, 40px);
}

body.home .lh-home-about__detail p {
    margin: 0;
    font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
    font-size: clamp(0.95rem, 1.45vw, 1.05rem);
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
}

body.home .lh-home-about__detail strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}


/* ===== lh-home-media.css ===== */
/* ==============================================
   Life Horoscope - Reviews + YouTube (navy/gold)
   ============================================== */

body.home .lh-home-media {
    --lh-gold: #d4af37;
    --lh-navy: #000b1e;
    --lh-ink: #1a2744;
    --lh-muted: #5a6578;
    --lh-media-max: 1180px;
    --lh-media-gutter: clamp(16px, 3vw, 28px);
}

/* Shared heading */
body.home .lh-home-media__om {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0 auto 12px;
    border-radius: 50%;
    border: 1.5px solid var(--lh-gold);
    color: var(--lh-gold);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

body.home .lh-home-media__title {
    margin: 0 0 14px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.85rem, 3.8vw, 2.55rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

body.home .lh-home-media__title em {
    font-style: normal;
    color: var(--lh-gold);
}

body.home .lh-home-media__lead {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0 auto;
    max-width: 640px;
    font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
    font-size: clamp(0.92rem, 1.5vw, 1.02rem);
    font-weight: 500;
    line-height: 1.5;
}

body.home .lh-home-media__lead::before,
body.home .lh-home-media__lead::after {
    content: '';
    flex: 0 0 clamp(24px, 5vw, 48px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lh-gold), transparent);
}

/* ---------- Reviews (navy) ---------- */
body.home .lh-home-reviews {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: clamp(44px, 5.5vw, 68px) var(--lh-media-gutter) clamp(48px, 6vw, 76px);
    background:
        radial-gradient(ellipse 65% 50% at 50% -8%, rgba(212, 175, 55, 0.12), transparent 52%),
        linear-gradient(165deg, #0a1a4a 0%, #000b1e 50%, #061433 100%);
    box-sizing: border-box;
    overflow: hidden;
}

body.home .lh-home-reviews__inner {
    width: 100%;
    max-width: var(--lh-media-max);
    margin: 0 auto;
}

body.home .lh-home-reviews__head {
    text-align: center;
    margin: 0 0 clamp(28px, 4vw, 40px);
}

body.home .lh-home-reviews__head .lh-home-media__title {
    color: #ffffff;
}

body.home .lh-home-reviews__head .lh-home-media__lead {
    color: rgba(255, 255, 255, 0.72);
}

body.home .lh-home-reviews__widget {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Reserve space before Trustindex hydrates (CLS). */
    min-height: 340px;
}

body.home .lh-home-reviews__widget > * {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 100%;
}

/* Soften third-party review widget to fit theme */
body.home .lh-home-reviews__widget .ti-widget,
body.home .lh-home-reviews__widget .sk-ww-google-reviews,
body.home .lh-home-reviews__widget iframe {
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !important;
}

/* Hide Trustindex brand header (logo + stars + built-in Write a review) */
body.home .lh-home-reviews__widget .ti-footer,
body.home .lh-home-reviews__widget .ti-header,
body.home .lh-home-reviews__widget .ti-profile-img,
body.home .lh-home-reviews__widget .ti-profile-details,
body.home .lh-home-reviews__widget .ti-header-write-btn-container,
body.home .lh-home-reviews__widget .ti-header-write-btn {
    display: none !important;
}

/* Center the Google review cards */
body.home .lh-home-reviews__widget .ti-widget.ti-goog {
    text-align: center !important;
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 100% !important;
}

body.home .lh-home-reviews__widget .ti-widget-container,
body.home .lh-home-reviews__widget .ti-reviews-container,
body.home .lh-home-reviews__widget .ti-reviews-container-wrapper {
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !important;
    text-align: center !important;
}

body.home .lh-home-reviews__widget .ti-review-item {
    text-align: left;
}

body.home .lh-home-reviews__skeleton {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    max-width: 960px;
    margin: 0 auto 12px;
}

body.home .lh-home-reviews__skeleton span {
    display: block;
    min-height: 160px;
    border-radius: 12px;
    background: linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0.12), rgba(255,255,255,0.06));
    background-size: 200% 100%;
    animation: lh-reviews-shimmer 1.2s ease-in-out infinite;
}

body.home .lh-home-reviews__loading,
body.home .lh-home-reviews__fallback {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
    font-size: 0.92rem;
}

@keyframes lh-reviews-shimmer {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

@media (max-width: 860px) {
    body.home .lh-home-reviews__skeleton {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}

body.home .lh-home-reviews__cta {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin-top: clamp(24px, 3.5vw, 36px) !important;
    text-align: center !important;
}

body.home a.lh-home-reviews__btn,
body.home .lh-home-reviews__btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    width: auto !important;
    max-width: max-content !important;
    min-width: 0 !important;
    height: auto !important;
    margin: 0 auto !important;
    padding: 12px 28px !important;
    border-radius: 999px !important;
    border: 1.5px solid #d4af37 !important;
    background: #d4af37 !important;
    background-image: none !important;
    color: #000b1e !important;
    font-family: 'Source Sans 3', 'Segoe UI', sans-serif !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    line-height: 1.2 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    text-align: center !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
    box-shadow: none !important;
    float: none !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease !important;
}

body.home .lh-home-reviews__btn-label {
    display: inline-block !important;
    line-height: 1.2 !important;
    color: inherit !important;
    font: inherit !important;
    letter-spacing: inherit !important;
}

body.home a.lh-home-reviews__btn:hover,
body.home a.lh-home-reviews__btn:focus-visible,
body.home .lh-home-reviews__btn:hover,
body.home .lh-home-reviews__btn:focus-visible {
    background: transparent !important;
    background-image: none !important;
    color: #ffffff !important;
    border-color: #d4af37 !important;
    transform: translateY(-2px) !important;
    outline: 3px solid #d4af37 !important;
    outline-offset: 3px !important;
    text-decoration: none !important;
}

/* ---------- YouTube (navy) ---------- */
body.home .lh-home-youtube {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: clamp(48px, 6vw, 80px) var(--lh-media-gutter) clamp(52px, 6.5vw, 84px);
    background:
        radial-gradient(ellipse 65% 50% at 50% -8%, rgba(212, 175, 55, 0.12), transparent 52%),
        linear-gradient(165deg, #0a1a4a 0%, #000b1e 50%, #061433 100%);
    box-sizing: border-box;
    overflow: hidden;
}

body.home .lh-home-youtube__inner {
    width: 100%;
    max-width: var(--lh-media-max);
    margin: 0 auto;
}

body.home .lh-home-youtube__head {
    text-align: center;
    margin: 0 0 clamp(30px, 4vw, 44px);
}

body.home .lh-home-youtube__head .lh-home-media__title {
    color: #ffffff;
}

body.home .lh-home-youtube__head .lh-home-media__lead {
    color: rgba(255, 255, 255, 0.72);
}

body.home .lh-home-youtube__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2.2vw, 26px);
    margin: 0 0 clamp(28px, 4vw, 40px);
    padding: 0;
    list-style: none;
}

body.home .lh-home-youtube__item {
    margin: 0;
    padding: 0;
    min-width: 0;
}

body.home .lh-home-youtube__card {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
    text-decoration: none !important;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

body.home .lh-home-youtube__card:hover,
body.home .lh-home-youtube__card:focus-visible {
    transform: translateY(-5px);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.5);
    border-color: var(--lh-gold);
    outline: none;
}

body.home .lh-home-youtube__thumb {
    position: absolute;
    inset: 0;
    z-index: 0;
}

body.home .lh-home-youtube__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}

body.home .lh-home-youtube__card:hover .lh-home-youtube__thumb img,
body.home .lh-home-youtube__card:focus-visible .lh-home-youtube__thumb img {
    transform: scale(1.06);
    filter: brightness(0.82);
}

body.home .lh-home-youtube__play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(0, 11, 30, 0.55);
    border: 2px solid var(--lh-gold);
    color: var(--lh-gold);
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

body.home .lh-home-youtube__card:hover .lh-home-youtube__play,
body.home .lh-home-youtube__card:focus-visible .lh-home-youtube__play {
    background: var(--lh-gold);
    color: var(--lh-navy);
    transform: translate(-50%, -50%) scale(1.08);
}

body.home .lh-home-youtube__play svg {
    width: 26px;
    height: 26px;
    margin-left: 3px;
}

body.home .lh-home-youtube__card iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 3;
}

body.home .lh-home-youtube__cta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
}

body.home .lh-home-youtube__btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    padding: 12px 26px !important;
    border-radius: 999px !important;
    border: 1.5px solid var(--lh-gold) !important;
    background: var(--lh-gold) !important;
    color: var(--lh-navy) !important;
    font-family: 'Source Sans 3', 'Segoe UI', sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    line-height: 1.2 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    text-align: center !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
    float: none !important;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

body.home .lh-home-youtube__btn-label {
    display: inline-block;
    line-height: 1.2;
}

body.home .lh-home-youtube__btn-icon {
    display: block;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
}

body.home .lh-home-youtube__btn:hover,
body.home .lh-home-youtube__btn:focus-visible {
    background: transparent !important;
    color: #fff !important;
    transform: translateY(-2px);
    outline: 3px solid #d4af37;
    outline-offset: 3px;
}

body.home .lh-home-youtube__btn:hover .lh-home-youtube__btn-icon,
body.home .lh-home-youtube__btn:focus-visible .lh-home-youtube__btn-icon {
    color: #fff;
}

@media (max-width: 860px) {
    body.home .lh-home-youtube__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}


/* ===== lh-home-faq.css ===== */
/* ==============================================
   Life Horoscope - FAQ accordion (homepage)
   ============================================== */

body.home .lh-home-faq {
    --lh-gold: #d4af37;
    --lh-navy: #000b1e;
    --lh-ink: #1a2744;
    --lh-muted: #5a6578;
    --lh-faq-max: 860px;
    --lh-faq-gutter: clamp(16px, 3vw, 28px);

    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: clamp(44px, 5.5vw, 72px) var(--lh-faq-gutter) clamp(52px, 6.5vw, 84px);
    background:
        radial-gradient(ellipse 65% 50% at 50% -8%, rgba(212, 175, 55, 0.12), transparent 52%),
        linear-gradient(165deg, #0a1a4a 0%, #000b1e 50%, #061433 100%);
    box-sizing: border-box;
}

body.home .lh-home-faq__inner {
    width: 100%;
    max-width: var(--lh-faq-max);
    margin: 0 auto;
}

body.home .lh-home-faq__head {
    text-align: center;
    margin: 0 0 clamp(28px, 4vw, 40px);
}

body.home .lh-home-faq__om {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0 auto 12px;
    border-radius: 50%;
    border: 1.5px solid var(--lh-gold);
    color: var(--lh-gold);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

body.home .lh-home-faq__title {
    margin: 0 0 14px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.85rem, 3.8vw, 2.55rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
}

body.home .lh-home-faq__title em {
    font-style: normal;
    color: var(--lh-gold);
}

body.home .lh-home-faq__lead {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0 auto;
    max-width: 520px;
    font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
    font-size: clamp(0.92rem, 1.5vw, 1.02rem);
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
}

body.home .lh-home-faq__lead::before,
body.home .lh-home-faq__lead::after {
    content: '';
    flex: 0 0 clamp(24px, 5vw, 48px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lh-gold), transparent);
}

/* Kill theme `ul li:before` bullets + list indent */
body.home .lh-home-faq__list,
body.home .lh-home-faq ul.lh-home-faq__list {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    list-style-type: none !important;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

body.home .lh-home-faq__list > li,
body.home .lh-home-faq__item {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    list-style-type: none !important;
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 14px;
    background: rgba(12, 28, 68, 0.72);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

body.home .lh-home-faq__list > li::before,
body.home .lh-home-faq__list > li::after,
body.home .lh-home-faq__item::before,
body.home .lh-home-faq__item::after,
body.home .lh-home-faq ul li:before {
    content: none !important;
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
    border: 0 !important;
}

body.home .lh-home-faq__item.is-open {
    border-color: rgba(212, 175, 55, 0.65);
    background: rgba(12, 28, 68, 0.92);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

body.home .lh-home-faq__q {
    display: flex !important;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 18px 16px 18px 18px !important;
    border: 0;
    background: transparent !important;
    cursor: pointer;
    text-align: left !important;
    font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
    font-size: clamp(0.92rem, 1.5vw, 1.02rem);
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0.01em;
    text-transform: none;
    color: #ffffff !important;
    box-sizing: border-box;
    white-space: normal !important;
}

body.home .lh-home-faq__q:hover,
body.home .lh-home-faq__q:focus-visible {
    color: #ffffff !important;
    outline: 2px solid rgba(212, 175, 55, 0.7);
    outline-offset: -2px;
}

body.home .lh-home-faq__q-text {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    text-align: left !important;
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

body.home .lh-home-faq__icon {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    margin-top: 2px;
    border-radius: 50%;
    border: 1.5px solid rgba(212, 175, 55, 0.55);
    color: var(--lh-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

body.home .lh-home-faq__icon svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

body.home .lh-home-faq__item.is-open .lh-home-faq__icon {
    background: var(--lh-gold);
    color: var(--lh-navy);
    border-color: var(--lh-gold);
}

body.home .lh-home-faq__item.is-open .lh-home-faq__icon svg {
    transform: rotate(45deg);
}

body.home .lh-home-faq__a {
    display: none;
    padding: 0 18px 18px !important;
    font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    text-align: left !important;
    box-sizing: border-box;
}

body.home .lh-home-faq__item.is-open .lh-home-faq__a {
    display: block;
}

body.home .lh-home-faq__a p {
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
    white-space: normal !important;
    overflow-wrap: anywhere;
}

body.home .lh-home-faq__a p + p,
body.home .lh-home-faq__a p + ul,
body.home .lh-home-faq__a ul + p {
    margin-top: 12px !important;
}

body.home .lh-home-faq__a strong {
    color: #fff;
    font-weight: 700;
}

body.home .lh-home-faq__a ul {
    margin: 10px 0 0 !important;
    padding: 0 0 0 1.15em !important;
    list-style: disc !important;
}

body.home .lh-home-faq__a ul li {
    margin: 0 0 6px !important;
    padding: 0 !important;
    list-style: disc !important;
    color: rgba(255, 255, 255, 0.72);
}

body.home .lh-home-faq__a ul li::before,
body.home .lh-home-faq__a ul li::after {
    content: none !important;
    display: none !important;
}


/* ===== lh-home-trust.css ===== */
/* ==============================================
   Life Horoscope - Why Trust Us (sample style)
   Colors: midnight navy #000B1E, gold #D4AF37, white
   ============================================== */

body.home .lh-home-trust {
    --lh-gold: #d4af37;
    --lh-gold-bright: #e8c547;
    --lh-navy: #000b1e;
    --lh-navy-mid: #061535;
    --lh-ink: #f5f7fb;
    --lh-muted: rgba(245, 247, 251, 0.82);
    --lh-max: 1180px;

    position: relative;
    width: 100%;
    margin: 0;
    padding: clamp(48px, 6vw, 80px) clamp(16px, 3vw, 28px) 0;
    background:
        radial-gradient(ellipse 55% 70% at 8% 55%, rgba(212, 175, 55, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 40% 50% at 92% 40%, rgba(80, 120, 200, 0.12) 0%, transparent 50%),
        linear-gradient(180deg, #000814 0%, var(--lh-navy) 45%, #020d22 100%);
    color: var(--lh-ink);
    box-sizing: border-box;
    overflow: hidden;
}

body.home .lh-home-trust__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--lh-max);
    margin: 0 auto;
}

body.home .lh-home-trust__zodiac {
    position: absolute;
    left: -8%;
    top: 18%;
    width: min(420px, 42vw);
    height: min(420px, 42vw);
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.12);
    box-shadow:
        inset 0 0 0 40px rgba(212, 175, 55, 0.03),
        inset 0 0 0 80px rgba(212, 175, 55, 0.02);
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
}

body.home .lh-home-trust__zodiac::before {
    content: '';
    position: absolute;
    inset: 12%;
    border-radius: 50%;
    border: 1px dashed rgba(212, 175, 55, 0.2);
}

body.home .lh-home-trust__sage {
    position: absolute;
    right: max(-40px, calc((100vw - var(--lh-max)) / -2 - 20px));
    bottom: 48px;
    width: min(340px, 32vw);
    max-height: 78%;
    object-fit: contain;
    object-position: bottom right;
    opacity: 0.92;
    pointer-events: none;
    z-index: 1;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.45));
    mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
}

body.home .lh-home-trust__head {
    position: relative;
    z-index: 2;
    text-align: center;
    margin: 0 0 clamp(20px, 3vw, 28px);
}

body.home .lh-home-trust__lotus {
    display: block;
    width: 42px;
    height: 42px;
    margin: 0 auto 14px;
    color: var(--lh-gold);
}

body.home .lh-home-trust__title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0 0 10px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.15;
    color: #ffffff;
}

body.home .lh-home-trust__title em {
    font-style: normal;
    color: var(--lh-gold);
}

body.home .lh-home-trust__flourish {
    flex: 0 0 auto;
    width: clamp(36px, 6vw, 64px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lh-gold), transparent);
    position: relative;
}

body.home .lh-home-trust__flourish::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    width: 5px;
    height: 5px;
    margin-left: -2.5px;
    border-radius: 50%;
    background: var(--lh-gold);
}

body.home .lh-home-trust__subtitle {
    margin: 0;
    font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

body.home .lh-home-trust__copy {
    position: relative;
    z-index: 2;
    max-width: var(--lh-max);
    margin: 0 auto clamp(28px, 4vw, 40px);
    text-align: center;
    font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    font-weight: 400;
    line-height: 1.7;
    color: var(--lh-muted);
}

body.home .lh-home-trust__copy strong {
    color: var(--lh-gold-bright);
    font-weight: 600;
}

body.home .lh-home-trust__pills {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 clamp(28px, 4vw, 40px);
    padding: 0;
    list-style: none;
}

body.home .lh-home-trust__pill {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 72px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(212, 175, 55, 0.45);
    background: linear-gradient(145deg, rgba(12, 28, 64, 0.72) 0%, rgba(4, 14, 36, 0.85) 100%);
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.08), 0 8px 22px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
}

body.home .lh-home-trust__pill-icon {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    color: var(--lh-gold);
}

body.home .lh-home-trust__pill-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

body.home .lh-home-trust__pill-text {
    font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
    font-size: clamp(0.78rem, 1.1vw, 0.88rem);
    font-weight: 600;
    line-height: 1.35;
    color: #ffffff;
    text-align: left;
}

body.home .lh-home-trust__wave {
    position: relative;
    z-index: 3;
    display: block;
    width: calc(100% + 2 * clamp(16px, 3vw, 28px));
    margin: 0 calc(-1 * clamp(16px, 3vw, 28px)) -1px;
    height: clamp(48px, 7vw, 88px);
    color: #ffffff;
}

body.home .lh-home-trust__wave svg {
    display: block;
    width: 100%;
    height: 100%;
}

@media (max-width: 1100px) {
    body.home .lh-home-trust__pills {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    body.home .lh-home-trust__sage {
        opacity: 0.55;
        width: min(280px, 28vw);
    }
}

@media (max-width: 760px) {
    body.home .lh-home-trust {
        padding-top: 40px;
    }

    body.home .lh-home-trust__pills {
        grid-template-columns: 1fr 1fr;
    }

    body.home .lh-home-trust__sage,
    body.home .lh-home-trust__zodiac {
        display: none;
    }

    body.home .lh-home-trust__title {
        letter-spacing: 0.05em;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    body.home .lh-home-trust__pills {
        grid-template-columns: 1fr;
    }
}

/*
 * Hide legacy WPBakery blocks replaced by custom sections:
 * - Row 1 col 2: old Why Trust Us (beside/under hero)
 * - Row 2: old Our Services heading
 * - Rows 3–4: old Order Now service card grids
 */
body.home .wpb-content-wrapper > .cws-content:first-child > .vc_row:first-child > .wpb_column:not(:first-child) {
    display: none !important;
}

body.home .wpb-content-wrapper > .cws-content:first-child > .vc_row:first-child > .wpb_column:first-child {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
}

body.home .wpb-content-wrapper > .cws-content:first-child > .vc_row:nth-child(2),
body.home .wpb-content-wrapper > .cws-content:first-child > .vc_row:nth-child(3),
body.home .wpb-content-wrapper > .cws-content:first-child > .vc_row:nth-child(4) {
    display: none !important;
}


