/* ============================================================
   SHROOMER — Design System
   Ghost Theme v1.0.0
   ============================================================ */

/* ── Custom properties ── */
:root {
  --green:      #295135;
  --green-dk:   #1d3b26;
  --green-mid:  #3a6b48;
  --green-lt:   #edf4f0;
  --gold:       #F4B223;
  --gold-muted: #d7cd5b;
  --red:        #E64B38;
  --red-lt:     #fef0ee;
  --blue:       #416BA9;
  --blue-lt:    #eff3fa;
  --brown:      #502C1E;
  --cream:      #faf8f3;
  --cream-dk:   #f2efe8;
  --text:       #1a1a18;
  --text-mid:   #6b6b60;
  --text-lt:    #9a9a8e;
  --border:     rgba(41,81,53,0.14);
  --border-lt:  rgba(41,81,53,0.07);
  --radius:     10px;
  --radius-lg:  16px;
  --radius-pill:999px;
  --f-head:     'Young Serif', Georgia, serif;
  --f-body:     'Source Serif 4', Georgia, serif;
  --max-w:      780px;
  --pad-x:      1.25rem;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { font-family: var(--f-body); font-weight: 300; color: var(--text); background: var(--cream); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 { font-family: var(--f-head); line-height: 1.15; font-weight: 400; }

/* ── Site wrapper ── */
.site-wrapper { min-height: 100vh; display: flex; flex-direction: column; padding-bottom: 64px; }
.site-main { flex: 1; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-body); font-size: 13px; font-weight: 400;
  padding: 9px 20px; border-radius: var(--radius-pill);
  border: 1px solid transparent; transition: all 0.14s ease;
  white-space: nowrap; cursor: pointer;
}
.btn--gold { background: var(--gold); color: var(--brown); border-color: var(--gold); }
.btn--gold:hover { background: #e0a11f; border-color: #e0a11f; }
.btn--outline { background: transparent; border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.8); }
.btn--outline:hover { border-color: rgba(255,255,255,0.6); color: #fff; }
.btn--green { background: var(--green); color: var(--gold); border-color: var(--green); }
.btn--green:hover { background: var(--green-dk); }
.btn--green-outline { background: transparent; border-color: var(--border); color: var(--text-mid); }
.btn--green-outline:hover { border-color: var(--green); color: var(--green); }
.btn--sm { font-size: 12px; padding: 6px 14px; }

/* ── Tag pills ── */
.tag-pill {
  display: inline-block; font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 3px 9px; border-radius: var(--radius-pill);
  font-weight: 400; margin-bottom: 7px;
}
.tag-pill--shroom-scan, .tag-pill--research { background: var(--green-lt); color: var(--green); }
.tag-pill--psilocybin { background: var(--blue-lt); color: var(--blue); }
.tag-pill--foraging { background: var(--green-lt); color: var(--green-mid); }
.tag-pill--cooking, .tag-pill--cultivation { background: var(--red-lt); color: var(--red); }
.tag-pill--shroomwiki { background: #fff8e6; color: #a07210; }
.tag-pill { background: var(--cream-dk); color: var(--text-mid); }

.tag-chip {
  display: inline-block; font-size: 12px; padding: 4px 12px;
  border: 1px solid var(--border); border-radius: var(--radius-pill);
  color: var(--text-mid); margin: 3px;
}

/* ── Utility ── */
.section-eyebrow {
  font-family: var(--f-body); font-size: 10.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-lt); font-weight: 300; margin-bottom: 1rem;
}
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.section-header__title { font-family: var(--f-head); font-size: 18px; }
.section-header__link { font-size: 12px; color: var(--green); font-style: italic; }

/* ══════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════ */
.site-header { position: sticky; top: 0; z-index: 100; }

.site-header__top { background: var(--green); }
.site-header__inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x);
  height: 52px; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: 9px; flex-shrink: 0; }
.site-logo__mark { flex-shrink: 0; }
.site-logo__wordmark { font-family: var(--f-head); font-size: 20px; color: var(--gold); letter-spacing: -0.01em; }

/* Desktop nav */
.site-nav { display: none; }
.site-nav__list { display: flex; gap: 0; }
.site-nav__item { font-family: var(--f-body); font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.65); padding: 0 12px; height: 52px; display: flex; align-items: center; transition: color 0.13s; border-bottom: 2px solid transparent; }
.site-nav__item:hover, .site-nav__item.active { color: var(--gold); }
.site-nav__item.active { border-bottom-color: var(--gold); }
.site-nav__item--tools { color: var(--gold); }

