* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: #102031;
    background:
        radial-gradient(circle at top left, rgba(15, 118, 110, 0.09), transparent 22%),
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.08), transparent 18%),
        linear-gradient(180deg, #f8fcfc 0%, #ffffff 34%, #f7fafc 100%);
}
body.site-loading {
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.site-shell { width: min(1280px, calc(100vw - 32px)); margin: 0 auto; }
.site-preloader {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at center, rgba(15,118,110,0.18), rgba(255,255,255,0.96));
    transition: opacity 280ms ease, visibility 280ms ease;
}
.site-preloader.is-hidden { opacity: 0; visibility: hidden; }
.site-preloader-ring {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: 3px solid rgba(15, 118, 110, 0.12);
    border-top-color: var(--brand-primary);
    border-right-color: var(--brand-secondary);
    animation: siteSpin 0.9s linear infinite;
}
.site-preloader-logo {
    position: absolute;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: #ffffff;
    color: var(--brand-primary);
    font-size: 22px;
    font-weight: 800;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.10);
}
@keyframes siteSpin { to { transform: rotate(360deg); } }

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    backdrop-filter: blur(20px);
    background: rgba(255,255,255,0.86);
    border-bottom: 1px solid rgba(226,232,240,0.85);
}
.site-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    font-size: 12px;
    color: #557086;
}
.site-topline-copy {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.site-topline-copy span,
.site-topline-copy a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0 16px;
}
.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}
.site-brand-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 18px;
    background: #ffffff;
    padding: 6px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}
.site-brand strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #102031;
}
.site-brand small {
    display: block;
    margin-top: 2px;
    color: #5f7486;
    font-size: 12px;
}
.site-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(15,118,110,0.12);
    border-radius: 14px;
    background: #ffffff;
    color: var(--brand-primary);
}
.site-menu {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.site-menu a {
    padding: 11px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    color: #234055;
}
.site-menu a:hover {
    background: #edf9f7;
    color: var(--brand-primary);
}
.site-menu-cta {
    background: linear-gradient(135deg, var(--brand-primary), #0891b2);
    color: #ffffff !important;
    box-shadow: 0 16px 28px rgba(8,145,178,0.18);
}

.hero-section { padding: 36px 0 30px; }
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    gap: 24px;
    align-items: stretch;
}
.hero-copy-card,
.hero-visual-card,
.section-card,
.showcase-card,
.discovery-card {
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(226,232,240,0.9);
    border-radius: 32px;
    box-shadow: 0 24px 64px rgba(15,23,42,0.08);
}
.hero-copy-card {
    padding: 34px;
    position: relative;
    overflow: hidden;
}
.hero-copy-card::after {
    content: "";
    position: absolute;
    right: -70px;
    top: -40px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,158,11,0.14), transparent 66%);
}
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #edf9f7;
    color: var(--brand-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.hero-title {
    margin: 18px 0 0;
    font-family: 'Fraunces', serif;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 0.94;
    letter-spacing: -0.05em;
    color: #102031;
}
.hero-subtitle {
    max-width: 720px;
    margin: 22px 0 0;
    color: #587284;
    font-size: 18px;
    line-height: 1.9;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}
.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
}
.hero-btn-primary {
    background: linear-gradient(135deg, var(--brand-primary), #0891b2);
    color: #ffffff;
}
.hero-btn-secondary {
    border: 1px solid rgba(15,118,110,0.16);
    background: #ffffff;
    color: var(--brand-primary);
}
.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}
.hero-metric {
    padding: 16px;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff, #f4fbfb);
    border: 1px solid rgba(15,118,110,0.08);
}
.hero-metric strong {
    display: block;
    font-size: 26px;
    font-weight: 800;
}
.hero-metric span {
    display: block;
    margin-top: 4px;
    color: #5f7486;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.hero-visual-card {
    padding: 20px;
    display: grid;
    gap: 14px;
    background:
        radial-gradient(circle at top right, rgba(15,118,110,0.16), transparent 22%),
        linear-gradient(180deg, #fcfffe 0%, #eef8f8 100%);
}
.hero-visual-main {
    min-height: 380px;
    border-radius: 28px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.hero-visual-main::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,23,42,0.04), rgba(15,23,42,0.58));
}
.hero-visual-copy {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    color: #ffffff;
}
.hero-visual-copy h3 {
    margin: 0;
    font-size: 26px;
    font-weight: 800;
}
.hero-visual-copy p {
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.86);
}
.hero-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.hero-mini-card {
    padding: 16px;
    border-radius: 22px;
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(255,255,255,0.8);
}
.hero-mini-card strong {
    display: block;
    font-size: 17px;
    font-weight: 800;
}
.hero-mini-card span {
    display: block;
    margin-top: 6px;
    color: #60778a;
    font-size: 13px;
    line-height: 1.7;
}

