@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto !important;
    }
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: var(--weight-regular);
    color: var(--color-charcoal);
    background-color: var(--color-body-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.dot-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 40%, transparent 100%);
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 40%, transparent 100%);
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    height: var(--nav-height);
    background: var(--color-white-95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-off-white);
    box-shadow: var(--shadow-base);
    transition: box-shadow var(--transition-base);
}

.nav.scrolled {
    box-shadow: var(--shadow-hover);
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-primary);
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
    letter-spacing: -0.02em;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    align-items: baseline;
    gap: var(--space-xs);
}

.logo-crest {
    color: var(--color-primary-1);
}

.logo-ampersand {
    font-family: var(--font-body);
    color: var(--color-primary-2);
    font-weight: var(--weight-semibold);
}

.logo-core {
    color: var(--color-primary-2);
}

.nav-links {
    display: none;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    display: inline-block;
    font-size: var(--text-md);
    font-weight: var(--weight-medium);
    color: var(--color-navy);
    position: relative;
    padding: var(--space-sm) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary-1);
    transition: width var(--transition-base);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
}

.nav-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-navy);
    transition: transform var(--transition-fast), opacity var(--transition-fast);
    transform-origin: center;
}

.nav-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.nav-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-off-white);
    padding: var(--space-lg);
    z-index: calc(var(--z-sticky) - 1);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.nav-menu-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}



.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-primary);
    font-size: var(--text-md);
    font-weight: var(--weight-medium);
    border: 1px solid var(--color-slate);
    border-radius: var(--radius-md);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: var(--color-off-white);
    color: var(--color-navy);
    box-shadow: var(--shadow-base);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.button:hover {
    background: var(--color-white);
    border-color: var(--color-primary-1);
    box-shadow: var(--shadow-hover);
    transform: scale(1.05);
}

.button:active {
    transform: scale(0.98);
    background: var(--color-off-white);
}

.button:focus-visible {
    outline: 2px solid var(--color-primary-1);
    outline-offset: 2px;
}

.button-highlight {
    background: linear-gradient(135deg, var(--color-primary-1) 0%, var(--color-accent-2) 100%);
    color: var(--color-white);
    border: none;
    box-shadow: var(--shadow-base);
}

.button-highlight:hover {
    background: linear-gradient(135deg, var(--color-primary-1) 0%, var(--color-primary-1) 100%);
    box-shadow: var(--shadow-glow);
}

.button-highlight:active {
    background: linear-gradient(135deg, var(--color-primary-1) 0%, var(--color-accent-2) 100%);
    box-shadow: var(--shadow-base);
}

.button-sm {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--text-base);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-accent-1) 0%, var(--color-primary-1) 50%, var(--color-accent-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
}

main {
    padding-top: var(--nav-height);
}

.section {
    min-height: calc(100vh - var(--nav-height));
    min-height: calc(100dvh - var(--nav-height));
    overflow: visible;
    position: relative;
    z-index: var(--z-base);
    display: flex;
    align-items: flex-start;
    padding: 1dvh 0 2dvh;
    border-bottom: 1px solid var(--color-navy);
}

.hero {
    align-items: center;
    padding-top: 4dvh;
}

.section-solid {
    background: var(--color-off-white);
}

.section-dark {
    background: var(--color-navy);
    color: var(--color-white);
}

.section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2dvh;
    flex: 1;
    min-height: 0;
    height: 100%;
}

.container-primary {
    width: 100%;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.hero .container-primary {
    justify-content: center;
}

.container-secondary {
    display: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--color-off-white);
    border: 1px solid var(--color-slate);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--color-charcoal);
    margin-bottom: 3dvh;
    box-shadow: var(--shadow-base);
    align-self: center;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary-1);
    border-radius: 50%;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: 2.25rem;
    font-family: var(--font-primary);
    font-weight: var(--weight-bold);
    line-height: 1.1;
    color: var(--color-navy);
    margin-bottom: 4dvh;
    letter-spacing: -0.03em;
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: var(--text-md);
    color: var(--color-charcoal);
    margin-bottom: 4dvh;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    width: 100%;
}

.hero-cta .button {
    width: 100%;
}

.contact-strip {
    display: inline-flex;
    align-items: stretch;
    background: var(--color-off-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-base);
    overflow: hidden;
    border: 1px solid var(--color-slate);
    margin-top: 3.5dvh;
    max-width: 100%;
    align-self: center;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.contact-strip:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.contact-strip-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    background: var(--color-navy);
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 9px;
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    line-height: 1.4;
    text-align: center;
    max-width: 60px;
}

.contact-strip-divider {
    width: 10px;
    align-self: stretch;
    background: repeating-linear-gradient(
        180deg,
        var(--color-white),
        var(--color-white) 3px,
        transparent 3px,
        transparent 6px
    );
    position: relative;
}

.contact-strip-divider::before { top: -5px; }
.contact-strip-divider::after { bottom: -5px; }

.contact-strip-icons {
    display: flex;
    align-items: center;
    flex: 1;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 14px 10px;
}

