:root {
  --bg: #FAFAF8; --bg-dark: #0D0B09; --bg-section: #F5F3F0;
  --text: #1C1917; --text-secondary: #44403C; --text-muted: #78716C;
  --accent: #E8A44A; --accent-hover: #C4863A; --accent-glow: rgba(232,164,74,0.15);
  --accent-light: rgba(232,164,74,0.08); --border: #E8E5E0; --border-dark: #D6D3CD;
  --surface: #FFFFFF; --green: #16A34A;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  --max-w: 1200px; --radius: 12px; --radius-lg: 16px;
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; scroll-padding-top:80px; }
body { font-family:var(--sans); color:var(--text); background:var(--bg); line-height:1.6; -webkit-font-smoothing:antialiased; overflow-x:hidden; }
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }
h1,h2,h3 { font-family:var(--serif); font-weight:400; line-height:1.15; }

/* Buttons */
.btn { display:inline-flex; align-items:center; justify-content:center; font-family:var(--sans); font-weight:600; font-size:14px; border-radius:8px; cursor:pointer; transition:all 0.2s ease; border:2px solid transparent; text-decoration:none; }
.btn-sm { padding:8px 18px; font-size:13px; }
.btn-lg { padding:14px 32px; font-size:16px; border-radius:10px; }
.btn-primary { background:var(--accent); color:#fff; border-color:var(--accent); }
.btn-primary:hover { background:var(--accent-hover); border-color:var(--accent-hover); transform:translateY(-1px); box-shadow:0 4px 16px var(--accent-glow); }
.btn-outline { background:transparent; color:var(--text); border-color:var(--border-dark); }
.btn-outline:hover { border-color:var(--accent); color:var(--accent); }

/* Nav */
.nav { position:fixed; top:0; left:0; right:0; z-index:100; background:rgba(250,250,248,0.85); backdrop-filter:blur(16px); border-bottom:1px solid var(--border); box-shadow:0 1px 12px rgba(0,0,0,0.04); }
.nav-inner { max-width:var(--max-w); margin:0 auto; padding:16px 24px; display:flex; align-items:center; justify-content:space-between; }
.nav-logo { font-family:var(--sans); font-size:18px; font-weight:600; display:flex; align-items:center; gap:2px; }
.logo-90 { font-family:var(--serif); font-style:italic; color:var(--accent); font-size:22px; }
.nav-links { display:flex; gap:32px; }
.nav-links a { font-size:14px; font-weight:500; color:var(--text-secondary); transition:color 0.15s; }
.nav-links a:hover { color:var(--accent); }
.nav-actions { display:flex; gap:10px; }
.hamburger { display:none; background:none; border:none; cursor:pointer; padding:8px; flex-direction:column; gap:5px; }
.hamburger span { display:block; width:22px; height:2px; background:var(--text); border-radius:2px; transition:all 0.3s; }
.hamburger.active span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity:0; }
.hamburger.active span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }
.mobile-menu { display:none; flex-direction:column; gap:0; background:var(--surface); border-top:1px solid var(--border); padding:16px 24px 24px; max-height:0; overflow:hidden; transition:max-height 0.3s ease; }
.mobile-menu.open { max-height:85vh; display:flex; overflow-y:auto; }
.mobile-menu a { padding:12px 0; font-size:16px; font-weight:500; color:var(--text-secondary); border-bottom:1px solid var(--border); }
.mobile-menu-section { padding:14px 0 6px; font-size:11px; font-weight:700; color:var(--text-muted); text-transform:uppercase; letter-spacing:0.1em; }
.mobile-menu-section:first-child { padding-top:4px; }
.mobile-menu-actions { display:flex; gap:10px; margin-top:16px; }
.mobile-menu-actions .btn { flex:1; justify-content:center; }