/* Header actions */
.site-header__actions { display: flex; align-items: center; gap: 10px; }

/* Hamburger */
.hamburger { background: none; border: none; padding: 4px; display: flex; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: rgba(255,255,255,0.7); border-radius: 2px; transition: all 0.2s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Subnav */
.site-header__subnav { background: var(--green-dk); overflow-x: auto; scrollbar-width: none; }
.site-header__subnav::-webkit-scrollbar { display: none; }
.subnav-inner { display: flex; padding: 0 var(--pad-x); max-width: var(--max-w); margin: 0 auto; min-width: max-content; }
.subnav-item { font-family: var(--f-body); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); padding: 9px 14px; border-bottom: 2px solid transparent; white-space: nowrap; font-weight: 300; transition: color 0.13s; }
.subnav-item:hover, .subnav-item.active { color: var(--gold); border-bottom-color: var(--gold); }

/* Mobile menu */
.mobile-menu {
  background: var(--green-dk); padding: 1.5rem var(--pad-x);
  display: none; flex-direction: column; gap: 0.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--f-body); font-size: 16px; color: rgba(255,255,255,0.8); padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-menu .btn { margin-top: 1rem; width: 100%; text-align: center; }

/* ══════════════════════════════════════════════════
   FEATURED SHROOM SCAN
══════════════════════════════════════════════════ */
.featured-scan { background: var(--green); padding: 2rem var(--pad-x); position: relative; overflow: hidden; }
.featured-scan::before { content: ''; position: absolute; top: -60px; right: -40px; width: 240px; height: 240px; border-radius: 50%; background: rgba(244,178,35,0.06); pointer-events: none; }
.featured-scan__inner { max-width: var(--max-w); margin: 0 auto; position: relative; }

.featured-scan__badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(244,178,35,0.13); border: 1px solid rgba(244,178,35,0.28); border-radius: var(--radius-pill); padding: 5px 12px; margin-bottom: 1rem; }
.featured-scan__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity: 0.35; } }
.featured-scan__label { font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 300; }

.featured-scan__eyebrow { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-muted); font-weight: 300; margin-bottom: 0.6rem; opacity: 0.7; }
.featured-scan__title { font-family: var(--f-head); font-size: clamp(20px, 4vw, 28px); color: #fff; line-height: 1.2; margin-bottom: 1rem; }
.featured-scan__excerpt { font-size: 14px; color: rgba(255,255,255,0.6); font-style: italic; line-height: 1.6; margin-bottom: 1.25rem; }
.featured-scan__actions { display: flex; flex-wrap: wrap; gap: 8px; }

/* ══════════════════════════════════════════════════
   TOOLS STRIP
══════════════════════════════════════════════════ */
.tools-strip { background: var(--cream-dk); padding: 1.5rem var(--pad-x); border-bottom: 1px solid var(--border); }
.tools-strip__inner { max-width: var(--max-w); margin: 0 auto; }

.tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }

.tool-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 14px 10px; text-align: center; text-decoration: none; display: flex; flex-direction: column; align-items: center; transition: all 0.14s ease; }
.tool-card:hover { border-color: var(--green); transform: translateY(-1px); }

.tool-card__icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 9px; }
.tool-card__icon--green { background: var(--green-lt); }
.tool-card__icon--gold  { background: #fff8e6; }
.tool-card__icon--red   { background: var(--red-lt); }
.tool-card__icon--blue  { background: var(--blue-lt); }

.tool-card__name { font-family: var(--f-head); font-size: 12px; color: var(--text); line-height: 1.3; }
.tool-card__sub  { font-size: 10px; color: var(--text-lt); margin-top: 3px; font-style: italic; }

/* ══════════════════════════════════════════════════
   EDITORIAL
══════════════════════════════════════════════════ */
.editorial { padding: 1.75rem var(--pad-x); }
.editorial__inner { max-width: var(--max-w); margin: 0 auto; }
.editorial__more { text-align: center; margin-top: 1.5rem; }

/* Hero article */
.article-hero { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.article-hero__img-wrap { display: block; margin-bottom: 1rem; }
.article-hero__img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius); }
.article-hero__title { font-family: var(--f-head); font-size: clamp(18px, 3.5vw, 24px); line-height: 1.25; margin-bottom: 0.5rem; color: var(--text); }
.article-hero__title a:hover { color: var(--green); }
.article-hero__excerpt { font-size: 14px; color: var(--text-mid); line-height: 1.65; margin-bottom: 0.6rem; font-style: italic; }
.article-hero__meta { font-size: 11px; color: var(--text-lt); letter-spacing: 0.04em; }

