/* Substance over spectacle: minimal, readable, meaningful */

body {
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.7;
    color: #2e2e2e;
    background: #ffffff;
    max-width: 42rem;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Typography that serves the message */
h1 {
    font-size: 2rem;
    font-weight: normal;
    margin: 0 0 0.5rem 0;
    color: #1a1a1a;
}

h2 {
    font-size: 1.5rem;
    font-weight: normal;
    margin: 3rem 0 1.5rem 0;
    color: #1a1a1a;
}

h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: #2e2e2e;
}

header p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* Emphasis through meaning, not flash */
strong {
    font-weight: 600;
    color: #1a1a1a;
}

em {
    font-style: italic;
    color: #444;
}

/* Lists that breathe */
ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Sections separated by substance, not decoration */
section {
    margin-bottom: 3rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 2rem;
}

section:last-child {
    border-bottom: none;
}

/* Mobile: content first, design second */
@media (max-width: 600px) {
    body {
        padding: 1rem 0.75rem;
        font-size: 0.95rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.25rem;
    }
}

/* Print: words matter most */
@media print {
    body {
        font-size: 11pt;
        line-height: 1.6;
        max-width: none;
        margin: 0;
        padding: 0.5in;
    }
}