:root {
    --lv-green: #4A7C59;
    --lv-green-dark: #3d6649;
    --lv-green-soft: #E8F3EC;
    --lv-gold: #F4B942;
    --lv-gold-dark: #e5aa2f;
    --lv-blue: #2B5F9E;
    --lv-cream: #F5F5F0;
    --lv-ink: #111827;
    --lv-muted: #6b7280;
    --lv-radius: 1rem;
    --lv-font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --lv-font-serif: Georgia, "Times New Roman", serif;
}

.public-site {
    background: #fff;
    color: var(--lv-ink);
    font-family: var(--lv-font-sans);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.public-site,
.lv-page {
    overflow-x: hidden;
}

.public-site img,
.public-site iframe {
    max-width: 100%;
}

.public-site a,
.public-site p,
.public-site span,
.public-site li {
    overflow-wrap: anywhere;
}

.public-site a {
    text-decoration: none;
}

.public-site h1,
.public-site h2,
.public-site h3,
.public-site h4,
.public-site h5,
.public-site h6,
.public-site .btn,
.public-site input,
.public-site select,
.public-site textarea {
    font-family: var(--lv-font-sans);
}

.public-site [class^="ri-"],
.public-site [class*=" ri-"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    vertical-align: -.125em;
}

.lv-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.lv-page main {
    flex: 1 0 auto;
}

.lv-topbar {
    background: #5a8a6b;
    color: #fff;
    padding: .875rem 0;
}

.lv-topbar a {
    color: #fff;
}

.lv-topbar a:hover {
    color: var(--lv-gold);
}

.lv-navbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    min-height: 78px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(17, 24, 39, .08);
}

.lv-navbar .nav-link {
    position: relative;
    color: #374151;
    font-size: .925rem;
    font-weight: 600;
    padding: .9rem .58rem;
}

.lv-navbar .nav-link:hover,
.lv-navbar .nav-link.active {
    color: var(--lv-green);
}

.lv-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: .65rem;
    right: .65rem;
    bottom: .35rem;
    height: 2px;
    background: var(--lv-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}

.lv-navbar .nav-link:hover::after,
.lv-navbar .nav-link.active::after {
    transform: scaleX(1);
}

.lv-toggler {
    border: 0;
    box-shadow: none !important;
}

.lv-navbar .navbar-toggler-icon {
    width: 1.5rem;
    height: 1.5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%234A7C59' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.4' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.lv-brand {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    color: var(--lv-green);
}

.lv-brand:hover {
    color: var(--lv-green-dark);
}

.lv-brand-center {
    min-width: 145px;
    justify-content: center;
    margin-inline: .35rem;
}

.lv-brand-footer {
    color: #fff;
}

.lv-logo-img {
    display: block;
    width: 168px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.lv-brand-footer .lv-logo-img {
    width: 180px;
    max-width: 100%;
    height: auto;
    padding: .55rem .7rem;
    border-radius: .75rem;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .12);
}

.lv-mobile-contact {
    border-top: 1px solid #e5e7eb;
    margin-top: 1rem;
    padding-top: 1rem;
    text-align: center;
}

.lv-mobile-contact a {
    display: block;
    color: #4b5563;
    margin-bottom: .45rem;
}

.btn-lv-primary,
.btn-lv-gold,
.btn-lv-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .25rem;
    transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background-color .2s ease, border-color .2s ease;
}

.btn-lv-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--lv-green);
    --bs-btn-border-color: var(--lv-green);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--lv-green-dark);
    --bs-btn-hover-border-color: var(--lv-green-dark);
    --bs-btn-focus-shadow-rgb: 74, 124, 89;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #355840;
    --bs-btn-active-border-color: #355840;
    color: #fff;
    background: var(--lv-green);
    border-color: var(--lv-green);
    font-weight: 700;
}

.btn-lv-gold {
    --bs-btn-color: #172033;
    --bs-btn-bg: var(--lv-gold);
    --bs-btn-border-color: transparent;
    --bs-btn-hover-color: #172033;
    --bs-btn-hover-bg: var(--lv-gold-dark);
    --bs-btn-hover-border-color: transparent;
    --bs-btn-focus-shadow-rgb: 244, 185, 66;
    --bs-btn-active-color: #172033;
    --bs-btn-active-bg: var(--lv-gold-dark);
    --bs-btn-active-border-color: transparent;
    color: #172033;
    background: linear-gradient(90deg, var(--lv-gold), var(--lv-gold-dark));
    border-color: transparent;
    font-weight: 800;
}

