:root {
    --midnight: #050505;
    --gold: #c5a059;
    --text: #e0e0e0;
    --dim: #777;
    --border: rgba(197, 160, 89, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--midnight);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* --- Disclaimer Bar --- */
.dev-disclaimer {
    background: #c5a05915;
    border-bottom: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.65rem;
    letter-spacing: 1px;
    position: relative;
    z-index: 1001;
}

.disclaimer-content i { margin-right: 10px; }

.close-disclaimer {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.2rem;
    cursor: pointer;
    line-height: 1;
}

/* --- Edge-to-Edge Navigation --- */
.archive-nav {
    position: sticky; /* Switched to sticky to work better with disclaimer */
    top: 0; left: 0;
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.brand-stack {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 0.85;
}
.brand-top { color: #fff; font-weight: 900; font-size: 1.1rem; letter-spacing: 1px; }
.brand-bottom { color: var(--gold); font-weight: 400; font-size: 0.65rem; letter-spacing: 4px; }

.nav-right { display: flex; align-items: center; gap: 30px; }
.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-divider { width: 1px; height: 20px; background: var(--border); }
.social-link { color: var(--gold); font-size: 1.2rem; transition: 0.3s; }
.social-link:hover { color: #fff; }

.menu-trigger { display: none; background: none; border: none; color: var(--gold); cursor: pointer; }

/* --- Split Hero Layout --- */
.hero-split {
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
}

.hero-text-side { flex: 1; padding: 0 8%; }
.location-tag { color: var(--gold); font-size: 0.65rem; font-weight: 800; letter-spacing: 5px; display: block; margin-bottom: 20px; }

.hero-text-side h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.1; margin-bottom: 25px; color: #fff; }
.serif-italic { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 400; color: var(--gold); }

.hero-text-side p { color: var(--dim); max-width: 450px; line-height: 1.6; }

.hero-cta { margin-top: 40px; }
.btn-primary {
    text-decoration: none;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 15px 35px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 3px;
    transition: 0.4s;
}
.btn-primary:hover { background: var(--gold); color: var(--midnight); }

.hero-image-side { flex: 1; height: 100%; display: flex; align-items: center; justify-content: center; padding: 60px; }
.featured-frame { width: 100%; aspect-ratio: 4/5; background: #111; overflow: hidden; }
.featured-frame img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.8); }

/* --- Footer --- */
.archive-footer {
    width: 100%;
    background: #080808;
    padding: 80px 40px 40px;
    border-top: 1px solid var(--border);
}

.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 50px; margin-bottom: 60px; }
.footer-logo { font-weight: 900; letter-spacing: 2px; color: var(--gold); font-size: 1rem; }

.footer-nav { display: flex; gap: 80px; }
.nav-group h4 { font-size: 0.6rem; letter-spacing: 2px; color: #555; text-transform: uppercase; margin-bottom: 20px; }
.nav-group a { display: block; color: var(--text); text-decoration: none; font-size: 0.8rem; margin-bottom: 12px; transition: 0.3s; }
.nav-group a:hover { color: var(--gold); }

.lp-link span { color: var(--gold); }

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.03);
    padding-top: 40px;
    font-size: 0.6rem;
    color: #444;
    letter-spacing: 2px;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1024px) {
    .hero-split { flex-direction: column; height: auto; padding-bottom: 60px; }
    .hero-image-side { width: 100%; padding: 40px 20px; }
    .hero-text-side { padding: 80px 20px 40px; text-align: center; }
    .hero-text-side p { margin: 0 auto; }
    .dev-disclaimer { padding: 10px 20px; }
}

@media (max-width: 768px) {
    .nav-links, .nav-divider { display: none; }
    .menu-trigger { display: block; }
    .archive-nav { padding: 0 20px; }
    .footer-nav { flex-direction: column; gap: 40px; }
}

/* --- 404 Error Page Styles --- */
.error-page {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.error-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.error-code {
    display: block;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(197, 160, 89, 0.1);
    line-height: 1;
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.error-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 6vw, 4rem);
    margin-bottom: 15px;
}

.serif-italic { font-style: italic; font-weight: 400; color: var(--gold); }

.error-content p {
    color: var(--dim);
    max-width: 450px;
    margin: 0 auto 40px;
    font-size: 0.95rem;
    line-height: 1.6;
}