.modern-header {
    background: rgba(8, 8, 8, 0.38) !important;
    backdrop-filter: blur(18px) saturate(1.15);
    -webkit-backdrop-filter: blur(18px) saturate(1.15);
    border-bottom: none !important;
    box-shadow: none !important;
}

.modern-header.sticky {
    background: rgba(8, 8, 8, 0.45) !important;
    backdrop-filter: blur(20px) saturate(1.15);
    -webkit-backdrop-filter: blur(20px) saturate(1.15);
    border-bottom: none !important;
    box-shadow: none !important;
}

.modern-header .main-nav {
    background: transparent !important;
}

.video-hero {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    align-items: center !important;
    padding: 120px 0 40px !important;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    padding-bottom: 40px;
    z-index: 2;
    position: relative;
    width: 100%;
}

.hero-content {
    margin-bottom: 30px;
    width: 100%;
}

.hero-outline-button {
    display: inline-block;
    background: transparent;
    color: #FFC999;
    border: 1px solid #FFC999;
    padding: 12px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.hero-outline-button:hover {
    background: rgba(255, 201, 153, 0.1);
    color: #FFC999;
}

.hero-content .availability-text {
    font-size: 16px;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    .hero-content .availability-text {
        font-size: 20px;
        line-height: 1.65;
        max-width: 780px;
        padding: 0 20px;
    }
}

.hero-social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%;
}

.hero-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 45px;
    border-radius: 80px;
    border: 1px solid rgba(255, 201, 153, 0.55);
    color: #FFC999;
    font-size: 20px;
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 4px 18px rgba(0, 0, 0, 0.28);
}

.hero-social-icon img {
    width: 28px !important;
}

.hero-social-icon:hover {
    background: rgba(255, 201, 153, 0.16);
    border-color: #FFC999;
    color: #FFC999;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 6px 22px rgba(0, 0, 0, 0.35),
        0 0 20px rgba(255, 201, 153, 0.12);
}

.hero-social-icons--sticky {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: auto;
    pointer-events: auto;
    padding: 0;
    gap: 16px;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.homepage-intro-section .hero-social-icons {
    margin: 22px auto 8px;
}

@media (max-width: 767px) {
    .hero-social-icons--sticky {
        bottom: 44px;
        gap: 12px;
        padding: 0;
        max-width: calc(100% - 32px);
        box-sizing: border-box;
    }

    .hero-social-icons--sticky .hero-social-icon {
        width: 103px;
        height: 58px;
        font-size: 16px;
    }
}

/* Mobil dil dropdown — masaüstünde nav içindeki .language-selector kullanılır */
@media (max-width: 991px) {
    .mobile-language-selector {
        position: relative;
    }

    .mobile-language-selector .mobile-lang-trigger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        color: #FFC999 !important;
        -webkit-text-fill-color: #FFC999 !important;
        padding: 6px 10px;
        min-height: 36px;
        border: 1px solid #FFC999 !important;
        border-radius: 6px !important;
        background: #000 !important;
        font-size: 14px;
        font-weight: 700;
        line-height: 1;
        cursor: pointer;
        box-shadow: none !important;
    }

    .mobile-language-selector .mobile-lang-trigger .fa-language,
    .mobile-language-selector .mobile-lang-caret {
        color: #FFC999 !important;
    }

    .mobile-language-selector .mobile-lang-trigger .fa-language {
        font-size: 14px;
        flex-shrink: 0;
    }

    .mobile-language-selector .mobile-lang-trigger span {
        display: inline !important;
        font-weight: 700;
        letter-spacing: 0.02em;
        color: #FFC999 !important;
        -webkit-text-fill-color: #FFC999 !important;
    }

    .mobile-language-selector .mobile-lang-caret {
        font-size: 11px;
        flex-shrink: 0;
        transition: transform 0.2s ease;
    }

    .mobile-language-selector.open .mobile-lang-caret {
        transform: rotate(180deg);
    }

    .mobile-language-selector .mobile-lang-dropdown {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        left: auto;
        min-width: 110px;
        padding: 8px;
        border-radius: 10px;
        border: 1px solid rgba(255, 201, 153, 0.35);
        background: #111;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
        display: none;
        flex-direction: column;
        gap: 8px;
        z-index: 1002;
    }

    .mobile-language-selector .mobile-lang-dropdown.show {
        display: flex;
    }

    .mobile-language-selector .mobile-lang-dropdown .lang-btn {
        width: 100%;
        display: flex;
        justify-content: center;
        color: #FFC999 !important;
        -webkit-text-fill-color: #FFC999 !important;
        text-decoration: none;
        padding: 8px 10px;
        margin: 0;
        border: 1px solid rgba(255, 201, 153, 0.35) !important;
        border-radius: 4px !important;
        background: transparent !important;
        font-size: 14px;
        font-weight: 600;
        box-sizing: border-box;
    }

    .mobile-language-selector .mobile-lang-dropdown .lang-btn:hover {
        background: rgba(255, 201, 153, 0.1) !important;
        border-color: #FFC999 !important;
    }
}

@media (max-width: 420px) {
    .mobile-language-selector .mobile-lang-trigger {
        gap: 5px;
        padding: 6px 8px;
    }
}

@media (max-width: 390px) {
    .mobile-language-selector .mobile-lang-trigger span {
        display: inline !important;
    }
}

@media (min-width: 992px) {
    .mobile-language-selector {
        display: none !important;
    }
}

.modern-header .nav-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    padding: 12px 15px !important;
    min-height: 70px;
}

.modern-header .header-col-left {
    justify-self: start;
}

.modern-header .header-col-center {
    justify-self: center;
    text-align: center;
}

.modern-header .header-col-right {
    justify-self: end;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.modern-header .logo {
    display: inline-block;
    margin: 0;
}

.modern-header .logo img,
.modern-header .logo .custom-logo,
.modern-header .logo .custom-logo-link img {
    display: block;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}



.mobile-menu-toggle {
    display: none;
    background: transparent !important;
    border: none !important;
    color: #FFC999 !important;
    width: 28px;
    height: 20px;
    padding: 0;
    cursor: pointer;
    line-height: 0;
    font-size: 0;
}

.mobile-menu-toggle i {
    display: inline-block;
    width: 22px;
    height: 1px;
    font-size: 0;
    line-height: 0;
    color: transparent !important;
    position: relative;
    vertical-align: middle;
}

.mobile-menu-toggle i::before {
    content: '' !important;
    display: block !important;
    width: 22px;
    height: 1.5px;
    background-color: #FFC999;
    border-radius: 1px;
    box-shadow: 0 -6px 0 #FFC999, 0 6px 0 #FFC999;
    font-family: inherit !important;
    font-weight: 400 !important;
    font-size: 0 !important;
    line-height: 0 !important;
}

.mobile-language-selector {
    display: none;
}

@media (max-width: 991px) {
    .modern-header .main-nav .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .modern-header .nav-wrapper {
        display: grid;
        grid-template-columns: 36px minmax(0, 1fr) 92px;
        align-items: center;
        column-gap: 8px;
        min-height: 58px;
        padding: 8px 0 !important;
    }

    .modern-header .header-col-left,
    .modern-header .header-col-right,
    .modern-header .header-col-center {
        position: static;
        transform: none;
        z-index: auto;
    }

    .modern-header .header-col-left {
        justify-self: start;
        width: 36px;
        min-width: 36px;
    }

    .modern-header .header-col-center {
        justify-self: stretch;
        align-self: center;
        min-width: 0;
        width: auto;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
        overflow: visible;
        pointer-events: none;
        z-index: 1;
        border: none !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .modern-header .header-col-center .logo,
    .modern-header .header-col-center .custom-logo-link {
        min-width: 0;
        max-width: 100%;
    }

    .modern-header .header-col-center img {
        min-width: 0;
    }

    .modern-header .header-col-right {
        display: block;
        justify-self: end;
        width: 92px;
        min-width: 92px;
        max-width: 92px;
        overflow: visible;
        z-index: 2;
    }

    .modern-header .header-col-right .nav-menu {
        display: none !important;
        position: absolute !important;
        width: 1px !important;
        height: 1px !important;
        overflow: hidden !important;
        clip: rect(0, 0, 0, 0) !important;
        white-space: nowrap !important;
        pointer-events: none !important;
    }

    .modern-header .header-col-center .logo,
    .modern-header .header-col-center .custom-logo-link {
        pointer-events: auto;
    }

    .modern-header .header-col-center > .custom-logo-link {
        display: block !important;
        margin: 0 auto !important;
    }

    .modern-header .header-col-center .logo,
    .modern-header .header-col-center .custom-logo-link {
        display: block !important;
        width: auto !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        line-height: 0;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
        background: transparent !important;
    }

    .modern-header .nav-menu {
        display: none !important;
    }

    .mobile-language-selector .mobile-lang-trigger {
        padding: 5px 7px;
        gap: 5px;
        font-size: 13px;
        min-height: 34px;
    }

    .mobile-menu-toggle {
        display: block !important;
    }

    .mobile-language-selector {
        display: flex !important;
        flex-shrink: 0;
        max-width: 100%;
    }
}

@media (max-width: 420px) {
    .modern-header .nav-wrapper {
        grid-template-columns: 32px minmax(0, 1fr) 86px;
        column-gap: 6px;
    }

    .modern-header .header-col-left {
        width: 32px;
        min-width: 32px;
    }

    .modern-header .header-col-right {
        width: 86px;
        min-width: 86px;
        max-width: 86px;
    }

    .modern-header .header-col-center .logo img,
    .modern-header .header-col-center .custom-logo,
    .modern-header .header-col-center .custom-logo-link img,
    .modern-header .header-col-center .logo-img {
        max-height: 40px !important;
        max-width: 165px !important;
    }
}

@media (max-width: 390px) {
    .modern-header .header-col-center .logo img,
    .modern-header .header-col-center .custom-logo,
    .modern-header .header-col-center .custom-logo-link img,
    .modern-header .header-col-center .logo-img {
        max-height: 40px !important;
        max-width: 165px !important;
    }
}

@media (min-width: 992px) {
    .modern-header .nav-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }

    .modern-header .header-col-left {
        display: none;
    }

    .modern-header .header-col-center {
        flex-shrink: 0;
    }

    .modern-header .header-col-right {
        flex: 1;
        justify-content: flex-end;
    }

    .modern-header .nav-menu {
        display: flex !important;
        align-items: center;
        justify-content: space-evenly;
        width: 100%;
        margin: 0 !important;
    }
}

.homepage-section-separator {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
    line-height: 0;
    pointer-events: none;
}

.homepage-section-separator__img {
    display: block;
    width: 222px;
    max-width: min(240px, 58vw);
    height: auto;
    margin: 0 auto;
    border: 0;
    object-fit: contain;
    object-position: center;
}

.homepage-intro-section {
    --intro-gold: #D8B892;
    padding: 56px 20px 64px;
    text-align: center;
    background: transparent !important;
}

.homepage-intro-inner {
    max-width: 920px;
    margin: 0 auto;
}

.homepage-intro-section .intro-main-title,
.homepage-intro-section .intro-main-title .intro-title-line,
.homepage-intro-section .intro-tagline,
.homepage-intro-section .intro-tagline span,
.homepage-intro-section .intro-brand-title {
    color: var(--intro-gold) !important;
    -webkit-text-fill-color: var(--intro-gold) !important;
    background: none !important;
    background-image: none !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
}

.intro-main-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin: 0 0 18px;
    padding: 0;
    border: none;
}

