:root {
    --lhhp-burgundy: #9d2545;
    --lhhp-burgundy-dark: #771b36;
    --lhhp-rose: #c44b69;
    --lhhp-ink: #29231f;
    --lhhp-muted: #736a64;
    --lhhp-cream: #fbf7f2;
    --lhhp-cream-2: #f5eee7;
    --lhhp-line: rgba(119, 27, 54, 0.14);
    --lhhp-white: #ffffff;
    --lhhp-shadow: 0 24px 70px rgba(75, 43, 32, 0.10);
    --lhhp-radius-lg: 30px;
    --lhhp-radius-md: 20px;
    --lhhp-container: 1320px;
}

body.lhhp-active {
    overflow-x: hidden;
    background: var(--lhhp-cream);
}

body.lhhp-active.lhhp-hide-page-title .entry-header,
body.lhhp-active.lhhp-hide-page-title .page-header,
body.lhhp-active.lhhp-hide-page-title .page-title,
body.lhhp-active.lhhp-hide-page-title .title-wrapper,
body.lhhp-active.lhhp-hide-page-title .woocommerce-breadcrumb {
    display: none !important;
}

body.lhhp-active .entry-content,
body.lhhp-active .page-inner,
body.lhhp-active .content-area,
body.lhhp-active .site-main {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.lhhp-shell,
.lhhp-shell * {
    box-sizing: border-box;
}

.lhhp-shell {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    color: var(--lhhp-ink);
    background:
        radial-gradient(circle at 8% 7%, rgba(157, 37, 69, 0.055), transparent 26%),
        linear-gradient(180deg, #fffdfb 0%, var(--lhhp-cream) 100%);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.55;
    overflow: hidden;
}

.lhhp-shell img {
    display: block;
    max-width: 100%;
}

.lhhp-shell a {
    color: inherit;
    text-decoration: none;
}

.lhhp-shell svg {
    display: block;
    width: 1em;
    height: 1em;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lhhp-container {
    width: min(calc(100% - 48px), var(--lhhp-container));
    margin-inline: auto;
}

.lhhp-section {
    padding: 88px 0;
}

.lhhp-eyebrow,
.lhhp-kicker {
    margin: 0 0 16px;
    color: var(--lhhp-burgundy);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.lhhp-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .01em;
    transition: transform .22s ease, background-color .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.lhhp-button svg,
.lhhp-text-link svg,
.lhhp-feature-overlay a svg,
.lhhp-space-card a svg,
.lhhp-news-card span svg,
.lhhp-product-card i svg {
    width: 18px;
    height: 18px;
}

.lhhp-button:hover,
.lhhp-button:focus-visible {
    transform: translateY(-2px);
}

.lhhp-button:focus-visible,
.lhhp-shell a:focus-visible {
    outline: 3px solid rgba(157, 37, 69, .25);
    outline-offset: 3px;
}

.lhhp-button-primary {
    color: #fff;
    background: var(--lhhp-burgundy);
    box-shadow: 0 12px 30px rgba(157, 37, 69, .22);
}

.lhhp-button-primary:hover {
    color: #fff;
    background: var(--lhhp-burgundy-dark);
}

.lhhp-button-outline {
    color: var(--lhhp-burgundy);
    background: rgba(255,255,255,.7);
    border-color: rgba(157, 37, 69, .38);
}

.lhhp-button-outline:hover {
    color: var(--lhhp-burgundy-dark);
    border-color: var(--lhhp-burgundy);
    background: #fff;
}

/* Hero */
.lhhp-hero {
    position: relative;
    min-height: 690px;
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid rgba(157, 37, 69, .08);
    background:
        radial-gradient(circle at 17% 42%, rgba(157, 37, 69, .07), transparent 34%),
        linear-gradient(120deg, #fffdfb 0%, #fbf7f2 55%, #f4e9e3 100%);
}

.lhhp-hero::before {
    content: "";
    position: absolute;
    inset: auto auto -220px -160px;
    width: 560px;
    height: 560px;
    border: 1px solid rgba(157, 37, 69, .09);
    border-radius: 50%;
    box-shadow: inset 0 0 0 50px rgba(157, 37, 69, .018), inset 0 0 0 100px rgba(157, 37, 69, .014);
    pointer-events: none;
}

.lhhp-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 46%) minmax(0, 54%);
    align-items: center;
    min-height: 690px;
}

.lhhp-hero-copy {
    position: relative;
    z-index: 2;
    padding: 76px 70px 70px 6px;
}

.lhhp-hero h1 {
    margin: 0;
    max-width: 660px;
    color: var(--lhhp-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(54px, 5.2vw, 86px);
    font-weight: 500;
    line-height: .98;
    letter-spacing: -.045em;
}

.lhhp-hero h1 span,
.lhhp-hero h1 strong {
    display: block;
}

.lhhp-hero h1 strong {
    margin-top: 12px;
    color: var(--lhhp-burgundy);
    font-weight: 500;
}

.lhhp-lead {
    max-width: 520px;
    margin: 28px 0 20px;
    color: #5f5550;
    font-size: 17px;
    line-height: 1.75;
}

.lhhp-note {
    width: fit-content;
    max-width: 520px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 28px;
    padding: 10px 14px;
    border: 1px solid rgba(157, 37, 69, .14);
    border-radius: 10px;
    color: #775d62;
    background: rgba(255,255,255,.6);
    font-size: 12px;
}

.lhhp-note > span,
.lhhp-product-note > span {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 18px;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-family: Georgia, serif;
    font-size: 11px;
    font-weight: 700;
}

.lhhp-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.lhhp-hero-media {
    position: relative;
    align-self: stretch;
    min-height: 690px;
}

.lhhp-hero-frame {
    position: absolute;
    inset: 0 calc((100vw - min(100vw, var(--lhhp-container))) / -2) 0 0;
    overflow: hidden;
    border-radius: 0 0 0 160px;
    background: #d9cfca;
}

.lhhp-hero-frame::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(90deg, rgba(251,247,242,.55) 0%, rgba(251,247,242,.08) 23%, rgba(0,0,0,0) 48%, rgba(33,20,15,.08) 100%);
    pointer-events: none;
}

.lhhp-hero-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 52% 58%;
    transform: scale(1.01);
}

.lhhp-orbit {
    position: absolute;
    z-index: 3;
    right: 28px;
    bottom: 32px;
    width: 142px;
    height: 142px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 50%;
    color: #fff;
    background: rgba(119,27,54,.72);
    box-shadow: 0 16px 40px rgba(54,20,27,.25);
    backdrop-filter: blur(10px);
}

.lhhp-orbit::after {
    content: "✦";
    font-size: 28px;
}

.lhhp-orbit span {
    position: absolute;
    inset: 12px;
    display: grid;
    place-items: center;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .16em;
    text-align: center;
    transform: rotate(-11deg);
}

/* Category strip */
.lhhp-categories {
    position: relative;
    z-index: 4;
    margin-top: -38px;
}

.lhhp-category-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    border: 1px solid rgba(157, 37, 69, .10);
    border-radius: 22px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 22px 70px rgba(92,58,45,.12);
    overflow: hidden;
}

.lhhp-category {
    min-height: 116px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 18px;
    border-right: 1px solid rgba(157, 37, 69, .10);
    transition: background-color .22s ease, transform .22s ease;
}

.lhhp-category:last-child {
    border-right: 0;
}

.lhhp-category:hover {
    background: #fff8f5;
}

.lhhp-category-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex: 0 0 48px;
    color: var(--lhhp-burgundy);
}