.btn-lv-gold:hover {
    color: #172033;
    box-shadow: 0 12px 24px rgba(244, 185, 66, .28);
    transform: translateY(-1px);
}

.btn-lv-outline-light {
    --bs-btn-color: #fff;
    --bs-btn-bg: rgba(255, 255, 255, .14);
    --bs-btn-border-color: rgba(255, 255, 255, .7);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: rgba(255, 255, 255, .24);
    --bs-btn-hover-border-color: rgba(255, 255, 255, .92);
    --bs-btn-focus-shadow-rgb: 255, 255, 255;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: rgba(255, 255, 255, .3);
    --bs-btn-active-border-color: #fff;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .7);
    background: rgba(255, 255, 255, .14);
    backdrop-filter: blur(10px);
    font-weight: 800;
}

.btn-lv-outline-light:hover {
    color: #fff;
    background: rgba(255, 255, 255, .24);
    transform: translateY(-1px);
}

.btn-lv-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(74, 124, 89, .22);
}

.btn-lv-primary .ri-arrow-right-line,
.btn-lv-gold .ri-arrow-right-line,
.btn-lv-outline-light .ri-arrow-right-line,
.text-warning .ri-arrow-right-line {
    transition: transform .2s ease;
}

.btn-lv-primary:hover .ri-arrow-right-line,
.btn-lv-gold:hover .ri-arrow-right-line,
.btn-lv-outline-light:hover .ri-arrow-right-line,
.text-warning:hover .ri-arrow-right-line {
    transform: translateX(4px);
}

.lv-section {
    padding: 6rem 0;
}

.lv-section-cream {
    background: var(--lv-cream);
}

.lv-section-soft {
    background: #f7faf8;
}

.lv-kicker {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .5rem 1rem;
    border-radius: 999px;
    color: var(--lv-green);
    background: var(--lv-green-soft);
    font-size: .875rem;
    font-weight: 800;
}

.lv-title {
    color: var(--lv-ink);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-family: var(--lv-font-serif);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0;
}

.lv-lead {
    color: var(--lv-muted);
    font-size: 1.125rem;
    line-height: 1.75;
}

.lv-hero {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 6.5rem 0 5rem;
    color: #fff;
    background-image: linear-gradient(145deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .58), rgba(0, 0, 0, .78)), var(--lv-bg);
    background-size: cover;
    background-position: center;
}

.lv-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 90px;
    background: url("data:image/svg+xml,%3Csvg width='1440' height='100' viewBox='0 0 1440 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 50C360 20 720 80 1080 50C1260 35 1350 20 1440 30V100H0V50Z' fill='white'/%3E%3C/svg%3E") center bottom / cover no-repeat;
    pointer-events: none;
}

.lv-hero-content {
    position: relative;
    z-index: 2;
}

.lv-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: -4.25rem;
    z-index: 4;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: .7rem;
    color: rgba(255, 255, 255, .92);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-align: center;
    text-shadow: 0 10px 24px rgba(0, 0, 0, .45);
    transform: translateX(-50%);
    animation: lv-scroll-bounce 1.8s ease-in-out infinite;
}

.lv-scroll-cue:hover {
    color: #fff;
}

.lv-scroll-mouse {
    display: inline-flex;
    justify-content: center;
    width: 2rem;
    height: 3rem;
    padding-top: .55rem;
    border: 2px solid rgba(255, 255, 255, .72);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 16px 36px rgba(0, 0, 0, .24);
    backdrop-filter: blur(8px);
}

.lv-scroll-mouse span {
    width: .48rem;
    height: .7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    animation: lv-scroll-dot 1.5s ease-in-out infinite;
}

@keyframes lv-scroll-bounce {
    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 10px);
    }
}

@keyframes lv-scroll-dot {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    70%,
    100% {
        opacity: .25;
        transform: translateY(12px);
    }
}

.lv-hero h1 {
    color: #fff;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: .95;
    font-weight: 800;
    letter-spacing: 0;
    text-shadow: 0 18px 40px rgba(0, 0, 0, .48);
}

.lv-hero-subtitle {
    color: var(--lv-gold);
    font-size: clamp(1.55rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
}

.lv-location-pill,
.lv-glass-stat {
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .14);
    backdrop-filter: blur(12px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .2);
}

.lv-location-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border-radius: 999px;
    padding: .55rem 1rem;
    font-weight: 700;
}

