:root {
    --primary: #0bb8c8;
    --primary-light: #19e1ef;
    --primary-dark: #035c67;
    --dark: #082f36;
    --muted: rgba(255,255,255,.78);
    --glass: rgba(255,255,255,.16);
    --glass-strong: rgba(255,255,255,.22);
    --glass-border: rgba(255,255,255,.26);
    --shadow-soft: 0 18px 42px rgba(0,0,0,.24);
    --shadow-card: 0 28px 60px rgba(0,0,0,.32);

    /*
    LOGO PALETTE:
    Change these anytime.
    */
    --logo-main: #e8fcff;
    --logo-accent: #58e8f0;
    --logo-shadow: rgba(0, 42, 48, .32);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: "Inter", sans-serif;
    background: #edf9fb;
    color: var(--dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
}

/* HEADER */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 22px 0;
    z-index: 30;
}

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 66px;
}

/* LOGO */

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    text-decoration: none;
    min-width: 178px;

    /*
    Scoped logo colors.
    These make sure the logo actually follows the palette.
    */
    --brand-main-color: var(--logo-main);
    --brand-accent-color: var(--logo-accent);
}

.brand-left {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    width: 72px;
    height: 48px;
}

.brand-lcg {
    position: relative;
    z-index: 2;
    font-size: 32px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--brand-main-color) !important;
    text-shadow: 0 8px 22px var(--logo-shadow);
}

.brand-wave {
    position: absolute;
    left: 0;
    bottom: 1px;
    width: 76px;
    height: 22px;
    overflow: visible;
}

.brand-wave-main {
    fill: var(--brand-accent-color) !important;
    opacity: .95;
}

.brand-wave-light {
    fill: var(--brand-main-color) !important;
    opacity: .86;
}

.brand-right {
    display: flex;
    flex-direction: column;
    line-height: 1.02;
    transform: translateY(1px);
}

.brand-right strong {
    font-size: 21px;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--brand-main-color) !important;
    text-shadow: 0 8px 22px var(--logo-shadow);
}

.brand-right small {
    margin-top: 3px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    color: var(--brand-accent-color) !important;
    white-space: nowrap;
    text-shadow: 0 8px 22px var(--logo-shadow);
}

/* NAVIGATION */

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.main-nav a {
    color: rgba(255,255,255,.92);
    font-size: 14px;
    line-height: 1.15;
    font-weight: 800;
    transition: .25s ease;
    text-align: center;
}

.main-nav a:hover {
    color: #baf9ff;
}

.header-btn {
    min-width: 130px;
    min-height: 50px;
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: #fff;
    font-size: 14px;
    line-height: 1.15;
    font-weight: 900;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: .25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.header-btn:hover {
    background: rgba(255,255,255,.24);
    transform: translateY(-2px);
}

/* HERO */

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #04262c;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
    animation: heroZoom 16s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(1,36,43,.84) 0%, rgba(2,74,84,.56) 42%, rgba(0,0,0,.16) 100%),
        linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.22));
}

.hero-bottom-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 190px;
    z-index: 2;
    background: linear-gradient(180deg, transparent 0%, rgba(2, 36, 43, .72) 100%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    align-items: center;
    gap: 48px;
    padding-top: 132px;
    padding-bottom: 90px;
}

.hero-copy {
    max-width: 660px;
    color: #fff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: #d8fbff;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 24px;
}

.hero-copy h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(52px, 6.6vw, 88px);
    line-height: .95;
    margin-bottom: 24px;
    text-shadow: 0 14px 40px rgba(0,0,0,.22);
}

.hero-copy h1 span {
    display: block;
}

.hero-copy h1 .accent {
    color: #baf9ff;
}

.hero-copy p {
    max-width: 625px;
    font-size: 17px;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    transition: .25s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: #053139;
    box-shadow: 0 18px 40px rgba(9,169,186,.36);
}

.btn-glass {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: #fff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.btn:hover {
    transform: translateY(-3px);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-badges span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.94);
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* DESTINATION CARDS */

.hero-visual {
    display: flex;
    justify-content: flex-end;
}

.destination-cards {
    display: flex;
    align-items: flex-end;
    gap: 18px;
    min-height: 500px;
    perspective: 1200px;
}

.destination-card {
    position: relative;
    width: 180px;
    height: 430px;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(255,255,255,.22);
    transform-style: preserve-3d;
    transition: .35s ease;
    background: rgba(255,255,255,.08);
}

.destination-card:hover {
    transform: translateY(-16px) scale(1.025);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,.18) 50%, rgba(0,0,0,.78) 100%);
}

.card-content {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 20px;
    color: #fff;
    z-index: 2;
}

.card-content small {
    display: block;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 800;
    color: rgba(255,255,255,.84);
    margin-bottom: 6px;
}

.card-content h3 {
    font-size: 24px;
    line-height: 1.08;
    font-weight: 900;
}

.card-1 {
    transform: translateY(12px);
}

.card-2 {
    transform: translateY(62px);
}

.card-3 {
    transform: translateY(-8px);
}

/* ANIMATIONS */

@keyframes heroZoom {
    from {
        transform: scale(1.03);
    }

    to {
        transform: scale(1.08);
    }
}

/* RESPONSIVE */

@media (max-width: 1200px) {
    .brand {
        min-width: 165px;
    }

    .brand-left {
        width: 66px;
        height: 44px;
    }

    .brand-lcg {
        font-size: 30px;
    }

    .brand-wave {
        width: 70px;
        height: 20px;
    }

    .brand-right strong {
        font-size: 19px;
    }

    .brand-right small {
        font-size: 11px;
    }

    .main-nav {
        gap: 22px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero-visual {
        justify-content: flex-start;
    }

    .destination-cards {
        min-height: auto;
        overflow-x: auto;
        padding-bottom: 20px;
        width: 100%;
    }

    .destination-card {
        min-width: 190px;
        width: 190px;
        height: 410px;
    }

    .card-1,
    .card-2,
    .card-3 {
        transform: none;
    }
}

@media (max-width: 900px) {
    .main-nav,
    .header-btn {
        display: none;
    }

    .header-wrap {
        justify-content: flex-start;
    }
}

@media (max-width: 820px) {
    .container {
        width: min(100% - 28px, 1240px);
    }

    .site-header {
        padding: 16px 0;
    }

    .brand {
        min-width: 155px;
        gap: 8px;
    }

    .brand-left {
        width: 60px;
        height: 40px;
    }

    .brand-lcg {
        font-size: 28px;
        letter-spacing: -2px;
    }

    .brand-wave {
        width: 64px;
        height: 19px;
    }

    .brand-right strong {
        font-size: 18px;
    }

    .brand-right small {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .hero {
        min-height: auto;
    }

    .hero-inner {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 70px;
    }

    .eyebrow {
        font-size: 11px;
        letter-spacing: 1px;
        padding: 9px 13px;
        margin-bottom: 18px;
    }

    .hero-copy h1 {
        font-size: clamp(42px, 14vw, 62px);
    }

    .hero-copy p {
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .destination-card {
        min-width: 185px;
        width: 185px;
        height: 380px;
    }

    .card-content h3 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .brand {
        min-width: 145px;
    }

    .brand-left {
        width: 56px;
    }

    .brand-lcg {
        font-size: 26px;
    }

    .brand-wave {
        width: 60px;
    }

    .brand-right strong {
        font-size: 16px;
    }

    .brand-right small {
        font-size: 9px;
    }

    .hero-copy h1 {
        font-size: 42px;
    }

    .destination-card {
        min-width: 170px;
        width: 170px;
        height: 350px;
    }
}