:root {
    --green: #1a6b3a;
    --green-dark: #0f4425;
    --green-light: #e8f5ee;
    --amber: #e8a020;
    --amber-light: #fff8ec;
    --soil: #5c3d1e;
    --white: #ffffff;
    --off-white: #f7f5f0;
    --text: #1a1a1a;
    --text-muted: #6b6b6b;
    --border: #e2ddd6;
    --radius: 14px;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
}

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

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── NAV ── */
.findin-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}
.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--green);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-logo span {
    background: var(--green);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: 1rem;
}
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-cta {
    background: var(--green);
    color: white;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background 0.2s, transform 0.1s;
}
.nav-cta:hover { background: var(--green-dark); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, #2d8a52 100%);
    padding: 80px 5% 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 88vh;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: #a8e6c0;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 20px;
    width: fit-content;
}
.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-left { position: relative; z-index: 1; }
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 900;
    color: white;
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--amber); }
.hero-sub {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 480px;
    margin-bottom: 36px;
    font-weight: 300;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.btn-primary {
    background: var(--amber);
    color: var(--soil);
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 20px rgba(232,160,32,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,160,32,0.45); }
.btn-ghost {
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.25);
    transition: background 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); }
.hero-stats { display: flex; gap: 32px; }
.stat { text-align: center; }
.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: white;
    display: block;
}
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.65); font-weight: 400; }

/* ── HERO CARD ── */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1;
}
.hero-card {
    background: white;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-lg);
}
.hero-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.hero-card-icon {
    width: 40px; height: 40px;
    background: var(--green-light);
    border-radius: 10px;
    display: grid; place-items: center;
    font-size: 1.2rem;
}
.hero-card-title { font-weight: 700; font-size: 0.95rem; color: var(--text); }
.hero-card-sub { font-size: 0.8rem; color: var(--text-muted); }
.pest-list { display: flex; flex-direction: column; gap: 10px; }
.pest-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 14px; background: var(--off-white); border-radius: 8px;
}
.pest-item-left { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; font-weight: 500; }
.pest-tag { font-size: 0.72rem; padding: 3px 10px; border-radius: 100px; font-weight: 600; }
.tag-high { background: #fee2e2; color: #991b1b; }
.tag-med  { background: #fef9c3; color: #854d0e; }
.tag-low  { background: #dcfce7; color: #166534; }
.hero-card-sm {
    background: var(--green);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex; align-items: center; gap: 14px;
    box-shadow: var(--shadow);
}
.hero-card-sm-icon { font-size: 2rem; }
.hero-card-sm-text strong { display: block; color: white; font-size: 0.95rem; font-weight: 700; }
.hero-card-sm-text span { color: rgba(255,255,255,0.7); font-size: 0.8rem; }

/* ── STATS BAR ── */
.stats-bar {
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
    padding: 32px 5%;
    display: flex; justify-content: center; gap: 60px;
}
.stats-bar .stat-num { color: var(--green); }
.stats-bar .stat-label { color: var(--text-muted); }

/* ── SECTIONS ── */
.findin-section { padding: 80px 5%; }
.section-badge {
    display: inline-block;
    background: var(--green-light); color: var(--green);
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 5px 14px; border-radius: 100px; margin-bottom: 14px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900; line-height: 1.2; margin-bottom: 14px;
}
.section-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; line-height: 1.7; }

/* ── CATEGORIES ── */
.categories-header { text-align: center; margin-bottom: 52px; }
.categories-header .section-sub { margin: 0 auto; }
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat-card {
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: 28px 24px; text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    background: white; position: relative; overflow: hidden;
}
.cat-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: var(--green); transform: scaleX(0); transition: transform 0.25s;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green); }
.cat-card:hover::after { transform: scaleX(1); }
.cat-icon { font-size: 2.4rem; margin-bottom: 14px; display: block; }
.cat-name { font-weight: 700; font-size: 1.05rem; color: var(--text); margin-bottom: 8px; }
.cat-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 16px; }
.cat-count { font-size: 0.78rem; color: var(--green); font-weight: 600; }

