:root {
    --vpx-primary: #68BDA7;
    --vpx-primary-rgb: 104, 189, 167;
    --vpx-primary-dark: #2f846f;
    --vpx-ink: #1d2733;
    --vpx-muted: #64717f;
    --vpx-border: #e5ebe9;
    --vpx-soft: #eef8f5;
    --vpx-container: 1240px;
    --vpx-radius: 26px;
}

.vpx-single,
.vpx-cards,
.vpx-single *,
.vpx-cards * {
    box-sizing: border-box;
}

.vpx-single {
    overflow: hidden;
    background: #fff;
    color: var(--vpx-ink);
    font-family: inherit;
}

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

/* Hero */
.vpx-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    isolation: isolate;
    background: linear-gradient(135deg, #f5fbf9, #e5f2ef);
}

.vpx-hero.has-banner-image {
    background-image: var(--vpx-banner-image);
    background-size: cover;
    background-position: center center;
}

.vpx-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 31%, rgba(255,255,255,.58) 49%, rgba(255,255,255,.08) 74%),
        linear-gradient(180deg, rgba(255,255,255,.28), rgba(255,255,255,.04) 55%, rgba(255,255,255,.22));
}

.vpx-hero-inner {
    padding: 82px 0 98px;
}

.vpx-hero-copy {
    width: min(100%, 610px);
}

.vpx-eyebrow {
    margin-bottom: 22px;
    color: var(--vpx-primary-dark);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.vpx-hero-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin: 0 0 22px;
    font-family: inherit;
    line-height: .96;
    text-transform: uppercase;
}

.vpx-title-highlight {
    color: var(--vpx-primary-dark);
    font-size: clamp(56px, 6.2vw, 94px);
    font-weight: 900;
    letter-spacing: -.05em;
}

.vpx-title-simple {
    color: var(--vpx-ink);
    font-size: clamp(33px, 3.7vw, 55px);
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: 1.06;
}

.vpx-hero-description {
    max-width: 570px;
    color: #26323d;
    font-size: 17px;
    line-height: 1.9;
}

.vpx-hero-description p {
    margin: 0;
}

.vpx-hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 36px;
    margin-top: 45px;
}

.vpx-hero-fact {
    display: flex;
    align-items: center;
    min-width: 150px;
    gap: 13px;
}

.vpx-hero-fact-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
}

.vpx-hero-fact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vpx-hero-fact-copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.vpx-hero-fact-copy strong {
    color: #17212c;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
}

.vpx-hero-fact-copy span {
    color: #50606e;
    font-size: 13px;
    line-height: 1.35;
}

.vpx-hero-curve {
    position: absolute;
    right: -4%;
    bottom: -1px;
    width: 76%;
    height: 64px;
    background: #fff;
    clip-path: ellipse(62% 65% at 67% 100%);
}

/* Content */
.vpx-place-content-section {
    padding: 78px 0 50px;
}

.vpx-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 365px;
    grid-template-areas:
        "featured sidebar"
        "content sidebar";
    column-gap: 44px;
    row-gap: 32px;
    align-items: start;
}

.vpx-featured-wrap {
    grid-area: featured;
}

.vpx-featured-image,
.vpx-featured-placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--vpx-radius);
    object-fit: cover;
    box-shadow: 0 18px 44px rgba(27, 50, 43, .08);
}

.vpx-featured-placeholder {
    display: grid;
    place-items: center;
    padding: 30px;
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(135deg, var(--vpx-primary-dark), var(--vpx-primary));
}

.vpx-article-content {
    grid-area: content;
    color: #52606d;
    font-size: 16px;
    line-height: 1.9;
}

.vpx-article-content > :first-child {
    margin-top: 0;
}

.vpx-article-content > :last-child {
    margin-bottom: 0;
}

.vpx-article-content p {
    margin: 0 0 22px;
}

.vpx-article-content h2,
.vpx-article-content h3,
.vpx-article-content h4 {
    color: var(--vpx-ink);
    line-height: 1.25;
    margin: 34px 0 14px;
}

.vpx-article-content a {
    color: var(--vpx-primary-dark);
}

.vpx-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.vpx-sidebar-card {
    grid-area: sidebar;
    position: sticky;
    top: 28px;
    padding: 37px 34px 32px;
    border: 1px solid var(--vpx-border);
    border-radius: 24px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 16px 46px rgba(25, 52, 44, .075);
}

.vpx-sidebar-heading {
    color: var(--vpx-ink);
    font-size: 15px;
    font-weight: 850;
    letter-spacing: .01em;
    line-height: 1.45;
    text-transform: uppercase;
}

