:root {
    --hull-navy: #0f172a;
    --deck-gold: #d4af37;
    --sea-salt: #fcfaf7;
    --water-white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; cursor: none !important; }

body {
    background-color: var(--sea-salt);
    font-family: 'Outfit', sans-serif;
    color: var(--hull-navy);
    overflow-x: hidden;
}

/* ⚓ CURSOR LOCK */
#cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--deck-gold);
    border: 2px solid var(--hull-navy);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999; 
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
}

/* --- TOP BAR --- */
.top-contact-bar {
    position: absolute;
    top: 0;
    width: 100%;
    height: 45px;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 1001;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--water-white);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.top-contact-bar a { color: var(--deck-gold); text-decoration: none; }

/* --- REFINED ROUNDED BOAT NAV --- */
header {
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
    width: 94%;
    max-width: 1400px;
    z-index: 1000;
}

.boat-nav {
    background: var(--hull-navy);
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    position: relative;
    /* Creating the long boat hull shape */
    clip-path: polygon(3% 0%, 97% 0%, 100% 50%, 97% 100%, 3% 100%, 0% 50%);
    border: 1px solid var(--deck-gold);
}

/* Internal Pinstripe Outline */
.boat-nav::after {
    content: '';
    position: absolute;
    top: 6px; left: 10px; right: 10px; bottom: 6px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    pointer-events: none;
    clip-path: polygon(3% 0%, 97% 0%, 100% 50%, 97% 100%, 3% 100%, 0% 50%);
}

.nav-links { display: flex; list-style: none; gap: 40px; align-items: center; }
.nav-links a { color: var(--water-white); text-decoration: none; font-size: 12px; text-transform: uppercase; letter-spacing: 2px; }
.nav-links a:hover { color: var(--deck-gold); }

.quote-link {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    border: 1px solid var(--deck-gold);
    padding: 10px 25px;
    color: var(--deck-gold) !important;
}

/* --- HERO SECTION --- */
.hero-bg {
    height: 95vh;
    background: linear-gradient(rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.6)), 
                url('https://get.pxhere.com/photo/sea-coast-ocean-dock-sky-ship-transport-vessel-vehicle-port-industry-freight-cargo-ship-waterway-infrastructure-cargo-commercial-cranes-shipping-vessel-logistics-container-terminal-freight-transport-557146.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content { animation: boatArrival 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

@keyframes boatArrival {
    0% { transform: translateX(-150px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

/* --- COMMITMENT CARDS --- */
.info-card {
    background: white;
    padding: 25px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    text-align: center;
}

.value-img {
    width: 100%;
    height: 200px; /* Force visibility */
    object-fit: contain; /* Better for graphics like puzzle.png */
    margin-bottom: 20px;
    display: block;
}
