*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --teal: #1B4F4A; --teal-light: #2A6B64; --coral: #E8725A;
      --sage: #8AAF9F; --cream: #F7F4EF; --white: #FFFFFF;
      --ink: #2C2C2C; --ink-muted: #6B6B6B; --rule: #D8D3CB;
      --gold: #C9A84C; --gold-light: #F0D98A;
    }
    body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--ink); font-size: 16px; line-height: 1.6; }

    /* NAV */
    nav { background: var(--teal); padding: 0 5vw; display: flex; align-items: center; justify-content: space-between; height: 60px; position: sticky; top: 0; z-index: 100; }
    .nav-logo { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--cream); text-decoration: none; }
    .nav-logo span { color: var(--coral); }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage); text-decoration: none; transition: color 0.2s; }
    .nav-links a:hover { color: var(--cream); }

    /* BREADCRUMB */
    .breadcrumb { padding: 14px 5vw; font-size: 0.75rem; color: var(--ink-muted); display: flex; gap: 0.5rem; align-items: center; border-bottom: 1px solid var(--rule); background: var(--white); }
    .breadcrumb a { color: var(--teal); text-decoration: none; }
    .breadcrumb a:hover { text-decoration: underline; }
    .breadcrumb-sep { color: var(--rule); }

    /* ARTICLE LAYOUT */
    .article-wrap { max-width: 1100px; margin: 0 auto; padding: 48px 5vw; display: grid; grid-template-columns: 1fr 340px; gap: 4rem; align-items: start; }

    /* MAIN CONTENT */
    .article-main {}

    .post-cat { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral); margin-bottom: 0.8rem; display: block; }

    .post-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.15; color: var(--ink); margin-bottom: 1.2rem; }

    .post-subtitle { font-size: 1.1rem; line-height: 1.7; color: var(--ink-muted); margin-bottom: 1.8rem; font-style: italic; }

    /* Byline */
    .byline { display: flex; align-items: center; gap: 1rem; padding: 1.2rem 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); margin-bottom: 2rem; }
    .byline-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--teal); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--white); flex-shrink: 0; overflow: hidden; }
    .byline-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .byline-name { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
    .byline-name a { color: var(--teal); text-decoration: none; }
    .byline-name a:hover { text-decoration: underline; }
    .byline-meta { font-size: 0.75rem; color: var(--ink-muted); margin-top: 2px; }
    .byline-badge { margin-left: auto; background: var(--teal); color: var(--cream); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; flex-shrink: 0; }

    /* Hero image */
    .post-hero { width: 100%; aspect-ratio: 16/9; background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%); border-radius: 8px; margin-bottom: 2.2rem; display: flex; align-items: center; justify-content: center; font-size: 5rem; }

    /* RATING PANEL */
    .rating-panel { background: var(--white); border: 1px solid var(--rule); border-radius: 8px; padding: 1.8rem; margin-bottom: 2.2rem; }
    .rating-panel-title { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 1.2rem; }
    .rating-rows { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 1.4rem; }
    .rating-row { display: flex; align-items: center; gap: 1rem; }
    .rating-label { font-size: 0.8rem; font-weight: 500; color: var(--ink); width: 80px; flex-shrink: 0; }
    .rating-bar-track { flex: 1; height: 6px; background: var(--cream); border-radius: 3px; overflow: hidden; }
    .rating-bar-fill { height: 100%; border-radius: 3px; background: var(--teal); transition: width 1s ease; }
    .rating-score { font-size: 0.8rem; font-weight: 600; color: var(--ink); width: 28px; text-align: right; flex-shrink: 0; }
    .rating-overall { border-top: 1px solid var(--rule); padding-top: 1.2rem; display: flex; align-items: center; justify-content: space-between; }
    .rating-overall-label { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
    .rating-stars { display: flex; gap: 3px; }
    .star { font-size: 1.1rem; color: var(--gold); }
    .star.empty { color: var(--rule); }
    .rating-number { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--teal); margin-left: 0.8rem; }

    /* ARTICLE BODY */
    .article-body { font-size: 1rem; line-height: 1.8; color: var(--ink); }
    .article-body p { margin-bottom: 1.4rem; }
    .article-body h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--ink); margin: 2.2rem 0 0.8rem; }
    .article-body h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--ink); margin: 1.8rem 0 0.6rem; }
    .article-body strong { font-weight: 600; color: var(--ink); }
    .article-body em { font-style: italic; }
    .article-body ul { margin: 0.8rem 0 1.4rem 1.4rem; display: flex; flex-direction: column; gap: 0.4rem; }
    .article-body ul li { font-size: 0.95rem; line-height: 1.65; }

    /* Pull quote */
    .pull-quote { border-left: 3px solid var(--coral); padding: 0.4rem 1.6rem; margin: 2rem 0; }
    .pull-quote p { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-style: italic; line-height: 1.65; color: var(--ink); margin: 0; }

    /* Verdict box */
    .verdict-box { background: var(--teal); color: var(--cream); border-radius: 8px; padding: 2rem; margin: 2.5rem 0; }
    .verdict-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage); margin-bottom: 0.8rem; }
    .verdict-text { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-style: italic; line-height: 1.65; color: var(--cream); }
    .verdict-pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.5rem; }
    .verdict-col h4 { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage); margin-bottom: 0.6rem; }
    .verdict-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; padding: 0; }
    .verdict-col ul li { font-size: 0.85rem; color: rgba(255,255,255,0.8); display: flex; gap: 0.5rem; align-items: flex-start; line-height: 1.4; }
    .verdict-col ul li::before { content: '✓'; color: var(--sage); font-size: 0.8rem; margin-top: 1px; flex-shrink: 0; }
    .verdict-col.cons ul li::before { content: '✗'; color: var(--coral); }

    /* SIDEBAR */
    .article-sidebar { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 1.5rem; }

    /* Quick facts */
    .sidebar-panel { background: var(--white); border: 1px solid var(--rule); border-radius: 8px; padding: 1.6rem; }
    .sidebar-panel-title { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 1.2rem; padding-bottom: 0.8rem; border-bottom: 1px solid var(--rule); }
    .facts-list { display: flex; flex-direction: column; gap: 0.9rem; }
    .fact-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; font-size: 0.85rem; }
    .fact-key { color: var(--ink-muted); flex-shrink: 0; }
    .fact-val { font-weight: 500; color: var(--ink); text-align: right; }
    .fact-val a { color: var(--teal); text-decoration: none; }
    .fact-val a:hover { text-decoration: underline; }

    /* Buy CTA */
    .buy-panel { background: var(--teal); border-radius: 8px; padding: 1.6rem; text-align: center; }
    .buy-panel-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); margin-bottom: 0.6rem; }
    .buy-panel-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--white); margin-bottom: 0.4rem; }
    .buy-panel-price { font-size: 0.85rem; color: var(--sage); margin-bottom: 1.2rem; }
    .btn-buy { display: block; background: var(--coral); color: var(--white); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; padding: 13px 20px; border-radius: 4px; text-decoration: none; transition: background 0.2s; margin-bottom: 0.6rem; }
    .btn-buy:hover { background: #F0957F; }
    .buy-note { font-size: 0.7rem; color: var(--sage); line-height: 1.4; }

    /* TOC */
    .toc-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
    .toc-list a { font-size: 0.82rem; color: var(--teal); text-decoration: none; line-height: 1.4; display: block; padding: 3px 0; border-left: 2px solid transparent; padding-left: 8px; transition: border-color 0.2s, color 0.2s; }
    .toc-list a:hover { border-left-color: var(--coral); color: var(--ink); }

    /* Serve suggestion */
    .serve-panel { background: var(--cream); border: 1px solid var(--rule); border-radius: 8px; padding: 1.6rem; }
    .serve-item { display: flex; gap: 0.8rem; align-items: flex-start; margin-bottom: 0.8rem; }
    .serve-item:last-child { margin-bottom: 0; }
    .serve-icon { font-size: 1.2rem; flex-shrink: 0; }
    .serve-text { font-size: 0.82rem; line-height: 1.5; color: var(--ink-muted); }
    .serve-text strong { color: var(--ink); font-weight: 500; }

    /* Tags */
    .post-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--rule); }
    .tag { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.04em; color: var(--teal); background: rgba(27,79,74,0.08); padding: 5px 12px; border-radius: 20px; text-decoration: none; transition: background 0.2s; }
    .tag:hover { background: rgba(27,79,74,0.15); }

    /* Related */
    .related-section { max-width: 1100px; margin: 0 auto; padding: 0 5vw 60px; }
    .related-section h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--rule); }
    .related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
    .related-card { background: var(--white); border-radius: 6px; overflow: hidden; text-decoration: none; color: inherit; transition: transform 0.2s, box-shadow 0.2s; }
    .related-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.07); }
    .related-card-img { aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
    .related-card-body { padding: 1.2rem; }
    .related-card-cat { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); margin-bottom: 0.4rem; }
    .related-card-title { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700; line-height: 1.3; color: var(--ink); }

    /* FOOTER */
    footer { background: var(--ink); padding: 40px 5vw 24px; color: rgba(255,255,255,0.4); }
    .footer-bottom { display: flex; justify-content: space-between; font-size: 0.75rem; }
    .footer-logo { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1rem; margin-bottom: 1rem; display: block; text-decoration: none; }
    .footer-logo span { color: var(--coral); }

    @media (max-width: 860px) {
      .article-wrap { grid-template-columns: 1fr; gap: 2rem; }
      .article-sidebar { position: static; }
      .related-grid { grid-template-columns: 1fr 1fr; }
      .verdict-pros-cons { grid-template-columns: 1fr; gap: 1rem; }
    }
    @media (max-width: 560px) {
      .related-grid { grid-template-columns: 1fr; }
      .nav-links { display: none; }
    }