.section-block { padding: 14px 0 22px; }
.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.section-head h2 {
    margin: 0;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.03em;
}
.section-head p {
    margin: 10px 0 0;
    max-width: 720px;
    color: #60778a;
    line-height: 1.8;
}
.section-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(15,118,110,0.12);
    color: var(--brand-primary);
    font-size: 13px;
    font-weight: 800;
}
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.showcase-card {
    overflow: hidden;
    transition: transform 220ms ease, box-shadow 220ms ease;
}
.showcase-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 28px 66px rgba(15,23,42,0.12);
}
.showcase-cover {
    aspect-ratio: 1.22 / 1;
    background: linear-gradient(135deg, #d6f5f0, #eff8ff);
    overflow: hidden;
}
.showcase-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.showcase-body {
    padding: 22px;
}
.showcase-chip-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.showcase-chip {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    background: #edf9f7;
    color: var(--brand-primary);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.showcase-title {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
}
.showcase-text {
    margin: 12px 0 0;
    color: #5f7486;
    font-size: 14px;
    line-height: 1.8;
}
.showcase-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}
.showcase-price {
    font-size: 16px;
    font-weight: 800;
    color: #102031;
}
.showcase-price small {
    display: block;
    color: #75899a;
    font-size: 12px;
    font-weight: 700;
}
.showcase-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-primary);
    font-weight: 800;
}

.discovery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.discovery-card {
    padding: 22px;
}
.discovery-card strong {
    display: block;
    margin-top: 10px;
    font-size: 18px;
    font-weight: 800;
}
.discovery-card p {
    margin: 10px 0 0;
    color: #60778a;
    line-height: 1.8;
    font-size: 14px;
}
.discovery-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(15,118,110,0.12), rgba(8,145,178,0.12));
    color: var(--brand-primary);
    font-size: 20px;
}

.site-footer {
    margin-top: 36px;
    padding: 34px 0 24px;
    background: #0f1d2c;
    color: rgba(255,255,255,0.84);
}
.site-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.site-footer h3,
.site-footer h4 {
    color: #ffffff;
    font-weight: 800;
}
.site-footer p,
.site-footer a {
    display: block;
    margin: 0 0 10px;
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
}
.site-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
}

.listing-hero,
.inner-list-grid,
.package-detail-layout {
    padding: 30px 0;
}
.listing-intro {
    padding: 28px;
    border-radius: 32px;
    background: rgba(255,255,255,0.94);
    box-shadow: 0 24px 60px rgba(15,23,42,0.08);
}
.listing-intro h1,
.package-detail-main h1 {
    margin: 0;
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -0.05em;
}
.listing-intro p {
    max-width: 760px;
    margin: 14px 0 0;
    color: #5f7486;
    line-height: 1.9;
    font-size: 16px;
}

.feature-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 20px;
}
.feature-strip-card {
    padding: 16px 18px;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff, #f4fbfb);
    border: 1px solid rgba(15,118,110,0.08);
}
.feature-strip-card strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
}
.feature-strip-card span {
    color: #60778a;
    font-size: 13px;
}

.package-detail-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 360px;
    gap: 22px;
}
.package-detail-main,
.package-detail-side {
    background: rgba(255,255,255,0.96);
    border-radius: 30px;
    box-shadow: 0 24px 60px rgba(15,23,42,0.08);
    border: 1px solid rgba(226,232,240,0.9);
}
.package-detail-main {
    overflow: hidden;
}
.package-detail-cover {
    aspect-ratio: 1.8 / 1;
    background: linear-gradient(135deg, #d6f5f0, #eff8ff);
}
.package-detail-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.package-detail-body {
    padding: 26px;
}
.package-detail-copy,
.package-detail-list li {
    color: #4f6678;
    line-height: 1.9;
    font-size: 15px;
}
.package-detail-side {
    padding: 24px;
    position: sticky;
    top: 106px;
    align-self: start;
}
.package-detail-side .hero-btn {
    width: 100%;
    margin-top: 14px;
}

.reveal-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 420ms ease, transform 420ms ease;
}
.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.listing-intro,
.hero-copy-card,
.hero-visual-card,
.discovery-card,
.showcase-card {
    transition: opacity 280ms ease, transform 280ms ease;
}

body.site-loading .listing-intro,
body.site-loading .hero-copy-card,
body.site-loading .hero-visual-card,
body.site-loading .discovery-card,
body.site-loading .showcase-card {
    position: relative;
    overflow: hidden;
}

body.site-loading .listing-intro > *,
body.site-loading .hero-copy-card > *,
body.site-loading .hero-visual-card > *,
body.site-loading .discovery-card > *,
body.site-loading .showcase-card > * {
    opacity: 0;
}

body.site-loading .listing-intro::before,
body.site-loading .hero-copy-card::before,
body.site-loading .hero-visual-card::before,
body.site-loading .discovery-card::before,
body.site-loading .showcase-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    background:
        linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.65) 48%, rgba(255,255,255,0) 100%),
        linear-gradient(180deg, #edf4f7 0%, #f6fafc 100%);
    background-size: 220px 100%, 100% 100%;
    background-repeat: no-repeat;
    animation: skeletonShimmer 1.25s linear infinite;
}