.vpx-sidebar-rule {
    margin: 15px 0 26px;
    height: 2px;
    background: #edf1ef;
}

.vpx-sidebar-rule span {
    display: block;
    width: 58px;
    height: 2px;
    background: var(--vpx-primary-dark);
}

.vpx-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.vpx-sidebar-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.vpx-sidebar-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--vpx-primary-dark);
    background: rgba(var(--vpx-primary-rgb), .15);
}

.vpx-sidebar-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vpx-sidebar-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 4px;
}

.vpx-sidebar-copy strong {
    color: #1e2934;
    font-size: 14px;
    font-weight: 800;
}

.vpx-sidebar-copy span {
    color: #76828e;
    font-size: 13px;
    line-height: 1.45;
}

.vpx-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    width: 100%;
    min-height: 54px;
    margin-top: 30px;
    padding: 14px 22px;
    border-radius: 999px;
    color: #fff !important;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none !important;
    background: linear-gradient(90deg, var(--vpx-primary-dark), var(--vpx-primary));
    box-shadow: 0 12px 24px rgba(var(--vpx-primary-rgb), .22);
    transition: transform .25s ease, box-shadow .25s ease;
}

.vpx-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(var(--vpx-primary-rgb), .3);
}

.vpx-cta-button svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Section headings */
.vpx-section-title-wrap {
    display: grid;
    grid-template-columns: minmax(30px, 1fr) auto minmax(30px, 1fr);
    align-items: center;
    gap: 18px;
    margin-bottom: 35px;
}

.vpx-section-title {
    position: relative;
    margin: 0;
    padding-bottom: 12px;
    color: var(--vpx-primary-dark);
    font-size: 18px;
    font-weight: 850;
    letter-spacing: -.01em;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
}

.vpx-section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 38px;
    height: 2px;
    background: var(--vpx-primary-dark);
    transform: translateX(-50%);
}

.vpx-title-line {
    height: 1px;
    background: #dfe6e3;
}

/* Gallery */
.vpx-gallery-section {
    padding: 48px 0 72px;
}

.vpx-gallery-shell {
    position: relative;
}

.vpx-gallery-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 64px) / 5);
    gap: 16px;
    overflow-x: auto;
    padding: 2px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.vpx-gallery-track::-webkit-scrollbar {
    display: none;
}

.vpx-gallery-slide {
    margin: 0;
    scroll-snap-align: start;
}

.vpx-gallery-slide img {
    display: block;
    width: 100%;
    aspect-ratio: .78;
    border-radius: 11px;
    object-fit: cover;
    box-shadow: 0 8px 22px rgba(23, 47, 39, .08);
}

.vpx-gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 4px solid #fff;
    border-radius: 50%;
    color: #fff;
    background: var(--vpx-primary-dark);
    box-shadow: 0 8px 20px rgba(0,0,0,.14);
    cursor: pointer;
    transform: translateY(-50%);
    transition: transform .2s ease, opacity .2s ease;
}

.vpx-gallery-arrow:hover {
    transform: translateY(-50%) scale(1.06);
}

.vpx-gallery-arrow:disabled {
    opacity: .36;
    cursor: default;
}

.vpx-gallery-prev {
    left: -20px;
}

.vpx-gallery-next {
    right: -20px;
}

.vpx-gallery-arrow svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vpx-gallery-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 24px;
}

.vpx-gallery-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #cdd5d2;
    cursor: pointer;
    transition: width .2s ease, border-radius .2s ease, background .2s ease;
}

.vpx-gallery-dot.is-active {
    width: 22px;
    border-radius: 999px;
    background: var(--vpx-primary-dark);
}

/* Reviews */
.vpx-reviews-section {
    padding: 20px 0 92px;
}

.vpx-reviews-title-wrap {
    margin-bottom: 28px;
}

.vpx-reviews-card {
    min-height: 120px;
    padding: 30px;
    border: 1px solid var(--vpx-border);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 42px rgba(25, 52, 44, .065);
}

/* Cards shortcode */
.vpx-shortcode-section {
    position: relative;
    display: flow-root;
    clear: both;
    float: none !important;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto !important;
    min-height: 1px;
    margin: 0 0 42px;
    padding: 0;
    overflow: visible;
    isolation: isolate;
}

.vpx-shortcode-section::before,
.vpx-shortcode-section::after {
    content: "";
    display: table;
}

.vpx-shortcode-section::after {
    clear: both;
}

.vpx-has-places-shortcode {
    position: relative !important;
    display: block !important;
    clear: both !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
}

