:root {
    --cream: #FFFAF0;
    --tan: #FAEDD2;
    --black: #17171C;
    --red: #A12314;
}

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

body {
    font-family: 'Roslindale Text', Georgia, serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--black);
    background-color: var(--cream);
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem;
    font-feature-settings: 'liga' 1, 'onum' 1;
    text-rendering: optimizeLegibility;

}

header {
    margin-bottom: 4rem;
}

h1 {
    font-family: 'Roslindale Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 0.5rem;
}

.tagline {
    font-family: 'Roslindale Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    font-style: normal;
    color: var(--red);
    letter-spacing: 0.03em;
}

.bio {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.bio-image img {
    width: 100%;
    height: auto;
    display: block;
}

.credit {
    font-family: 'Roslindale Display', Georgia, serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--black);
    margin-top: 0.5rem;
    text-align: right;
    letter-spacing: 0.03em;
}

.credit a {
    color: var(--red);
    text-decoration: none;
    font-variant: normal;
}

.bio-text p {
    margin-bottom: 1rem;
}

.bio-text p:last-child {
    margin-bottom: 0;
}

.bio-text a {
    color: var(--red);
    text-decoration: none;
    font-variant: normal;
}

.bio-text a:hover {
    text-decoration: none;
}

footer {
    padding-top: 2rem;
    border-top: 1px solid var(--black);
    display: flex;
    gap: 2rem;
    justify-content: center;
    letter-spacing: 0.09em;
}

footer a {
    font-family: 'Roslindale Display', Georgia, serif;
    color: var(--red);
    text-decoration: none;
    font-variant: small-caps;
}

footer a:hover {
    text-decoration: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    body {
        padding: 2rem 1.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .bio {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .bio-image {
        max-width: 200px;
        margin: 0 auto;
    }
    
    footer {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}