body.site-loading .hero-copy-card::after,
body.site-loading .hero-visual-card::after,
body.site-loading .discovery-card::after,
body.site-loading .showcase-card::after,
body.site-loading .listing-intro::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
    background-repeat: no-repeat;
}

body.site-loading .hero-copy-card::after {
    background-image:
        linear-gradient(#d9e6eb 0 0),
        linear-gradient(#d9e6eb 0 0),
        linear-gradient(#d9e6eb 0 0),
        linear-gradient(#d9e6eb 0 0),
        linear-gradient(#d9e6eb 0 0),
        linear-gradient(#d9e6eb 0 0),
        linear-gradient(#d9e6eb 0 0),
        linear-gradient(#d9e6eb 0 0);
    background-size:
        150px 36px,
        68% 60px,
        82% 18px,
        74% 18px,
        170px 52px,
        170px 52px,
        calc(33.333% - 8px) 92px,
        calc(33.333% - 8px) 92px;
    background-position:
        34px 34px,
        34px 96px,
        34px 176px,
        34px 204px,
        34px 246px,
        218px 246px,
        34px calc(100% - 126px),
        calc(34px + 33.333%) calc(100% - 126px);
}

body.site-loading .hero-visual-card::after {
    background-image:
        linear-gradient(#d9e6eb 0 0),
        linear-gradient(#d9e6eb 0 0),
        linear-gradient(#d9e6eb 0 0),
        linear-gradient(#d9e6eb 0 0),
        linear-gradient(#d9e6eb 0 0);
    background-size:
        calc(100% - 40px) 320px,
        52% 24px,
        72% 16px,
        calc(50% - 10px) 108px,
        calc(50% - 10px) 108px;
    background-position:
        20px 20px,
        42px 286px,
        42px 322px,
        20px calc(100% - 128px),
        calc(50% + 10px) calc(100% - 128px);
}

body.site-loading .discovery-card::after {
    background-image:
        linear-gradient(#d9e6eb 0 0),
        linear-gradient(#d9e6eb 0 0),
        linear-gradient(#d9e6eb 0 0);
    background-size:
        56px 56px,
        58% 22px,
        78% 16px;
    background-position:
        26px 26px,
        26px 102px,
        26px 140px;
}

body.site-loading .showcase-card::after {
    background-image:
        linear-gradient(#d9e6eb 0 0),
        linear-gradient(#d9e6eb 0 0),
        linear-gradient(#d9e6eb 0 0),
        linear-gradient(#d9e6eb 0 0),
        linear-gradient(#d9e6eb 0 0),
        linear-gradient(#d9e6eb 0 0);
    background-size:
        100% 230px,
        84px 28px,
        74px 28px,
        72% 24px,
        82% 16px,
        52% 18px;
    background-position:
        0 0,
        24px 254px,
        118px 254px,
        24px 300px,
        24px 338px,
        24px 376px;
}

body.site-loading .listing-intro::after {
    background-image:
        linear-gradient(#d9e6eb 0 0),
        linear-gradient(#d9e6eb 0 0);
    background-size:
        260px 38px,
        78% 18px;
    background-position:
        28px 28px,
        28px 86px;
}

@keyframes skeletonShimmer {
    0% { background-position: -240px 0, 0 0; }
    100% { background-position: calc(100% + 240px) 0, 0 0; }
}

@media (max-width: 1080px) {
    .hero-grid,
    .package-detail-wrap,
    .showcase-grid,
    .discovery-grid,
    .site-footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-metrics,
    .feature-strip {
        grid-template-columns: 1fr;
    }

    .package-detail-side {
        position: static;
    }
}

@media (max-width: 767px) {
    .site-shell { width: min(100vw - 20px, 1280px); }
    .site-topline { display: none; }
    .site-nav { padding: 12px 0 14px; }
    .site-nav-toggle { display: inline-grid; place-items: center; }
    .site-menu {
        position: fixed;
        left: 12px;
        right: 12px;
        top: 80px;
        z-index: 70;
        display: none;
        padding: 16px;
        border-radius: 24px;
        background: rgba(255,255,255,0.98);
        box-shadow: 0 24px 48px rgba(15,23,42,0.14);
        border: 1px solid rgba(226,232,240,0.9);
        flex-direction: column;
        align-items: stretch;
    }
    .site-menu.is-open { display: flex; }
    .site-menu a { width: 100%; text-align: center; }
    .site-brand strong { font-size: 18px; }
    .site-brand small {
        max-width: 190px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .hero-copy-card,
    .hero-visual-card,
    .showcase-body,
    .listing-intro,
    .package-detail-body,
    .package-detail-side,
    .discovery-card {
        padding: 20px;
    }
    .hero-title,
    .listing-intro h1,
    .package-detail-main h1 {
        font-size: 38px;
    }
    .hero-subtitle,
    .listing-intro p {
        font-size: 15px;
    }
}