.intro-title-line {
    display: block;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.intro-title-line--bold {
    font-size: clamp(22px, 4.2vw, 34px);
    font-weight: 700;
    line-height: 1.15;
}

.intro-title-line--light {
    font-size: clamp(18px, 3.2vw, 26px);
    font-weight: 400;
    line-height: 1.2;
}

.intro-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 0 0 22px;
    padding: 0;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: 0.02em;
}

.intro-tagline span {
    padding: 0 4px;
}

.intro-tagline::before,
.intro-tagline::after {
    content: '—';
    color: var(--intro-gold);
    flex-shrink: 0;
    padding: 0 8px;
}

.intro-brand-title {
    margin: 0 0 26px;
    padding: 0;
    font-size: 32px !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.15;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
    max-width: 100%;
}

.main-page-hidden-txt {
    max-width: 100% !important;
    width: 100%;
}

.intro-description {
    margin: 0 auto 24px;
    max-width: 680px;
}

.intro-description,
.intro-description p {
    background: none !important;
    background-image: none !important;
    font-size: 16px !important;
    line-height: 1.75;
    text-align: center;
}

.intro-description p {
    margin: 0 0 1em;
}

.intro-description p:last-child {
    margin-bottom: 0;
}

.intro-read-more-wrapper {
    margin-top: 8px;
}

button.read-more-btn {
    -webkit-text-fill-color:#B1B1B1 !important;
}

.intro-read-more-btn {
    background: transparent !important;
    background-image: none !important;
    border: none !important;
    box-shadow: none !important;
    font-size: 20px !important;
    font-weight: 400;
    padding: 0;
    cursor: pointer;
    letter-spacing: 0.02em;
}

.intro-read-more-btn:hover,
.intro-read-more-btn:focus {
    color: var(--intro-gold) !important;
    -webkit-text-fill-color: var(--intro-gold) !important;
    background: transparent !important;
}

.intro-benefits-list {
    color: #ffffff;
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 24px auto 0;
    max-width: 680px;
}

.intro-benefits-list .sd-benefits-item {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

@media (min-width: 992px) {
    .homepage-intro-section {
        padding: 72px 24px 80px;
    }

    .intro-description {
        max-width: 820px;
    }

    .intro-tagline {
        font-size: 18px;
        gap: 28px;
    }

    .intro-description,
    .intro-description p {
        font-size: 16px !important;
        line-height: 1.8;
    }
}


@media (min-width: 992px) {
    .homepage-intro-inner .intro-main-title {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: baseline;
        gap: 0.35em;
        white-space: nowrap;
        width: 100%;
    }

    .homepage-intro-inner .intro-title-line {
        display: inline;
        width: auto;
        max-width: none;
        white-space: nowrap;
    }

    .intro-title-line--bold,
    .intro-title-line--light {
        font-size: 32px !important;
    }

    .intro-brand-title {
        white-space: nowrap;
    }
}

#nosex {
    font-size: 20px !important;
}

@media (max-width: 767.98px) {
    .homepage-intro-section {
        padding-left: 14px;
        padding-right: 14px;
    }

    .homepage-intro-inner {
        width: 100%;
        max-width: 100%;
    }

    .intro-main-title {
        width: 100%;
        max-width: 100%;
        margin-bottom: 14px;
    }

    .intro-title-line {
        width: 100%;
        max-width: 100%;
        letter-spacing: 0.03em;
    }

    .intro-title-line--bold,
    .intro-title-line--light {
        font-size: clamp(19px, 5.2vw, 26px) !important;
        line-height: 1.2;
    }

    .intro-tagline,
    #nosex.intro-tagline {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: 6px;
        width: 100%;
        max-width: 100%;
        margin-bottom: 16px;
        font-size: clamp(11px, 2.8vw, 14px) !important;
        line-height: 1.3;
        white-space: nowrap;
    }

    .intro-tagline span {
        white-space: nowrap;
        flex: 0 1 auto;
        min-width: 0;
        padding: 0;
    }

    .intro-tagline::before,
    .intro-tagline::after {
        flex-shrink: 0;
        padding: 0 2px;
    }

    .intro-brand-title {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
        font-size: clamp(20px, 5.8vw, 28px) !important;
        line-height: 1.2;
        letter-spacing: 0.04em;
        white-space: normal !important;
        overflow-wrap: break-word;
        word-break: normal;
        hyphens: none;
    }
}

@media (max-width: 991.98px) {
    .homepage-gallery-section .homepage-gallery-title,
    .homepage-services-section .homepage-services-title,
    .homepage-gift-section .homepage-gift-header,
    .homepage-reviews-section .homepage-reviews-title,
    .homepage-pricing-section .homepage-pricing-title,
    .homepage-faq-section .homepage-faq-header,
    .homepage-locations-section .homepage-locations-title {
        margin-bottom: 24px !important;
    }

    .homepage-services-section .homepage-services-title,
    .homepage-gift-section .homepage-gift-title,
    .homepage-reviews-section .homepage-reviews-title,
    .homepage-pricing-section .homepage-pricing-title,
    .homepage-locations-section .homepage-locations-title {
        gap: 2px;
    }

    .homepage-faq-title {
        margin-bottom: 16px !important;
    }

    .homepage-about-title {
        margin-bottom: 10px !important;
    }

    /* Gift / vouchers card */
    .homepage-gift-card {
        min-height: auto;
    }

    .homepage-gift-card-content {
        min-height: auto;
        padding: 20px 16px 22px;
    }

    .homepage-gift-card-heading {
        font-size: 18px !important;
        margin-bottom: 10px !important;
    }

    .homepage-gift-card-text {
        margin-bottom: 18px;
    }

    .homepage-gift-card-text,
    .homepage-gift-card-text p {
        font-size: 14px !important;
        line-height: 1.55 !important;
    }

    .homepage-gift-section .homepage-gift-btn.btn-gold {
        font-size: 16px !important;
        padding: 9px 26px !important;
        letter-spacing: 0.04em;
    }

    .homepage-about-feature-title {
        font-size: 18px;
    }
}

.intro-description, .intro-description p {
    font-weight: 400 !important;
}

.homepage-gallery-section {
    --gallery-gold: #D8B892;
    --gallery-border-gradient: linear-gradient(
        160deg,
        rgba(60, 60, 60, 1) 0%,
        rgba(216, 184, 146, 1) 100%
    );
    padding: 56px 0 64px !important;
}

