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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', -apple-system, sans-serif;
    background: #faf8f5;
    color: #3a3530;
    line-height: 1.8;
}

/* Nav */

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 680px;
    margin: 0 auto;
    padding: 24px 24px 0;
}

.logo {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 15px;
    font-weight: 700;
    color: #3a3530;
    text-decoration: none;
    letter-spacing: -0.3px;
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-tag {
    font-size: 12px;
    font-weight: 600;
    color: #8a7d6d;
    background: #f0ebe4;
    padding: 4px 10px;
    border-radius: 4px;
}

/* Article */

main {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
}

article {
    padding: 48px 0 64px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.author {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #3a3530;
}

.date {
    display: block;
    font-size: 13px;
    color: #a09585;
}

h1 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: clamp(26px, 4.5vw, 36px);
    font-weight: 700;
    color: #1a1714;
    line-height: 1.3;
    margin-bottom: 28px;
    letter-spacing: -0.3px;
}

.lede {
    font-size: 18px;
    color: #4a4035;
    line-height: 1.9;
}

article p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #4a4035;
}

article p em {
    font-style: italic;
}

article p strong {
    font-weight: 600;
    color: #1a1714;
}

article a {
    color: #b5621a;
    text-decoration: underline;
    text-decoration-color: rgba(181, 98, 26, 0.3);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.2s;
}

article a:hover {
    text-decoration-color: #b5621a;
}

hr {
    border: none;
    border-top: 1px solid #e8e2da;
    margin: 40px 0;
}

/* Recommendations */

.rec {
    padding: 0;
}

.rec h2 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a1714;
    margin-bottom: 16px;
}

.rec-top {
    position: relative;
}

.rec-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b5621a;
    background: rgba(181, 98, 26, 0.08);
    padding: 5px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
}

/* Detail grid */

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #e8e2da;
    border: 1px solid #e8e2da;
    border-radius: 8px;
    overflow: hidden;
    margin: 24px 0;
}

.detail {
    background: #faf8f5;
    padding: 14px 18px;
}

.detail-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #a09585;
    margin-bottom: 4px;
}

.detail-value {
    font-size: 14px;
    color: #3a3530;
    font-weight: 500;
}

/* Verdict */

.verdict {
    background: #f4f0ea;
    border-left: 3px solid #c9b99a;
    padding: 16px 20px;
    border-radius: 0 6px 6px 0;
    margin: 20px 0;
}

.verdict p {
    font-size: 15px;
    margin: 0;
    color: #5a5045;
}

/* Rec link */

.rec-link {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: #b5621a;
    text-decoration: none;
    padding: 10px 20px;
    border: 1.5px solid #b5621a;
    border-radius: 8px;
    margin-top: 8px;
    transition: all 0.2s ease;
}

.rec-link:hover {
    background: #b5621a;
    color: #fff;
}

/* Closing */

.closing h2 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a1714;
    margin-bottom: 16px;
}

.cta-line {
    margin-top: 24px;
    font-weight: 600;
}

/* Footer */

footer {
    text-align: center;
    padding: 32px 24px;
    border-top: 1px solid #e8e2da;
}

footer p {
    font-size: 13px;
    color: #b5a895;
}

/* Responsive */

@media (max-width: 600px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    article {
        padding: 36px 0 48px;
    }
}
