.lsh-homepage {
    background: var(--lsh-bg);
    color: var(--lsh-text);
    font-family: var(--lsh-font-family);
    font-size: var(--lsh-font-size-base);
    font-weight: var(--lsh-base-font-weight);
    line-height: 1.75;
}

.lsh-homepage *,
.lsh-homepage *::before,
.lsh-homepage *::after {
    box-sizing: border-box;
}

.lsh-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.lsh-section {
    padding: var(--lsh-section-spacing) 0;
    border-bottom: 1px solid var(--lsh-border);
    position: relative;
}

.lsh-title {
    font-size: var(--lsh-font-size-title);
    line-height: 1.15;
    font-weight: var(--lsh-heading-font-weight);
    letter-spacing: -0.02em;
    color: var(--lsh-gold-soft);
    text-align: center;
    margin: 0 0 12px;
}

.lsh-subtitle {
    max-width: 820px;
    margin: 0 auto 42px;
    text-align: center;
    color: var(--lsh-text-soft);
}

.lsh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: var(--lsh-button-radius);
    text-decoration: none;
    color: var(--lsh-button-text);
    background: linear-gradient(135deg, #f0d7a1 0%, var(--lsh-gold) 45%, var(--lsh-gold-deep) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: var(--lsh-button-font-weight);
    transition: all 0.3s ease;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.lsh-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.lsh-btn-wrap {
    margin-top: 30px;
    text-align: center;
}

.lsh-empty-message {
    text-align: center;
    color: var(--lsh-text-soft);
}

/* ==========================================================
   HERO
   ========================================================== */

.lsh-hero {
    min-height: 88vh;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.lsh-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.60) 48%, rgba(0,0,0,.35) 100%);
    z-index: 1;
}

.lsh-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(198,167,106,.10), transparent 35%);
    z-index: 1;
}

.lsh-hero .lsh-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.lsh-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 100px 0;
}

.lsh-hero h1 {
    margin: 0 0 20px;
    font-size: var(--lsh-font-size-hero-title);
    line-height: 1.02;
    color: #f2dfb6;
    font-weight: var(--lsh-hero-title-weight);
    letter-spacing: -0.04em;
}

.lsh-hero p {
    margin: 0 0 32px;
    max-width: 620px;
    color: #efe5d2;
    font-size: var(--lsh-font-size-hero-text);
}

.lsh-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.lsh-hero-image-fallback {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lsh-hero-media-video,
.lsh-hero-media-slideshow {
    position: absolute;
    inset: 0;
}

.lsh-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lsh-hero-video-embed {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #111;
}

.lsh-hero-video-embed iframe,
.lsh-hero-video-embed video,
.lsh-hero-video-embed embed,
.lsh-hero-video-embed object {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    min-width: 100%;
    height: 56.25vw;
    min-height: 100%;
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}

.lsh-hero-slideshow {
    position: absolute;
    inset: 0;
}

.lsh-hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease;
}

.lsh-hero-slide.is-active {
    opacity: 1;
}

.lsh-about-box {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.lsh-card {
    background: linear-gradient(180deg, #111111 0%, #0d0d0d 100%);
    border: 1px solid var(--lsh-border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,.28);
    transition: all .35s ease;
}

.lsh-card:hover {
    transform: translateY(-6px);
    border-color: rgba(226,196,141,.42);
}

.lsh-card-content {
    padding: 26px;
}

.lsh-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 24px;
}

.lsh-stars {
    color: var(--lsh-gold-soft);
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.lsh-review-author {
    margin-top: 16px;
    color: var(--lsh-gold-soft);
    font-weight: 600;
}

.lsh-review-author a {
    color: inherit;
    text-decoration: none;
}

.lsh-review-meta {
    margin-top: 6px;
    color: var(--lsh-text-soft);
    font-size: 14px;
}

.lsh-reviews-summary {
    text-align: center;
    color: var(--lsh-text-soft);
    margin: 0 0 28px;
}

.lsh-google-note {
    font-size: 13px;
    color: var(--lsh-text-soft);
    margin-top: 14px;
    text-align: center;
}

/* ==========================================================
   GALLERY SLIDER
   ========================================================== */

.lsh-gallery-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.lsh-gallery-slider {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    width: 100%;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.lsh-gallery-slider::-webkit-scrollbar {
    display: none;
}

.lsh-gallery-track {
    display: flex;
    gap: 18px;
}

.lsh-gallery-slide {
    flex: 0 0 calc(33.333% - 12px);
    min-width: calc(33.333% - 12px);
}

.lsh-gallery-item {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid var(--lsh-border);
}

.lsh-gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lsh-gallery-arrow {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 1px solid rgba(198,167,106,.28);
    background: rgba(17,17,17,.92);
    color: var(--lsh-gold-soft);
    font-size: 34px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .25s ease;
    flex: 0 0 auto;
}

.lsh-gallery-arrow:hover {
    transform: translateY(-2px);
    border-color: rgba(198,167,106,.5);
    background: rgba(22,22,22,.98);
}

.lsh-gallery-arrow:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(198,167,106,.18);
}
.lsh-gallery-slider-wrap {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 0 40px;
}

.lsh-gift-banner {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    min-height: 360px;
    display: flex;
    align-items: center;
    padding: 40px;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--lsh-border);
}

.lsh-gift-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.56) 55%, rgba(0,0,0,.35) 100%);
}