.homepage-gallery-section .homepage-gallery-title {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: var(--gallery-gold) !important;
    -webkit-text-fill-color: var(--gallery-gold) !important;
    background: none !important;
    background-image: none !important;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 32px;
    padding: 0;
    border: none;
}

.homepage-gallery-section .separator {
    display: none !important;
}

.homepage-gallery-slider-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
}

.homepage-gallery-marquee {
    width: 100%;
}

.homepage-gallery-marquee__viewport {
    width: 100%;
    overflow: hidden;
    cursor: grab;
    touch-action: pan-y;
    -webkit-user-select: none;
    user-select: none;
}

.homepage-gallery-marquee__viewport.is-dragging {
    cursor: grabbing;
}

.homepage-gallery-marquee__track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.homepage-gallery-marquee__group {
    display: flex;
    flex-shrink: 0;
    align-items: stretch;
    gap: 16px;
    padding-right: 16px;
}

.homepage-gallery-marquee__group--clone {
    pointer-events: none;
}

.homepage-gallery-section .homepage-gallery-marquee .gallery-item {
    flex: 0 0 auto;
    width: min(82vw, 360px);
    margin: 0 !important;
    border: 1px solid transparent;
    border-radius: 21px;
    overflow: hidden;
    background:
        linear-gradient(#0a0a0a, #0a0a0a) padding-box,
        var(--gallery-border-gradient) border-box;
}

.homepage-gallery-section .homepage-gallery-marquee .gallery-item a,
.homepage-gallery-section .homepage-gallery-marquee .gallery-item-media {
    display: block;
    line-height: 0;
}

.homepage-gallery-section .homepage-gallery-marquee .gallery-item img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 360px;
    max-height: 480px;
    object-fit: cover;
    border-radius: 20px;
    transform: none !important;
}

.homepage-gallery-section .homepage-gallery-marquee .gallery-overlay {
    opacity: 0;
    pointer-events: none;
}

.homepage-gallery-section .homepage-gallery-marquee .gallery-item:hover img {
    transform: none !important;
}

.homepage-gallery-more-btn {
    position: relative;
    z-index: 0;
    display: inline-block !important;
    margin-top: 28px !important;
    padding: 12px 52px !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    color: var(--gallery-gold) !important;
    -webkit-text-fill-color: var(--gallery-gold) !important;
    background: transparent !important;
    background-image: none !important;
    border: none !important;
    border-radius: 50px !important;
    box-shadow: none !important;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.homepage-gallery-more-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    padding: 1px;
    background: var(--gallery-border-gradient);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.homepage-gallery-more-btn:hover {
    color: #FFC999 !important;
    -webkit-text-fill-color: #FFC999 !important;
    background: rgba(216, 184, 146, 0.1) !important;
    background-image: none !important;
    transform: none !important;
}

@media (min-width: 992px) {
    .homepage-gallery-marquee__group {
        gap: 20px;
        padding-right: 20px;
    }

    .homepage-gallery-section .homepage-gallery-marquee .gallery-item {
        width: 300px;
    }

    .homepage-gallery-section .homepage-gallery-marquee .gallery-item img {
        min-height: 300px;
        max-height: 420px;
    }
}

@media (max-width: 575px) {
    .homepage-gallery-section .homepage-gallery-marquee .gallery-item img {
        min-height: 360px;
        max-height: 480px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .homepage-gallery-marquee__viewport {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        cursor: default;
    }
}

.homepage-services-section {
    --services-gold: #D8B892;
    --services-border: #EECFA6;
    --services-border-gradient: linear-gradient(
        160deg,
        rgba(60, 60, 60, 1) 0%,
        rgba(216, 184, 146, 1) 100%
    );
    padding: 56px 0 64px !important;
    overflow: visible !important;
}

.homepage-services-section .container {
    overflow: visible;
}

.homepage-services-section::before {
    display: none !important;
}

.homepage-services-section .homepage-services-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin: 0 0 36px;
    padding: 0;
    border: none;
}

.homepage-services-section .services-title-line {
    display: block;
    font-size: 24px !important;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--services-gold) !important;
    -webkit-text-fill-color: var(--services-gold) !important;
    background: none !important;
    background-image: none !important;
}

.homepage-services-section .services-title-line--light {
    font-weight: 400 !important;
}

.homepage-services-section .services-title-line--bold {
    font-weight: 700 !important;
}

.homepage-services-slider-wrap {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
    padding: 0 48px;
    overflow: visible;
}

.homepage-services-section .homepage-services-carousel {
    position: relative;
    padding: 0 !important;
    overflow: visible !important;
}

.homepage-services-section .homepage-services-carousel .owl-stage-outer {
    overflow: hidden;
}

.homepage-services-section .homepage-services-carousel .gallery-item,
.homepage-services-section.services-section .gallery-item {
    margin: 0 !important;
}

.homepage-services-section .service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 200px;
    height: auto;
    border: 1px solid transparent;
    border-radius: 21px;
    overflow: hidden;
    background:
        linear-gradient(#000, #000) padding-box,
        var(--services-border-gradient) border-box;
    transform: none !important;
    box-shadow: none !important;
}

.homepage-services-section .service-card:hover {
    transform: none !important;
    box-shadow: none !important;
}

.homepage-services-section .service-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.homepage-services-section .service-image img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    transform: none !important;
}

.homepage-services-section .service-card:hover .service-image img {
    transform: none !important;
}

.homepage-services-section .service-overlay {
    position: absolute;
    inset: 0;
    opacity: 1;
    background: rgba(0, 0, 0, 0.25);
}

.homepage-services-section .service-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex: 1 1 auto;
    min-height: 200px;
    padding: 16px 18px 14px;
    background: transparent !important;
    text-align: left !important;
}

.homepage-services-section .service-title {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: var(--services-gold) !important;
    -webkit-text-fill-color: var(--services-gold) !important;
    background: none !important;
    background-image: none !important;
    margin: 0 0 10px !important;
    padding: 0 !important;
    line-height: 1.15;
    text-transform: uppercase;
    text-align: left !important;
    flex-shrink: 0;
}

.homepage-services-section .service-title::after {
    display: none !important;
}

.homepage-services-section .service-description {
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #fff !important;
    line-height: 1.4;
    margin: 0 0 10px !important;
    text-align: left !important;
    flex-shrink: 0;
}

.homepage-services-section .service-features {
    list-style: disc;
    padding: 0 0 0 18px !important;
    margin: 0 !important;
    flex: 0 0 auto;
}

.homepage-services-section .service-features li {
    display: list-item !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #fff !important;
    line-height: 1.35;
    margin: 0 0 4px !important;
    padding: 0 !important;
}

.homepage-services-section .service-features li:last-child {
    margin-bottom: 0 !important;
}

.homepage-services-section .service-features li i {
    display: none !important;
}

.homepage-services-section .service-button.service-read-more {
    display: inline-flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    width: auto;
    align-self: flex-end;
    margin-top: auto;
    flex-shrink: 0;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: var(--services-gold) !important;
    -webkit-text-fill-color: var(--services-gold) !important;
    background: transparent !important;
    background-image: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    text-decoration: none !important;
    transform: none !important;
}

.homepage-services-section .service-read-more-text {
    line-height: 1.2;
}

.homepage-services-section .service-read-more-arrow {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    color: inherit;
    transition: transform 0.25s ease, color 0.25s ease;
}

.homepage-services-section .service-read-more-arrow svg {
    display: block;
    width: 28px;
    height: 12px;
}

.homepage-services-section .service-button.service-read-more:hover {
    color: #FFC999 !important;
    -webkit-text-fill-color: #FFC999 !important;
    background: transparent !important;
    transform: none !important;
}

.homepage-services-section .service-button.service-read-more:hover .service-read-more-arrow {
    transform: translateX(5px);
}

.homepage-services-section .service-badge {
    display: none;
}

.homepage-services-section .homepage-services-carousel .owl-nav {
    position: absolute;
    top: 0;
    left: -52px;
    right: -52px;
    width: calc(100% + 104px);
    height: 100%;
    transform: none;
    display: block;
    pointer-events: none;
    margin: 0;
    padding: 0;
    z-index: 10;
}

.homepage-services-section .homepage-services-carousel .owl-prev,
.homepage-services-section .homepage-services-carousel .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: auto;
    width: 44px !important;
    height: 44px !important;
    background: transparent !important;
    background-image: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    color: var(--services-gold) !important;
    font-size: 28px !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1;
    -webkit-appearance: none;
    appearance: none;
}

.homepage-services-section .homepage-services-carousel .owl-prev {
    left: 0;
    right: auto;
}

.homepage-services-section .homepage-services-carousel .owl-next {
    right: 0;
    left: auto;
}

.homepage-services-section .homepage-services-carousel .owl-prev:hover,
.homepage-services-section .homepage-services-carousel .owl-next:hover {
    background: transparent !important;
    color: #FFC999 !important;
    transform: translateY(-50%);
}

