:root {
    --ink: #1a1612;
    --paper: #faf7f2;
    --accent: #c4501a;
    --accent-light: #f5e6dc;
    --muted: #8a8078;
    --border: #e5ded4;
    --card-bg: #ffffff;
    --badge-bg: #1a1612;
    --badge-text: #faf7f2;
    --star: #d4940a;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.7;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
}

/* ── NAV BAR ── */
.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    border-bottom: 1px solid var(--border);
    background: var(--paper);
    position: sticky;
    top: 0;
    z-index: 100;
}
.site-nav .logo {
    font-family: 'Instrument Serif', serif;
    font-size: 22px;
    text-decoration: none;
    color: var(--ink);
}
.site-nav .logo em { color: var(--accent); font-style: italic; }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a {
    text-decoration: none;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--ink); }

/* ── HEADER ── */
.site-header {
    text-align: center;
    padding: 60px 24px 40px;
    border-bottom: 1px solid var(--border);
}
.site-header .tag {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
}
.site-header h1 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.1;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto 20px;
}
.site-header h1 em { color: var(--accent); font-style: italic; }
.site-header .subtitle {
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto 24px;
    font-size: 16px;
}
.byline { font-size: 13px; color: var(--muted); }
.byline strong { color: var(--ink); }

/* ── TOC ── */
.toc { max-width: 740px; margin: 0 auto; padding: 32px 24px; }
.toc h2 { font-family: 'Instrument Serif', serif; font-size: 22px; font-weight: 400; margin-bottom: 16px; }
.toc ol { list-style: none; counter-reset: toc-counter; columns: 2; column-gap: 32px; }
.toc li { counter-increment: toc-counter; margin-bottom: 8px; break-inside: avoid; }
.toc li a {
    text-decoration: none; color: var(--ink); font-size: 15px;
    display: flex; align-items: baseline; gap: 8px; transition: color 0.2s;
}
.toc li a::before { content: counter(toc-counter, decimal-leading-zero); font-size: 12px; color: var(--accent); font-weight: 600; flex-shrink: 0; }
.toc li a:hover { color: var(--accent); }

/* ── INTRO ── */
.intro { max-width: 680px; margin: 0 auto; padding: 20px 24px 40px; }
.intro p { margin-bottom: 16px; }
.intro p:first-child::first-letter {
    font-family: 'Instrument Serif', serif; font-size: 56px; float: left;
    line-height: 0.8; margin-right: 8px; margin-top: 6px; color: var(--accent);
}

/* ── PRODUCTS ── */
.products { max-width: 800px; margin: 0 auto; padding: 0 24px 60px; }
.product-card {
    background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px;
    padding: 40px 36px; margin-bottom: 36px; position: relative; transition: box-shadow 0.3s;
}
.product-card:hover { box-shadow: 0 8px 40px rgba(26,22,18,0.07); }
.product-card.editors-pick { border-color: var(--accent); border-width: 2px; }
.product-card.editors-pick::before {
    content: "EDITOR'S PICK"; position: absolute; top: -11px; left: 32px;
    background: var(--accent); color: white; font-size: 10px; letter-spacing: 2px;
    padding: 3px 12px; border-radius: 4px; font-weight: 600;
}
.product-number { font-family: 'Instrument Serif', serif; font-size: 48px; color: var(--border); line-height: 1; margin-bottom: 8px; }
.product-card h3 { font-family: 'Instrument Serif', serif; font-size: 26px; font-weight: 400; margin-bottom: 4px; line-height: 1.25; }
.product-meta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin: 10px 0 18px; }
.price-tag { background: var(--badge-bg); color: var(--badge-text); padding: 4px 14px; border-radius: 6px; font-size: 14px; font-weight: 600; }
.stars { color: var(--star); font-size: 14px; letter-spacing: 1px; }
.rating-text { font-size: 13px; color: var(--muted); }
.product-card p { margin-bottom: 14px; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; font-size: 14px; }
.pros h4, .cons h4 { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; font-weight: 600; }
.pros h4 { color: #2d7a3a; }
.cons h4 { color: var(--accent); }
.pros ul, .cons ul { list-style: none; padding: 0; }
.pros li::before { content: "+  "; color: #2d7a3a; font-weight: 700; }
.cons li::before { content: "-  "; color: var(--accent); font-weight: 700; }
.pros li, .cons li { margin-bottom: 4px; line-height: 1.5; }
.cta-button {
    display: inline-block; background: var(--accent); color: white; text-decoration: none;
    padding: 14px 32px; border-radius: 8px; font-size: 15px; font-weight: 600;
    letter-spacing: 0.5px; transition: background 0.2s, transform 0.15s; margin-top: 8px;
}
.cta-button:hover { background: #a8421a; transform: translateY(-1px); }

/* ── GUIDE / PROSE ── */
.guide { max-width: 680px; margin: 0 auto; padding: 40px 24px 60px; border-top: 1px solid var(--border); }
.guide h2 { font-family: 'Instrument Serif', serif; font-size: 32px; font-weight: 400; margin-bottom: 20px; }
.guide h3 { font-family: 'Instrument Serif', serif; font-size: 22px; font-weight: 400; margin: 28px 0 10px; }
.guide p { margin-bottom: 14px; }

/* ── FAQ ── */
.faq { max-width: 680px; margin: 0 auto; padding: 0 24px 60px; }
.faq h2 { font-family: 'Instrument Serif', serif; font-size: 32px; font-weight: 400; margin-bottom: 24px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-item h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.faq-item p { color: var(--muted); font-size: 15px; }

/* ── ABOUT PAGE ── */
.about-content { max-width: 680px; margin: 0 auto; padding: 40px 24px 60px; }
.about-content h2 { font-family: 'Instrument Serif', serif; font-size: 32px; font-weight: 400; margin: 32px 0 16px; }
.about-content h2:first-child { margin-top: 0; }
.about-content p { margin-bottom: 16px; }

/* ── ARTICLE GRID (Homepage) ── */
.article-grid {
    max-width: 900px; margin: 40px auto; padding: 0 24px;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px;
}
.article-card {
    background: var(--card-bg); border: 1px solid var(--border); border-radius: 10px;
    padding: 28px 24px; text-decoration: none; color: var(--ink); transition: box-shadow 0.3s, transform 0.2s;
}
.article-card:hover { box-shadow: 0 6px 30px rgba(26,22,18,0.08); transform: translateY(-2px); }
.article-card .card-tag { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.article-card h3 { font-family: 'Instrument Serif', serif; font-size: 22px; font-weight: 400; margin-bottom: 8px; line-height: 1.3; }
.article-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── DISCLOSURE + FOOTER ── */
.disclosure {
    max-width: 680px; margin: 0 auto; padding: 32px 24px;
    border-top: 1px solid var(--border); font-size: 13px; color: var(--muted); line-height: 1.6;
}
footer {
    text-align: center; padding: 32px 24px; font-size: 13px;
    color: var(--muted); border-top: 1px solid var(--border);
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
    .product-card { padding: 28px 22px; }
    .pros-cons { grid-template-columns: 1fr; }
    .toc ol { columns: 1; }
    .site-header { padding: 40px 20px 30px; }
    .nav-links { display: none; position: absolute; top: 56px; left: 0; right: 0; background: var(--paper); flex-direction: column; padding: 16px 32px; border-bottom: 1px solid var(--border); gap: 12px; }
    .nav-links.open { display: flex; }
    .nav-toggle { display: block; }
    .site-nav { padding: 14px 20px; }
}
