:root {
    --cream: #F7F2E8;
    --ebony: #1A1714;
    --gilt: #C4A35A;
    --rosewood: #6B3A32;
    --staff: #D8D0C4;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, 'Iowan Old Style', 'Times New Roman', serif;
    background-color: var(--cream);
    color: var(--ebony);
}

::selection {
    background: var(--gilt);
    color: var(--ebony);
}

/* Masthead */
.masthead {
    text-align: center;
    padding: 2.25rem 1rem 1.1rem;
}

.masthead-title {
    display: inline-block;
    font-size: clamp(2.4rem, 6vw, 4.25rem);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    line-height: 1;
    color: var(--ebony);
    text-decoration: none;
}

.masthead-title:hover {
    color: var(--rosewood);
}

.masthead-rule {
    width: 3.5rem;
    height: 1px;
    background: var(--gilt);
    margin: 0.85rem auto;
}

.masthead-issue {
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--rosewood);
    margin: 0;
}

.site-nav {
    border-top: 1px solid var(--staff);
    border-bottom: 1px solid var(--staff);
}

.site-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.35rem 2rem;
    padding: 0.75rem 1rem;
    margin: 0;
}

.site-nav a {
    font-size: 0.7rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--ebony);
    text-decoration: none;
    padding: 0.25rem 0;
}

.site-nav a:hover {
    color: var(--rosewood);
}

/* Cover */
.cover-image {
    width: 100%;
    height: 74vh;
    min-height: 26rem;
    object-fit: cover;
    display: block;
    background-color: var(--staff);
}

.cover-caption {
    max-width: 32rem;
    margin: 0 auto;
    padding: 1.9rem 1.25rem 0;
}

/* Editorial body */
.editorial-body {
    font-size: 1.075rem;
    line-height: 1.85;
    color: rgba(26, 23, 20, 0.85);
}

.editorial-body p {
    margin: 0 0 1.4rem;
}

.editorial-body p:first-of-type::first-letter {
    font-size: 3.1rem;
    float: left;
    line-height: 0.85;
    padding-right: 0.6rem;
    color: var(--rosewood);
    font-style: italic;
}

/* Review index */
.review-row {
    transition: background-color 0.15s ease;
}

.review-row:hover {
    background-color: rgba(216, 208, 196, 0.35);
}

/* Footer */
.footer-link {
    transition: color 0.15s ease;
}

.footer-link:hover {
    color: var(--gilt);
}

@media (max-width: 640px) {
    .cover-image {
        height: 58vh;
    }
}