.homepage-services-section .homepage-services-carousel .owl-dots {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 28px !important;
    padding: 0;
}

.homepage-services-section .homepage-services-carousel .owl-dot {
    width: 32px !important;
    height: 3px !important;
    margin: 0 !important;
    border-radius: 2px !important;
    background: #655645 !important;
    background-image: none !important;
}

.homepage-services-section .homepage-services-carousel .owl-dot.active {
    background: #FFC999 !important;
    background-image: none !important;
    transform: none !important;
}

@media (min-width: 992px) {
    .homepage-services-slider-wrap {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 0 25px;
    }

    .homepage-services-section .homepage-services-carousel .owl-nav {
        left: -60px;
        right: -60px;
        width: calc(100% + 120px);
    }

    .homepage-services-section .homepage-services-carousel .owl-item {
        display: flex;
    }

    .homepage-services-section .homepage-services-carousel .gallery-item,
    .homepage-services-section .homepage-services-carousel .service-card {
        height: 100%;
        width: 100%;
    }
}

@media (max-width: 991px) {
    .homepage-services-section .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .homepage-services-slider-wrap {
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .homepage-services-section .homepage-services-carousel .owl-nav {
        display: none !important;
    }

    .homepage-services-section .homepage-services-carousel .owl-prev,
    .homepage-services-section .homepage-services-carousel .owl-next {
        display: none !important;
    }

    .homepage-services-section .gallery-item {
        margin: 0 !important;
        width: 100%;
    }

    .homepage-services-section .service-content,
    .homepage-services-section .service-content .service-title,
    .homepage-services-section .service-content .service-description,
    .homepage-services-section .service-content .service-features,
    .homepage-services-section .service-content .service-features li {
        text-align: left !important;
    }

    .homepage-services-section .service-content {
        align-items: stretch;
    }

    .homepage-services-section .service-title::after {
        left: 0;
        right: auto;
        margin-left: 0;
        margin-right: auto;
    }

}

@media (max-width: 575px) {
    .homepage-services-section .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .homepage-services-slider-wrap {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .homepage-services-section .homepage-services-carousel .owl-dot {
        width: 22px !important;
    }
}

.homepage-gift-section {
    --gift-gold: #D8B892;
    --gift-border: #EECFA6;
    --gift-border-gradient: linear-gradient(
        160deg,
        rgba(60, 60, 60, 1) 0%,
        rgba(216, 184, 146, 1) 100%
    );
    --gift-btn-border: #FFC999;
    padding: 56px 0 64px !important;
    position: relative;
    overflow: hidden;
}

.homepage-gift-section-video {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.homepage-gift-section-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.homepage-gift-section-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.6);
}

.homepage-gift-section::before {
    display: none !important;
}

.homepage-gift-section .container {
    position: relative;
    z-index: 2;
}

.homepage-gift-header {
    margin-bottom: 32px;
}

.homepage-gift-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
    border: none;
}

.homepage-gift-section .gift-title-line {
    display: block;
    font-size: 24px !important;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gift-gold) !important;
    -webkit-text-fill-color: var(--gift-gold) !important;
    background: none !important;
    background-image: none !important;
}

.homepage-gift-section .gift-title-line--light {
    font-weight: 400 !important;
}

.homepage-gift-section .gift-title-line--bold {
    font-weight: 700 !important;
}

.homepage-gift-card {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    border: 1px solid transparent;
    border-radius: 21px;
    overflow: hidden;
    background:
        linear-gradient(#0a0a0a, #0a0a0a) padding-box,
        var(--gift-border-gradient) border-box;
    min-height: 480px;
}

.homepage-gift-card-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: #0a0a0a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.42;
}

.homepage-gift-card:not(.homepage-gift-card--has-image) .homepage-gift-card-media {
    background-image: none !important;
}

.homepage-gift-card-media-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 1;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.58) 0%,
        rgba(0, 0, 0, 0.22) 45%,
        rgba(0, 0, 0, 0.65) 100%
    );
}

.homepage-gift-card-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 480px;
    padding: 28px 22px 32px;
    text-align: left;
    background: transparent !important;
    backdrop-filter: none !important;
    border-radius: 0 !important;
}

.homepage-gift-card-heading {
    font-size: 24px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--gift-gold) !important;
    -webkit-text-fill-color: var(--gift-gold) !important;
    background: none !important;
    background-image: none !important;
    margin: 0 0 14px !important;
    padding: 0 !important;
    border: none !important;
}

.homepage-gift-card-text {
    margin: 0 0 28px;
}

.homepage-gift-card-text,
.homepage-gift-card-text p {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #ffffff !important;
    line-height: 1.65;
    margin-bottom: 0;
}

.homepage-gift-card-text p + p {
    margin-top: 12px;
}

.homepage-gift-section .homepage-gift-btn.btn-gold {
    margin-top: auto;
    align-self: center;
    display: inline-block;
    padding: 11px 44px !important;
    font-size: 24px !important;
    font-weight: 400 !important;
    color: var(--gift-gold) !important;
    -webkit-text-fill-color: var(--gift-gold) !important;
    background: transparent !important;
    background-image: none !important;
    border: 0.5px solid var(--gift-btn-border) !important;
    border-radius: 50px !important;
    box-shadow: none !important;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.homepage-gift-section .homepage-gift-btn.btn-gold:hover {
    color: var(--gift-btn-border) !important;
    -webkit-text-fill-color: var(--gift-btn-border) !important;
    background: rgba(255, 201, 153, 0.08) !important;
    border-color: var(--gift-btn-border) !important;
    transform: none !important;
}

@media (min-width: 992px) {
    .homepage-gift-section-video {
        display: block;
    }

    .homepage-gift-card {
        max-width: 720px;
        min-height: 440px;
    }

    .homepage-gift-card-content {
        min-height:440px;
        padding: 32px 36px 36px;
    }
}

.homepage-reviews-section {
    --reviews-gold: #D8B892;
    --reviews-border: #EECFA6;
    --reviews-border-gradient: linear-gradient(
        160deg,
        rgba(60, 60, 60, 1) 0%,
        rgba(216, 184, 146, 1) 100%
    );
    padding: 56px 0 64px !important;
    overflow: visible !important;
}

.homepage-reviews-section .container {
    overflow: visible;
}

.homepage-reviews-section::before {
    display: none !important;
}

.homepage-reviews-section .section-header,
.homepage-reviews-section .separator {
    display: none !important;
}

.homepage-reviews-section .homepage-reviews-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin: 0 0 36px;
    padding: 0;
    border: none;
}

.homepage-reviews-section .reviews-title-line {
    display: block;
    font-size: 24px !important;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--reviews-gold) !important;
    -webkit-text-fill-color: var(--reviews-gold) !important;
    background: none !important;
    background-image: none !important;
}

.homepage-reviews-section .reviews-title-line--light {
    font-weight: 400 !important;
}

.homepage-reviews-section .reviews-title-line--bold {
    font-weight: 700 !important;
}

.homepage-review-stats {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
    flex-wrap: wrap;
    margin: 0 0 40px;
}

.homepage-review-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    min-width: 100px;
}

.homepage-review-stat-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border: 1px solid transparent;
    border-radius: 21px;
    background:
        linear-gradient(#1a1a1a, #1a1a1a) padding-box,
        var(--reviews-border-gradient) border-box;
    box-sizing: border-box;
}

.homepage-review-stat-icon-wrap img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.homepage-review-stat-value {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.2;
    text-align: center;
}

.homepage-reviews-slider-wrap {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
    padding: 0;
    overflow: visible;
}

.homepage-reviews-section .homepage-reviews-carousel {
    position: relative;
    padding: 0 !important;
    overflow: visible !important;
}

.homepage-reviews-section .homepage-reviews-carousel .owl-stage-outer {
    overflow: hidden;
}

.homepage-reviews-section .homepage-reviews-carousel .owl-nav {
    display: none !important;
}

.homepage-reviews-section .homepage-reviews-carousel .owl-dots {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 28px !important;
    padding: 0;
}

.homepage-reviews-section .homepage-reviews-carousel .owl-dot {
    width: 32px !important;
    height: 3px !important;
    margin: 0 !important;
    border-radius: 2px !important;
    background: #655645 !important;
    background-image: none !important;
    transition: background 0.3s ease;
}

.homepage-reviews-section .homepage-reviews-carousel .owl-dot.active {
    background: #FFC999 !important;
    background-image: none !important;
    transform: none !important;
}

.homepage-review-card {
    display: flex;
    flex-direction: column;
    min-height: 320px;
    height: 320px;
    padding: 24px 22px 20px;
    border: 1px solid transparent;
    border-radius: 21px;
    background:
        linear-gradient(#272727, #272727) padding-box,
        var(--reviews-border-gradient) border-box;
    box-sizing: border-box;
}

.homepage-review-card.is-expanded {
    height: auto !important;
    min-height: 320px;
}

.homepage-review-name {
    margin: 0 0 10px;
    font-size: 20px !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    line-height: 1.25;
}

.homepage-review-card .review-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 0 14px;
    color: var(--reviews-gold) !important;
    font-size: 14px;
    line-height: 1;
}

