:root {
    --bg: #f7f3eb;
    --text: #1f2937;
    --muted: #6b7280;
    --accent: #8b5e3c;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
}

.page {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

h1 {
    margin: 0 0 10px;
    font-size: 2.2rem;
    color: var(--accent);
}

.lead {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 1.05rem;
}

.hero-image {
    width: 100%;
    max-height: 420px;
    object-fit: contain;
    border-radius: 18px;
    margin-bottom: 20px;
}

p {
    margin: 0 0 14px;
}

.image-credit {
    margin-top: 24px;
    padding: 8px 0;
    color: var(--muted);
    font-size: 0.9rem;
    font-style: italic;
    border-top: 1px solid #e5d8c8;
}

.to-top {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 14px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 999px;
    font-size: 0.95rem;
}