.lv-glass-stat {
    border-radius: 1rem;
    padding: 1rem;
    text-align: center;
}

.lv-glass-stat strong {
    display: block;
    color: var(--lv-gold);
    font-size: clamp(1.75rem, 3vw, 2.45rem);
    line-height: 1;
}

.lv-booking-card {
    max-width: 430px;
    margin-left: auto;
    border: 2px solid rgba(255, 255, 255, .65);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, .92);
    color: var(--lv-ink);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
    backdrop-filter: blur(18px);
}

.lv-booking-card .form-control,
.lv-booking-card .form-select,
.lv-form .form-control,
.lv-form .form-select {
    border: 2px solid #e5e7eb;
    border-radius: .75rem;
    padding: .75rem .9rem;
}

.lv-booking-card .form-control:focus,
.lv-booking-card .form-select:focus,
.lv-form .form-control:focus,
.lv-form .form-select:focus {
    border-color: var(--lv-green);
    box-shadow: 0 0 0 .2rem rgba(74, 124, 89, .18);
}

.lv-image-card,
.lv-room-preview,
.lv-tour-card,
.lv-room-card,
.lv-gallery-card,
.lv-hotel-card {
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: var(--lv-radius);
    background: #fff;
    box-shadow: 0 12px 30px rgba(17, 24, 39, .1);
    transition: transform .25s ease, box-shadow .25s ease;
}

.lv-image-card:hover,
.lv-room-preview:hover,
.lv-tour-card:hover,
.lv-room-card:hover,
.lv-gallery-card:hover,
.lv-hotel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(17, 24, 39, .16);
}

.lv-cover-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.lv-image-card:hover .lv-cover-img,
.lv-room-preview:hover .lv-cover-img,
.lv-tour-card:hover .lv-cover-img,
.lv-room-card:hover .lv-cover-img,
.lv-gallery-card:hover .lv-cover-img,
.lv-hotel-card:hover .lv-cover-img {
    transform: scale(1.08);
}

.lv-room-card:hover .lv-cover-img {
    transform: none;
}

.lv-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    color: #fff;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .78));
}

.lv-aspect-4-3 {
    aspect-ratio: 4 / 3;
}

.lv-aspect-3-4 {
    aspect-ratio: 3 / 4;
}

.lv-page-hero {
    isolation: isolate;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 8rem 0 8.5rem;
    color: #fff;
    background-image: linear-gradient(90deg, rgba(74, 124, 89, .95), rgba(61, 102, 73, .93), rgba(43, 95, 158, .92)), var(--lv-bg, none);
    background-size: cover;
    background-position: center;
}

.lv-page-hero > .container {
    z-index: 1;
}

.lv-page-hero:not(.lv-image-hero)::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: .18;
    background-image: radial-gradient(rgba(255, 255, 255, .9) 1px, transparent 1px);
    background-size: 40px 40px;
}

.lv-room-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 110px;
    z-index: 0;
    background: url("data:image/svg+xml,%3Csvg width='1440' height='120' viewBox='0 0 1440 120' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 120L60 105C120 90 240 60 360 45C480 30 600 30 720 37.5C840 45 960 60 1080 67.5C1200 75 1320 75 1380 75L1440 75V120H0Z' fill='%23F5F5F0'/%3E%3C/svg%3E") center bottom / cover no-repeat;
    pointer-events: none;
}

.lv-room-hero {
    background-image: linear-gradient(90deg, rgba(74, 124, 89, .98), rgba(61, 102, 73, .96), rgba(43, 95, 158, .94));
}

.lv-page-hero.lv-image-hero {
    background-image: linear-gradient(rgba(0, 0, 0, .52), rgba(0, 0, 0, .52)), var(--lv-bg);
}

.lv-page-hero h1 {
    color: #fff;
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(2.75rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0;
}

.lv-page-hero-lead {
    max-width: 680px;
    color: rgba(255, 255, 255, .9);
    font-size: 1.25rem;
    line-height: 1.6;
}

.lv-hero-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: .5rem 1.1rem;
    color: #172033;
    background: var(--lv-gold);
    box-shadow: 0 12px 28px rgba(244, 185, 66, .22);
    font-size: .875rem;
    font-weight: 600;
}

.lv-pill {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    border-radius: 999px;
    padding: .45rem .85rem;
    color: var(--lv-green);
    background: var(--lv-green-soft);
    font-size: .8rem;
    font-weight: 800;
}