/* Article list rows */
.article-list { display: flex; flex-direction: column; }
.article-row { display: grid; grid-template-columns: 1fr 76px; gap: 12px; align-items: start; padding: 14px 0; border-bottom: 1px solid var(--border); }
.article-row:last-child { border-bottom: none; }

.article-row__title { font-family: var(--f-head); font-size: 14px; line-height: 1.35; margin-bottom: 5px; }
.article-row__title a:hover { color: var(--green); }
.article-row__meta { font-size: 10.5px; color: var(--text-lt); }

.article-row__thumb { width: 76px; height: 76px; border-radius: var(--radius); overflow: hidden; flex-shrink: 0; background: var(--cream-dk); display: flex; align-items: center; justify-content: center; }
.article-row__thumb img { width: 100%; height: 100%; object-fit: cover; }
.article-row__thumb--placeholder { background: var(--green-lt); }

/* ══════════════════════════════════════════════════
   NEWSLETTER CTA
══════════════════════════════════════════════════ */
.newsletter-cta { background: var(--green); padding: 2.5rem var(--pad-x); text-align: center; }
.newsletter-cta__inner { max-width: 500px; margin: 0 auto; }
.newsletter-cta__eyebrow { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-muted); margin-bottom: 0.75rem; opacity: 0.8; }
.newsletter-cta__title { font-family: var(--f-head); font-size: clamp(20px, 4vw, 26px); color: var(--gold); margin-bottom: 0.5rem; line-height: 1.2; }
.newsletter-cta__sub { font-size: 13px; color: rgba(255,255,255,0.5); font-style: italic; margin-bottom: 1.25rem; }
.newsletter-cta__form { display: flex; gap: 8px; max-width: 420px; margin: 0 auto; }
.newsletter-cta__input { flex: 1; font-family: var(--f-body); font-size: 13px; font-style: italic; padding: 10px 16px; border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-pill); background: rgba(255,255,255,0.08); color: #fff; outline: none; }
.newsletter-cta__input:focus { border-color: rgba(255,255,255,0.5); }
.newsletter-cta__input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-cta__btn { flex-shrink: 0; }
.newsletter-cta__legal { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 0.75rem; font-style: italic; }
.newsletter-cta__member { font-size: 14px; color: rgba(255,255,255,0.7); }
.newsletter-cta__member a { color: var(--gold); text-decoration: underline; }

/* ══════════════════════════════════════════════════
   POST / ARTICLE
══════════════════════════════════════════════════ */
.post-header { background: var(--green); padding: 2rem var(--pad-x) 1.75rem; }
.post-header__inner { max-width: var(--max-w); margin: 0 auto; }
.post-header__title { font-family: var(--f-head); font-size: clamp(22px, 5vw, 36px); color: #fff; line-height: 1.15; margin-bottom: 0.75rem; }
.post-header__excerpt { font-size: 15px; color: rgba(255,255,255,0.65); font-style: italic; margin-bottom: 1rem; line-height: 1.6; }
.post-header__meta { font-size: 12px; color: rgba(255,255,255,0.45); display: flex; align-items: center; flex-wrap: wrap; gap: 0.25rem; }
.post-header__author { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.65); }
.post-header__avatar { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; }
.post-header__sep { opacity: 0.4; }

.post-feature-image { max-width: var(--max-w); margin: 0 auto; padding: 1.5rem var(--pad-x) 0; }
.post-feature-image img { width: 100%; height: auto; max-height: 500px; object-fit: cover; border-radius: var(--radius); }
.post-feature-image figcaption { font-size: 12px; color: var(--text-lt); text-align: center; margin-top: 0.5rem; font-style: italic; }

/* ── Post content ── */
.post-content { max-width: var(--max-w); margin: 0 auto; padding: 1.75rem var(--pad-x); }

