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) {
    .welcome { padding: 1rem 1rem 0 1rem; }
}

.welcome-intro .inner {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.welcome-intro .inner .title {
    color: var(--color-coconut-husk);
    text-transform: uppercase;
}

.welcome-image {
    position: relative;
    width: 100%;
    max-width: 92vw;
    height: clamp(220px, 36vh, 340px);
    margin: 1rem auto -8rem;
    overflow: hidden;
}
@media (max-width: 1023px) {
    .welcome-image {
        height: clamp(320px, 60vh, 520px);
        max-width: 100%;
        margin-top: 0.5rem;
    }
}

.welcome-image-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: 1;
    pointer-events: auto;
    transition: opacity 0.8s ease;
}

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

.welcome-image-wrapper .welcome-inner {
    position: relative;
    z-index: 2;

    @media (max-width: 1023px) {
        padding-inline: 1rem;
    }
}

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