.lhhp-category-icon svg {
    width: 46px;
    height: 46px;
    stroke-width: 1.35;
}

.lhhp-category strong,
.lhhp-category small {
    display: block;
}

.lhhp-category strong {
    margin-bottom: 4px;
    color: #372f2b;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .025em;
    text-transform: uppercase;
}

.lhhp-category small {
    color: #756a64;
    font-size: 11px;
    line-height: 1.45;
}

/* Feature */
.lhhp-feature {
    padding-top: 72px;
}

.lhhp-feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 4fr) minmax(280px, 1fr);
    gap: 18px;
}

.lhhp-feature-card {
    position: relative;
    min-height: 380px;
    border-radius: var(--lhhp-radius-lg);
    overflow: hidden;
    box-shadow: var(--lhhp-shadow);
}

.lhhp-feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(83,17,39,.94) 0%, rgba(116,24,53,.80) 37%, rgba(116,24,53,.10) 67%, rgba(0,0,0,.08) 100%);
}

.lhhp-feature-card img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    object-position: center 58%;
    transition: transform .8s cubic-bezier(.2,.7,.2,1);
}

.lhhp-feature-card:hover img {
    transform: scale(1.035);
}

.lhhp-feature-overlay {
    position: absolute;
    z-index: 2;
    inset: 0;
    width: min(50%, 540px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px 50px;
    color: #fff;
}

.lhhp-feature-overlay p {
    margin: 0 0 16px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .15em;
}

.lhhp-feature-overlay h2 {
    margin: 0 0 28px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 4vw, 66px);
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: -.035em;
}