.gh-content h2 { font-family: var(--f-head); font-size: 22px; margin: 2rem 0 0.75rem; }
.gh-content h3 { font-family: var(--f-head); font-size: 18px; margin: 1.75rem 0 0.6rem; }
.gh-content p { font-size: 16px; line-height: 1.8; margin-bottom: 1.25rem; font-weight: 300; }
.gh-content a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.gh-content a:hover { color: var(--green-dk); }
.gh-content strong { font-weight: 600; }
.gh-content em { font-style: italic; color: var(--text-mid); }
.gh-content blockquote { border-left: 3px solid var(--gold); padding: 0.5rem 1.25rem; margin: 1.5rem 0; font-style: italic; color: var(--text-mid); font-size: 17px; }
.gh-content ul, .gh-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.gh-content ul { list-style: disc; }
.gh-content ol { list-style: decimal; }
.gh-content li { margin-bottom: 0.4rem; font-size: 16px; line-height: 1.7; }
.gh-content img { border-radius: var(--radius); margin: 1.5rem auto; }
.gh-content hr { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }
.gh-content figure { margin: 1.5rem 0; }
.gh-content figcaption { font-size: 12px; color: var(--text-lt); text-align: center; margin-top: 0.5rem; font-style: italic; }

/* Post footer */
.post-footer { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x) 2rem; }
.post-footer__tags { display: flex; flex-wrap: wrap; gap: 6px; }

/* Related posts */
.related-posts { padding: 1.75rem var(--pad-x); background: var(--cream-dk); border-top: 1px solid var(--border); }
.related-posts__inner { max-width: var(--max-w); margin: 0 auto; }
.related-posts__title { font-family: var(--f-head); font-size: 16px; margin-bottom: 1rem; }

/* ══════════════════════════════════════════════════
   PAGE
══════════════════════════════════════════════════ */
.page-header { background: var(--green); padding: 2rem var(--pad-x); }
.page-header__inner { max-width: var(--max-w); margin: 0 auto; }
.page-header__title { font-family: var(--f-head); font-size: clamp(24px, 5vw, 38px); color: var(--gold); line-height: 1.15; margin-bottom: 0.5rem; }
.page-header__excerpt { font-size: 15px; color: rgba(255,255,255,0.6); font-style: italic; line-height: 1.6; }
.page-content { max-width: var(--max-w); margin: 0 auto; padding: 1.75rem var(--pad-x); }

/* ══════════════════════════════════════════════════
   TAG ARCHIVE
══════════════════════════════════════════════════ */
.archive-header { background: var(--green); padding: 2rem var(--pad-x); text-align: center; }
.archive-header__inner { max-width: var(--max-w); margin: 0 auto; }
.archive-header__icon { width: 60px; height: 60px; border-radius: 50%; overflow: hidden; margin: 0 auto 1rem; }
.archive-header__title { font-family: var(--f-head); font-size: clamp(24px, 5vw, 36px); color: var(--gold); margin-bottom: 0.5rem; }
.archive-header__desc { font-size: 14px; color: rgba(255,255,255,0.6); font-style: italic; max-width: 480px; margin: 0 auto; }

.archive-grid { padding: 1.75rem var(--pad-x); }
.archive-grid__inner { max-width: var(--max-w); margin: 0 auto; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 12px; margin-top: 2rem; }
.older-posts, .newer-posts { font-size: 13px; color: var(--green); border: 1px solid var(--border); padding: 8px 18px; border-radius: var(--radius-pill); }
.older-posts:hover, .newer-posts:hover { background: var(--green); color: var(--gold); border-color: var(--green); }
.page-number { font-size: 13px; color: var(--text-lt); padding: 8px 0; }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.site-footer { background: var(--green); color: rgba(255,255,255,0.65); padding: 3rem var(--pad-x) 2rem; }
.site-footer__inner { max-width: var(--max-w); margin: 0 auto; display: flex; flex-direction: column; gap: 2rem; }
.site-footer__logo { font-family: var(--f-head); font-size: 22px; color: var(--gold); }
.site-footer__tagline { font-size: 12.5px; color: rgba(255,255,255,0.4); font-style: italic; margin-top: 0.4rem; }
.site-footer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.site-footer__heading { font-family: var(--f-body); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 0.75rem; font-weight: 400; }
.site-footer__col ul { display: flex; flex-direction: column; gap: 0.4rem; }
.site-footer__col a { font-size: 13px; color: rgba(255,255,255,0.6); transition: color 0.13s; }
.site-footer__col a:hover { color: var(--gold); }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.25rem; margin-top: 2rem; max-width: var(--max-w); margin-left: auto; margin-right: auto; display: flex; flex-direction: column; gap: 0.3rem; }
.site-footer__bottom p { font-size: 11px; color: rgba(255,255,255,0.3); }
.site-footer__bottom a { color: rgba(255,255,255,0.45); }
.site-footer__bottom a:hover { color: var(--gold-muted); }

