:root {
    --paper: #f8f5ec;
    --ink: #2c2416;
    --faded: #6b5d4d;
    --rule: #d4cdc0;
    --accent: #8b3a3a;
}

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

body {
    font-family: 'Source Sans 3', sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--rule);
}

h1, h1 a {
    color: var(--ink);
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.75rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
    text-decoration: none;
}

p {
    margin-bottom: 2em;
}

.tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--faded);
    font-size: 1.1rem;
}

.about {
    margin-bottom: 3rem;
    color: var(--faded);
    font-size: 0.95rem;
}

.about a {
    color: var(--accent);
    text-decoration: none;
}

.about a:hover { text-decoration: underline; }

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--faded);
    margin-bottom: 1.5rem;
}

.book {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--rule);
}

.book:last-child { border-bottom: none; }

.book-title, .book-title a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
    color: var(--ink);
    text-decoration: none;
}

.book-author {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--faded);
    margin-bottom: 0.75rem;
}

.book-meta {
    font-size: 0.85rem;
    color: var(--faded);
    margin-bottom: 1rem;
}

.book-description {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.book-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.book-links a {
    font-size: 0.9rem;
    color: var(--accent);
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--accent);
    transition: all 0.2s ease;
}

.book-links a:hover {
    background: var(--accent);
    color: var(--paper);
}

footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--rule);
    text-align: center;
    font-size: 0.85rem;
    color: var(--faded);
}

footer a { color: var(--faded); }

.ornament {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--rule);
    margin: 1rem 0;
}