:root {
    --bg: #edf4ff;
    --surface: #f8fbff;
    --ink: #0d2446;
    --ink-soft: #4e6786;
    --brand: #22b8ff;
    --brand-dark: #0d8fd9;
    --deep: #071f45;
    --line: rgba(34, 184, 255, 0.2);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.7;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: min(1180px, calc(100% - 2.5rem));
    margin-inline: auto;
}

.narrow {
    width: min(820px, calc(100% - 2.5rem));
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

body.home .site-header {
    position: fixed;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    border-bottom-color: transparent;
    box-shadow: none;
}

body.home .site-header.is-scrolled {
    background: rgba(11, 25, 43, 0.88);
    backdrop-filter: blur(10px);
    border-bottom-color: rgba(255, 255, 255, 0.16);
}

body.home .site-header.is-scrolled .menu li a,
body.home .site-header.is-scrolled .site-title,
body.home .site-header.is-scrolled .lang-switcher,
body.home .site-header.is-scrolled .lang-switcher a {
    color: #e8f6ff;
}

body.home .site-header.is-scrolled .menu li a:hover,
body.home .site-header.is-scrolled .menu li a:focus-visible,
body.home .site-header.is-scrolled .lang-switcher a.is-active {
    color: #8fd9ff;
}

body.home .site-header.is-scrolled .lang-switcher {
    border-color: rgba(143, 217, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

body.home .site-header.is-scrolled .menu-toggle {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(143, 217, 255, 0.4);
}

body.home .site-header.is-scrolled .menu-toggle span {
    background: #e8f6ff;
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-title,
.site-logo {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 0.02em;
}

.site-logo .custom-logo-link {
    display: inline-flex;
    max-width: 200px;
}

.site-logo .custom-logo {
    width: 100%;
    max-width: 200px;
    height: auto;
}

.menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.menu li a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--ink);
    position: relative;
}

body.home .site-header:not(.is-scrolled) .menu li a,
body.home .site-header:not(.is-scrolled) .site-title,
body.home .site-header:not(.is-scrolled) .lang-switcher,
body.home .site-header:not(.is-scrolled) .lang-switcher a {
    color: #fff;
}

body.home .site-header:not(.is-scrolled) .lang-switcher {
    border-color: rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.08);
}

body.home .site-header:not(.is-scrolled) .menu-toggle {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.35);
}

body.home .site-header:not(.is-scrolled) .menu-toggle span {
    background: #fff;
}

.menu li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 100%;
    height: 2px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.menu li a:hover::after,
.menu li a:focus-visible::after {
    transform: scaleX(1);
}

.main-nav {
    display: flex;
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ink-soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.35rem 0.6rem;
    background: #fff;
}

.lang-switcher a {
    color: var(--ink-soft);
}

.lang-switcher a.is-active {
    color: var(--brand-dark);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--surface);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--ink);
    transition: 0.25s ease;
}

.menu-toggle.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.hero {
    background: radial-gradient(circle at 60% 8%, rgba(34, 184, 255, 0.28) 0%, rgba(34, 184, 255, 0) 34%), linear-gradient(158deg, #081d43 0%, #0f376b 56%, #176da7 100%);
    color: #fff;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 100svh;
    display: flex;
    align-items: center;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 12, 25, 0.5) 0%, rgba(6, 21, 46, 0.62) 62%, rgba(10, 39, 76, 0.74) 100%);
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-inner-no-cards {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    max-width: 960px;
    min-height: 100svh;
    align-content: center;
    padding-top: 5.6rem;
    padding-bottom: 4rem;
}

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

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand);
}

.hero .eyebrow {
    color: #96dce1;
}

.hero h1 {
    margin: 0.65rem 0 1rem;
    font-size: clamp(2.1rem, 3vw, 3.3rem);
    line-height: 1.15;
}

