:root {
    --ink: #333333;
    --accent: #a20004;
    --muted: #6b6558;
    --rule: #b2a98c;
}
*, *::before, *::after { box-sizing: border-box; }
body {
    margin: 0;
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 21px;
    line-height: 1.5;
    color: var(--ink);
    background-repeat: repeat;
    background-attachment: fixed;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.site-header {
    max-width: 960px;
    margin: 0 auto;
    padding: 12px 25px 8px;
    border-bottom: 1px dashed var(--rule);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}
.site-header .brand img { display: block; }
.site-header .site-nav { font-size: 18px; padding-bottom: 6px; }

.page {
    max-width: 960px;
    margin: 0 auto;
    padding: 50px 25px 60px;
}

.hero {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 55px;
    align-items: start;
    margin-bottom: 70px;
}
.hero .cover img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid #888;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}
.hero-text h1 {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 46px;
    font-weight: 400;
    line-height: 1.05;
    margin: 0 0 26px;
}
.hero-text p { margin: 0 0 1em; }
.hero-text .buy-button { margin-top: 18px; }
.hero-text .hero-extras { margin-top: 20px; font-size: 17px; color: var(--muted); }
.buy-button {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 18px;
    letter-spacing: 0.04em;
    transition: background 0.15s ease, color 0.15s ease;
}
.buy-button:hover {
    background: var(--accent);
    color: #fff;
    text-decoration: none;
}

.section-title {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    text-align: center;
    margin: 0 0 36px;
}

.reviews { margin-bottom: 70px; }
.review-grid {
    column-count: 2;
    column-gap: 55px;
}
.review {
    font-size: 21px;
    line-height: 1.5;
    break-inside: avoid;
    margin: 0 0 32px;
}

.also-by { margin-top: 40px; }
.cover-row {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}
.cover-row a { display: block; transition: transform 0.15s ease; }
.cover-row a:hover { transform: translateY(-3px); }
.cover-row img {
    display: block;
    height: 150px;
    width: auto;
    border: 1px solid #000;
    padding: 3px;
    background: #fff;
}

footer {
    max-width: 960px;
    margin: 60px auto 0;
    padding: 24px 25px 40px;
    border-top: 1px solid var(--rule);
    text-align: center;
}

@media (max-width: 720px) {
    body { font-size: 19px; }
    .page { padding: 30px 20px 40px; }
    .hero { grid-template-columns: 1fr; gap: 32px; text-align: center; margin-bottom: 50px; }
    .hero .cover { max-width: 300px; margin: 0 auto; }
    .hero-text { text-align: justify; }
    .hero-text h1 { font-size: 34px; text-align: center; }
    .hero-text .buy-button { display: block; text-align: center; margin-left: auto; margin-right: auto; width: fit-content; }
    .review-grid { column-count: 1; }
    .review { font-size: 19px; margin-bottom: 26px; }
    .cover-row img { height: 120px; }
}