.elementor-shortcode:has(> .vpx-shortcode-section),
.elementor-widget-shortcode:has(.vpx-shortcode-section) {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
}

.vpx-shortcode-section .vpx-cards {
    position: relative;
    clear: both;
    float: none !important;
    height: auto !important;
    min-height: 0;
    margin: 0;
    padding: 0;
    overflow: visible;
}

.vpx-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
    width: 100%;
}

.vpx-cards.vpx-columns-1 { grid-template-columns: minmax(0, 1fr); }
.vpx-cards.vpx-columns-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.vpx-cards.vpx-columns-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.vpx-cards.vpx-columns-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.vpx-place-card {
    position: relative;
    display: block;
    float: none !important;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    height: auto !important;
    min-height: 0;
    margin: 0 !important;
    overflow: hidden;
    border-radius: 13px;
    background: #151c20;
    box-shadow: 0 12px 26px rgba(19, 28, 32, .08);
    isolation: isolate;
}

/* Physical in-flow ratio spacer: keeps the grid height correct even when a theme,
   page builder, or older browser overrides/does not support aspect-ratio. */
.vpx-place-card-ratio {
    display: block !important;
    width: 100% !important;
    height: 0 !important;
    padding-top: 125% !important;
    margin: 0 !important;
    pointer-events: none;
}

.vpx-place-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--vpx-card-image);
    background-position: center;
    background-size: cover;
    transition: transform .6s cubic-bezier(.22,.61,.36,1), filter .45s ease;
}

.vpx-place-card.no-image::before {
    background-image: radial-gradient(circle at 70% 36%, rgba(255,255,255,.22), transparent 23%), linear-gradient(145deg, var(--vpx-primary-dark), #11181d 74%);
}

.vpx-place-card-link {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    color: #fff !important;
    text-decoration: none !important;
}

.vpx-place-card-shade {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(0,0,0,.58) 0%, rgba(0,0,0,.20) 45%, rgba(0,0,0,.5) 100%);
    transition: background .35s ease;
}

.vpx-place-card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 30px 29px;
}

.vpx-place-card-title {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: 1.18;
}

.vpx-place-card-excerpt {
    max-width: 94%;
    color: rgba(255,255,255,.95);
    font-size: 15px;
    line-height: 1.5;
}

.vpx-place-card-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 72px;
    margin-top: auto;
    padding: 0 28px;
    border-top: 1px solid rgba(255,255,255,.25);
    background: rgba(0,0,0,.2);
    backdrop-filter: blur(7px);
}

.vpx-place-card-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .01em;
    line-height: 1;
}

.vpx-place-card-action-text {
    white-space: nowrap;
}

.vpx-place-card-arrow {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    transition: transform .3s ease;
}

.vpx-place-card-arrow svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vpx-place-card:hover::before {
    transform: scale(1.055);
    filter: saturate(1.06);
}

.vpx-place-card:hover .vpx-place-card-shade {
    background: linear-gradient(180deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.18) 52%, rgba(0,0,0,.58) 100%);
}

.vpx-place-card:hover .vpx-place-card-arrow {
    transform: translateX(6px);
}

.vpx-empty {
    padding: 22px;
    border: 1px solid var(--vpx-border);
    border-radius: 14px;
    color: var(--vpx-muted);
    text-align: center;
    background: #fff;
}