.lhhp-feature-overlay a,
.lhhp-space-card a {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255,255,255,.55);
    font-size: 13px;
    font-weight: 800;
}

.lhhp-benefits {
    display: grid;
    align-content: stretch;
    border: 1px solid rgba(157, 37, 69, .09);
    border-radius: var(--lhhp-radius-lg);
    background: rgba(255,255,255,.72);
    overflow: hidden;
}

.lhhp-benefit {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 13px;
    padding: 21px 20px;
    border-bottom: 1px solid rgba(157, 37, 69, .09);
}

.lhhp-benefit:last-child {
    border-bottom: 0;
}

.lhhp-benefit > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--lhhp-burgundy);
    border-radius: 50%;
    background: rgba(157, 37, 69, .07);
}

.lhhp-benefit > span svg {
    width: 24px;
    height: 24px;
}

.lhhp-benefit strong,
.lhhp-benefit small {
    display: block;
}

.lhhp-benefit strong {
    margin-bottom: 3px;
    color: #433733;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.lhhp-benefit small {
    color: #786b65;
    font-size: 11px;
    line-height: 1.45;
}

/* Section heads */
.lhhp-section-head,
.lhhp-news-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

.lhhp-section-head h2,
.lhhp-news-head h2 {
    margin: 0;
    color: var(--lhhp-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 4.2vw, 64px);
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: -.035em;
}

.lhhp-section-head h2 em {
    color: var(--lhhp-burgundy);
    font-style: normal;
}

.lhhp-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 5px;
    color: var(--lhhp-burgundy);
    border-bottom: 1px solid rgba(157, 37, 69, .32);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

/* Products */
.lhhp-products {
    padding-top: 32px;
}

.lhhp-product-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.lhhp-product-card {
    position: relative;
    min-width: 0;
    border: 1px solid rgba(157, 37, 69, .10);
    border-radius: 18px;
    background: rgba(255,255,255,.72);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.lhhp-product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(157, 37, 69, .24);
    box-shadow: 0 18px 48px rgba(88,53,42,.11);
}

.lhhp-product-card > a {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 12px 12px 16px;
}

.lhhp-product-image {
    aspect-ratio: 1 / 1;
    margin-bottom: 14px;
    border-radius: 13px;
    background: #f2ece6;
    overflow: hidden;
}

.lhhp-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.2,.7,.2,1);
}

.lhhp-product-card:hover .lhhp-product-image img {
    transform: scale(1.04);
}

.lhhp-product-card span {
    color: var(--lhhp-burgundy);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.lhhp-product-card h3 {
    margin: 6px 30px 0 0;
    color: #3c3330;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.4;
}

.lhhp-product-card i {
    position: absolute;
    right: 12px;
    bottom: 13px;
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    color: var(--lhhp-burgundy);
    border: 1px solid rgba(157, 37, 69, .25);
    border-radius: 50%;
    font-style: normal;
}

.lhhp-product-card i svg {
    width: 14px;
    height: 14px;
}

.lhhp-product-note {
    max-width: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin: 22px auto 0;
    color: #8a6c71;
    font-size: 11px;
    text-align: center;
}

/* Stories */
.lhhp-stories {
    padding-top: 64px;
    background: linear-gradient(180deg, rgba(255,255,255,.2), rgba(245,238,231,.72));
}

.lhhp-story-grid {
    display: grid;
    grid-template-columns: minmax(350px, .9fr) minmax(0, 1.35fr);
    gap: 28px;
    align-items: stretch;
}

.lhhp-space-card {
    position: relative;
    min-height: 520px;
    border-radius: var(--lhhp-radius-lg);
    overflow: hidden;
    box-shadow: var(--lhhp-shadow);
}

.lhhp-space-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(24,17,13,.05) 20%, rgba(22,14,12,.82) 100%);
}