/* ── HOW IT WORKS ── */
.how-bg { background: var(--off-white); }
.how-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.steps { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
    flex-shrink: 0; width: 44px; height: 44px;
    background: var(--green); color: white; border-radius: 12px;
    display: grid; place-items: center;
    font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 900;
}
.step-body strong { display: block; font-size: 1rem; font-weight: 700; margin-bottom: 5px; }
.step-body p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
.mock-device {
    background: white; border-radius: 20px; padding: 24px;
    box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.mock-search {
    display: flex; align-items: center; gap: 10px;
    background: var(--off-white); border-radius: 10px;
    padding: 12px 16px; margin-bottom: 20px;
    font-size: 0.875rem; color: var(--text-muted); border: 1px solid var(--border);
}
.article-preview { display: flex; flex-direction: column; gap: 12px; }
.article-row {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 14px; border-radius: 10px; border: 1px solid var(--border);
    text-decoration: none; transition: background 0.15s;
}
.article-row:hover { background: var(--green-light); }
.article-thumb {
    width: 48px; height: 48px; border-radius: 8px;
    display: grid; place-items: center; font-size: 1.4rem; flex-shrink: 0;
}
.article-row-title { font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 3px; line-height: 1.3; }
.article-row-meta { font-size: 0.75rem; color: var(--text-muted); }

/* ── LATEST ARTICLES ── */
.articles-header {
    display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px;
}
.view-all {
    color: var(--green); font-weight: 600; font-size: 0.9rem;
    text-decoration: none; display: flex; align-items: center; gap: 4px;
}
.view-all:hover { text-decoration: underline; }
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article-card {
    border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s; background: white;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.article-card-img { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }
.article-card-body { padding: 20px; }
.article-cat-tag {
    display: inline-block; background: var(--green-light); color: var(--green);
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
    padding: 3px 10px; border-radius: 100px; margin-bottom: 10px;
}
.article-card-title { font-weight: 700; font-size: 1rem; color: var(--text); line-height: 1.4; margin-bottom: 10px; }
.article-card-excerpt { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.article-card-meta { font-size: 0.78rem; color: var(--text-muted); display: flex; gap: 12px; }

/* ── MEET OWNER ── */
.meet-owner-bg { background: var(--off-white); }
.meet-inner {
    display: grid; grid-template-columns: 280px 1fr;
    gap: 64px; align-items: flex-start; max-width: 960px; margin: 0 auto;
}
.owner-photo-wrap { position: relative; }
.owner-photo {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 20px;
    object-fit: cover;
    object-position: top center;
    box-shadow: var(--shadow-lg);
    display: block;
}
.owner-photo-badge {
    position: absolute; bottom: -16px; right: -16px;
    background: var(--green); color: white; border-radius: 12px;
    padding: 12px 16px; font-size: 0.8rem; font-weight: 600;
    box-shadow: var(--shadow); line-height: 1.4; text-align: center;
}
.owner-photo-badge span { display: block; font-size: 1.3rem; margin-bottom: 2px; }
.owner-name { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; margin-bottom: 6px; color: var(--text); }
.owner-title { color: var(--green); font-size: 0.9rem; font-weight: 600; margin-bottom: 20px; }
.owner-bio { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 28px; }
.owner-facts { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 28px; }
.owner-fact {
    background: white; border: 1px solid var(--border);
    border-radius: 10px; padding: 12px 16px; text-align: center; min-width: 90px;
}
.owner-fact strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--green); font-weight: 900; }
.owner-fact span { font-size: 0.75rem; color: var(--text-muted); }
.owner-links { display: flex; gap: 12px; flex-wrap: wrap; }
.owner-link {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 18px; border-radius: 8px; font-size: 0.85rem;
    font-weight: 600; text-decoration: none; transition: transform 0.15s;
}
.owner-link:hover { transform: translateY(-1px); }
.owner-link-primary { background: var(--green); color: white; }
.owner-link-ghost { background: white; border: 1px solid var(--border); color: var(--text); }

/* ── EMAIL CTA ── */
.email-cta {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    padding: 80px 5%; text-align: center; position: relative; overflow: hidden;
}
.email-cta::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.email-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 900;
    color: white; margin-bottom: 14px; position: relative;
}
.email-cta p {
    color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 36px;
    max-width: 500px; margin-left: auto; margin-right: auto; position: relative;
}
.email-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto 16px; position: relative; }
.email-form input {
    flex: 1; padding: 14px 18px; border-radius: 10px; border: none;
    font-size: 0.95rem; font-family: 'DM Sans', sans-serif; outline: none;
}
.email-form button {
    background: var(--amber); color: var(--soil);
    padding: 14px 24px; border-radius: 10px; border: none;
    font-weight: 700; font-size: 0.9rem; cursor: pointer;
    font-family: 'DM Sans', sans-serif; transition: transform 0.15s;
}
.email-form button:hover { transform: translateY(-1px); }
.email-cta small { color: rgba(255,255,255,0.55); font-size: 0.8rem; position: relative; }

