/* ==========================================================================
   BEYOND ME - MASTER "GALLERY WHITE" STYLESHEET
   ========================================================================== */

:root {
    --bg-white: #ffffff;
    --text-navy: #152441;
    --beyond-gold: #C5A059;
    --text-muted: #555555;
    --border-light: #eeeeee;
}

body {
    background-color: var(--bg-white);
    color: var(--text-navy);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* --- NAVIGATION & MOBILE MENU --- */
/* --- TIGHTENED BRANDED MASTHEAD --- */
header {
    padding: 1.5rem 2rem; /* Reduced from 2.5rem to pull the logo closer to the top */
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px; 
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.logo-img {
    height: 130px; 
    width: auto;
    min-width: 150px;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    color: var(--text-navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
    white-space: nowrap;
}

nav a:hover { color: var(--beyond-gold); }

.vault-btn {
    background: var(--text-navy);
    color: white !important;
    padding: 10px 20px;
    border-radius: 4px;
}

/* Hamburger Icon */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background-color: var(--text-navy);
    transition: 0.3s;
}

/* --- TIGHTENED HERO SECTION --- */
.hero { 
    min-height: 60vh; /* Reduced from 75vh to pull content upward */
    display: flex; 
    flex-direction: column; 
    /* Changed from 'center' to 'flex-start' to anchor content higher up */
    justify-content: flex-start; 
    align-items: center; 
    text-align: center; 
    padding: 20px 20px 80px; /* Minimal top padding (20px) to close the gap */
    background-color: var(--bg-white);
}
.hero h1 {
    margin-top: 20px; /* Fine-tune the exact distance from the header here */
}
h1 { 
    font-size: clamp(2.5rem, 8vw, 5rem); 
    margin: 0; 
    letter-spacing: -2px; 
    font-weight: 800; 
    line-height: 1.1;
}

.cta-btn { 
    display: inline-block;
    padding: 18px 45px; 
    background: var(--beyond-gold); 
    color: white !important; 
    text-decoration: none; 
    font-weight: bold; 
    text-transform: uppercase; 
    letter-spacing: 2px;
    transition: 0.3s; 
}

.cta-btn:hover { background: var(--text-navy); transform: translateY(-2px); }

/* --- FOOTER --- */
footer {
    padding: 4rem 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: #f9f9f9;
}

/* --- THE CLEAN MEDIA OVERWRITE --- */
@media (max-width: 768px) {
    .menu-toggle { 
        display: flex; 
    }
    
    .logo-img {
        height: 80px; /* Strong presence on iPhone without taking over the screen */
    }

    header {
        padding: 1rem 1.5rem;
    }

    nav {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 80%;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    nav.active { 
        display: flex; 
    }

    nav a { 
        font-size: 1.2rem; 
        margin: 15px 0; 
    }
}