:root {
    --dark: #1c1c1c;
    --gold: #b08d57;
    --gray: #6f6f6f;
    --light: #f4f3f1;
    --border: #e4e2de;
    --header-h: 76px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.8;
    background: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.btn-outline {
    display: inline-block;
    padding: 13px 30px;
    border: 1px solid var(--dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.3px;
    transition: background .3s, color .3s;
}

    .btn-outline:hover {
        background: var(--dark);
        color: #fff;
    }

/* ================= HEADER ================= */
.site-header {
    position: sticky;
    top: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.header-inner {
    max-width: 1600px;
    margin: 0 auto;
    height: var(--header-h);
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    flex-shrink: 0;
}

.logo-line1 {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    letter-spacing: .3px;
}

.logo-dot {
    color: #1e5fa8;
    font-weight: 700;
}

.logo-line2 {
    font-size: 9px;
    letter-spacing: 2.5px;
    color: var(--gray);
    margin-top: 2px;
}

.nav-right-wrap {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-left: auto;
}

.main-nav > ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

    .main-nav > ul > li {
        position: relative;
    }

        .main-nav > ul > li > a {
            font-size: 13.5px;
            font-weight: 500;
            color: #333;
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 10px 0;
            white-space: nowrap;
        }
            /* larger dropdown arrows in the main nav */
            .main-nav > ul > li > a i {
                font-style: normal;
                font-size: 15px;
                line-height: 1;
                color: var(--gray);
                transform: translateY(1px);
            }

        .main-nav > ul > li:hover > a {
            color: var(--gold);
        }

            .main-nav > ul > li:hover > a i {
                color: var(--gold);
            }

.dropdown {
    position: absolute;
    top: 100%;
    left: -18px;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 14px 34px rgba(0,0,0,.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .25s ease;
    padding: 8px 0;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 9px 22px;
    font-size: 13px;
    color: var(--gray);
}

    .dropdown li a:hover {
        color: var(--gold);
        background: var(--light);
    }

.header-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

/* --- Language switch --- */
.lang-switch {
    position: relative;
}

.lang-current {
    background: none;
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 7px 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
}

    /* flag shown in the closed button */
    .lang-current img {
        width: 22px;
        height: 16px;
        object-fit: cover;
        border-radius: 2px;
        display: block;
        flex-shrink: 0;
    }

    /* larger dropdown arrow on the language button */
    .lang-current i {
        font-style: normal;
        font-size: 15px;
        line-height: 1;
        color: var(--gray);
    }

.lang-dropdown {
    position: absolute;
    top: 130%;
    right: 0;
    background: #fff;
    box-shadow: 0 12px 28px rgba(0,0,0,.14);
    display: none;
    min-width: 190px;
    padding: 8px 0;
    border-radius: 5px;
}

    .lang-dropdown.open {
        display: block;
    }

    .lang-dropdown li a {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 12px 18px;
        font-size: 14px;
        font-weight: 500;
    }

    .lang-dropdown img {
        width: 40px;
        height: 30px;
        object-fit: cover;
        border-radius: 4px;
        box-shadow: 0 1px 4px rgba(0,0,0,.3);
        display: block;
        flex-shrink: 0;
    }

    .lang-dropdown li a:hover {
        background: var(--light);
    }

.search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
}

.search-bar {
    max-height: 0;
    overflow: hidden;
    background: var(--light);
    transition: max-height .3s;
}

    .search-bar.open {
        max-height: 64px;
    }

    .search-bar input {
        width: 100%;
        max-width: 1600px;
        margin: 0 auto;
        display: block;
        padding: 16px 40px;
        border: none;
        background: transparent;
        font-size: 14px;
    }

        .search-bar input:focus {
            outline: none;
        }

.burger {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    cursor: pointer;
}

    .burger span {
        height: 2px;
        background: var(--dark);
    }

    .burger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .burger.open span:nth-child(2) {
        opacity: 0;
    }

    .burger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

/* ================= HERO SLIDER ================= */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 560px;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform .7s ease;
}

.slide {
    position: relative;
    flex: 0 0 100%;
    height: 100%;
}

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);
}

.slide-caption {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
    padding: 0 20px;
    text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

    .slide-caption h1 {
        font-size: clamp(26px, 3.6vw, 42px);
        font-weight: 400;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .slide-caption h2 {
        font-size: clamp(22px, 2.8vw, 32px);
        font-weight: 300;
        letter-spacing: 1.5px;
    }

        .slide-caption h2 strong {
            font-weight: 700;
        }

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.25);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: background .3s;
}

    .slider-arrow:hover {
        background: rgba(255,255,255,.45);
    }

    .slider-arrow.prev {
        left: 24px;
    }

    .slider-arrow.next {
        right: 24px;
    }

.slider-dots {
    position: absolute;
    bottom: 26px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 5;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .3s, transform .3s;
}

    .slider-dot.active {
        background: #fff;
        transform: scale(1.2);
    }

@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
        min-height: 420px;
    }

    .slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }
}

/* ================= SPLIT SECTIONS ================= */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 90px 40px;
}

    .split-section.reverse .split-image {
        order: 2;
    }

    .split-section.reverse .split-text {
        order: 1;
    }

.split-image img {
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.split-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 22px;
}