/* ── PARTNER STRIP ── */
.partner-strip {
    background: var(--off-white); padding: 40px 5%;
    text-align: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.partner-strip p { font-size: 0.83rem; color: var(--text-muted); letter-spacing: 0.05em; text-transform: uppercase; font-weight: 600; margin-bottom: 24px; }
.partner-logos { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
.partner-logo { background: var(--border); border-radius: 8px; padding: 10px 24px; font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }

/* ── FOOTER ── */
.findin-footer { background: var(--green-dark); color: rgba(255,255,255,0.75); padding: 60px 5% 32px; }
.footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px; margin-bottom: 48px; padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .nav-logo { color: white; margin-bottom: 14px; display: flex; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin-bottom: 20px; }
.footer-col h4 { color: white; font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; }
.footer-bottom a { color: rgba(255,255,255,0.55); text-decoration: none; margin-left: 16px; }
.footer-bottom a:hover { color: white; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-right { display: none; }
    .cat-grid { grid-template-columns: 1fr 1fr; }
    .articles-grid { grid-template-columns: 1fr 1fr; }
    .how-inner { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .stats-bar { gap: 28px; flex-wrap: wrap; }
    .meet-inner { grid-template-columns: 1fr; max-width: 500px; }
    .owner-photo-wrap { max-width: 260px; margin: 0 auto; }
    .owner-content { text-align: center; }
    .owner-facts { justify-content: center; }
    .owner-links { justify-content: center; }
}
@media (max-width: 600px) {
    .findin-nav { padding: 0 4%; }
    .nav-links { display: none; }
    .hero { padding: 60px 4% 48px; }
    .cat-grid { grid-template-columns: 1fr; }
    .articles-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .email-form { flex-direction: column; }
}

/* ── BLOG / ARCHIVE PAGE ── */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 60px 5% 50px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-inner { position: relative; z-index: 1; max-width: 700px; }
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: #a8e6c0; padding: 6px 14px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 500; margin-bottom: 16px;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900;
  color: white; line-height: 1.15; margin-bottom: 14px;
}
.page-hero h1 em { font-style: normal; color: var(--amber); }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 520px; line-height: 1.7; }

.filter-bar {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 0 5%; display: flex; align-items: center; gap: 8px;
  overflow-x: auto; white-space: nowrap; scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar { display: none; }
.filter-tab {
  padding: 16px 18px; font-size: 0.875rem; font-weight: 600;
  color: var(--text-muted); border-bottom: 3px solid transparent;
  cursor: pointer; transition: all 0.2s; text-decoration: none;
  display: inline-block; white-space: nowrap;
}
.filter-tab:hover { color: var(--green); }
.filter-tab.active { color: var(--green); border-bottom-color: var(--green); }

.blog-layout {
  display: grid; grid-template-columns: 1fr 320px;
  gap: 48px; padding: 52px 5%; max-width: 1200px; margin: 0 auto;
}
.articles-section-header {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px;
}
.articles-section-title {
  font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 900; color: var(--text);
}
.articles-count {
  font-size: 0.82rem; color: var(--text-muted);
  background: var(--off-white); padding: 4px 12px; border-radius: 100px;
}
.articles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 36px; }
.article-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; background: white; display: flex; flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.article-card-img { height: 150px; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.article-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.article-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--border); margin-top: auto; }
.article-card-meta { font-size: 0.75rem; color: var(--text-muted); }
.card-read-more {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--green-light); color: var(--green);
  padding: 7px 14px; border-radius: 6px; text-decoration: none;
  font-weight: 700; font-size: 0.78rem; transition: background 0.2s;
}
.card-read-more:hover { background: var(--green); color: white; }

