* {
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start; 
    min-height: 100vh;
    margin: 0;
    text-align: center;
}

main {
    width: 100%;
    max-width: 600px;
    padding: 15vh 20px 40px 20px;
}

h1 {
    display: inline-block;
    width: auto;
    font-size: clamp(2.5rem, 10vw, 5rem); 
    letter-spacing: 0.15em;      
    text-transform: uppercase;
    font-weight: 800;          
    margin-bottom: 30px;       
    line-height: 1.1;          
}

/* --- Director Line --- */
h1 .subtitle {
    display: block;
    width: 100%;
    
    /* Reduced font-size slightly from the previous version */
    font-size: clamp(0.7rem, 1.8vw, 1.05rem); 
    
    color: #a0a0a0; 
    font-weight: bold;
    
    /* Narrowed the letter-spacing for a cleaner, tighter look */
    letter-spacing: 0.22em; 
    
    /* Match padding-left to the letter-spacing to keep it centered */
    padding-left: 0.22em; 
    
    margin-top: 15px;
    margin-bottom: clamp(60px, 15vh, 160px); 
    white-space: nowrap;
}

.status {
    font-size: 0.9rem;
    letter-spacing: 1px;
    opacity: 0.6;
    margin-bottom: 40px;
}

.button-link {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #444;
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 60px;
}

.divider {
    border: 0;
    border-top: 1px solid #222;
    margin: 40px 0;
    width: 100%;
}

.contact-label {
    /* Keeps the vertical positioning we established */
    margin-top: clamp(60px, 12vh, 120px); 
    margin-bottom: 40px;

    /* Matches the .status style exactly */
    font-size: 0.9rem;       /* */
    letter-spacing: 1px;    /* */
    opacity: 0.6;           /* */
    text-transform: none;   /* Ensures it stays lowercase as requested */
    font-weight: normal;
}

input, textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 25px;    
    background: #111;
    border: 1px solid #333;
    color: #fff;
    font-family: inherit;
}

button[type="submit"] {
    margin-top: 40px;
    padding: 12px 40px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
}

@media (max-width: 480px) {
    main { padding-top: 10vh; }
    h1 { letter-spacing: 0.1em; }
    h1 .subtitle { 
        letter-spacing: 0.18em; 
        padding-left: 0.18em;
    }
} 