/* Dropdown */
.nav-dropdown { position:relative; }
.nav-dropdown > a { cursor:pointer; }
.nav-dropdown-menu { position:absolute; top:100%; left:50%; transform:translateX(-50%); background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:8px 0; min-width:220px; box-shadow:0 12px 40px rgba(0,0,0,0.1); opacity:0; pointer-events:none; transition:opacity 0.2s,transform 0.2s; transform:translateX(-50%) translateY(8px); z-index:200; }
.nav-dropdown:hover .nav-dropdown-menu { opacity:1; pointer-events:auto; transform:translateX(-50%) translateY(0); }
.nav-dropdown-menu a { display:flex; align-items:center; gap:10px; padding:10px 20px; font-size:13px; font-weight:500; color:var(--text-secondary); transition:background 0.15s,color 0.15s; }
.nav-dropdown-menu a:hover { background:var(--accent-light); color:var(--accent); }
.dd-icon { font-size:16px; width:20px; text-align:center; }

/* Footer */
.footer { background:var(--bg-dark); border-top:1px solid #2C2720; padding:60px 24px 30px; color:#C9BCAA; }
.footer-grid { max-width:var(--max-w); margin:0 auto; display:grid; grid-template-columns:2fr 1fr 1fr 1fr 1fr; gap:40px; margin-bottom:40px; }
.footer-logo { font-family:var(--sans); font-size:18px; font-weight:600; color:#F0E8DB; margin-bottom:8px; }
.footer-logo .logo-90 { color:var(--accent); }
.footer-tagline { font-size:13px; color:#8E8172; }
.footer-col h4 { font-size:12px; font-weight:600; text-transform:uppercase; letter-spacing:0.08em; color:#8E8172; margin-bottom:16px; }
.footer-col a { display:block; font-size:14px; padding:4px 0; color:#C9BCAA; transition:color 0.15s; }
.footer-col a:hover { color:var(--accent); }
.footer-bottom { max-width:var(--max-w); margin:0 auto; padding-top:24px; border-top:1px solid #2C2720; }
.footer-bottom p { font-size:12px; color:#5A5247; }

/* ═══════ BLOG-SPECIFIC STYLES ═══════ */

/* Breadcrumbs */
.blog-breadcrumb { max-width:var(--max-w); margin:0 auto; padding:90px 24px 0; font-size:13px; color:var(--text-muted); }
.blog-breadcrumb a { color:var(--text-muted); transition:color 0.15s; }
.blog-breadcrumb a:hover { color:var(--accent); }
.blog-breadcrumb .sep { margin:0 8px; }

/* Blog index hero */
.blog-hero { max-width:var(--max-w); margin:0 auto; padding:24px 24px 48px; text-align:center; }
.blog-hero h1 { font-size:48px; margin-bottom:12px; }
.blog-hero p { font-size:18px; color:var(--text-secondary); max-width:600px; margin:0 auto; }

/* Category filter tabs */
.blog-filters { max-width:var(--max-w); margin:0 auto 32px; padding:0 24px; display:flex; gap:8px; flex-wrap:wrap; justify-content:center; }
.blog-filter-tab { padding:8px 18px; border-radius:20px; font-size:13px; font-weight:500; background:var(--surface); border:1px solid var(--border); color:var(--text-secondary); cursor:pointer; transition:all 0.15s; text-decoration:none; }
.blog-filter-tab:hover, .blog-filter-tab.active { background:var(--accent); color:#fff; border-color:var(--accent); }

/* Post card grid */
.blog-grid { max-width:var(--max-w); margin:0 auto; padding:0 24px 60px; display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.post-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; transition:transform 0.2s,box-shadow 0.2s; text-decoration:none; color:inherit; }
.post-card:hover { transform:translateY(-4px); box-shadow:0 12px 40px rgba(0,0,0,0.06); }
.post-card-img { width:100%; height:200px; object-fit:cover; background:var(--bg-section); }
.post-card-body { padding:24px; }
.post-card-meta { display:flex; align-items:center; gap:8px; margin-bottom:10px; font-size:12px; color:var(--text-muted); }
.post-card-cat { background:var(--accent-light); color:var(--accent); padding:2px 10px; border-radius:12px; font-weight:600; font-size:11px; }
.post-card-body h2 { font-size:20px; margin-bottom:8px; line-height:1.3; }
.post-card-body p { font-size:14px; color:var(--text-secondary); line-height:1.6; margin-bottom:12px; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
.post-card-read { font-size:13px; font-weight:600; color:var(--accent); }

/* Pagination */
.blog-pagination { max-width:var(--max-w); margin:0 auto; padding:0 24px 60px; display:flex; justify-content:center; gap:8px; }
.blog-pagination a, .blog-pagination span { padding:8px 16px; border-radius:8px; font-size:14px; font-weight:500; border:1px solid var(--border); color:var(--text-secondary); text-decoration:none; transition:all 0.15s; }
.blog-pagination a:hover { border-color:var(--accent); color:var(--accent); }
.blog-pagination .current { background:var(--accent); color:#fff; border-color:var(--accent); }

/* Single post article */
.blog-article { max-width:720px; margin:0 auto; padding:24px 24px 60px; }
.blog-article-header { margin-bottom:32px; }
.blog-article-header h1 { font-size:42px; margin-bottom:16px; line-height:1.2; }
.blog-article-meta { display:flex; align-items:center; gap:16px; font-size:14px; color:var(--text-muted); flex-wrap:wrap; }
.blog-article-meta .dot { width:4px; height:4px; border-radius:50%; background:var(--border-dark); }
.blog-cover { width:100%; border-radius:var(--radius-lg); margin-bottom:8px; }
.blog-cover-credit { font-size:12px; color:var(--text-muted); text-align:right; margin-bottom:24px; }
.blog-cover-credit a { color:var(--text-muted); text-decoration:underline; transition:color 0.15s; }
.blog-cover-credit a:hover { color:var(--accent); }
.blog-tags { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:24px; }
.blog-tag { padding:4px 12px; border-radius:16px; font-size:12px; font-weight:500; background:var(--bg-section); color:var(--text-secondary); text-decoration:none; transition:all 0.15s; }
.blog-tag:hover { background:var(--accent-light); color:var(--accent); }

/* Article body prose */
.blog-body { font-size:17px; line-height:1.8; color:var(--text); }
.blog-body h2 { font-size:28px; margin:48px 0 16px; padding-top:8px; border-top:1px solid var(--border); }
.blog-body h2:first-child { border-top:none; margin-top:0; padding-top:0; }
.blog-body h3 { font-size:22px; margin:36px 0 12px; color:var(--text); }
.blog-body p { margin-bottom:20px; }
.blog-body ul, .blog-body ol { margin-bottom:20px; padding-left:24px; }
.blog-body li { margin-bottom:8px; }
.blog-body li strong { color:var(--text); }
.blog-body blockquote { border-left:3px solid var(--accent); padding:16px 24px; margin:28px 0; background:var(--accent-light); border-radius:0 var(--radius) var(--radius) 0; font-style:italic; color:var(--text-secondary); }
.blog-body blockquote p:last-child { margin-bottom:0; }
.blog-body code { background:var(--bg-section); padding:2px 6px; border-radius:4px; font-size:0.9em; }
.blog-body pre { background:var(--bg-dark); color:#C9BCAA; padding:20px; border-radius:var(--radius); overflow-x:auto; margin-bottom:20px; }
.blog-body pre code { background:none; padding:0; color:inherit; }
.blog-body img { border-radius:var(--radius); margin:32px auto; box-shadow:0 8px 32px rgba(0,0,0,0.1); border:1px solid var(--border); display:block; max-width:100%; }
.blog-body a { color:var(--accent); text-decoration:underline; text-underline-offset:3px; text-decoration-color:rgba(232,164,74,0.3); transition:text-decoration-color 0.15s; }
.blog-body a:hover { color:var(--accent-hover); text-decoration-color:var(--accent-hover); }
.blog-body hr { border:none; border-top:1px solid var(--border); margin:40px 0; }
.blog-body em { color:var(--text-secondary); }
.blog-body strong { color:var(--text); font-weight:600; }

/* Related posts */
.blog-related { max-width:var(--max-w); margin:0 auto; padding:0 24px 60px; }
.blog-related h2 { text-align:center; font-size:28px; margin-bottom:24px; }
.blog-related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }

/* CTA banner */
.blog-cta { max-width:720px; margin:0 auto 40px; padding:32px; background:var(--bg-section); border:1px solid var(--border); border-radius:var(--radius-lg); text-align:center; }
.blog-cta h3 { font-size:24px; margin-bottom:8px; }
.blog-cta p { font-size:15px; color:var(--text-secondary); margin-bottom:20px; }

/* Empty state */
.blog-empty { text-align:center; padding:80px 24px; max-width:500px; margin:0 auto; }
.blog-empty h2 { font-size:28px; margin-bottom:12px; }
.blog-empty p { color:var(--text-secondary); }

/* Tag page header */
.tag-header { max-width:var(--max-w); margin:0 auto; padding:24px 24px 32px; text-align:center; }
.tag-header h1 { font-size:36px; margin-bottom:8px; }
.tag-header p { color:var(--text-secondary); }

/* ═══════ BLOG INFOGRAPHIC BLOCKS ═══════ */
.blog-infographic { margin:36px 0; padding:28px 24px; background:var(--bg-section); border:1px solid var(--border); border-radius:var(--radius-lg); }
.infographic-title { font-family:var(--serif); font-size:20px; text-align:center; margin-bottom:20px; color:var(--text); }
.infographic-caption { font-size:12px; color:var(--text-muted); text-align:center; margin-top:12px; margin-bottom:0; }
.infographic-caption a { color:var(--accent); text-decoration:underline; }
.infographic-legend { display:flex; flex-wrap:wrap; justify-content:center; gap:16px; font-size:13px; color:var(--text-secondary); }
.legend-dot { display:inline-block; width:10px; height:10px; border-radius:50%; margin-right:4px; vertical-align:middle; }
.infographic-steps { display:flex; align-items:center; justify-content:center; gap:8px; flex-wrap:wrap; }
.infographic-step { text-align:center; padding:16px 12px; min-width:100px; }
.step-number { font-family:var(--sans); font-size:11px; font-weight:700; color:var(--accent); text-transform:uppercase; letter-spacing:0.08em; margin-bottom:4px; }
.step-icon { font-size:28px; margin-bottom:6px; }
.step-label { font-size:13px; font-weight:500; color:var(--text-secondary); }
.infographic-step-arrow { font-size:20px; color:var(--border-dark); font-weight:300; }
.infographic-card-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.infographic-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:16px; text-align:center; }
.card-emoji { font-size:28px; margin-bottom:8px; }
.card-title { font-size:14px; font-weight:600; margin-bottom:4px; color:var(--text); }
.card-detail { font-size:12px; color:var(--text-muted); }
.infographic-bar-chart { max-width:480px; margin:0 auto; }
.bar-row { display:flex; align-items:center; gap:12px; margin-bottom:10px; }
.bar-label { font-size:14px; font-weight:600; min-width:40px; text-align:right; color:var(--text-secondary); }
.bar-track { flex:1; background:var(--border); border-radius:6px; height:32px; overflow:hidden; }
.bar-fill { height:100%; border-radius:6px; display:flex; align-items:center; padding:0 10px; font-size:12px; font-weight:600; color:#fff; min-width:fit-content; white-space:nowrap; }
.infographic-method-table { max-width:520px; margin:0 auto; }
.method-row { display:grid; grid-template-columns:2fr 1fr 2fr; gap:8px; padding:10px 12px; font-size:13px; border-bottom:1px solid var(--border); color:var(--text-secondary); }
.method-row.method-header { font-weight:600; color:var(--text); font-size:12px; text-transform:uppercase; letter-spacing:0.05em; }
.life-grid-mini { display:grid; grid-template-columns:repeat(18,1fr); gap:3px; max-width:540px; margin:0 auto 16px; }
.life-grid-cell { aspect-ratio:1; border-radius:2px; min-width:0; }

/* Responsive */
@media (max-width:1023px) {
  .blog-grid { grid-template-columns:repeat(2,1fr); }
  .blog-related-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:767px) {
  .nav-links,.nav-actions { display:none; }
  .hamburger { display:flex; }
  .blog-hero h1 { font-size:32px; }
  .blog-article-header h1 { font-size:28px; }
  .blog-grid { grid-template-columns:1fr; }
  .blog-related-grid { grid-template-columns:1fr; }
  .blog-filters { justify-content:flex-start; overflow-x:auto; flex-wrap:nowrap; padding-bottom:8px; }
  .footer-grid { grid-template-columns:1fr; gap:24px; }
  .infographic-card-grid { grid-template-columns:repeat(2,1fr); }
  .infographic-steps { flex-direction:column; }
  .infographic-step-arrow { transform:rotate(90deg); }
  .method-row { font-size:12px; grid-template-columns:1fr; gap:4px; }
  .method-row.method-header { display:none; }
  .life-grid-mini { grid-template-columns:repeat(9,1fr); }
}

/* Blog newsletter signup */
.blog-newsletter { max-width:560px; margin:32px auto; padding:32px; text-align:center; background:linear-gradient(135deg, rgba(232,164,74,0.08), rgba(232,164,74,0.03)); border:1px solid rgba(232,164,74,0.2); border-radius:16px; }
.blog-newsletter h3 { font-family:var(--serif); font-size:22px; font-weight:400; color:var(--text); margin-bottom:6px; }
.blog-newsletter-sub { font-size:13px; color:var(--text-muted); margin-bottom:18px; }
.blog-newsletter-form { display:flex; gap:8px; max-width:400px; margin:0 auto; }
.blog-newsletter-form input { flex:1; padding:10px 14px; border:1px solid var(--border); border-radius:8px; font-size:14px; font-family:var(--sans); background:var(--surface); color:var(--text); }
.blog-newsletter-form input:focus { outline:none; border-color:var(--accent); }
.blog-newsletter-form button { padding:10px 20px; border:none; border-radius:8px; background:var(--accent); color:#fff; font-size:13px; font-weight:600; font-family:var(--sans); cursor:pointer; transition:background 0.2s; white-space:nowrap; }
.blog-newsletter-form button:hover { background:var(--accent-hover); }
.blog-newsletter-msg { font-size:13px; margin-top:10px; }
@media(max-width:480px) {
  .blog-newsletter-form { flex-direction:column; }
}

/* Share buttons */
.share-bar { display:flex; align-items:center; gap:16px; padding:20px 0; margin:24px 0; border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.share-label { font-size:13px; font-weight:600; color:var(--text-muted); white-space:nowrap; }
.share-buttons { display:flex; gap:8px; }
.share-btn { display:inline-flex; align-items:center; justify-content:center; width:40px; height:40px; border-radius:50%; border:1px solid var(--border); background:var(--bg-section); color:var(--text-secondary); cursor:pointer; transition:all 0.2s; text-decoration:none; font-size:16px; }
.share-btn:hover { border-color:var(--accent); color:var(--accent); background:var(--accent-light); transform:translateY(-1px); }
.share-twitter:hover { color:#1DA1F2; border-color:#1DA1F2; }
.share-linkedin:hover { color:#0A66C2; border-color:#0A66C2; }
.share-pinterest:hover { color:#E60023; border-color:#E60023; }
.share-copy { font-family:inherit; }
@media(max-width:600px) {
  .share-bar { flex-direction:column; align-items:flex-start; gap:10px; }
}