.homepage-review-card .review-rating .fas.fa-star {
    color: var(--reviews-gold) !important;
    -webkit-text-fill-color: var(--reviews-gold) !important;
    background: none !important;
    background-image: none !important;
}

.homepage-review-text-wrap {
    flex: 1 1 auto;
    min-height: 0;
    max-height: 9.5em;
    overflow: hidden;
    margin: 0 0 8px;
}

.homepage-review-card.is-expanded .homepage-review-text-wrap {
    flex: 0 0 auto;
    min-height: 0;
    max-height: none;
    height: auto;
    overflow: visible;
    margin-bottom: 12px;
}

.homepage-review-text {
    margin: 0;
    font-size: 15px !important;
    font-weight: 400 !important;
    color: #ffffff !important;
    line-height: 1.55;
}

.homepage-review-read-more {
    align-self: flex-start;
    margin: 0 0 12px;
    padding: 0;
    border: none;
    background: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--reviews-gold) !important;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.homepage-review-read-more:hover,
.homepage-review-read-more:focus {
    color: #FFC999 !important;
}

.homepage-review-read-more[hidden] {
    display: none !important;
}

.homepage-review-meta {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: auto;
    flex-shrink: 0;
}

.homepage-review-date {
    font-size: 16px !important;
    font-weight: 500 !important;
    color: var(--reviews-gold) !important;
    line-height: 1.2;
}

.homepage-review-meta-sep {
    font-size: 16px;
    font-weight: 400;
    color: var(--reviews-gold);
    opacity: 0.85;
}

.homepage-review-time {
    font-size: 16px !important;
    font-weight: 400 !important;
    color: var(--reviews-gold) !important;
    line-height: 1.2;
}

@media (max-width: 575px) {
    .homepage-review-stats {
        gap: 16px;
    }

    .homepage-review-stat-icon-wrap {
        width: 64px;
        height: 64px;
    }

    .homepage-reviews-slider-wrap {
        max-width: 100%;
        padding: 0 8px;
    }

    .homepage-review-card {
        min-height: 300px;
        height: 300px;
        padding: 20px 18px 18px;
    }

    .homepage-review-card.is-expanded {
        height: auto !important;
        min-height: 300px;
    }

    .homepage-reviews-section .homepage-reviews-carousel .owl-dot {
        width: 22px !important;
    }
}

@media (min-width: 992px) {
    .homepage-reviews-slider-wrap {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 0 25px;
    }

    .homepage-reviews-section .homepage-reviews-carousel .owl-item {
        display: flex;
    }

    .homepage-reviews-section .homepage-review-card {
        width: 100%;
        min-height: 320px;
        height: 320px;
    }

    .homepage-reviews-section .homepage-review-card.is-expanded {
        height: auto !important;
        min-height: 320px;
    }
}

.homepage-pricing-section {
    --pricing-gold: #D8B892;
    --pricing-border: #EECFA6;
    padding: 56px 0 64px !important;
    background: transparent !important;
    overflow: visible !important;
}

.homepage-pricing-section .container {
    overflow: visible;
}

.pricing-section.homepage-pricing-section {
    overflow: visible !important;
}

.faq-section, .gallery-section, .image-locations-section, .locations-section {
    background-color: transparent !important;
    background: transparent !important;
}

.gallery-switcher {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 28px;
    padding: 0 16px;
}

.gallery-view-switch {
    display: inline-block;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.gallery-view-switch:focus {
    outline: none;
}

.gallery-view-switch:focus-visible .gallery-view-switch-track {
    outline: 2px solid rgba(216, 184, 146, 0.85);
    outline-offset: 3px;
}

.gallery-view-switch-track {
    position: relative;
    display: block;
    width: min(200px, 86vw);
    height: 48px;
    border-radius: 999px;
    background: rgba(32, 32, 38, 0.82);
    border: 1px solid rgba(228, 197, 157, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 10px 36px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.gallery-view-switch:hover .gallery-view-switch-track {
    border-color: rgba(228, 197, 157, 0.42);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 14px 44px rgba(0, 0, 0, 0.5),
        0 0 24px rgba(216, 184, 146, 0.12);
}

.gallery-view-switch-knob {
    position: absolute;
    top: 50%;
    left: 6px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    z-index: 2;
    background: linear-gradient(155deg, #7a7a82 0%, #4f4f56 55%, #3d3d42 100%);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transform: translateY(-50%);
    transition:
        left 0.38s cubic-bezier(0.34, 1.2, 0.55, 1),
        box-shadow 0.3s ease,
        transform 0.2s ease;
}

.gallery-view-switch:active .gallery-view-switch-knob {
    transform: translateY(-50%) scale(0.94);
}

.gallery-view-switch--videos .gallery-view-switch-knob {
    left: calc(100% - 42px);
}

.gallery-view-switch-label {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 52px;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #fff;
    pointer-events: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    transition: opacity 0.2s ease, letter-spacing 0.35s ease;
}

.gallery-view-switch--videos .gallery-view-switch-label {
    letter-spacing: 0.18em;
}

@media (prefers-reduced-motion: reduce) {
    .gallery-view-switch-knob {
        transition-duration: 0.05s;
    }

    .gallery-view-switch-track,
    .gallery-view-switch-label {
        transition-duration: 0.05s;
    }
}

.gallery-panels {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    position: relative;
    min-height: 60px;
}

.gallery-panels > .gallery-content {
    grid-area: 1 / 1;
    min-width: 0;
    display: block !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, 14px, 0);
    transition:
        opacity 0.44s cubic-bezier(0.33, 1, 0.68, 1),
        transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s linear 0.44s;
}

.gallery-panels > .gallery-content.is-shown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    z-index: 2;
    transition:
        opacity 0.44s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s;
}

.gallery-panels:not(.is-switching) > .gallery-content:not(.is-shown) {
    position: absolute;
    width: 100%;
    height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
}

.gallery-panels.is-switching > .gallery-content.is-exiting,
.gallery-panels.is-switching > .gallery-content.is-exiting.is-shown {
    position: relative;
    height: auto;
    overflow: visible;
    opacity: 0;
    visibility: visible;
    pointer-events: none;
    transform: translate3d(0, -10px, 0);
    z-index: 1;
    transition:
        opacity 0.36s cubic-bezier(0.4, 0, 0.75, 1),
        transform 0.38s cubic-bezier(0.4, 0, 0.75, 1),
        visibility 0s;
}

.gallery-panels.is-switching > .gallery-content.is-entering {
    position: relative;
    height: auto;
    overflow: visible;
    opacity: 0;
    visibility: visible;
    pointer-events: none;
    transform: translate3d(0, 18px, 0);
    z-index: 2;
}

.gallery-panels.is-switching > .gallery-content.is-entering.is-shown {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
}

.gallery-panels.is-switching {
    overflow: hidden;
}

.gallery-panels[data-active="photos"] #photo,
.gallery-panels[data-active="videos"] #video {
    view-transition-name: blissful-gallery-panel;
}

::view-transition-old(blissful-gallery-panel),
::view-transition-new(blissful-gallery-panel) {
    animation-duration: 0.45s;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

::view-transition-old(blissful-gallery-panel) {
    animation-name: blissful-gallery-vt-out;
}

::view-transition-new(blissful-gallery-panel) {
    animation-name: blissful-gallery-vt-in;
}

@keyframes blissful-gallery-vt-out {
    from {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
    to {
        opacity: 0;
        transform: translate3d(0, -8px, 0);
    }
}

@keyframes blissful-gallery-vt-in {
    from {
        opacity: 0;
        transform: translate3d(0, 16px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .gallery-panels > .gallery-content {
        transition-duration: 0.01ms;
    }

    .gallery-panels[data-active="photos"] #photo,
    .gallery-panels[data-active="videos"] #video {
        view-transition-name: none;
    }

    ::view-transition-old(blissful-gallery-panel),
    ::view-transition-new(blissful-gallery-panel) {
        animation: none;
    }
}

.homepage-pricing-section::before {
    display: none !important;
}

.homepage-pricing-section .section-title,
.homepage-pricing-section .separator,
.homepage-pricing-section .section-subtitle {
    display: none !important;
}

.homepage-pricing-section .homepage-pricing-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin: 0 0 32px;
    padding: 0;
    border: none;
}

.homepage-pricing-section .pricing-title-line {
    display: block;
    font-size: 24px !important;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--pricing-gold) !important;
    -webkit-text-fill-color: var(--pricing-gold) !important;
    background: none !important;
    background-image: none !important;
}

.homepage-pricing-section .pricing-title-line--light {
    font-weight: 400 !important;
}

.homepage-pricing-section .pricing-title-line--bold {
    font-weight: 700 !important;
}

.homepage-pricing--desktop {
    display: none;
}

.homepage-pricing--mobile {
    display: block;
}

.homepage-pricing-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.homepage-pricing-stack .homepage-pricing-card {
    width: 100%;
}

.homepage-pricing-section .homepage-pricing-carousel {
    position: relative;
    padding: 0 !important;
    overflow: visible !important;
}

.homepage-pricing-section .homepage-pricing-carousel .owl-stage-outer {
    overflow: hidden;
}

.homepage-pricing-section .homepage-pricing-carousel .owl-item {
    padding: 0;
}

.homepage-pricing-section .homepage-pricing-carousel .homepage-pricing-card {
    width: 100%;
}

.homepage-pricing-list {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.homepage-pricing-section .homepage-pricing-carousel .owl-nav {
    position: absolute;
    top: 0;
    left: -52px;
    right: -52px;
    width: calc(100% + 104px);
    height: 100%;
    transform: none;
    display: block;
    pointer-events: none;
    margin: 0;
    padding: 0;
    z-index: 10;
}

.homepage-pricing-section .homepage-pricing-carousel .owl-prev,
.homepage-pricing-section .homepage-pricing-carousel .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: auto;
    width: 44px !important;
    height: 44px !important;
    background: transparent !important;
    background-image: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    color: var(--pricing-gold) !important;
    font-size: 28px !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1;
    -webkit-appearance: none;
    appearance: none;
}

.homepage-pricing-section .homepage-pricing-carousel .owl-prev {
    left: 0;
    right: auto;
}

.homepage-pricing-section .homepage-pricing-carousel .owl-next {
    right: 0;
    left: auto;
}

.homepage-pricing-section .homepage-pricing-carousel .owl-prev:hover,
.homepage-pricing-section .homepage-pricing-carousel .owl-next:hover {
    background: transparent !important;
    color: #FFC999 !important;
    transform: translateY(-50%);
}

.homepage-pricing-section .homepage-pricing-carousel .owl-dots {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 28px !important;
    padding: 0;
}

.homepage-pricing-section .homepage-pricing-carousel .owl-dot {
    width: 32px !important;
    height: 3px !important;
    margin: 0 !important;
    border-radius: 2px !important;
    background: #655645 !important;
    background-image: none !important;
}

.homepage-pricing-section .homepage-pricing-carousel .owl-dot.active {
    background: var(--pricing-gold) !important;
    background-image: none !important;
    transform: none !important;
}

.homepage-pricing-card {
    position: relative;
    display: flex;
    align-items: stretch;
    height: 200px;
    min-height: 200px;
    max-height: 200px;
    border: 0.5px solid var(--pricing-border);
    border-radius: 21px;
    overflow: hidden;
    background-color: #111;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.homepage-pricing-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.76);
    z-index: 1;
    pointer-events: none;
}

.homepage-pricing--desktop .pricing-card .card-overlay {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.78), rgba(42, 42, 42, 0.82));
}