/* Pagination */
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 40px; }
.pagination .page-numbers {
  width: 40px; height: 40px; border-radius: 8px; display: grid; place-items: center;
  font-size: 0.875rem; font-weight: 600; border: 1px solid var(--border);
  background: white; color: var(--text-muted); text-decoration: none; transition: all 0.2s;
}
.pagination .page-numbers:hover { border-color: var(--green); color: var(--green); }
.pagination .page-numbers.current { background: var(--green); color: white; border-color: var(--green); }
.pagination .page-numbers.next,
.pagination .page-numbers.prev { width: auto; padding: 0 16px; }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-sticky { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 24px; }
.sidebar-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.sidebar-card-header { background: var(--green); color: white; padding: 13px 18px; font-weight: 700; font-size: 0.9rem; }
.sidebar-card-body { padding: 18px; }
.cat-list { display: flex; flex-direction: column; gap: 2px; }
.cat-list-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  text-decoration: none; transition: color 0.2s;
}
.cat-list-item:last-child { border-bottom: none; }
.cat-list-left { font-size: 0.875rem; font-weight: 500; color: var(--text); }
.cat-list-item:hover .cat-list-left { color: var(--green); }
.cat-pill { background: var(--green-light); color: var(--green); font-size: 0.72rem; font-weight: 700; padding: 2px 8px; border-radius: 100px; }
.popular-list { display: flex; flex-direction: column; gap: 14px; }
.popular-item { display: flex; gap: 10px; align-items: flex-start; text-decoration: none; }
.popular-num { flex-shrink: 0; width: 26px; height: 26px; background: var(--green-light); color: var(--green); border-radius: 6px; display: grid; place-items: center; font-family: 'Playfair Display', serif; font-size: 0.82rem; font-weight: 900; }
.popular-title { font-size: 0.83rem; font-weight: 600; color: var(--text); line-height: 1.4; transition: color 0.2s; }
.popular-item:hover .popular-title { color: var(--green); }
.popular-meta { font-size: 0.73rem; color: var(--text-muted); margin-top: 2px; }
.newsletter-card { background: linear-gradient(135deg, var(--green-dark), var(--green)); border-radius: var(--radius); padding: 22px; text-align: center; }
.newsletter-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 900; color: white; margin-bottom: 8px; }
.newsletter-card p { font-size: 0.82rem; color: rgba(255,255,255,0.8); margin-bottom: 14px; line-height: 1.6; }
.newsletter-card input { width: 100%; padding: 10px 13px; border-radius: 8px; border: none; font-size: 0.875rem; font-family: 'DM Sans', sans-serif; margin-bottom: 8px; outline: none; }
.newsletter-card button { width: 100%; background: var(--amber); color: var(--soil); padding: 10px; border-radius: 8px; border: none; font-weight: 700; font-size: 0.875rem; cursor: pointer; font-family: 'DM Sans', sans-serif; }
.newsletter-card small { display: block; color: rgba(255,255,255,0.5); font-size: 0.73rem; margin-top: 7px; }
.tags-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-item { background: var(--off-white); color: var(--text-muted); font-size: 0.78rem; font-weight: 500; padding: 5px 12px; border-radius: 100px; border: 1px solid var(--border); text-decoration: none; transition: all 0.2s; }
.tag-item:hover { background: var(--green-light); color: var(--green); border-color: var(--green); }

/* ── SINGLE ARTICLE PAGE ── */
.reading-progress { height: 3px; background: var(--border); position: sticky; top: 68px; z-index: 99; }
.reading-progress-bar { height: 100%; background: var(--green); width: 0%; transition: width 0.1s; }
.breadcrumb {
  padding: 14px 5%; background: var(--off-white); border-bottom: 1px solid var(--border);
  font-size: 0.82rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--green); text-decoration: none; font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--border); }

.article-hero { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%); padding: 60px 5% 0; position: relative; overflow: hidden; }
.article-hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.article-hero-inner { position: relative; z-index: 1; max-width: 780px; padding-bottom: 48px; }
.article-cat-badge { display: inline-block; background: var(--amber); color: var(--soil); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; margin-bottom: 18px; }
.article-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 900; color: white; line-height: 1.2; margin-bottom: 20px; }
.article-hero-intro { font-size: 1.1rem; color: rgba(255,255,255,0.85); line-height: 1.75; max-width: 680px; margin-bottom: 32px; }