.lv-price-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: var(--lv-gold);
    color: #172033;
    padding: .4rem .75rem;
    font-size: .8rem;
    font-weight: 900;
}

.lv-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    min-height: 64px;
    padding: .6rem 1rem .6rem .65rem;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: .75rem;
    color: #fff;
    background: rgba(255, 255, 255, .14);
    box-shadow: 0 16px 34px rgba(17, 24, 39, .13);
    backdrop-filter: blur(10px);
    font-size: .95rem;
    font-weight: 600;
}

.lv-hero-badge i {
    width: 42px;
    height: 42px;
    border-radius: .65rem;
    color: #172033;
    background: rgba(244, 185, 66, .96);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .16);
    font-size: 1.45rem;
}

.lv-room-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: #4b5563;
    font-size: .9rem;
}

.lv-room-card-media {
    height: 320px;
}

.lv-experience-media {
    height: 260px;
}

.lv-room-meta i {
    color: var(--lv-green);
    font-size: 1.08rem;
}

.lv-amenity-card {
    height: 100%;
    padding: 1.5rem;
    border-radius: 1rem;
    background: #f9fafb;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.lv-amenity-card:hover {
    transform: translateY(-4px);
    background: #fff;
    box-shadow: 0 16px 34px rgba(17, 24, 39, .1);
}

.lv-amenity-icon,
.lv-institution-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lv-amenity-icon {
    width: 64px;
    height: 64px;
    margin-bottom: .85rem;
    border-radius: 1rem;
    font-size: 2rem;
}

.lv-amenity-icon-blue {
    color: #2563eb;
    background: #dbeafe;
}

.lv-amenity-icon-cyan {
    color: #0891b2;
    background: #cffafe;
}

.lv-amenity-icon-gold {
    color: #b7791f;
    background: #fef3c7;
}

.lv-amenity-icon-teal {
    color: #0f766e;
    background: #ccfbf1;
}

.lv-amenity-icon-purple {
    color: #7c3aed;
    background: #ede9fe;
}

.lv-amenity-icon-red {
    color: #dc2626;
    background: #fee2e2;
}

.lv-amenity-icon-green {
    color: #16a34a;
    background: #dcfce7;
}

.lv-amenity-icon-yellow {
    color: #ca8a04;
    background: #fef9c3;
}

.lv-detail-amenity {
    display: flex;
    align-items: center;
    gap: .75rem;
    height: 100%;
    padding: .85rem;
    border-radius: .75rem;
    background: #f9fafb;
    transition: background-color .2s ease;
}

.lv-detail-amenity:hover {
    background: var(--lv-green-soft);
}

.lv-detail-amenity i {
    color: var(--lv-green);
    font-size: 1.35rem;
}

.lv-input-icon {
    position: relative;
}

.lv-input-icon > i {
    position: absolute;
    left: .9rem;
    top: 50%;
    z-index: 2;
    color: #9ca3af;
    font-size: 1.1rem;
    transform: translateY(-50%);
    pointer-events: none;
}

.lv-input-icon .lv-has-icon {
    padding-left: 2.65rem;
}

.lv-feature-dot {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    padding: .8rem 1rem;
    border: 1px solid rgba(74, 124, 89, .12);
    border-radius: .85rem;
    background: rgba(255, 255, 255, .72);
    font-weight: 700;
}

.lv-feature-dot::before {
    content: "";
    width: .5rem;
    height: .5rem;
    border-radius: 999px;
    background: var(--lv-green);
}

.lv-testimonials {
    position: relative;
    color: #fff;
    background-image: linear-gradient(135deg, rgba(74, 124, 89, .96), rgba(61, 102, 73, .94), rgba(43, 95, 158, .95)), var(--lv-bg);
    background-size: cover;
    background-position: center;
}

.lv-testimonial-card {
    height: 100%;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 1rem;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(12px);
}

.lv-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--lv-gold);
    color: #172033;
    font-weight: 900;
}

.lv-avatar-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, .45);
}

.lv-filter-btn {
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    min-height: 44px;
    padding: .65rem 1.15rem;
    color: #4b5563;
    background: #fff;
    box-shadow: 0 8px 18px rgba(17, 24, 39, .08);
    font-weight: 700;
    transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.lv-filter-btn:hover,
.lv-filter-btn.active {
    color: #fff;
    background: var(--lv-green);
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(74, 124, 89, .22);
}

.lv-filter-btn i {
    font-size: 1.15rem;
}

.lv-filter-btn span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.45rem;
    height: 1.45rem;
    border-radius: 999px;
    color: #6b7280;
    background: #f3f4f6;
    font-size: .75rem;
    font-weight: 800;
}