.homepage-pricing-card-label {
    position: relative;
    z-index: 2;
    flex: 0 0 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
}

.homepage-pricing-card-label span {
    display: block;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 24px !important;
    font-weight: 500 !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pricing-gold) !important;
    -webkit-text-fill-color: var(--pricing-gold) !important;
    line-height: 1.1;
    white-space: nowrap;
}

.homepage-pricing-card-divider {
    position: relative;
    z-index: 2;
    flex: 0 0 1px;
    align-self: stretch;
    margin: 18px 0;
    background: var(--pricing-gold);
}

.homepage-pricing-card-body {
    position: relative;
    z-index: 2;
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 16px 18px 14px 14px;
    overflow: hidden;
}

.homepage-pricing-session {
    margin: 0 0 8px;
    padding: 0;
    font-size: 20px !important;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.homepage-pricing-session-bold,
.homepage-pricing-session-light {
    color: var(--pricing-gold) !important;
    -webkit-text-fill-color: var(--pricing-gold) !important;
    background: none !important;
    background-image: none !important;
}

.homepage-pricing-session-bold {
    font-weight: 700 !important;
}

.homepage-pricing-session-light {
    font-weight: 400 !important;
}

.homepage-pricing-features {
    list-style: disc;
    margin: 0;
    padding: 0 0 0 18px;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
}

.homepage-pricing-features li {
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #ffffff !important;
    line-height: 1.35;
    margin: 0 0 2px;
}

.homepage-pricing-features li:last-child {
    margin-bottom: 0;
}

.homepage-pricing-card-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    flex-shrink: 0;
}

.homepage-pricing-meta,
.homepage-pricing-meta-spacer {
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
}

.homepage-pricing-meta {
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #ffffff !important;
    line-height: 1.2;
}

.homepage-pricing-prices {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    flex-shrink: 0;
}

.homepage-pricing-price-old {
    font-size: 15px !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.55) !important;
    text-decoration: line-through;
    line-height: 1.2;
    white-space: nowrap;
}

.homepage-pricing-price-current {
    font-size: 24px !important;
    font-weight: 400 !important;
    color: var(--pricing-gold) !important;
    -webkit-text-fill-color: var(--pricing-gold) !important;
    line-height: 1.15;
    white-space: nowrap;
}

@media (min-width: 992px) {
    .homepage-pricing--desktop {
        display: block;
    }

    .homepage-pricing--mobile {
        display: none !important;
    }

    .homepage-pricing--desktop .pricing-row {
        position: relative;
        z-index: 1;
    }

    .homepage-pricing--desktop .gallery-carousel.pricing-carousel {
        display: flex;
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
        margin: 0;
        padding: 0;
    }

    .homepage-pricing--desktop .gallery-carousel.pricing-carousel .gallery-item {
        flex: 0 0 calc(33.333% - 16px);
        max-width: calc(33.333% - 16px);
        margin: 0;
        padding: 0;
    }

    .homepage-pricing--desktop .pricing-card {
        height: 100%;
    }

    .homepage-pricing-card-label {
        flex: 0 0 44px;
    }

    .homepage-pricing-card-label span {
        font-size: 20px !important;
    }

    .homepage-pricing-card-body {
        padding: 14px 12px 12px 10px;
    }

    .homepage-pricing-session {
        font-size: 16px !important;
        margin-bottom: 6px;
    }

    .homepage-pricing-features {
        padding-left: 14px;
    }

    .homepage-pricing-features li {
        font-size: 13px !important;
        line-height: 1.3;
    }

    .homepage-pricing-meta {
        font-size: 13px !important;
    }

    .homepage-pricing-price-old {
        font-size: 13px !important;
    }

    .homepage-pricing-price-current {
        font-size: 18px !important;
    }
}

@media (max-width: 991px) {
    .homepage-pricing-section .container,
    #pricing .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .homepage-pricing-stack {
        gap: 16px;
    }

    .homepage-pricing-card {
        height: auto;
        min-height: 200px;
        max-height: none;
    }

    .homepage-pricing--mobile .homepage-pricing-card-overlay {
        background: rgba(0, 0, 0, 0.73);
    }

    .homepage-pricing--mobile .homepage-pricing-price-old,
    .homepage-pricing--mobile .homepage-pricing-price-current {
        opacity: 0.5;
    }
}

@media (max-width: 575px) {
    .homepage-pricing-section .container,
    #pricing .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .homepage-pricing-stack {
        gap: 12px;
    }

    .homepage-pricing-card-label {
        flex: 0 0 44px;
    }

    .homepage-pricing-card-label span {
        font-size: 20px !important;
    }

    .homepage-pricing-session {
        font-size: 17px !important;
    }

    .homepage-pricing-features li {
        font-size: 14px !important;
    }

    .homepage-pricing-price-current {
        font-size: 20px !important;
    }
}

.homepage-about-section {
    --about-gold: #D8B892;
    --about-border-gradient: linear-gradient(
        160deg,
        rgba(60, 60, 60, 1) 0%,
        rgba(216, 184, 146, 1) 100%
    );
}



.homepage-about-section .about-text::before,
.homepage-about-section .title-separator {
    display: none;
}

.homepage-about-header {
    margin-bottom: 24px;
    text-align: left;
}

.homepage-about-title {
    margin: 0 0 12px;
    color: var(--about-gold);
    font-size: 50px !important;
    font-weight: 700 !important;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    background: none !important;
    background-image: none !important;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--about-gold) !important;
}

.homepage-about-subtitle {
    margin: 0;
    color: var(--about-gold);
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.5;
    text-transform: none;
    letter-spacing: normal;
}

.homepage-about-lead {
    margin: 0 0 32px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    text-align: left;
}

.homepage-about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.homepage-about-features--mobile {
    display: none;
}