/* ══════════════════════════════════════════════════
   MOBILE BOTTOM NAV
══════════════════════════════════════════════════ */
.mobile-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: #fff; border-top: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(5, 1fr);
  padding: 6px 0 max(8px, env(safe-area-inset-bottom));
}
.mbnav-item { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 4px 0; color: var(--text-lt); transition: color 0.13s; }
.mbnav-item.active, .mbnav-item:hover { color: var(--green); }
.mbnav-item span { font-size: 9.5px; letter-spacing: 0.04em; }
.mbnav-item--center { color: var(--green); }
.mbnav-item--center svg { background: var(--green); border-radius: 50%; padding: 8px; width: 38px; height: 38px; color: var(--gold); margin-top: -10px; }

/* ══════════════════════════════════════════════════
   GHOST CARD ASSETS
══════════════════════════════════════════════════ */
.kg-width-wide { margin: 1.5rem -1.5rem; }
.kg-width-full { margin: 1.5rem calc(50% - 50vw); }
.kg-image-card img { border-radius: var(--radius); }
.kg-gallery-card + .kg-gallery-card { margin-top: 0.5rem; }
.kg-gallery-container { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; }
.kg-callout-card { background: var(--green-lt); border-left: 3px solid var(--green); border-radius: var(--radius); padding: 1rem 1.25rem; margin: 1.5rem 0; }
.kg-callout-emoji { margin-right: 0.5rem; }
.kg-bookmark-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin: 1.5rem 0; }
.kg-bookmark-content { padding: 1rem; }
.kg-bookmark-title { font-family: var(--f-head); font-size: 15px; margin-bottom: 0.3rem; }
.kg-bookmark-description { font-size: 13px; color: var(--text-mid); }
.kg-bookmark-metadata { display: flex; align-items: center; gap: 8px; margin-top: 0.75rem; font-size: 12px; color: var(--text-lt); }
.kg-video-card video { border-radius: var(--radius); width: 100%; }
.kg-toggle-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin: 1.25rem 0; }
.kg-toggle-heading { padding: 0.75rem 1rem; font-family: var(--f-head); font-size: 15px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.kg-toggle-content { padding: 0 1rem 1rem; font-size: 14px; }

/* ══════════════════════════════════════════════════
   MEMBERS / PORTAL
══════════════════════════════════════════════════ */
.gh-post-upgrade-cta { background: var(--green-lt); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; text-align: center; margin: 2rem 0; }
.gh-post-upgrade-cta h2 { font-family: var(--f-head); color: var(--green); margin-bottom: 0.5rem; }
.gh-post-upgrade-cta p { font-size: 14px; color: var(--text-mid); margin-bottom: 1.25rem; font-style: italic; }

/* ══════════════════════════════════════════════════
   RESPONSIVE — TABLET (600px+)
══════════════════════════════════════════════════ */
@media (min-width: 600px) {
  :root { --pad-x: 2rem; }
  .tools-grid { grid-template-columns: repeat(3, 1fr); }
  .article-hero__img { height: 280px; }
  .site-footer__cols { grid-template-columns: repeat(3, 1fr); }
  .newsletter-cta__form { flex-direction: row; }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — DESKTOP (860px+)
══════════════════════════════════════════════════ */
@media (min-width: 860px) {
  :root { --pad-x: 2.5rem; }
  .site-nav { display: block; }
  .hamburger { display: none; }
  .site-header__subnav { display: none; }
  .mobile-bottom-nav { display: none; }
  .site-wrapper { padding-bottom: 0; }
  .tools-grid { grid-template-columns: repeat(6, 1fr); }
  .article-hero__img { height: 340px; }
  .post-header { padding: 3rem 2.5rem 2.5rem; }
  .post-header__title { font-size: 42px; }
  .site-footer__inner { flex-direction: row; align-items: flex-start; gap: 3rem; }
  .site-footer__brand { flex: 0 0 200px; }
  .site-footer__cols { flex: 1; grid-template-columns: repeat(3, 1fr); }
  .kg-width-wide { margin: 1.5rem -3rem; }
}

/* ══════════════════════════════════════════════════
   PRINT
══════════════════════════════════════════════════ */
@media print {
  .site-header, .mobile-bottom-nav, .newsletter-cta, .site-footer, .related-posts { display: none; }
  .post-content { padding: 0; }
  .gh-content a { color: var(--text); text-decoration: none; }
}