.lsh-gift-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

.lsh-gift-content h2 {
    margin: 0 0 14px;
    color: #f2dfb6;
    font-size: 48px;
    line-height: 1.05;
    font-weight: var(--lsh-hero-title-weight);
}

.lsh-gift-content p {
    margin: 0 0 24px;
    color: #efe5d2;
    font-size: 18px;
}

.lsh-booking-box {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(180deg, #121212 0%, #0d0d0d 100%);
    border: 1px solid var(--lsh-border);
    border-radius: 28px;
    padding: 48px 34px;
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

.lsh-booking-details {
    color: var(--lsh-text-soft);
    line-height: 2;
    margin-top: 20px;
}

.lsh-booking-details strong {
    color: var(--lsh-gold-soft);
}

/* ==========================================================
   SERVICES SECTION
   ========================================================== */

.lsh-services-shortcode {
    width: 100%;
}

.lsh-services-grid {
    display: grid;
    gap: 28px;
    align-items: stretch;
}

.lsh-services-grid-1 {
    grid-template-columns: 1fr;
}

.lsh-services-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lsh-services-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lsh-service-card {
    background: linear-gradient(180deg, #111111 0%, #0d0d0d 100%);
    border: 1px solid var(--lsh-border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(0,0,0,.28);
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.lsh-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(226,196,141,.38);
    box-shadow: 0 18px 40px rgba(0,0,0,.34);
}

.lsh-service-image {
    position: relative;
    overflow: hidden;
}

.lsh-service-image img {
    width: 100%;
    height: 280px;
    display: block;
    object-fit: cover;
    background: #161616;
}

.lsh-service-content {
    padding: 22px 22px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.lsh-service-header {
    margin-bottom: 18px;
}

.lsh-service-title {
    margin: 0 0 10px;
    color: var(--lsh-gold-soft);
    font-size: 26px;
    line-height: 1.2;
    font-weight: var(--lsh-heading-font-weight);
    letter-spacing: -0.02em;
}

.lsh-service-description {
    color: var(--lsh-text-soft);
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 5.1em;
}

.lsh-service-prices {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.lsh-service-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.lsh-service-price-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.lsh-service-duration {
    color: var(--lsh-text);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.lsh-service-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(198,167,106,.12);
    border: 1px solid rgba(198,167,106,.24);
    color: var(--lsh-gold-soft);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.lsh-service-price-right {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
    flex-wrap: wrap;
    text-align: right;
}

.lsh-service-price-old {
    color: rgba(217,205,184,.75);
    text-decoration: line-through;
    font-size: 14px;
    font-weight: 500;
}

.lsh-service-price-new,
.lsh-service-price-normal {
    color: var(--lsh-gold-soft);
    font-size: 15px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.lsh-service-footer {
    margin-top: 18px;
}

.lsh-service-book-btn {
    width: 100%;
    min-height: 48px;
    border-radius: 999px;
}

/* ==========================================================
   SERVICE LIGHTBOX
   ========================================================== */

body.lsh-modal-open {
    overflow: hidden;
}

.lsh-service-read-more {
    margin-top: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--lsh-gold-soft);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
}

.lsh-service-read-more:hover {
    opacity: 0.85;
}

.lsh-service-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
}

.lsh-service-modal.is-active {
    display: block;
}

.lsh-service-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(3px);
}

.lsh-service-modal-dialog {
    position: relative;
    z-index: 2;
    width: min(1100px, calc(100% - 32px));
    max-height: calc(100vh - 40px);
    margin: 20px auto;
    overflow: auto;
    background: linear-gradient(180deg, #111111 0%, #0c0c0c 100%);
    border: 1px solid var(--lsh-border);
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(0,0,0,.45);
}

.lsh-service-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.lsh-service-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100%;
}

.lsh-service-modal-media {
    position: relative;
    background: #111;
}

.lsh-service-modal-media img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
}

.lsh-service-modal-content {
    padding: 42px 34px 34px;
    display: flex;
    flex-direction: column;
}

.lsh-service-modal-title {
    margin: 0 0 16px;
    color: var(--lsh-gold-soft);
    font-size: 34px;
    line-height: 1.1;
    font-weight: var(--lsh-heading-font-weight);
    letter-spacing: -0.02em;
}

.lsh-service-modal-description {
    color: var(--lsh-text-soft);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 24px;
}

.lsh-service-modal-description p {
    margin: 0 0 14px;
}

.lsh-service-modal-prices {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.lsh-service-modal-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.lsh-service-modal-price-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.lsh-service-modal-footer {
    margin-top: 24px;
}

.lsh-service-modal-footer .lsh-service-book-btn {
    width: 100%;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 991px) {
    .lsh-testimonials-grid,
    .lsh-gallery-grid {
        grid-template-columns: 1fr;
    }

    .lsh-hero h1 {
        font-size: 48px;
    }

    .lsh-hero p {
        font-size: 18px;
    }

    .lsh-title {
        font-size: 34px;
    }

    .lsh-gallery-item img {
        height: 260px;
    }

    .lsh-gift-content h2 {
        font-size: 34px;
    }

    .lsh-services-grid-2,
    .lsh-services-grid-3 {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        align-items: stretch;
    }

    .lsh-services-grid-2 .lsh-service-card,
    .lsh-services-grid-3 .lsh-service-card {
        min-width: 84%;
        flex: 0 0 84%;
        scroll-snap-align: start;
        display: flex;
        flex-direction: column;
        min-height: 640px;
    }

    .lsh-services-grid-2::-webkit-scrollbar,
    .lsh-services-grid-3::-webkit-scrollbar {
        height: 6px;
    }

    .lsh-services-grid-2::-webkit-scrollbar-thumb,
    .lsh-services-grid-3::-webkit-scrollbar-thumb {
        background: rgba(198,167,106,.35);
        border-radius: 999px;
    }

    .lsh-service-image img {
        height: 240px;
    }

    .lsh-service-title {
        font-size: 22px;
        min-height: 56px;
    }

    .lsh-service-content {
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .lsh-service-header {
        min-height: 165px;
        display: flex;
        flex-direction: column;
    }

    .lsh-service-description {
        min-height: 84px;
    }

    .lsh-service-prices {
        margin-top: auto;
        min-height: 86px;
    }

    .lsh-service-footer {
        margin-top: 16px;
    }

    .lsh-service-book-btn {
        min-height: 50px;
    }

    .lsh-service-price-row {
        align-items: flex-start;
    }

    .lsh-service-price-right {
        justify-content: flex-start;
        text-align: left;
    }

    .lsh-service-modal-dialog {
        width: calc(100% - 20px);
        max-height: calc(100vh - 20px);
        margin: 10px auto;
        border-radius: 20px;
    }

    .lsh-service-modal-grid {
        grid-template-columns: 1fr;
    }

    .lsh-service-modal-media img {
        min-height: 260px;
        max-height: 320px;
    }

    .lsh-service-modal-content {
        padding: 24px 18px 20px;
    }

    .lsh-service-modal-title {
        font-size: 26px;
    }

    .lsh-service-modal-price-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .lsh-service-price-right {
        justify-content: flex-start;
        text-align: left;
    }

    .lsh-hero-video-embed iframe,
    .lsh-hero-video-embed video,
    .lsh-hero-video-embed embed,
    .lsh-hero-video-embed object {
        width: 220vw;
        height: 124vw;
    }
}
/* ==========================================================
   GALLERY SLIDER MOBILE FIX
   ========================================================== */

@media (max-width: 991px) {
    .lsh-gallery-slider-wrap {
        width: 100%;
        margin-left: 0;
        padding: 0;
        display: block;
    }

    .lsh-gallery-slider {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .lsh-gallery-track {
        display: flex;
        gap: 14px;
    }

    .lsh-gallery-slide {
        flex: 0 0 84%;
        min-width: 84%;
        scroll-snap-align: center;
    }

    .lsh-gallery-item {
        aspect-ratio: 16 / 9;
        border-radius: 18px;
        overflow: hidden;
    }

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

    .lsh-gallery-arrow {
        display: none;
    }
}
/* ==========================================================
   LIGHTBOX
   ========================================================== */

.lsh-lightbox {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
}

.lsh-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lsh-lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.92);
    backdrop-filter: blur(6px);
}

.lsh-lightbox-inner {
    position: relative;
    z-index: 2;
    max-width: 92vw;
    max-height: 88vh;
}

.lsh-lightbox-inner img {
    width: auto;
    height: auto;
    max-width: 92vw;
    max-height: 88vh;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,.6);
}

.lsh-lightbox-close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0,0,0,.7);
    border: 1px solid rgba(255,255,255,.1);
    color: #fff;
    font-size: 26px;
    cursor: pointer;
}