.contact-strip-label,
.contact-strip-divider,
.contact-strip-plane {
    flex-shrink: 0;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--color-white);
    border: 1.5px solid var(--color-off-white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.social-icon img {
    width: 20px;
    height: 20px;
    transition: filter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon:hover {
    transform: scale(1.1);
    border-color: transparent;
    box-shadow: var(--shadow-hover);
    background-clip: padding-box;
}

.social-icon:hover img {
    filter: brightness(0) invert(1);
}

.social-icon:active {
    transform: scale(0.95);
}

.social-icon[aria-label="Facebook"]:hover { background: #1877f2; }
.social-icon[aria-label="Instagram"]:hover { background: linear-gradient(315deg, #fdf497 0%, #fd5949 30%, #d6249f 60%, #285AEB 100%); }
.social-icon[aria-label="TikTok"]:hover { background: #000000; }
.social-icon[aria-label="WhatsApp"]:hover { background: #25d366; }
.social-icon[aria-label="Viber"]:hover { background: #7360f2; }
.social-icon[aria-label="Phone"]:hover { background: var(--color-primary-1); }

@media (hover: none) {
    .social-icon[aria-label="Facebook"] { background: #1877f2; border-color: #1877f2; }
    .social-icon[aria-label="Instagram"] { background: linear-gradient(315deg, #fdf497 0%, #fd5949 30%, #d6249f 60%, #285AEB 100%); border-color: #d6249f; }
    .social-icon[aria-label="TikTok"] { background: #000000; border-color: #000; }
    .social-icon[aria-label="WhatsApp"] { background: #25d366; border-color: #25d366; }
    .social-icon[aria-label="Viber"] { background: #7360f2; border-color: #7360f2; }
    .social-icon[aria-label="Phone"] { background: var(--color-primary-1); border-color: var(--color-primary-1); }

    .social-icon img { filter: brightness(0) invert(1); }
}

.contact-strip-plane {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    background: var(--color-navy);
    align-self: stretch;
}

.globe-container {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
}

/* Small Mobile Layout */
@media (max-height: 700px) {
    .section {
        padding: 1dvh 0 1dvh;
    }

    .section .container {
        gap: 1.5dvh;
    }

    .hero-badge {
        display: none;
    }

    .hero-title {
        font-size: 1.85rem;
        margin-bottom: 2.5dvh;
    }

    .hero-subtitle {
        margin-bottom: 2.5dvh;
    }

    .hero-cta .button {
        padding: var(--space-sm) var(--space-lg);
    }

    .contact-strip {
        margin-top: 2dvh;
    }

    .social-icon {
        width: 38px;
        height: 38px;
    }

    .social-icon img {
        width: 17px;
        height: 17px;
    }

    .contact-strip-icons {
        gap: 8px;
        padding: 10px 8px;
    }
}

/* Tablet Layout */
@media (min-width: 768px) {
    .hero .container {
        text-align: left;
        align-items: flex-start;
    }

    .section {
        padding: 1dvh 0 2dvh;
    }

    .hero .container-primary {
        align-items: flex-start;
        justify-content: center;
    }

    .hero-badge {
        align-self: flex-start;
    }

    .hero-title {
        font-size: var(--text-display);
    }

    .section-title {
        margin-bottom: 4dvh;
    }

    .section-header {
        margin-bottom: 3dvh;
    }

    .hero .hero-subtitle {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-cta {
        flex-direction: row;
        justify-content: flex-start;
        width: auto;
        gap: var(--space-md);
    }

    .hero-cta .button {
        flex: none;
        width: auto;
    }

    .contact-strip {
        align-self: flex-start;
        margin-top: 4.5dvh;
    }
}

/* Desktop Layout */
@media (min-width: 1024px) {
    .container {
        padding: 0 var(--space-xl);
    }

    .nav-links {
        display: flex;
    }

    .nav-menu-btn {
        display: none;
    }

    .nav-menu {
        display: none;
    }

    .hero .container {
        flex-direction: row;
        gap: var(--space-4xl);
        align-items: stretch;
    }

    .hero .container-primary {
        flex: 3;
        justify-content: center;
    }

    .section:not(.hero) .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .section:not(.hero) .container-primary {
        width: 100%;
    }

    .container-secondary {
        flex: 2;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-badge {
        display: inline-flex;
    }

    .contact-strip-icons {
        gap: 10px;
        padding: 12px;
    }

    .social-icon {
        width: 44px;
        height: 44px;
    }

    .social-icon img {
        width: 20px;
        height: 20px;
    }

    .globe-container {
        max-width: 500px;
    }
}

.section-header {
    margin-bottom: 3dvh;
}

.section-header .hero-subtitle {
    display: none;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-primary-1);
    margin-bottom: var(--space-sm);
    margin-top: 2dvh;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: var(--weight-bold);
    color: var(--color-navy);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.5dvh;
}

.section-subtitle {
    font-size: var(--text-sm);
    color: var(--color-slate);
    line-height: 1.6;
    margin-top: var(--space-xs);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.journey-carousel,
.destinations-carousel {
    width: 100%;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    gap: var(--space-md);
    padding-bottom: 80px;
}

.journey-track,
.destinations-track {
    flex: 1;
    min-width: 0;
    height: 100%;
    display: flex;
    gap: var(--space-lg);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    align-items: stretch;
    padding: var(--space-sm) 0;
}

.journey-track::-webkit-scrollbar,
.destinations-track::-webkit-scrollbar {
    display: none;
}

.journey-dots,
.destinations-dots {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
}

.journey-dot,
.dest-dot {
    width: 6px;
    height: 6px;
    border-radius: var(--radius-full);
    background: var(--color-navy-light);
    cursor: pointer;
    border: none;
    padding: 0;
    transition: all var(--transition-base);
}

.journey-dot.active,
.dest-dot.active {
    width: 24px;
    border-radius: 3px;
    background: var(--color-primary-1);
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 4dvh;
    }

    .section-header .hero-subtitle {
        display: block;
        margin-bottom: 2dvh;
    }
}