@media (max-width: 1100px) {
    .vpx-hero {
        min-height: 590px;
    }

    .vpx-main-grid {
        grid-template-columns: minmax(0, 1fr) 330px;
        column-gap: 30px;
    }

    .vpx-sidebar-card {
        padding: 30px 26px;
    }

    .vpx-gallery-track {
        grid-auto-columns: calc((100% - 48px) / 4);
    }

    .vpx-cards.vpx-columns-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .vpx-container {
        width: min(calc(100% - 36px), var(--vpx-container));
    }

    .vpx-hero {
        min-height: 565px;
        align-items: flex-end;
        background-position: 62% center;
    }

    .vpx-hero-overlay {
        background: linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.9) 46%, rgba(255,255,255,.28) 83%);
    }

    .vpx-hero-copy {
        width: min(74%, 560px);
    }

    .vpx-hero-inner {
        padding-top: 72px;
        padding-bottom: 76px;
    }

    .vpx-hero-facts {
        gap: 18px 24px;
        margin-top: 32px;
    }

    .vpx-main-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "featured"
            "sidebar"
            "content";
        row-gap: 28px;
    }

    .vpx-sidebar-card {
        position: static;
    }

    .vpx-gallery-track {
        grid-auto-columns: calc((100% - 32px) / 3);
    }

    .vpx-gallery-prev { left: -14px; }
    .vpx-gallery-next { right: -14px; }

    .vpx-cards.vpx-columns-3,
    .vpx-cards.vpx-columns-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .vpx-shortcode-section {
        margin-bottom: 30px;
    }

    .vpx-container {
        width: min(calc(100% - 28px), var(--vpx-container));
    }

    .vpx-hero {
        min-height: 560px;
        background-position: 64% center;
    }

    .vpx-hero-overlay {
        background:
            linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.87) 49%, rgba(255,255,255,.08) 100%),
            linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.06));
    }

    .vpx-hero-inner {
        padding: 45px 0 58px;
    }

    .vpx-hero-copy {
        width: 68%;
        min-width: 210px;
    }

    .vpx-eyebrow {
        margin-bottom: 12px;
        font-size: 10px;
    }

    .vpx-title-highlight {
        font-size: clamp(42px, 13vw, 62px);
    }

    .vpx-title-simple {
        font-size: clamp(24px, 7.2vw, 34px);
    }

    .vpx-hero-description {
        font-size: 11px;
        line-height: 1.55;
    }

    .vpx-hero-description p {
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 5;
    }

    .vpx-hero-facts {
        flex-direction: column;
        align-items: flex-start;
        gap: 11px;
        margin-top: 21px;
    }

    .vpx-hero-fact {
        min-width: 0;
        gap: 9px;
    }

    .vpx-hero-fact-icon {
        width: 26px;
        height: 26px;
        flex-basis: 26px;
    }

    .vpx-hero-fact-copy strong {
        font-size: 10px;
    }

    .vpx-hero-fact-copy span {
        font-size: 9px;
    }

    .vpx-hero-curve {
        height: 30px;
        width: 88%;
    }

    .vpx-place-content-section {
        padding: 25px 0 30px;
    }

    .vpx-main-grid {
        row-gap: 18px;
    }

    .vpx-featured-image,
    .vpx-featured-placeholder {
        border-radius: 17px;
        aspect-ratio: 16 / 8.7;
    }

    .vpx-sidebar-card {
        padding: 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .vpx-sidebar-heading {
        font-size: 12px;
    }

    .vpx-sidebar-rule {
        margin: 9px 0 17px;
    }

    .vpx-sidebar-list {
        gap: 14px;
    }

    .vpx-sidebar-item {
        gap: 11px;
    }

    .vpx-sidebar-icon {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
    }

    .vpx-sidebar-icon svg {
        width: 19px;
        height: 19px;
    }

    .vpx-sidebar-copy strong {
        font-size: 11px;
    }

    .vpx-sidebar-copy span {
        font-size: 10px;
    }

    .vpx-cta-button {
        min-height: 44px;
        margin-top: 17px;
        font-size: 11px;
    }

    .vpx-article-content {
        font-size: 11.5px;
        line-height: 1.7;
    }

    .vpx-article-content p {
        margin-bottom: 15px;
    }

    .vpx-gallery-section {
        padding: 22px 0 38px;
    }

    .vpx-section-title-wrap {
        grid-template-columns: 1fr auto 1fr;
        gap: 10px;
        margin-bottom: 18px;
    }

    .vpx-section-title {
        padding-bottom: 8px;
        font-size: 12px;
    }

    .vpx-gallery-track {
        grid-auto-columns: calc((100% - 16px) / 3);
        gap: 8px;
    }

    .vpx-gallery-slide img {
        border-radius: 7px;
    }

    .vpx-gallery-arrow {
        width: 29px;
        height: 29px;
        border-width: 3px;
    }

    .vpx-gallery-prev { left: -10px; }
    .vpx-gallery-next { right: -10px; }

    .vpx-gallery-dots {
        gap: 5px;
        margin-top: 13px;
    }

    .vpx-gallery-dot {
        width: 6px;
        height: 6px;
    }

    .vpx-gallery-dot.is-active {
        width: 16px;
    }

    .vpx-reviews-section {
        padding: 8px 0 48px;
    }

    .vpx-reviews-card {
        padding: 16px;
        border-radius: 16px;
    }

    .vpx-cards,
    .vpx-cards.vpx-columns-2,
    .vpx-cards.vpx-columns-3,
    .vpx-cards.vpx-columns-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vpx-place-card {
        height: auto;
        aspect-ratio: 4 / 5;
    }

    .vpx-place-card-content {
        padding: 25px 24px;
    }

    .vpx-place-card-title {
        font-size: 24px;
    }

    .vpx-place-card-excerpt {
        font-size: 14px;
    }
}