.author-meta-bar { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 14px; padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.author-meta-left { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; object-position: top center; border: 2px solid rgba(255,255,255,0.3); flex-shrink: 0; }
.author-name { color: white; font-weight: 700; font-size: 0.95rem; margin-bottom: 2px; }
.author-role { color: rgba(255,255,255,0.65); font-size: 0.78rem; }
.meta-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }
.meta-items { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.meta-item { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.75); font-size: 0.82rem; }
.meta-share { display: flex; align-items: center; gap: 8px; }
.share-btn { width: 34px; height: 34px; border-radius: 8px; display: grid; place-items: center; text-decoration: none; font-size: 0.8rem; font-weight: 700; transition: transform 0.15s; border: 1px solid rgba(255,255,255,0.2); }
.share-btn:hover { transform: translateY(-2px); }
.share-fb { background: #1877f2; color: white; }
.share-tw { background: #1da1f2; color: white; }
.share-wa { background: #25d366; color: white; }

.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 52px; padding: 52px 5%; max-width: 1200px; margin: 0 auto; }
.article-content { max-width: 720px; }

.article-body h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; color: var(--text); margin: 40px 0 16px; line-height: 1.3; }
.article-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--text); margin: 28px 0 12px; }
.article-body p { font-size: 1.05rem; color: #333; line-height: 1.85; margin-bottom: 20px; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 20px; }
.article-body li { font-size: 1.05rem; color: #333; line-height: 1.8; margin-bottom: 6px; }
.article-body strong { color: var(--text); font-weight: 700; }
.article-body a { color: var(--green); font-weight: 600; }
.article-body img { width: 100%; border-radius: 12px; margin: 20px 0; }
.article-body blockquote { border-left: 4px solid var(--green); background: var(--green-light); padding: 16px 20px; border-radius: 0 10px 10px 0; margin: 24px 0; font-style: italic; color: var(--green-dark); }

.article-tags { margin: 36px 0; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.article-tags-label { font-size: 0.82rem; font-weight: 700; color: var(--text-muted); }
.article-tag { background: var(--off-white); color: var(--text-muted); font-size: 0.78rem; padding: 5px 12px; border-radius: 100px; border: 1px solid var(--border); text-decoration: none; transition: all 0.2s; }
.article-tag:hover { background: var(--green-light); color: var(--green); border-color: var(--green); }

.author-bio-box { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; margin: 40px 0; display: flex; gap: 24px; align-items: flex-start; }
.author-bio-avatar { width: 90px; height: 110px; border-radius: 12px; object-fit: cover; object-position: top center; flex-shrink: 0; box-shadow: var(--shadow); }
.author-bio-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 900; color: var(--text); margin-bottom: 3px; }
.author-bio-title { color: var(--green); font-size: 0.82rem; font-weight: 600; margin-bottom: 12px; }
.author-bio-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }
.author-bio-links { display: flex; gap: 10px; }
.author-bio-link { display: inline-flex; align-items: center; gap: 5px; background: white; border: 1px solid var(--border); color: var(--text); padding: 6px 14px; border-radius: 7px; font-size: 0.78rem; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.author-bio-link:hover { border-color: var(--green); color: var(--green); }

.related-articles { margin-top: 48px; }
.related-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 900; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 2px solid var(--green-light); }
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.related-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; background: white; }
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.related-card-img { height: 110px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.related-card-body { padding: 14px; }
.related-card-cat { font-size: 0.7rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.related-card-title { font-size: 0.88rem; font-weight: 700; color: var(--text); line-height: 1.4; margin-bottom: 8px; }
.related-card-read { display: inline-flex; align-items: center; gap: 4px; color: var(--green); font-size: 0.78rem; font-weight: 700; text-decoration: none; }
.related-card-read:hover { text-decoration: underline; }

/* ── RESPONSIVE ADDITIONS ── */
@media (max-width: 960px) {
  .blog-layout { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .featured-post { grid-template-columns: 1fr !important; }
}
@media (max-width: 600px) {
  .articles-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .author-bio-box { flex-direction: column; }
  .meta-divider { display: none; }
  .meta-share { display: none; }
}