.lhhp-space-card img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: center 55%;
    transition: transform .8s cubic-bezier(.2,.7,.2,1);
}

.lhhp-space-card:hover img {
    transform: scale(1.035);
}

.lhhp-space-card > div {
    position: absolute;
    z-index: 2;
    inset: auto 34px 34px;
    color: #fff;
}

.lhhp-space-card p {
    margin: 0 0 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
}

.lhhp-space-card h2 {
    margin: 0 0 22px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 4vw, 62px);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -.035em;
}

.lhhp-news-wrap {
    min-width: 0;
}

.lhhp-news-head {
    align-items: flex-start;
    margin-bottom: 24px;
}

.lhhp-news-head h2 {
    font-size: clamp(38px, 3.4vw, 54px);
}

.lhhp-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.lhhp-news-card {
    min-width: 0;
    border-radius: 18px;
    background: rgba(255,255,255,.72);
    overflow: hidden;
    border: 1px solid rgba(157, 37, 69, .09);
    transition: transform .25s ease, box-shadow .25s ease;
}

.lhhp-news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 44px rgba(88,53,42,.10);
}

.lhhp-news-card > a {
    display: block;
    padding: 10px 10px 16px;
}

.lhhp-news-image {
    aspect-ratio: 1.55 / 1;
    margin-bottom: 14px;
    border-radius: 12px;
    overflow: hidden;
    background: #ece4de;
}

.lhhp-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.2,.7,.2,1);
}

.lhhp-news-card:hover img {
    transform: scale(1.04);
}

.lhhp-news-card small {
    color: var(--lhhp-burgundy);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.lhhp-news-card h3 {
    min-height: 58px;
    margin: 7px 0 14px;
    color: #3f3632;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.28;
}

.lhhp-news-card span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--lhhp-burgundy);
    font-size: 11px;
    font-weight: 800;
}

/* Contact band */
.lhhp-contact {
    padding: 34px 0;
    color: #fff;
    background:
        linear-gradient(100deg, #71172f 0%, #9d2545 55%, #771b36 100%);
}

.lhhp-contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 1.1fr auto;
    align-items: center;
    gap: 28px;
}

.lhhp-contact-brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.lhhp-contact-brand img {
    width: 92px;
    height: 72px;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,.16));
}

.lhhp-contact-brand strong,
.lhhp-contact-brand span {
    display: block;
}

.lhhp-contact-brand strong {
    margin-bottom: 3px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 500;
}

.lhhp-contact-brand span {
    color: rgba(255,255,255,.76);
    font-size: 12px;
}

.lhhp-contact-details {
    display: grid;
    gap: 8px;
}

.lhhp-contact-details p {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    color: rgba(255,255,255,.86);
    font-size: 12px;
}

.lhhp-contact-details svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.lhhp-contact-actions {
    display: flex;
    gap: 10px;
}

.lhhp-button-light {
    color: var(--lhhp-burgundy-dark);
    background: #fff;
}

.lhhp-button-light:hover {
    color: var(--lhhp-burgundy-dark);
    background: #fff7f3;
}

.lhhp-button-ghost {
    color: #fff;
    border-color: rgba(255,255,255,.55);
    background: rgba(255,255,255,.04);
}

.lhhp-button-ghost:hover {
    color: #fff;
    background: rgba(255,255,255,.12);
}

/* Scroll reveal */
.lhhp-reveal {
    opacity: 1;
    transform: none;
}

.lhhp-js .lhhp-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
    transition-delay: var(--lhhp-delay, 0ms);
}