.hero p {
    margin: 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-highlights {
    margin: 1.25rem auto 0;
    width: min(100%, 760px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem 1.1rem;
}

.hero-highlights span {
    font-size: 0.98rem;
    color: rgba(232, 246, 255, 0.92);
}

.hero-actions {
    margin: 1.6rem 0;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    border: none;
    border-radius: 999px;
    padding: 0.8rem 1.5rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 14px 34px -16px rgba(22, 152, 163, 0.85);
}

.btn-primary:hover {
    background: var(--brand-dark);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
}

.stats-row div {
    min-width: 130px;
}

.stats-row strong {
    display: block;
    font-size: 1.45rem;
}

.stats-row span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
}

.hero-scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 1.15rem;
    transform: translateX(-50%);
    z-index: 2;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    animation: vdr-bounce 1.8s infinite;
}

@keyframes vdr-bounce {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

.hero-media {
    position: relative;
    min-height: 390px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    padding: 1.2rem 1.25rem;
    backdrop-filter: blur(8px);
}

.hero-card h3 {
    margin: 0 0 0.45rem;
}

.card-main {
    position: absolute;
    inset: 0.6rem 0 5rem;
}

.card-float {
    position: absolute;
    width: min(280px, 72%);
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line);
    box-shadow: 0 30px 70px -45px rgba(0, 0, 0, 0.9);
}

.card-a {
    right: 0;
    top: 2.2rem;
}

.card-b {
    left: 0;
    bottom: 0;
}

.content-section {
    padding: 4.2rem 0;
}

.content-section.light {
    background: var(--surface);
}

.section-head {
    margin-bottom: 1.8rem;
}

.section-head h1,
.section-head h2 {
    margin: 0.55rem 0 0;
    line-height: 1.2;
    font-size: clamp(1.75rem, 2.5vw, 2.5rem);
}

.feature-grid,
.logistics-grid,
.post-grid,
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1rem;
}

.feature-item,
.card,
.destination-points > div,
.timeline > div,
.faq-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.15rem;
}

.quote-card {
    min-height: 200px;
}

.quote-card p {
    margin-top: 0;
    color: var(--ink-soft);
}

.quote-card h3 {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 700;
}

.split-layout,
.destination-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
    align-items: start;
}

.timeline {
    display: grid;
    gap: 0.9rem;
}

.timeline strong {
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.6rem;
}

.activities-strip-wrap {
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
}

.activities-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.8rem;
}

.activity-chip {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1rem;
    display: grid;
    gap: 0.35rem;
}

.activity-chip strong {
    font-size: 1rem;
}

.activity-chip span {
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.activity-chip a {
    color: var(--brand);
    font-weight: 700;
    font-size: 0.9rem;
}

.trust-strip {
    background: #0f2640;
    color: rgba(255, 255, 255, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-strip-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
    padding: 0.95rem 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.parallax-gallery {
    display: grid;
    gap: 1rem;
    padding: 1.4rem 0 2rem;
    background: linear-gradient(180deg, rgba(7, 31, 69, 0.08), rgba(7, 31, 69, 0));
}

.parallax-panel {
    position: relative;
    height: 44vh;
    min-height: 280px;
    overflow: hidden;
}

.parallax-media {
    position: absolute;
    inset: -12% 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.parallax-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 14, 34, 0.08), rgba(2, 14, 34, 0.28));
}

.booking-gateway-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: start;
}

.booking-gateway h2 {
    margin-top: 0.55rem;
}

.gateway-points {
    display: grid;
    gap: 0.75rem;
}

.gateway-points div {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 1rem;
}

.gateway-points strong {
    color: var(--brand);
}

.destination-card {
    background: linear-gradient(165deg, #0f2741 0%, #173b61 100%);
    color: #fff;
    border-radius: 24px;
    padding: 1.6rem;
}

.destination-card p {
    color: rgba(255, 255, 255, 0.9);
}

.destination-card .eyebrow {
    color: #9cd8df;
}

.destination-points {
    display: grid;
    gap: 0.8rem;
}

.faq-list {
    display: grid;
    gap: 0.8rem;
}

.faq-item {
    padding: 0;
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 1rem 1.2rem;
    text-align: left;
    font-weight: 700;
    cursor: pointer;
    color: var(--ink);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    padding: 0 1.2rem;
}

.faq-item.is-open .faq-panel {
    max-height: 180px;
    padding-bottom: 1rem;
}

.faq-panel p {
    margin: 0;
    color: var(--ink-soft);
}

.cta-band {
    background: #0f2640;
    color: #fff;
}

.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
}

