:root {
    --maroon: #3e0e0e;
    --brown: #7a430e;
    /* Using lighter beige for Lilly to differentiate */
    --beige: #f5f0e6; 
    --black: #1a1a1a;
    
    --font-head: 'Anton', sans-serif;
    --font-sub: 'Times New Roman', serif;
    --font-body: 'Source Sans Pro', sans-serif;
}

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

body {
    background-color: var(--beige);
    color: var(--black);
    font-family: var(--font-body);
    min-height: 100vh;
}

.magazine-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    border-left: 1px solid var(--brown);
    border-right: 1px solid var(--brown);
    min-height: 100vh;
}

.masthead {
    border-bottom: 4px solid var(--black);
    padding-bottom: 0.5rem;
    margin-bottom: 4rem;
    display: flex;
    justify-content: space-between;
    font-family: var(--font-head);
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.hero-split {
    display: flex;
    gap: 4rem;
}

.txt-col {
    flex: 1;
    padding-right: 2rem;
}

h1 {
    font-family: var(--font-head);
    font-size: 6.5rem;
    line-height: 0.85;
    color: var(--maroon);
    margin-bottom: 1rem;
}

.line {
    height: 2px;
    background: var(--brown);
    width: 100px;
    margin: 2rem 0;
}

h2 {
    font-family: var(--font-sub);
    font-style: italic;
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 3rem;
}

.lead {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--maroon);
    margin-bottom: 1rem;
}

article p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 450px;
}

.edit-btn {
    background: var(--black);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-family: var(--font-head);
    letter-spacing: 1px;
    display: inline-block;
    transition: background 0.3s;
}

.edit-btn:hover {
    background: var(--maroon);
}

.img-col {
    flex: 1;
    position: relative;
}

.img-col img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    border: 1px solid var(--black);
}

.caption {
    font-family: var(--font-head);
    font-size: 4rem;
    color: var(--brown);
    position: absolute;
    bottom: -2rem;
    left: -4rem;
    background: var(--beige);
    padding: 0 1rem;
    opacity: 0.9;
}

@media (max-width: 900px) {
    .hero-split { flex-direction: column-reverse; }
    h1 { font-size: 4rem; }
    .caption { position: static; font-size: 2rem; margin-top: 1rem; }
}