.lv-filter-btn.active span,
.lv-filter-btn:hover span {
    color: #172033;
    background: var(--lv-gold);
}

.lv-gallery-card,
.lv-hotel-card {
    cursor: pointer;
}

.lv-tour-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: #fff;
    background: var(--lv-green);
    box-shadow: 0 14px 28px rgba(17, 24, 39, .18);
}

.lv-tour-icon i {
    font-size: 1.75rem;
}

.lv-gallery-card {
    aspect-ratio: 1;
}

.lv-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lv-gallery-filter-section {
    padding: 1.5rem 0;
    border-bottom: 1px solid #eef0ea;
    background: #fff;
}

.lv-gallery-grid {
    display: grid;
    grid-auto-flow: dense;
    grid-auto-rows: 11.5rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.lv-gallery-item {
    min-height: 0;
}

.lv-gallery-item.is-large {
    grid-column: span 2;
    grid-row: span 2;
}

.lv-gallery-item.is-medium {
    grid-column: span 1;
    grid-row: span 2;
}

.lv-gallery-grid .lv-gallery-card {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    border-radius: 1.5rem;
}

.lv-gallery-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    border-radius: 999px;
    padding: .4rem .75rem;
    color: #172033;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 10px 22px rgba(17, 24, 39, .12);
    font-size: .8rem;
    font-weight: 700;
}

.lv-hotel-card img {
    height: 260px;
}

.lv-hotel-card.is-large img {
    height: 420px;
}

.lv-gallery-card:hover .lv-card-overlay,
.lv-hotel-card:hover .lv-card-overlay {
    opacity: 1 !important;
}

.lv-modal-image {
    max-height: 72vh;
    object-fit: contain;
    width: 100%;
}

.lv-detail-thumb {
    width: 78px;
    height: 78px;
    border: 3px solid rgba(255, 255, 255, .65);
    border-radius: .75rem;
    overflow: hidden;
    padding: 0;
    background: transparent;
}

.lv-detail-thumb.active {
    border-color: var(--lv-gold);
}

.lv-detail-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lv-mobile-soft-card {
    border-radius: 1.5rem;
}

.lv-floating-stat {
    position: absolute;
    right: 1rem;
    bottom: 0;
    transform: translateY(50%);
}

.lv-help-card {
    color: #fff;
    border-radius: 1rem;
    background: linear-gradient(145deg, var(--lv-green), var(--lv-green-dark));
}

.lv-footer {
    flex-shrink: 0;
    color: #fff;
    background: var(--lv-green);
}

.text-white-75 {
    color: rgba(255, 255, 255, .78);
}

.lv-footer a {
    color: rgba(255, 255, 255, .82);
}

.lv-footer a:hover {
    color: #fff;
}

.lv-footer-links li + li,
.lv-footer-contact li + li {
    margin-top: .65rem;
}

.lv-footer-contact li {
    display: flex;
    gap: .65rem;
    align-items: flex-start;
    color: rgba(255, 255, 255, .82);
}

.lv-footer-contact i {
    margin-top: .15rem;
    flex: 0 0 auto;
}

.lv-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .16);
}

.lv-footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .78);
}

.lv-institution-card {
    height: 100%;
    padding: 2rem;
    border: 1px solid rgba(74, 124, 89, .12);
    border-radius: 1.25rem;
    background: #fff;
    box-shadow: 0 14px 34px rgba(17, 24, 39, .08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.lv-institution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(17, 24, 39, .12);
}

.lv-institution-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.25rem;
    border-radius: 1rem;
    color: var(--lv-green);
    background: var(--lv-green-soft);
    font-size: 1.75rem;
}

.lv-principles {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.lv-principle-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    padding: 1rem;
    border-radius: 1rem;
    color: var(--lv-green-dark);
    background: var(--lv-green-soft);
    font-weight: 800;
}

.lv-principle-item i {
    color: var(--lv-green);
    font-size: 1.25rem;
}

#por-que-elegir {
    scroll-margin-top: 96px;
}

.lv-community-section {
    padding: 5.5rem 0 4.5rem;
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 163, 163, .22), transparent 26rem),
        radial-gradient(circle at 82% 85%, rgba(231, 198, 103, .18), transparent 22rem),
        #fff2ea;
    overflow: hidden;
}

