header .header-wrapper {
    background-color: white !important;
}

header .menu-icon {
    background-color: var(--color-coconut-husk) !important;
}

header .menu-title {
    color: var(--color-coconut-husk) !important;
}

header .logo {
    background-color: var(--color-coconut-husk) !important;
}

header .button-outline-light {
    display: inline-block !important;
    text-align: center !important;
    text-transform: uppercase !important;
    font-family: var(--font-family), sans-serif !important;
    font-size: var(--font-size-xs) !important;
    font-weight: var(--font-weight-medium) !important;
    letter-spacing: 0.3px !important;
    line-height: 1.4 !important;
    cursor: pointer !important;
    background-color: transparent !important;
    color: var(--color-coconut-husk) !important;
    border: 1px solid var(--color-coconut-husk) !important;
    padding: 0.5em 1.2em !important;
    text-shadow: none !important;
    transition: all 0.3s ease !important;

    @media (max-width: 1023px) {
        display: none !important;
    }
}

header .button-outline-light:hover {
    background-color: var(--color-coconut-husk) !important;
    color: var(--color-sea-salt-white) !important;
    text-shadow: 0 0 1px var(--color-sea-salt-white), 0 0 1px var(--color-sea-salt-white) !important;
    transition: all 0.3s ease !important;
}

.welcome {
    position: relative;
    width: 100%;
    margin-top: 4rem;
    padding: 4rem 4rem 0 4rem;

    @media (max-width: 1023px) {
        padding: 2rem 2rem 0 2rem;
    }
}

.welcome-intro .inner {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.welcome-intro .inner .title {
    color: var(--color-coconut-husk);
    text-transform: uppercase;
}

.welcome-intro .inner p {
    max-width: 40%;

    @media (max-width: 1023px) {
        max-width: 100%;
    }
}

.welcome-slider {
    position: relative;
    width: 100%;
    max-width: 92vw;
    height: clamp(220px, 36vh, 340px);
    margin: 1rem auto 0;
    overflow: hidden;

    @media (max-width: 1023px) {
        height: clamp(320px, 60vh, 520px);
        max-width: 100%;
        margin-top: 0.5rem;
    }
}

.welcome-slider-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
}

.welcome-slider-wrapper.active {
    z-index: 2;
    opacity: 1;
    pointer-events: auto;
}

.welcome-slider-wrapper .welcome-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.6);
}

.welcome-slider-wrapper .welcome-inner {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;

    @media (max-width: 1023px) {
        margin-bottom: 2rem;
    }
}

.welcome-inner .title {
    color: white;
    text-transform: uppercase;
}

.welcome-inner .text {
    margin-bottom: 2rem;
    font-size: 1rem;
}

.welcome-nav {
    position: absolute;
    left: 50%;
    bottom: 1rem;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    margin: 0.75rem auto 0;
}

.slide-arrow-left,
.slide-arrow-right {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-inline: 0.3rem;
    margin-block: 0.7rem 0.5rem;
    background-color: white;
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
}

.slide-arrow-left {
    mask-image: var(--arrow-right-icon);
    -webkit-mask-image: var(--arrow-right-icon);
    rotate: -180deg;
}

.slide-arrow-right {
    mask-image: var(--arrow-right-icon);
    -webkit-mask-image: var(--arrow-right-icon);
}

.welcome-nav .button-outline-light:hover .slide-arrow-left,
.welcome-nav .button-outline-light:hover .slide-arrow-right {
    background-color: var(--color-coconut-husk);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    header .button-outline-light,
    header .button-outline-light:hover,
    .welcome-slider-wrapper {
        transition: none !important;
    }

    .welcome .action-inner {
        animation: none !important;
        transform: none !important;
    }
}