.homepage-about-slider-wrap {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.homepage-about-features-carousel {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 0 !important;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
}

.homepage-about-features-carousel .owl-stage-outer {
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.homepage-about-features-carousel .owl-nav {
    display: none !important;
}

.homepage-about-features-carousel .owl-dots {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px !important;
    padding: 0;
}

.homepage-about-features-carousel .owl-dot {
    width: 32px !important;
    height: 3px !important;
    margin: 0 !important;
    border-radius: 2px !important;
    background: #655645 !important;
    background-image: none !important;
    transition: background 0.3s ease;
}

.homepage-about-features-carousel .owl-dot.active {
    background: var(--about-gold) !important;
    background-image: none !important;
    transform: none !important;
}

.homepage-about-feature-slide {
    height: 100%;
}

.homepage-about-feature-card {
    position: relative;
    z-index: 0;
    margin: 0;
    padding: 10px 15px;
    border: none;
    border-radius: 20px;
    background: transparent !important;
    background-image: none !important;
    box-sizing: border-box;
}

.homepage-about-feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    padding: 1px;
    background: var(--about-border-gradient);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.homepage-about-feature-title {
    margin: 0 0 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0 10px;
    color: var(--about-gold);
    font-size: 24px;
    line-height: 1.3;
    text-transform: uppercase;
}

.homepage-about-feature-title-bold {
    font-weight: 700;
}

.homepage-about-feature-title-sep {
    font-weight: 400;
    opacity: 0.85;
}

.homepage-about-feature-title-light {
    font-weight: 400;
}

.homepage-about-feature-text {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

@media (max-width: 991.98px) {
    .homepage-about-section .homepage-about-media {
        display: none !important;
    }

    .homepage-about-features--desktop {
        display: none !important;
    }

    .homepage-about-features--mobile {
        display: block;
    }

    .homepage-about-slider-wrap {
        padding: 0 8px;
    }

    .homepage-about-features-carousel .owl-item {
        box-sizing: border-box;
        padding: 0 4px;
    }

    .homepage-about-features-carousel .homepage-about-feature-slide {
        width: 100%;
    }

    .homepage-about-features-carousel .homepage-about-feature-card {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .homepage-about-features-carousel .homepage-about-feature-text {
        flex: 1 1 auto;
    }

    .homepage-about-features-carousel .owl-dots {
        width: 100%;
        padding: 0 4px;
        box-sizing: border-box;
    }
}

@media (min-width: 992px) {
    .homepage-about-features--mobile {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .homepage-about-section .homepage-about-content {
        padding-right: 48px;
    }

}

.homepage-faq-section {
    --faq-gold: #D8B892;
    --faq-border-gradient: linear-gradient(
        160deg,
        rgba(60, 60, 60, 1) 0%,
        rgba(216, 184, 146, 1) 100%
    );
}

.homepage-faq-section .title-separator,
.homepage-faq-section .section-header {
    display: none;
}

.homepage-faq-header {
    margin-bottom: 40px;
}

.homepage-faq-title {
    margin: 0 0 16px;
    color: var(--faq-gold) !important;
    font-size: 50px !important;
    font-weight: 700 !important;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    background: none !important;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--faq-gold) !important;
}

.homepage-faq-subtitle {
    margin: 0 auto;
    max-width: 720px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.homepage-faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .homepage-faq-list,
    .sub-page .homepage-faq-list,
    .service-detail-faq-section .homepage-faq-list {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 20px;
        max-width: 100%;
        margin: 0;
        align-items: start;
        flex-direction: unset;
    }

    .homepage-faq-section .homepage-faq-item.faq-item,
    .service-detail-faq-section .homepage-faq-item.faq-item {
        height: auto;
        align-self: start;
    }

    .service-detail-faq-section > .container {
        max-width: 1320px;
    }
}

.service-detail-map-section.homepage-map-section {
    width: 100%;
    max-width: 100%;
}

.homepage-faq-section .homepage-faq-item.faq-item,
.service-detail-faq-section .homepage-faq-item.faq-item {
    position: relative;
    z-index: 0;
    margin-bottom: 0;
    height: auto;
    align-self: start;
    border: none;
    border-radius: 21px !important;
    overflow: hidden;
    background: transparent !important;
    background-image: none !important;
    box-sizing: border-box;
}

.homepage-faq-section .homepage-faq-item.faq-item::before,
.service-detail-faq-section .homepage-faq-item.faq-item::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    padding: 1px;
    background: var(--faq-border-gradient);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.homepage-faq-section .homepage-faq-item.faq-item:hover,
.service-detail-faq-section .homepage-faq-item.faq-item:hover {
    transform: none !important;
    border-radius: 21px !important;
    background: transparent !important;
    background-image: none !important;
}

.homepage-faq-section .homepage-faq-item.faq-item.active,
.service-detail-faq-section .homepage-faq-item.faq-item.active {
    border-radius: 21px !important;
    background: transparent !important;
    background-image: none !important;
}

.homepage-faq-section .homepage-faq-question.faq-question {
    position: relative;
    z-index: 1;
    padding: 18px 28px;
    border-bottom: none;
    background: transparent;
}

.homepage-faq-question-text {
    margin: 0;
    padding-right: 16px;
    flex: 1;
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
}

.homepage-faq-section .homepage-faq-icon.faq-icon {
    flex-shrink: 0;
    color: var(--faq-gold);
    font-size: 16px;
}

.homepage-faq-section .homepage-faq-answer.faq-answer,
.service-detail-faq-section .homepage-faq-answer.faq-answer {
    position: relative;
    z-index: 1;
    background: transparent !important;
}

.homepage-faq-section .homepage-faq-item.faq-item.active .homepage-faq-answer.faq-answer {
    padding: 0 28px 22px;
    max-height: 1000px;
}

.homepage-faq-answer-inner {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

.homepage-faq-answer-inner p {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

.homepage-faq-answer-inner p:last-child {
    margin-bottom: 0;
}

.homepage-locations-section {
    --locations-gold: #D8B892;
}

.homepage-locations-section .section-header,
.homepage-locations-section .section-subtitle,
.homepage-locations-section .section-title,
.homepage-locations-section .title-separator {
    display: none !important;
}

.homepage-locations-section .homepage-locations-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin: 0 0 40px;
    padding: 0;
    border: none;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
}

.homepage-locations-section .locations-title-line {
    display: block;
    color: var(--locations-gold) !important;
    font-size: 50px;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    background: none !important;
    -webkit-text-fill-color: var(--locations-gold) !important;
}

.homepage-locations-section .locations-title-line--light {
    font-weight: 400;
}

.homepage-locations-section .locations-title-line--bold {
    font-weight: 700;
}

.homepage-map-section {
    padding: 56px 0 64px !important;
    overflow: hidden;
}

.homepage-map-section .location-map-wrapper,
.locations-section .location-map-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 750px;
    min-height: 750px;
    margin: 0;
    border-radius: 28px;
    overflow: hidden;
}

.homepage-map-section .location-map,
.locations-section .location-map-wrapper .location-map {
    display: block;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    flex: none !important;
    margin: 0;
    border-radius: 28px;
}

@media (min-width: 992px) {
    .homepage-map-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .homepage-map-section .location-map-wrapper {
        width: 100%;
        max-width: none;
        margin: 0;
        height: 520px;
        min-height: 520px;
        border-radius: 0;
    }

    .homepage-map-section .location-map {
        min-height: 100% !important;
        border-radius: 0;
    }

    .locations-section .location-map-wrapper {
        height: 750px;
        min-height: 750px;
        border-radius: 15px;
    }
}

@media (max-width: 991.98px) {
    .homepage-map-section {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .homepage-map-section .location-map-wrapper,
    .locations-section .location-map-wrapper {
        height: 750px;
        min-height: 750px;
    }

    .homepage-map-section .location-map,
    .locations-section .location-map-wrapper .location-map {
        height: 100% !important;
        min-height: 100% !important;
    }
}

@media (max-width: 767.98px) {
    .homepage-map-section .location-map-wrapper {
        width: 100%;
        max-width: 100%;
        border-radius: 24px;
    }

    .homepage-map-section .location-map {
        border-radius: 24px;
    }

    .locations-section .location-map-wrapper {
        border-radius: 15px;
    }

    .locations-section .location-map-wrapper .location-map {
        border-radius: 15px;
    }

    .homepage-faq-section .homepage-faq-question.faq-question {
        padding: 16px 20px;
    }

    .homepage-faq-question-text {
        font-size: 18px;
    }

    .homepage-faq-section .homepage-faq-item.faq-item.active .homepage-faq-answer.faq-answer {
        padding: 0 20px 18px;
    }
}

.blissful-footer {
    --footer-gold: #D8B892;
    --footer-border-gradient: linear-gradient(
        160deg,
        rgba(60, 60, 60, 1) 0%,
        rgba(216, 184, 146, 1) 100%
    );
    padding: 40px 0 48px !important;
    border-top: none !important;
    background: transparent !important;
}

.blissful-footer::before {
    display: none !important;
}

.blissful-footer-outer {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
    box-sizing: border-box;
}

.blissful-footer-box {
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 40px 28px 32px;
    border-radius: 21px;
    border: none;
    background: transparent !important;
    background-image: none !important;
    box-sizing: border-box;
}

.blissful-footer-box::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    padding: 1px;
    background: var(--footer-border-gradient);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.blissful-footer-box::after {
    content: '';
    position: absolute;
    inset: 1px;
    z-index: 0;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.blissful-footer-box > * {
    position: relative;
    z-index: 1;
}

.blissful-footer-logo {
    margin: 0 0 36px;
    text-align: center;
}

.blissful-footer-logo-link {
    display: inline-block;
    text-decoration: none;
}

.blissful-footer-logo img,
.blissful-footer-logo .custom-logo,
.blissful-footer-logo .custom-logo-link img,
.blissful-footer-logo-img {
    display: block;
    max-width: clamp(140px, 42vw, 220px);
    width: auto;
    height: auto;
    margin: 0 auto;
}

.blissful-footer-nav {
    width: 100%;
    margin-bottom: 36px;
}

.blissful-footer .footer-menu,
.blissful-footer-menu.footer-menu {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 0 !important;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

.blissful-footer-menu > li {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 320px;
}

.blissful-footer-menu > li:has(> a[href*="regulamin"]) {
    display: none !important;
}

.blissful-footer-menu > li > a {
    display: block;
    padding: 10px 0;
    color: var(--footer-gold) !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.06em;
    transition: opacity 0.2s ease;
}

.blissful-footer-menu > li > a:hover {
    opacity: 0.85;
    color: var(--footer-gold) !important;
}

.blissful-footer-regulamin {
    margin: 0 0 20px;
    padding: 0;
}

.blissful-footer-regulamin a {
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.06em;
    transition: opacity 0.2s ease;
}

.blissful-footer-regulamin a:hover {
    color: #ffffff !important;
    opacity: 0.9;
}

.blissful-footer-copyright,
.blissful-footer-copyright p {
    margin: 0;
    color: #3c3c3c;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

.blissful-footer-copyright a {
    color: #3c3c3c;
    text-decoration: none;
}

.blissful-footer-copyright a:hover {
    color: #3c3c3c;
    opacity: 0.85;
}

@media (min-width: 992px) {
    .blissful-footer-outer {
        padding-left: clamp(24px, 4vw, 56px);
        padding-right: clamp(24px, 4vw, 56px);
    }

    .blissful-footer-box {
        padding: 48px 40px 36px;
    }

    .blissful-footer-logo {
        margin-bottom: 32px;
    }

    .blissful-footer-nav {
        margin-bottom: 28px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .blissful-footer .footer-menu,
    .blissful-footer-menu.footer-menu {
        display: grid !important;
        grid-template-columns: repeat(9, max-content);
        justify-content: center;
        justify-items: center;
        align-content: center;
        column-gap: clamp(18px, 2.8vw, 42px);
        row-gap: 18px;
        width: 100%;
        max-width: 1200px;
    }

    .blissful-footer-menu > li {
        width: auto;
        max-width: none;
    }

    .blissful-footer-menu > li > a {
        display: inline-block;
        padding: 0;
        white-space: nowrap;
        letter-spacing: 0.04em;
    }

    .blissful-footer-regulamin {
        margin-bottom: 24px;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .blissful-footer .footer-menu,
    .blissful-footer-menu.footer-menu {
        grid-template-columns: repeat(3, max-content);
        column-gap: clamp(16px, 2.2vw, 32px);
    }
}

.service-details-hero {
    position: relative;
    overflow: hidden;
}

.service-details-hero .service-details-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.service-details-hero .service-details-hero-media picture,
.service-details-hero .service-details-hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-details-hero .service-details-hero-media picture {
    height: 100%;
}

.service-details-hero-page-title {
    margin: 0 0 20px;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    line-height: 1.25;
    color: #ffc999;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.service-details-hero-back {
    padding: 16px 0 8px;
}

.service-details-hero-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.sub-page .sd-service-section-block {
    --sd-section-border-gradient: linear-gradient(
        160deg,
        rgba(60, 60, 60, 1) 0%,
        rgba(216, 184, 146, 1) 100%
    );
    padding: clamp(24px, 5vw, 48px) 0;
}

.sub-page .sd-service-section-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(16px, 3vw, 28px);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.sub-page .sd-service-section-col--content {
    width: 100%;
}

.sub-page .sd-service-section-col--media {
    width: 100%;
    max-width: 520px;
}

.sub-page .sd-service-section-title {
    margin: 0 0 clamp(20px, 4vw, 32px);
    font-size: 32px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #d8b892;
}

.sub-page .sd-service-section-title-line {
    display: block;
}

.sub-page .sd-service-section-title-line--1 {
    font-weight: 400;
}

.sub-page .sd-service-section-title-line--2 {
    font-weight: 700;
}

.sub-page .sd-service-section-title-line--3 {
    font-weight: 400;
}

.sub-page .sd-service-section-title--single .sd-service-section-title-line--2 {
    font-weight: 700;
}

.sub-page .sd-service-section-title--single .sd-service-section-title-line--1 {
    font-weight: 400;
}

.sub-page .sd-service-section-intro {
    margin: 0 0 clamp(16px, 3vw, 24px);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.sub-page .sd-service-section-intro p {
    margin: 0 0 0.75em;
}

.sub-page .sd-service-section-intro p:last-child {
    margin-bottom: 0;
}

.sub-page .sd-service-section-cta {
    margin: 0 0 clamp(20px, 3vw, 28px);
}

.sub-page .sd-service-section-benefits {
    list-style: disc;
    list-style-position: inside;
    margin: 0 0 clamp(8px, 2vw, 16px);
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    color: #d8b892;
    text-align: center;
}

.sub-page .sd-service-section-benefits li {
    margin: 0 0 0.65em;
    padding: 0;
}

.sub-page .sd-service-section-media {
    margin-top: 0;
    width: 100%;
}

.sub-page .sd-service-section-frame {
    border-radius: 21px;
    border: 1px solid transparent;
    overflow: hidden;
    line-height: 0;
    background:
        linear-gradient(#0a0a0a, #0a0a0a) padding-box,
        var(--sd-section-border-gradient) border-box;
    box-sizing: border-box;
}

.sub-page .sd-service-section-frame img {
    display: block;
    width: 100%;
    height: auto;
}

@media (min-width: 992px) {
    .sub-page .sd-service-section-inner--split {
        display: grid;
        grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
        align-items: center;
        column-gap: clamp(32px, 4vw, 56px);
        row-gap: clamp(16px, 2vw, 24px);
        max-width: none;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        text-align: left;
    }

    .sub-page .sd-service-section-inner--split .sd-service-section-col--content {
        text-align: left;
    }

    .sub-page .sd-service-section-inner--split .sd-service-section-title {
        text-align: left;
    }

    .sub-page .sd-service-section-inner--split .sd-service-section-benefits {
        text-align: left;
        list-style-position: outside;
        padding-left: 1.2em;
        margin-bottom: 0;
    }

    .sub-page .sd-service-section-inner--split .sd-service-section-col--media {
        max-width: none;
    }

    .sub-page .sd-service-section-inner:not(.sd-service-section-inner--split) {
        margin-left: 0;
        margin-right: auto;
        text-align: left;
        align-items: flex-start;
    }

    .sub-page .sd-service-section-inner:not(.sd-service-section-inner--split) .sd-service-section-benefits {
        text-align: left;
        list-style-position: outside;
        padding-left: 1.2em;
    }
}

@media (min-width: 992px) {
    #gallery .homepage-gallery-title,
    .homepage-gallery-section .homepage-gallery-title,
    #services .services-title-line,
    .homepage-services-section .services-title-line,
    .gift-section.homepage-gift-section .gift-title-line,
    .homepage-gift-section .gift-title-line,
    #reviews .reviews-title-line,
    .homepage-reviews-section .reviews-title-line,
    #pricing .pricing-title-line,
    .homepage-pricing-section .pricing-title-line {
        font-size: 32px !important;
    }

    #services .homepage-services-title,
    .homepage-gift-section .homepage-gift-title,
    #reviews .homepage-reviews-title,
    #pricing .homepage-pricing-title,
    .image-locations-section.homepage-locations-section .homepage-locations-title {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: baseline;
        gap: 0.35em;
        white-space: nowrap;
        width: 100%;
        max-width: 100%;
    }

    #services .services-title-line,
    .homepage-gift-section .gift-title-line,
    #reviews .reviews-title-line,
    #pricing .pricing-title-line,
    .image-locations-section.homepage-locations-section .locations-title-line {
        display: inline;
        width: auto;
        max-width: none;
        white-space: nowrap;
    }
}

@media (max-width: 991.98px) {
    #gallery .homepage-gallery-title,
    #services .services-title-line,
    .gift-section.homepage-gift-section .gift-title-line,
    #reviews .reviews-title-line,
    #pricing .pricing-title-line {
        font-size: 24px !important;
        line-height: 1.15 !important;
        letter-spacing: 0.04em !important;
    }
}