.lv-community-kicker {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    padding: .35rem .75rem;
    background: #fff;
    color: #d99100;
    font-size: .72rem;
    font-weight: 800;
    box-shadow: 0 12px 32px rgba(31, 41, 55, .08);
}

.lv-community-title {
    margin-bottom: .65rem;
    color: #d99100;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.08;
}

.lv-community-subtitle {
    max-width: 640px;
    margin-bottom: 1.3rem;
    color: #e0a33c;
    font-size: .98rem;
    line-height: 1.55;
}

.lv-community-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.lv-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    min-width: 106px;
    min-height: 34px;
    border-radius: 999px;
    padding: .45rem 1rem;
    background: #1f2937;
    color: #fff;
    font-weight: 800;
    font-size: .82rem;
    box-shadow: 0 14px 34px rgba(31, 41, 55, .16);
}

.lv-social-btn.is-instagram {
    background: #e43d76;
}

.lv-social-btn.is-facebook {
    background: #3178d9;
}

.lv-social-btn.is-tiktok {
    background: #111827;
}

.lv-social-btn:hover {
    color: #fff;
    transform: translateY(-2px);
}

.lv-community-phone-stack {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 410px;
    margin: 1.5rem auto 1.25rem;
}

.lv-community-phone {
    position: relative;
    width: 190px;
    aspect-ratio: 9 / 16;
    border: 9px solid #05070a;
    border-radius: 26px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 24px 42px rgba(31, 41, 55, .2);
}

.lv-community-phone::before {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 4;
    width: 76px;
    height: 18px;
    border-radius: 0 0 18px 18px;
    background: #05070a;
    content: "";
    transform: translateX(-50%);
}

.lv-community-phone.is-left {
    margin-right: -20px;
    transform: rotate(-7deg) translateY(18px);
}

.lv-community-phone.is-center {
    z-index: 2;
    width: 220px;
    transform: translateY(-10px);
}

.lv-community-phone.is-right {
    margin-left: -20px;
    transform: rotate(8deg) translateY(20px);
}

.lv-community-phone-top {
    position: absolute;
    top: 18px;
    left: 10px;
    right: 10px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: .45rem;
    color: #fff;
    font-size: .62rem;
    text-align: left;
    text-shadow: 0 1px 8px rgba(0, 0, 0, .45);
}

.lv-community-phone-top strong,
.lv-community-phone-top small {
    display: block;
    line-height: 1.1;
}

.lv-story-dot {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    border: 2px solid #f5cf49;
    border-radius: 50%;
    background: var(--lv-green);
}

.lv-community-phone-media {
    position: absolute;
    inset: 0;
}

.lv-community-phone-caption {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: .35rem;
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    text-shadow: 0 1px 8px rgba(0, 0, 0, .45);
}

.lv-community-phone-caption i {
    color: #ef3f5f;
}

.lv-community-cta {
    margin-bottom: .9rem;
    color: #d99100;
    font-size: .88rem;
    font-weight: 800;
}

@media (prefers-reduced-motion: reduce) {
    .btn-lv-primary,
    .btn-lv-gold,
    .btn-lv-outline-light,
    .lv-logo-glow,
    .lv-logo-sun,
    .lv-logo-rays,
    .lv-logo-wave,
    .lv-cover-img,
    .lv-image-card,
    .lv-room-preview,
    .lv-tour-card,
    .lv-room-card,
    .lv-gallery-card,
    .lv-hotel-card {
        transition: none;
    }

    .lv-scroll-cue,
    .lv-scroll-mouse span {
        animation: none;
    }
}