.lhhp-js .lhhp-reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* Tablet */
@media (max-width: 1180px) {
    .lhhp-hero-grid {
        grid-template-columns: minmax(0, 49%) minmax(0, 51%);
    }

    .lhhp-hero-copy {
        padding-right: 38px;
    }

    .lhhp-category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .lhhp-category:nth-child(3n) {
        border-right: 0;
    }

    .lhhp-category:nth-child(-n+3) {
        border-bottom: 1px solid rgba(157, 37, 69, .10);
    }

    .lhhp-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .lhhp-contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .lhhp-contact-actions {
        grid-column: 1 / -1;
        justify-content: flex-end;
    }
}

@media (max-width: 900px) {
    .lhhp-container {
        width: min(calc(100% - 34px), var(--lhhp-container));
    }

    .lhhp-section {
        padding: 66px 0;
    }

    .lhhp-hero,
    .lhhp-hero-grid,
    .lhhp-hero-media {
        min-height: auto;
    }

    .lhhp-hero-grid {
        grid-template-columns: 1fr;
    }

    .lhhp-hero-copy {
        padding: 58px 0 38px;
    }

    .lhhp-hero h1 {
        max-width: 760px;
        font-size: clamp(52px, 9vw, 76px);
    }

    .lhhp-hero-media {
        height: 540px;
    }

    .lhhp-hero-frame {
        inset: 0 calc((100vw - 100%) / -2);
        border-radius: 90px 90px 0 0;
    }

    .lhhp-categories {
        margin-top: 0;
        padding-top: 20px;
    }

    .lhhp-category-grid {
        border-radius: 18px;
    }

    .lhhp-feature-grid,
    .lhhp-story-grid {
        grid-template-columns: 1fr;
    }

    .lhhp-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .lhhp-benefit:nth-child(odd) {
        border-right: 1px solid rgba(157, 37, 69, .09);
    }

    .lhhp-benefit:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    .lhhp-space-card {
        min-height: 520px;
    }

    .lhhp-contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lhhp-contact-actions {
        grid-column: auto;
        justify-content: flex-start;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .lhhp-container {
        width: min(calc(100% - 24px), var(--lhhp-container));
    }

    .lhhp-section {
        padding: 54px 0;
    }

    .lhhp-hero-copy {
        padding-top: 42px;
    }

    .lhhp-hero h1 {
        font-size: clamp(45px, 13vw, 64px);
        line-height: 1.01;
    }

    .lhhp-lead {
        margin-top: 22px;
        font-size: 15px;
    }

    .lhhp-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .lhhp-button {
        width: 100%;
    }

    .lhhp-hero-media {
        height: 440px;
    }

    .lhhp-hero-frame {
        border-radius: 52px 52px 0 0;
    }

    .lhhp-orbit {
        right: 16px;
        bottom: 18px;
        width: 108px;
        height: 108px;
    }

    .lhhp-orbit span {
        font-size: 5px;
    }

    .lhhp-category-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        overscroll-behavior-inline: contain;
        scrollbar-width: none;
    }

    .lhhp-category-grid::-webkit-scrollbar {
        display: none;
    }

    .lhhp-category {
        min-width: 245px;
        min-height: 100px;
        flex: 0 0 245px;
        border-right: 1px solid rgba(157, 37, 69, .10) !important;
        border-bottom: 0 !important;
        scroll-snap-align: start;
    }

    .lhhp-feature {
        padding-top: 46px;
    }

    .lhhp-feature-card,
    .lhhp-feature-card img {
        min-height: 500px;
    }

    .lhhp-feature-card img {
        object-position: 58% center;
    }

    .lhhp-feature-card::after {
        background: linear-gradient(180deg, rgba(116,24,53,.12) 25%, rgba(83,17,39,.94) 100%);
    }

    .lhhp-feature-overlay {
        inset: auto 0 0;
        width: 100%;
        padding: 34px 28px;
    }

    .lhhp-feature-overlay h2 {
        font-size: 43px;
    }

    .lhhp-benefits {
        grid-template-columns: 1fr;
    }

    .lhhp-benefit,
    .lhhp-benefit:nth-child(odd),
    .lhhp-benefit:nth-last-child(-n+2) {
        border-right: 0;
        border-bottom: 1px solid rgba(157, 37, 69, .09);
    }

    .lhhp-benefit:last-child {
        border-bottom: 0;
    }

    .lhhp-section-head,
    .lhhp-news-head {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 26px;
    }

    .lhhp-section-head h2,
    .lhhp-news-head h2 {
        font-size: 42px;
    }

    .lhhp-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .lhhp-product-card h3 {
        margin-right: 0;
        font-size: 12px;
    }

    .lhhp-product-card i {
        display: none;
    }

    .lhhp-product-note {
        align-items: flex-start;
        text-align: left;
    }

    .lhhp-space-card,
    .lhhp-space-card img {
        min-height: 480px;
    }

    .lhhp-space-card > div {
        inset: auto 24px 26px;
    }

    .lhhp-space-card h2 {
        font-size: 44px;
    }

    .lhhp-news-grid {
        grid-template-columns: 1fr;
    }

    .lhhp-news-card h3 {
        min-height: auto;
    }

    .lhhp-contact {
        padding: 30px 0;
    }

    .lhhp-contact-brand {
        align-items: flex-start;
    }

    .lhhp-contact-brand img {
        width: 70px;
        height: 58px;
    }

    .lhhp-contact-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lhhp-shell *,
    .lhhp-shell *::before,
    .lhhp-shell *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .lhhp-js .lhhp-reveal {
        opacity: 1;
        transform: none;
    }
}

