:root {
    --paper: #e7efe6;
    --ink: #1c2b24;
    --green: #1f3d32;
    --sand: #8a7044;
    --line: #c9d5c8;
}
* { box-sizing: border-box; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Avenir Next", "Segoe UI", "Gill Sans", sans-serif;
    font-size: 1.05rem;
    line-height: 1.55;
}
a { color: var(--green); }
img { max-width: 100%; height: auto; display: block; margin-top: 1.5rem; }
.sheet {
    display: grid;
    grid-template-columns: minmax(11rem, 16rem) 1fr;
    min-height: 100vh;
}
aside {
    padding: 1.4rem 1.2rem;
    background: #f4f7f2;
    border-right: 1px solid var(--line);
}
.mark { margin: 0; font-weight: 700; letter-spacing: 0.02em; line-height: 1.15; }
.mark a { color: var(--green); text-decoration: none; }
.city { margin: 0.8rem 0 1rem; color: var(--sand); letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.78rem; }
nav { display: flex; flex-direction: column; gap: 0.35rem; }
nav a { color: var(--ink); text-decoration: none; }
nav a:hover { color: var(--green); }
.copy { padding: 2rem 6vw 2.5rem; max-width: 42rem; }
.label { margin: 0; color: var(--sand); letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.78rem; }
h1 { font-weight: 600; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.08; margin: 0.4rem 0 1rem; }
footer { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid var(--line); font-size: 0.95rem; }
footer p { margin: 0.15rem 0; }
@media (max-width: 760px) {
    .sheet { grid-template-columns: 1fr; }
    aside { border-right: 0; border-bottom: 1px solid var(--line); }
    nav { flex-direction: row; gap: 1rem; }
    img { max-width: 8rem; margin-top: 1rem; }
}