@media (max-width: 991.98px) {
    .public-site .container {
        --bs-gutter-x: 2rem;
    }

    .lv-navbar {
        min-height: 72px;
    }

    .lv-navbar .navbar-collapse {
        margin-top: .75rem;
        padding: .5rem 0 1rem;
        border-top: 1px solid #eef0ea;
    }

    .lv-navbar .nav-link {
        border-radius: .75rem;
        padding: .8rem 1rem;
    }

    .lv-navbar .nav-link.active,
    .lv-navbar .nav-link:hover {
        background: var(--lv-green-soft);
    }

    .lv-navbar .nav-link::after {
        display: none;
    }

    .lv-hero {
        min-height: auto;
        padding: 4.25rem 0 5.25rem;
        text-align: center;
        background-position: center top;
    }

    .lv-hero-content .row {
        align-items: center !important;
    }

    .lv-location-pill {
        justify-content: center;
    }

    .lv-hero h1 {
        font-size: clamp(2.9rem, 12vw, 4.25rem);
    }

    .lv-hero-subtitle {
        font-size: clamp(1.45rem, 7vw, 2.25rem);
    }

    .lv-hero .fs-4 {
        font-size: 1.12rem !important;
        line-height: 1.65;
    }

    .lv-scroll-cue {
        display: none;
    }

    .lv-booking-card {
        max-width: none;
        margin: 2rem 0 0;
        text-align: left;
    }

    .lv-section {
        padding: 3.75rem 0;
    }

    .lv-title {
        font-size: clamp(2rem, 8vw, 2.75rem);
    }

    .lv-lead {
        font-size: 1.02rem;
        line-height: 1.65;
    }

    .lv-community-section {
        padding: 5rem 0 4rem;
    }

    .lv-page-hero {
        min-height: 360px;
        padding: 5.25rem 0 6rem;
    }

    .lv-gallery-grid {
        grid-auto-rows: 12rem;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lv-hotel-card.is-large img {
        height: 300px;
    }

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

    .lv-card-overlay {
        padding: 1.15rem;
    }

    .lv-room-card-media {
        height: 285px;
    }

    .lv-room-card .lv-card-overlay .d-flex {
        align-items: flex-start !important;
        flex-direction: column;
    }

    .lv-room-card .lv-card-overlay .text-end {
        text-align: left !important;
    }

    .lv-room-card > .p-4,
    .lv-institution-card,
    .lv-testimonial-card,
    .lv-mobile-soft-card {
        padding: 1.35rem !important;
    }

    .lv-room-meta {
        gap: .65rem .9rem;
    }

    .lv-detail-thumb {
        width: 66px;
        height: 66px;
    }

    .lv-floating-stat {
        right: .75rem;
    }

    .public-site aside.position-sticky {
        position: static !important;
        top: auto !important;
    }

    .public-site .breadcrumb {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: .25rem;
        white-space: nowrap;
    }

    .lv-community-subtitle {
        margin-inline: auto;
    }

    .lv-community-actions {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .public-site {
        font-size: 15px;
    }

    .public-site .container {
        --bs-gutter-x: 2rem;
    }

    .public-site .row {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1rem;
    }

    .lv-section > .container,
    .lv-gallery-filter-section > .container {
        max-width: calc(100% - .75rem);
    }

    .lv-navbar {
        min-height: 64px;
    }

    .lv-logo-img {
        width: 150px;
    }

    .lv-hero {
        padding: 3.5rem 0 4.25rem;
    }

    .lv-location-pill {
        width: 100%;
        border-radius: .9rem;
        padding: .75rem .85rem;
        font-size: .88rem;
    }

    .lv-hero h1 {
        font-size: 2.85rem;
    }

    .lv-glass-stat {
        min-height: 94px;
        padding: .75rem .45rem;
    }

    .lv-glass-stat span {
        font-size: .78rem;
        line-height: 1.2;
    }

    .lv-booking-card {
        border-radius: 1rem;
        padding: 1.25rem !important;
        margin-right: .25rem;
        margin-left: .25rem;
    }

    .public-site .btn-lg {
        --bs-btn-padding-y: .85rem;
        --bs-btn-padding-x: 1.1rem;
        --bs-btn-font-size: 1rem;
    }

    .lv-hero .btn,
    .lv-page-hero .btn,
    .lv-booking-card .btn,
    .lv-form .btn,
    .lv-help-card .btn {
        width: 100%;
    }

    .lv-section {
        padding: 3rem 0;
    }

    .lv-title {
        line-height: 1.12;
    }

    .lv-page-hero {
        min-height: 300px;
        padding: 4rem 0 5rem;
    }

    .lv-page-hero h1 {
        font-size: 2.15rem;
        line-height: 1.12;
    }

    .lv-page-hero-lead {
        font-size: 1.05rem;
    }

    .lv-hero-badge {
        width: 100%;
        justify-content: flex-start;
        min-height: 56px;
        padding: .5rem .75rem .5rem .55rem;
        font-size: .9rem;
    }

    .lv-hero-badge i {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }

    .lv-gallery-filter-section .d-flex {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: stretch !important;
    }

    .lv-filter-btn {
        width: auto;
        justify-content: center;
        min-height: 42px;
        padding: .58rem .7rem;
        font-size: .82rem;
    }

    .lv-gallery-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 10.5rem;
        gap: .85rem;
    }

    .lv-gallery-item,
    .lv-gallery-item.is-large,
    .lv-gallery-item.is-medium,
    .lv-gallery-item.is-small {
        min-height: 0;
        grid-column: span 1;
        grid-row: span 1;
    }

    .lv-gallery-item.is-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .lv-gallery-grid .lv-gallery-card,
    .lv-image-card,
    .lv-room-preview,
    .lv-tour-card,
    .lv-room-card,
    .lv-gallery-card,
    .lv-hotel-card,
    .lv-institution-card,
    .lv-mobile-soft-card {
        border-radius: .9rem;
    }

    .lv-room-card,
    .lv-institution-card,
    .lv-testimonial-card,
    .lv-mobile-soft-card,
    .lv-help-card,
    .public-site article.bg-white {
        margin-right: .1rem;
        margin-left: .1rem;
    }

    .lv-card-overlay {
        padding: .85rem;
        background: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .86));
    }

    .lv-image-card,
    .lv-tour-card,
    .lv-room-preview {
        min-height: 235px;
        aspect-ratio: auto;
    }

    .lv-tour-card .lv-card-overlay p,
    .lv-image-card .lv-card-overlay p,
    .lv-room-preview .lv-card-overlay p {
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        font-size: .78rem;
        line-height: 1.35;
    }

    .lv-card-overlay .h3,
    .lv-card-overlay .h4,
    .lv-card-overlay .h5 {
        font-size: .98rem;
        line-height: 1.12;
    }

    .lv-room-preview .lv-card-overlay .d-flex.align-items-start {
        flex-direction: column;
        gap: .45rem !important;
    }

    .lv-price-badge,
    .lv-gallery-category-badge {
        padding: .34rem .55rem;
        font-size: .72rem;
    }

    .lv-room-card-media {
        height: 250px;
    }

    .lv-experience-media {
        height: 220px;
    }

    .lv-room-card > .p-4 > .d-flex.gap-3:not(.lv-room-meta) {
        flex-direction: column;
    }

    .lv-room-card .btn-lv-gold {
        width: 100%;
    }

    .lv-room-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: .55rem;
    }

    .lv-feature-dot {
        width: 100%;
        min-height: 52px;
        gap: .45rem;
        padding: .65rem .7rem;
        border-radius: .75rem;
        font-size: .84rem;
        line-height: 1.2;
    }

    .lv-feature-dot::before {
        flex: 0 0 .42rem;
        width: .42rem;
        height: .42rem;
    }

    .lv-amenity-card {
        padding: 1rem .75rem;
    }

    .lv-amenity-icon {
        width: 52px;
        height: 52px;
        font-size: 1.55rem;
    }

    .lv-detail-thumb {
        width: 56px;
        height: 56px;
        border-width: 2px;
        border-radius: .55rem;
    }

    .lv-floating-stat {
        position: static;
        display: inline-block;
        margin-top: 1rem;
        transform: none;
    }

    .lv-principles {
        grid-template-columns: 1fr;
    }

    .lv-community-title {
        font-size: 2rem;
    }

    .lv-social-btn {
        min-width: 118px;
    }

    .lv-community-phone-stack {
        min-height: 350px;
        margin-top: .75rem;
    }

    .lv-community-phone {
        width: 128px;
        border-width: 7px;
        border-radius: 20px;
    }

    .lv-community-phone.is-center {
        width: 150px;
    }

    .lv-community-phone.is-left {
        margin-right: -34px;
        transform: rotate(-8deg) translateY(16px);
    }

    .lv-community-phone.is-right {
        margin-left: -34px;
        transform: rotate(8deg) translateY(18px);
    }

    .lv-community-phone-top {
        top: 14px;
        left: 8px;
        right: 8px;
        font-size: .5rem;
    }

    .lv-story-dot {
        width: 22px;
        height: 22px;
    }

    .lv-community-phone-caption {
        font-size: .54rem;
    }
}

@media (max-width: 420px) {
    .lv-hero h1 {
        font-size: 2.45rem;
    }

    .lv-page-hero h1 {
        font-size: 1.95rem;
    }

    .lv-glass-stat strong {
        font-size: 1.55rem;
    }

    .lv-price-badge {
        white-space: normal;
    }

    .lv-community-phone {
        width: 112px;
    }

    .lv-community-phone.is-center {
        width: 136px;
    }
}