/* --------------------------------------------------------------------------
 * v1.0.2 — Flatsome compatibility and visual corrections from staging review
 * -------------------------------------------------------------------------- */

/* Remove the page-builder gutters around the shortcode without touching the
   site header or footer. This keeps the homepage canvas aligned to the viewport. */
body.lhhp-active #main,
body.lhhp-active #content,
body.lhhp-active .page-wrapper,
body.lhhp-active .row-main,
body.lhhp-active .row-main > .col,
body.lhhp-active article.page,
body.lhhp-active article.page > .entry-content,
body.lhhp-active .entry-content,
body.lhhp-active .content-area,
body.lhhp-active .site-main {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.lhhp-active .row-main {
    display: block !important;
}

body.lhhp-active .lhhp-shell {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Theme heading rules were overriding inherited white text inside image cards. */
.lhhp-shell .lhhp-feature-overlay,
.lhhp-shell .lhhp-feature-overlay p,
.lhhp-shell .lhhp-feature-overlay h2,
.lhhp-shell .lhhp-feature-overlay a,
.lhhp-shell .lhhp-space-card > div,
.lhhp-shell .lhhp-space-card p,
.lhhp-shell .lhhp-space-card h2,
.lhhp-shell .lhhp-space-card a {
    color: #ffffff !important;
    opacity: 1 !important;
}

.lhhp-shell .lhhp-feature-overlay h2,
.lhhp-shell .lhhp-space-card h2 {
    text-shadow: 0 3px 22px rgba(31, 9, 16, .34);
}

.lhhp-shell .lhhp-feature-overlay p,
.lhhp-shell .lhhp-space-card p {
    text-shadow: 0 2px 12px rgba(31, 9, 16, .28);
}

.lhhp-feature-card::after {
    background: linear-gradient(90deg, rgba(83,17,39,.90) 0%, rgba(116,24,53,.72) 38%, rgba(116,24,53,.08) 69%, rgba(0,0,0,.05) 100%);
}

.lhhp-space-card::after {
    background: linear-gradient(180deg, rgba(24,17,13,.02) 18%, rgba(22,14,12,.84) 100%);
}

/* Strongly scope button colours so Flatsome cannot turn the white CTA text
   invisible or recolour the primary actions. */
.lhhp-shell a.lhhp-button {
    line-height: 1.2 !important;
    text-transform: none !important;
    text-decoration: none !important;
    opacity: 1 !important;
}

.lhhp-shell a.lhhp-button-primary {
    color: #ffffff !important;
    background-color: var(--lhhp-burgundy) !important;
}

.lhhp-shell a.lhhp-button-outline {
    color: var(--lhhp-burgundy-dark) !important;
    background-color: rgba(255,255,255,.82) !important;
}

.lhhp-shell a.lhhp-button-light {
    color: var(--lhhp-burgundy-dark) !important;
    background-color: #ffffff !important;
    border-color: #ffffff !important;
}

.lhhp-shell a.lhhp-button-ghost {
    color: #ffffff !important;
    background-color: rgba(255,255,255,.04) !important;
    border-color: rgba(255,255,255,.58) !important;
}

.lhhp-shell .lhhp-contact,
.lhhp-shell .lhhp-contact-brand strong,
.lhhp-shell .lhhp-contact-details,
.lhhp-shell .lhhp-contact-details p,
.lhhp-shell .lhhp-contact-details span {
    color: #ffffff !important;
}

.lhhp-shell .lhhp-contact-brand span {
    color: rgba(255,255,255,.78) !important;
}

/* Tighter vertical rhythm: staging exposed excessive blank bands between blocks. */
.lhhp-feature {
    padding-top: 58px !important;
    padding-bottom: 38px !important;
}

.lhhp-products {
    padding-top: 38px !important;
    padding-bottom: 58px !important;
}

.lhhp-stories {
    padding-top: 58px !important;
    padding-bottom: 60px !important;
}

/* Improve the photographic finish without changing the source image. */
.lhhp-hero-frame img,
.lhhp-feature-card img,
.lhhp-space-card img,
.lhhp-news-image img,
.lhhp-product-image img {
    filter: saturate(.96) contrast(1.035);
}

/* Header compatibility: keep the existing theme header, but prevent its far-right
   action from being clipped on common desktop widths. */
@media (min-width: 1100px) and (max-width: 1900px) {
    body.lhhp-active #masthead .header-inner {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 28px !important;
        padding-right: 28px !important;
    }

    body.lhhp-active #masthead .header-nav-main > li {
        margin-left: 7px !important;
        margin-right: 7px !important;
    }

    body.lhhp-active #masthead .header-button .button,
    body.lhhp-active #masthead .header-button a {
        max-width: 170px !important;
        padding-left: 14px !important;
        padding-right: 14px !important;
        white-space: nowrap !important;
    }
}