.split-text p {
    color: #444;
    font-size: 14.5px;
    margin-bottom: 20px;
}

    .split-text p a {
        color: var(--gold);
        border-bottom: 1px solid transparent;
    }

        .split-text p a:hover {
            border-color: var(--gold);
        }

.split-text .btn-outline {
    margin-top: 8px;
}

/* ================= QUOTE ================= */
.quote-section {
    background: var(--light);
    text-align: center;
    padding: 90px 20px;
}

    .quote-section blockquote {
        max-width: 800px;
        margin: 0 auto 18px;
        font-family: 'Playfair Display', serif;
        font-style: italic;
        font-weight: 500;
        font-size: clamp(18px, 2.2vw, 24px);
        line-height: 1.6;
    }

    .quote-section cite {
        font-size: 11px;
        letter-spacing: 1.5px;
        color: var(--gray);
        text-transform: uppercase;
        font-style: normal;
    }

/* ================= LUXURY YACHTS BANNER ================= */
.luxury-banner {
    position: relative;
    width: 100%;
    height: 55vh;
    min-height: 380px;
    overflow: hidden;
}

    .luxury-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.luxury-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

    .luxury-banner-overlay h3 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(28px, 4vw, 48px);
        font-weight: 600;
        letter-spacing: 2px;
        margin-bottom: 14px;
    }

    .luxury-banner-overlay p {
        font-size: 15px;
        font-weight: 300;
        letter-spacing: .5px;
    }

/* ================= LOGO STRIP ================= */
.logo-strip {
    background: #1a1a1a;
    padding: 55px 40px;
}

.logo-strip-track {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.strip-logo {
    color: rgba(255,255,255,.75);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 18px;
    font-family: 'Playfair Display', serif;
    opacity: .85;
}

/* ================= CONTACT BOX ================= */
.contact-box-wrap {
    display: flex;
    justify-content: center;
    padding: 90px 20px;
}

.contact-box {
    border: 1px solid var(--border);
    background: var(--light);
    text-align: center;
    padding: 44px 60px;
    max-width: 420px;
}

    .contact-box h4 {
        font-family: 'Playfair Display', serif;
        font-size: 19px;
        margin-bottom: 14px;
    }

    .contact-box p {
        color: var(--gray);
        font-size: 13.5px;
        margin-bottom: 16px;
    }

    .contact-box a {
        display: block;
        font-weight: 600;
        font-size: 13.5px;
        color: var(--dark);
        margin-bottom: 6px;
    }

        .contact-box a:hover {
            color: var(--gold);
        }

/* ================= FOOTER ================= */
.site-footer {
    background: #161616;
    color: #ccc;
    padding: 55px 40px 30px;
}

.footer-social {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 45px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding-bottom: 26px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-hashtag {
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--gold);
    font-size: 13px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

    .social-icons a {
        width: 34px;
        height: 34px;
        border: 1px solid rgba(255,255,255,.25);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        transition: .3s;
    }

        .social-icons a:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: #fff;
        }

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 45px;
}

.footer-col h4 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 16px;
    letter-spacing: .5px;
}

.footer-col a {
    display: block;
    font-size: 12.5px;
    margin-bottom: 9px;
    color: #999;
}

    .footer-col a:hover {
        color: var(--gold);
    }

.footer-partners {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 30px 0;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,.08);
    max-width: 1400px;
    margin: 0 auto;
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.partner-mark {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gold);
    color: #161616;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}

    .partner-mark.alt {
        background: #888;
    }

.partner-text {
    font-size: 12px;
    color: #ccc;
}

    .partner-text small {
        color: #777;
    }

.footer-copy {
    text-align: center;
    font-size: 11.5px;
    color: #666;
    padding-top: 22px;
    margin-top: 10px;
    border-top: 1px solid rgba(255,255,255,.06);
}

/* ================= TO TOP ================= */
.to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--dark);
    color: #fff;
    border: none;
    font-size: 17px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 900;
}

    .to-top.visible {
        opacity: 1;
        visibility: visible;
    }

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .burger {
        display: flex;
        order: 3;
    }

    .nav-right-wrap {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        transform: translateX(100%);
        transition: transform .35s ease;
        overflow-y: auto;
        padding: 20px 0;
        margin-left: 0;
        gap: 0;
        z-index: 999;
    }

        .nav-right-wrap.open {
            transform: translateX(0);
        }

    .main-nav > ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

        .main-nav > ul > li > a {
            padding: 15px 32px;
        }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        padding-left: 14px;
    }

    .has-dropdown.open .dropdown {
        display: block;
    }

    .header-right {
        padding: 15px 32px;
    }

    .split-section, .split-section.reverse {
        grid-template-columns: 1fr;
    }

        .split-section .split-image,
        .split-section.reverse .split-image {
            order: 1;
        }

        .split-section .split-text,
        .split-section.reverse .split-text {
            order: 2;
        }

    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .header-inner {
        padding: 0 20px;
    }

    .split-section {
        padding: 60px 24px;
        gap: 34px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
    }

    .contact-box {
        padding: 34px 30px;
    }

    .footer-partners {
        gap: 30px;
    }

    .luxury-banner {
        height: 45vh;
        min-height: 300px;
    }
}