.cta-band h2 {
    margin: 0 0 0.45rem;
}

.cta-band p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.card {
    box-shadow: 0 26px 54px -42px rgba(15, 32, 56, 0.85);
}

.card-image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 12px;
}

.card-body h2,
.card-body h3 {
    margin: 0 0 0.45rem;
    line-height: 1.3;
}

.card-body p {
    margin: 0;
    color: var(--ink-soft);
}

.text-link {
    display: inline-block;
    margin-top: 0.85rem;
    font-weight: 700;
    color: var(--brand);
}

.entry-cover {
    margin: 1rem 0 1.2rem;
}

.entry-cover img {
    border-radius: 14px;
}

.entry-content {
    color: var(--ink-soft);
}

.entry-cta {
    margin-top: 1.2rem;
}

.site-footer {
    background: #edf4fb;
    color: #15304a;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    gap: 1.6rem;
}

.reconnect-footer-grid {
    grid-template-columns: minmax(220px, 1.3fr) repeat(4, minmax(140px, 1fr));
}

.footer-brand p {
    max-width: 340px;
    color: #4a6279;
    font-size: 1rem;
    line-height: 1.8;
}

.footer-grid h4 {
    color: #102a43;
    margin: 0 0 0.9rem;
    font-size: 1.18rem;
    font-weight: 700;
    letter-spacing: 0.015em;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.footer-grid p,
.footer-grid a {
    margin: 0;
    color: #4d6378;
    font-size: 0.98rem;
    line-height: 1.75;
}

.footer-brand h3 {
    margin: 0 0 0.6rem;
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.15;
    color: #0f2b44;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.footer-menu a {
    color: #4d6378;
    font-weight: 500;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-menu a:hover {
    color: #0f7d86;
    transform: translateX(2px);
}

.follow-col .social-row {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
}

.social-row a {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: #dfe6e7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #18324a;
    font-weight: 700;
    text-transform: lowercase;
}

.footer-bottom {
    border-top: 1px solid #d1d8df;
    margin-top: 1.8rem;
    padding-top: 1.2rem;
    text-align: center;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.7rem;
    font-size: 0.96rem;
    font-weight: 500;
}

.footer-bottom p {
    margin: 0;
    color: #5b7085;
    font-size: 0.92rem;
}

@media (max-width: 980px) {
    .hero-inner,
    .split-layout,
    .destination-layout,
    .booking-gateway-inner {
        grid-template-columns: 1fr;
    }

    .hero-media {
        min-height: 350px;
    }

    .cta-band-inner {
        flex-direction: column;
        align-items: flex-start;
    }

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

@media (max-width: 760px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        inset: 76px 0 auto 0;
        background: #fff;
        border-bottom: 1px solid var(--line);
        display: none;
        padding: 1rem 1.25rem;
    }

    body.home .site-header:not(.is-scrolled) .main-nav {
        background: rgba(11, 25, 43, 0.95);
        border-bottom-color: rgba(255, 255, 255, 0.14);
    }

    body.home .site-header:not(.is-scrolled) .main-nav .menu li a {
        color: #fff;
    }

    .lang-switcher {
        margin-left: auto;
    }

    .main-nav.is-visible {
        display: block;
    }

    .menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .hero {
        min-height: 100svh;
    }

    .hero-inner-no-cards {
        padding-top: 5rem;
        padding-bottom: 3rem;
    }

    .hero-media {
        min-height: 260px;
    }

    .site-logo .custom-logo,
    .site-logo .custom-logo-link {
        max-width: 160px;
    }

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

    .parallax-panel {
        height: 34vh;
        min-height: 220px;
    }

    .card-main {
        inset: 0;
    }

    .card-float {
        position: static;
        width: 100%;
        margin-top: 0.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .parallax-media {
        transform: none;
    }
}

@media (max-width: 560px) {
    .container,
    .narrow {
        width: min(100%, calc(100% - 1.5rem));
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
    }

    .reconnect-footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-legal-links {
        flex-wrap: wrap;
        gap: 0.45rem;
    }
}