@media (max-width: 900px) {
    .lhhp-feature {
        padding-top: 46px !important;
        padding-bottom: 30px !important;
    }

    .lhhp-products,
    .lhhp-stories {
        padding-top: 46px !important;
        padding-bottom: 50px !important;
    }
}

@media (max-width: 640px) {
    .lhhp-shell .lhhp-feature-overlay h2,
    .lhhp-shell .lhhp-space-card h2 {
        text-shadow: 0 2px 16px rgba(31, 9, 16, .42);
    }

    .lhhp-feature-card::after {
        background: linear-gradient(180deg, rgba(116,24,53,.05) 20%, rgba(83,17,39,.94) 100%);
    }
}


/* --------------------------------------------------------------------------
 * v1.1.1 — Footer cân đối, gọn và khóa đúng vị trí cột
 * -------------------------------------------------------------------------- */

/* Chỉ ẩn footer của Flatsome trên trang có shortcode khi tùy chọn thay thế bật. */
body.lhhp-active.lhhp-replace-theme-footer #footer,
body.lhhp-active.lhhp-replace-theme-footer .footer-wrapper {
    display: none !important;
}

.lhhp-info-footer {
    padding: 42px 0 0;
    color: var(--lhhp-ink);
    background: #fbf7f2;
    border-top: 1px solid rgba(157, 37, 69, .10);
}

.lhhp-info-footer-grid {
    display: grid;
    grid-template-columns:
        minmax(160px, .95fr)
        minmax(180px, 1.05fr)
        minmax(390px, 1.85fr)
        minmax(145px, .78fr);
    grid-template-areas: "about discover support connect";
    column-gap: 36px;
    row-gap: 28px;
    align-items: start;
    padding-bottom: 32px;
}

.lhhp-info-footer-grid > :nth-child(1) {
    grid-area: about;
}

.lhhp-info-footer-grid > :nth-child(2) {
    grid-area: discover;
}

.lhhp-info-footer-grid > :nth-child(3) {
    grid-area: support;
}

.lhhp-info-footer-grid > :nth-child(4) {
    grid-area: connect;
}

