/* GLOBAL ASSET STACK */
body {
    background-color: #000000;
    color: #E5E5E5;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden; 
}

/* THE MASTER WRAPPER */
.master-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px; 
}

/* 1. THE LOGO */
.logo-container {
    display: block;
    margin: 60px auto 40px auto; 
    width: 350px; 
    position: relative;
    z-index: 10;
}

.brand-logo {
    width: 100%;
    display: block;
    mix-blend-mode: screen;
    filter: grayscale(100%) contrast(200%);
}

/* 2. THE CONTAINER */
.hero-container {
    position: relative;
    z-index: 1; 
    display: inline-block; 
    line-height: 0;
    width: 100%;
    background-color: #000;
}

.hero-image {
    width: 100%;
    height: auto;
    max-height: 70vh; 
    display: block;
    border: none;
}

/* 3. THE TAGLINE */
.movie-tagline {
    position: absolute;
    bottom: 15px;
    right: 15px; 
    text-align: left; 
    font-family: 'Courier New', monospace;
    font-size: clamp(5px, 0.9vw, 8px);
    color: #E5E5E5;
    line-height: 1.3;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    pointer-events: none;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.9);
}

/* C. THE TITLE BLOCK */
.title-block {
    text-align: center;
    width: 100%;
    margin-top: 40px; 
    margin-bottom: 80px;
}

.artist-title {
    margin-top: 30px; 
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    letter-spacing: 0.6rem;
    color: #E5E5E5;
    text-transform: uppercase;
    font-size: clamp(1rem, 4vw, 1.5rem); 
}

/* --- PREMIERE 2026 (The Long Top Line) --- */
.premier-text {
    margin-top: 0.2px;
    font-family: 'Courier New', monospace;
    color: #777;
    font-size: 15px; 
    letter-spacing: 10px;
    text-transform: uppercase;
    font-weight: 400;
    display: inline-block; 
    
    /* 🟢 TOP LINE: Wider (450px) */
    width: 450px; 
    border-top: 1px solid #444; 
    padding-top: 10px; 
    text-align: center;
    margin-bottom: 80px;
}

/* --- EMAIL SECTION (The Shorter Bottom Line) --- */
.email-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 120px;
    width: 100%;
}

.email-container form {
    display: flex;
    align-items: center;
    position: relative; /* Allows button to sit to the right */
}

.email-container input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #666; 
    color: #FFFFFF; 
    font-family: 'Courier New', monospace;
    padding: 10px 0;
    
    /* 🟢 BOTTOM LINE: Shorter (300px) for that funnel effect */
    width: 300px; 
    text-align: left; 
    outline: none;
    font-size: 15px;
    letter-spacing: 2px;
}

.email-container button {
    background: transparent;
    border: none;
    color: #BBB; 
    font-family: 'Courier New', monospace;
    font-size: 13px;
    cursor: pointer;
    
    /* Floating to the right so it doesn't break the center line */
    position: absolute;
    right: -85px; 
    white-space: nowrap;
    transition: color 0.3s ease;
}

.email-container button:hover {
    color: #ffffff;
}

/* --- THE MASTER FOOTER --- */
.site-footer {
    width: 100%;
    margin-top: 150px; 
    padding: 60px 0;
    text-align: center; 
    font-family: 'Bodoni Moda', serif; 
    font-size: 14px;
    color: #ccc; 
    letter-spacing: 0.5rem;
    text-transform: uppercase;
    
    border-top: 1px solid;
    border-image: linear-gradient(to right, transparent, #333, transparent) 1;
}

/* --- THE RABBIT HOLE (Extracted Styles) --- */
.deep-archive-container {
    margin-top: 18vh; 
    padding: 100px 20px; 
    border-top: 1px solid #222; 
    background-color: #000;
    width: 100%;
}

.archive-header-wrapper {
    text-align: center; 
    margin-bottom: 50px;
}

.archive-header-text {
    font-family: 'Courier New', Courier, monospace; 
    color: #AAA; 
    font-size: 20px; 
    letter-spacing: 2px;
}

.evidence-grid {
    display: flex; 
    justify-content: center; 
    gap: 40px; 
    flex-wrap: wrap; 
    max-width: 900px; 
    margin: 0 auto;
}

.evidence-card {
    flex: 1; 
    min-width: 300px; 
    border: 1px solid #333; 
    padding: 20px;
}

.evidence-image {
    width: 100%; 
    aspect-ratio: 3/4; /* Locks both images to the exact same portrait height */
    object-fit: cover; /* Prevents stretching if the original photo is a different size */
    filter: grayscale(100%) contrast(120%); 
    opacity: 0.8; 
    margin-bottom: 15px;
    display: block;
}

.evidence-title {
    font-family: 'Courier New', Courier, monospace; 
    color: #ccc; 
    font-size: 14px; 
    margin-bottom: 10px; 
    border-bottom: 1px solid #333; 
    padding-bottom: 5px;
}

.evidence-text {
    font-family: 'Courier New', Courier, monospace; 
    color: #777; 
    font-size: 11px; 
    line-height: 1.5;
}