:root {
    --brand-red: #fe0000;
    --paper: #eeebe5;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--brand-red);
    color: var(--paper);
    height: 100vh;
    width: 100vw;
    /* RESTORED: Standard design font stack */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    padding: 15vh 8vw;
}

/* TYPOGRAPHY */
.hero h1 {
    /* ONLY the homepage H1 is now Serif */
    font-family: serif; 
    font-size: clamp(4.9rem, 27.5vw, 17.7rem);
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 0.9;
    margin-left: -0.02em;
    margin-top: 0;
}

h2 {
    font-family: serif;
    font-size: clamp(5rem, 28vw, 18rem);
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 0.75;
    text-transform: lowercase;
    margin-left: -0.02em;
    margin-top: -0.05em;
}

/* Rest of your CSS remains unchanged... */

/* THE ALIGNED FOOTER (Let's work together) */
footer {
    position: absolute;
    /* Matches the body padding-top exactly */
    bottom: 5vh;
    /* Matches the body padding-right */
    left: 8vw;
}

.work-link {
    color: var(--paper);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 400;
 
    letter-spacing: 0.1em;
    /* Critical: line-height 1 ensures the top of the 'L' is at exactly 15vh */
    line-height: 1;
    transition: opacity 0.3s;
}

/* OVERLAY MENU */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    /* Matches body padding for zero-jump transition */
    padding: 15vh 8vw;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 999;
}

.overlay.active {
    transform: translateX(0);
}

.overlay-content a {
    display: block;
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    font-weight: 400;
    color: #000000;
    text-decoration: none;
    letter-spacing: -0.02em;
    /* line-height 1 ensures 'About' sits on the same 15vh line */
    line-height: 1;
    margin-bottom: 10px;
    transition: opacity 0.3s;
}

/* MENU TOGGLE POSITION */
.menu-nav {
    position: fixed;
    /* Sitting above the main strike-line */
    top: 5vh;
    left: 8vw;
    z-index: 1000;
}

.menu-toggle {
    width: 25px;
    height: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--paper);
}