.lhhp-info-column {
    min-width: 0;
}

.lhhp-info-column h2 {
    margin: 0 0 16px;
    color: var(--lhhp-burgundy);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 850;
    line-height: 1.4;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.lhhp-info-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lhhp-info-column li + li {
    margin-top: 10px;
}

.lhhp-info-column li a,
.lhhp-info-column li span {
    display: inline-block;
    color: #544a45;
    font-size: 13px;
    line-height: 1.5;
}

.lhhp-info-column li span {
    color: #8b7e77;
}

.lhhp-info-column li a {
    transition: color .2s ease, transform .2s ease;
}

.lhhp-info-column li a:hover,
.lhhp-info-column li a:focus-visible {
    color: var(--lhhp-burgundy);
    transform: translateX(2px);
}

/*
 * Không dùng card trắng riêng cho Hỗ trợ khách hàng.
 * Khối này được đặt phẳng cùng hệ lưới để không lấn át ba cột còn lại.
 */
.lhhp-info-support {
    padding: 0 0 0 30px;
    border-left: 1px solid rgba(157, 37, 69, .13);
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

.lhhp-info-support-intro {
    max-width: 680px;
    margin: -1px 0 15px;
    color: #6e625c;
    font-size: 12.5px;
    line-height: 1.62;
}

.lhhp-support-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
}

.lhhp-support-detail-grid article {
    min-width: 0;
    padding-top: 11px;
    border-top: 1px solid rgba(157, 37, 69, .10);
}

.lhhp-support-detail-grid h3 {
    margin: 0 0 4px;
    color: #403632;
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 12.5px;
    font-weight: 800;
    line-height: 1.4;
}

.lhhp-support-detail-grid p {
    margin: 0;
    color: #756963;
    font-size: 11.5px;
    line-height: 1.55;
}

.lhhp-info-support-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 15px;
    color: var(--lhhp-burgundy);
    font-size: 12px;
    font-weight: 800;
}

.lhhp-info-support-link svg {
    width: 17px;
    height: 17px;
}

.lhhp-info-footer-bottom {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(157, 37, 69, .11);
    color: #6d625c;
    font-size: 12px;
}

.lhhp-info-footer-bottom p {
    margin: 0;
}

.lhhp-info-footer-bottom nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px 24px;
}

.lhhp-info-footer-bottom a,
.lhhp-info-footer-bottom span {
    color: #544a45;
}

.lhhp-info-footer-bottom a:hover,
.lhhp-info-footer-bottom a:focus-visible {
    color: var(--lhhp-burgundy);
}

@media (max-width: 1180px) {
    .lhhp-info-footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-areas:
            "about discover connect"
            "support support support";
        column-gap: 30px;
    }

    .lhhp-info-support {
        padding: 24px 0 0;
        border-left: 0;
        border-top: 1px solid rgba(157, 37, 69, .13);
    }

    .lhhp-info-support-intro {
        max-width: 880px;
    }

    .lhhp-support-detail-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (max-width: 820px) {
    .lhhp-info-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas:
            "about discover"
            "connect connect"
            "support support";
    }

    .lhhp-info-footer-grid > :nth-child(4) ul {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, max-content));
        column-gap: 28px;
        row-gap: 8px;
    }

    .lhhp-info-footer-grid > :nth-child(4) li + li {
        margin-top: 0;
    }

    .lhhp-support-detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px 22px;
    }
}

@media (max-width: 640px) {
    .lhhp-info-footer {
        padding-top: 34px;
    }

    .lhhp-info-footer-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "about"
            "discover"
            "connect"
            "support";
        gap: 25px;
        padding-bottom: 28px;
    }

    .lhhp-info-footer-grid > :nth-child(4) ul {
        grid-template-columns: 1fr 1fr;
    }

    .lhhp-info-support {
        padding-top: 22px;
    }

    .lhhp-support-detail-grid {
        grid-template-columns: 1fr;
    }

    .lhhp-info-footer-bottom {
        min-height: 0;
        padding: 18px 0 22px;
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .lhhp-info-footer-bottom nav {
        justify-content: flex-start;
    }
}

