
    /* ── PAGE HEADER ── */
    .page-header {
      padding: 7rem 2rem 3rem;
      max-width: 960px;
      margin-left: auto; margin-right: auto;
    }
    .page-header-eyebrow {
      font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em;
      text-transform: uppercase; color: var(--cta); margin-bottom: 1rem;
      display: block;
    }
    .page-header h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      font-weight: 300; line-height: 1.1; color: var(--ink);
      margin-bottom: 1rem;
    }
    .page-header h1 em { font-style: italic; }
    .page-header p {
      max-width: 540px;
      font-size: 1rem; font-weight: 300;
      color: var(--ink-muted); line-height: 1.7;
    }

    /* ── CATEGORY FILTER ── */
    .filter-bar {
      max-width: 960px; margin: 0 auto;
      padding: 0 2rem 2.5rem;
      display: flex; gap: 0.5rem; flex-wrap: wrap;
    }
    .filter-btn {
      font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em;
      text-transform: uppercase; padding: 0.45rem 1rem;
      border-radius: 100px; border: 1px solid rgba(28,74,58,0.2);
      background: transparent; color: var(--ink-muted);
      cursor: pointer; transition: all 0.2s;
    }
    .filter-btn:hover, .filter-btn.active {
      background: var(--forest); color: var(--white);
      border-color: var(--forest);
    }

    /* ── FEATURED ARTICLE ── */
    .featured {
      max-width: 960px; margin: 0 auto 3rem;
      padding: 0 2rem;
    }
    .featured-card {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-radius: 4px;
      overflow: hidden;
      background: var(--white);
      text-decoration: none;
      transition: transform 0.3s;
    }
    .featured-card:hover { transform: translateY(-3px); }
    .featured-img {
      height: 400px;
      background: linear-gradient(160deg, #1C4A3A 0%, #2d7a5f 50%, #c8b89a 100%);
      display: flex; align-items: center; justify-content: center;
    }
    .featured-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .featured-img-placeholder {
      font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
      color: rgba(255,255,255,0.35);
    }
    .featured-body {
      padding: 3rem 2.5rem;
      display: flex; flex-direction: column; justify-content: center;
    }
    .article-eyebrow {
      font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--cta); margin-bottom: 0.8rem;
      display: block;
    }
    .featured-body h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem; font-weight: 400; line-height: 1.2;
      color: var(--ink); margin-bottom: 0.8rem;
    }
    .featured-body p {
      font-size: 0.92rem; font-weight: 300; color: var(--ink-muted);
      line-height: 1.7; margin-bottom: 1.5rem;
    }
    .read-more {
      font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--forest);
      display: inline-flex; align-items: center; gap: 0.4rem;
      text-decoration: none;
    }
    .read-more::after {
      content: '→';
      transition: transform 0.2s;
    }
    .featured-card:hover .read-more::after { transform: translateX(4px); }
    .featured-meta {
      display: flex; align-items: center; gap: 1rem;
      margin-bottom: 1rem;
    }
    .meta-item {
      font-size: 0.78rem; color: var(--ink-faint);
    }
    .meta-sep { color: var(--sand-dark); }

    /* ── ARTICLE GRID ── */
    .grid-section {
      max-width: 960px; margin: 0 auto;
      padding: 0 2rem 5rem;
    }
    .grid-section-title {
      font-size: 0.7rem; font-weight: 500; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--ink-faint);
      margin-bottom: 1.5rem; padding-bottom: 0.75rem;
      border-bottom: 1px solid var(--sand-dark);
    }
    .article-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
    .article-card {
      text-decoration: none;
      display: flex; flex-direction: column;
    }
    .card-img {
      height: 200px;
      border-radius: 2px;
      overflow: hidden;
      margin-bottom: 1rem;
      position: relative;
    }
    .card-img-inner {
      width: 100%; height: 100%;
      background: linear-gradient(135deg, #1C4A3A, #4a9e7a);
      display: flex; align-items: center; justify-content: center;
      transition: transform 0.4s ease;
    }
    .article-card:hover .card-img-inner { transform: scale(1.04); }
    .card-img img { width: 100%; height: 100%; object-fit: cover; }
    .card-placeholder-text {
      font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
      color: rgba(255,255,255,0.3);
    }
    .card-body { flex: 1; display: flex; flex-direction: column; }
    .card-body h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem; font-weight: 600; line-height: 1.3;
      color: var(--ink); margin-bottom: 0.5rem;
      transition: color 0.2s;
    }
    .article-card:hover .card-body h3 { color: var(--forest); }
    .card-body p {
      font-size: 0.85rem; font-weight: 300; color: var(--ink-muted);
      line-height: 1.6; margin-bottom: 0.75rem; flex: 1;
    }
    .card-meta {
      font-size: 0.72rem; color: var(--ink-faint);
      display: flex; gap: 0.6rem; align-items: center;
    }

    /* Coming soon card */
    .card-img-inner.coming {
      background: var(--sand-dark);
    }
    .card-img-inner.coming .card-placeholder-text { color: var(--ink-faint); }

    /* ── NEWSLETTER ── */
    .newsletter {
      background: var(--forest);
      padding: 4rem 2rem;
      text-align: center;
    }
    .newsletter-inner { max-width: 480px; margin: 0 auto; }
    .newsletter span {
      font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--cta); display: block;
      margin-bottom: 0.8rem;
    }
    .newsletter h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem; font-weight: 300; font-style: italic;
      color: var(--sand); line-height: 1.3; margin-bottom: 0.8rem;
    }
    .newsletter p {
      font-size: 0.88rem; color: rgba(245,240,232,0.65);
      margin-bottom: 1.8rem; line-height: 1.6;
    }
    .newsletter-form {
      display: flex; gap: 0.5rem; max-width: 380px; margin: 0 auto;
    }
    .newsletter-form input {
      flex: 1; padding: 0.75rem 1rem;
      background: rgba(255,255,255,0.1); border: 1px solid rgba(245,240,232,0.2);
      border-radius: 2px; color: var(--sand); font-family: 'DM Sans', sans-serif;
      font-size: 0.88rem; outline: none; transition: border-color 0.2s;
    }
    .newsletter-form input::placeholder { color: rgba(245,240,232,0.4); }
    .newsletter-form input:focus { border-color: var(--cta); }
    .newsletter-form button {
      background: var(--cta); color: var(--ink);
      border: none; padding: 0.75rem 1.4rem; border-radius: 2px;
      font-family: 'DM Sans', sans-serif; font-size: 0.78rem;
      font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
      cursor: pointer; white-space: nowrap; transition: opacity 0.2s;
    }
    .newsletter-form button:hover { opacity: 0.85; }

    /* ── FOOTER ── */
    .footer-mini { background: var(--ink); padding: 2rem; text-align: center; }
    .footer-mini p { font-size: 0.8rem; color: rgba(245,240,232,0.4); }
    .footer-mini a { color: rgba(245,240,232,0.6); text-decoration: none; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .featured-card { grid-template-columns: 1fr; }
      .featured-img { height: 260px; }
      .article-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 600px) {
      .page-header { padding: 6rem 1.5rem 2rem; }
      .featured, .filter-bar, .grid-section { padding-left: 1.5rem; padding-right: 1.5rem; }
      .article-grid { grid-template-columns: 1fr; }
      .newsletter-form { flex-direction: column; }
    }
  </style>


/* ── Article page styles ── */
/* ── Article-specific styles ── */
:root {
  --col-article: 680px;
  --col-wide: 960px;
}

.article-hero {
  position: relative;
  height: 70vh;
  min-height: 440px;
  overflow: hidden;
  background: var(--forest);
}
.article-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.article-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,18,12,.10) 0%,
    rgba(5,18,12,.05) 35%,
    rgba(5,18,12,.60) 75%,
    rgba(5,18,12,.85) 100%
  );
}
.article-hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem var(--sp-6, 2rem) 3rem;
  max-width: var(--col-wide);
  margin: 0 auto;
}
.article-eyebrow {
  font-size: 11px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--cta); display: block; margin-bottom: 12px;
}
.article-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 300; line-height: 1.1;
  color: var(--white); margin-bottom: 16px;
  letter-spacing: -.01em;
}
.article-hero-title em { font-style: italic; }
.article-meta {
  display: flex; align-items: center;
  gap: 12px; flex-wrap: wrap;
  font-size: 13px; color: rgba(245,240,232,.65);
}
.article-meta-sep { opacity: .35; }

/* ── Reading progress bar ── */
.reading-bar {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: var(--cta); z-index: 999;
  transition: width .1s linear;
}

/* ── Page layout ── */
.article-page {
  max-width: var(--col-wide);
  margin: 0 auto;
  padding: 0 var(--sp-6, 2rem);
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 4rem;
  align-items: start;
}
.article-body { padding: 3.5rem 0 6rem; }

/* ── Typography ── */
.standfirst {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 300; font-style: italic;
  line-height: 1.6; color: var(--forest);
  border-left: 2px solid var(--cta);
  padding-left: 1.25rem;
  margin-bottom: 2.5rem;
}
.article-body p {
  margin-bottom: 1.4rem;
  font-weight: 300; line-height: 1.75;
}
.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.75rem; font-weight: 400;
  color: var(--ink); margin: 3rem 0 1rem;
  line-height: 1.2;
}

/* ── Activity items ── */
.activity {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0 1.5rem;
  margin-bottom: 2.5rem;
  align-items: start;
}
.activity-num {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 300;
  color: var(--sand-dark, #EBE4D5);
  line-height: 1; text-align: right;
  border-right: 1px solid var(--sand-dark, #EBE4D5);
  padding-right: 1rem; padding-top: 2px;
}
.activity-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600;
  color: var(--ink); margin-bottom: 8px;
  line-height: 1.25;
}
.activity-content p {
  font-size: 15px; color: var(--ink-mid, #5a5450);
  margin-bottom: 8px;
}
.activity-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.activity-tag {
  font-size: 11px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--forest);
  background: rgba(28,74,58,.08);
  padding: 3px 10px; border-radius: 2px;
}

/* ── Pull quote ── */
.pullquote {
  margin: 2.5rem 0;
  padding: 1.75rem 2rem;
  background: var(--forest);
  border-radius: 2px;
}
.pullquote p {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 300; font-style: italic;
  color: var(--sand); line-height: 1.5;
  margin: 0;
}
.pullquote p::before { content: '\201C'; }
.pullquote p::after  { content: '\201D'; }
.pullquote cite {
  display: block;
  font-family: var(--font-body);
  font-size: 11px; font-style: normal; font-weight: 500;
  color: var(--cta); letter-spacing: .1em;
  text-transform: uppercase; margin-top: 12px;
}

/* ── Tip box ── */
.tip-box {
  background: rgba(232,168,85,.1);
  border-left: 3px solid var(--cta);
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  border-radius: 0 2px 2px 0;
}
.tip-label {
  font-size: 10px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--cta); margin-bottom: 4px;
}
.tip-box p { font-size: 14px; margin: 0; color: var(--ink-mid, #5a5450); }
.tip-box a { color: var(--forest); }

/* ── Inline image ── */
.article-img { margin: 2rem 0; }
.article-img img {
  width: 100%; height: 360px;
  object-fit: cover; display: block;
  border-radius: 2px;
}
.article-img figcaption {
  font-size: 12px; color: var(--ink-muted, #9a918b);
  margin-top: 8px; font-style: italic;
}

/* ── Tags ── */
.article-tags {
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid var(--sand-dark, #EBE4D5);
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
}
.tags-label {
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-muted, #9a918b); margin-right: 4px;
}
.tag-pill {
  font-size: 12px; color: var(--forest);
  border: 1px solid rgba(28,74,58,.25);
  padding: 4px 12px; border-radius: 100px;
  text-decoration: none; transition: all .2s;
}
.tag-pill:hover { background: var(--forest); color: var(--white); }

/* ── Author ── */
.author-box {
  margin-top: 3rem; padding: 1.75rem;
  background: var(--white); border-radius: 4px;
  display: flex; gap: 1.25rem; align-items: flex-start;
  border: 1px solid var(--sand-dark, #EBE4D5);
}
.author-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--forest), var(--cta));
  flex-shrink: 0; display: flex;
  align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.25rem; color: var(--white);
}
.author-name {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 600;
  color: var(--ink); margin-bottom: 4px;
}
.author-bio { font-size: 13px; color: var(--ink-mid, #5a5450); line-height: 1.6; }

/* ── Sidebar ── */
.article-sidebar { padding: 3.5rem 0 6rem; position: sticky; top: 100px; }
.sidebar-block {
  background: var(--white); border-radius: 4px;
  padding: 1.25rem; margin-bottom: 1.25rem;
  border: 1px solid var(--sand-dark, #EBE4D5);
}
.sidebar-title {
  font-size: 10px; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-muted, #9a918b);
  margin-bottom: 12px;
}
.toc-list { list-style: none; }
.toc-list li { border-bottom: 1px solid var(--sand, #F5F0E8); padding: 6px 0; }
.toc-list li:last-child { border-bottom: none; }
.toc-list a {
  font-size: 13px; color: var(--ink-mid, #5a5450);
  text-decoration: none; display: flex;
  align-items: baseline; gap: 8px; transition: color .15s;
}
.toc-list a:hover { color: var(--forest); }
.toc-num {
  font-family: var(--font-display); font-size: 11px;
  color: var(--ink-muted, #9a918b); min-width: 18px;
}
.sidebar-cta {
  background: var(--forest); border-radius: 4px;
  padding: 1.5rem; text-align: center;
}
.sidebar-cta p {
  font-family: var(--font-display); font-size: 1.05rem;
  font-style: italic; color: var(--sand);
  margin-bottom: 14px; line-height: 1.4;
}
.sidebar-cta a {
  display: inline-block; background: var(--cta);
  color: var(--ink); font-size: 12px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 10px 20px; border-radius: 2px;
  text-decoration: none; transition: opacity .15s;
}
.sidebar-cta a:hover { opacity: .88; }
.quick-facts { list-style: none; }
.quick-facts li {
  display: flex; justify-content: space-between;
  font-size: 13px; padding: 6px 0;
  border-bottom: 1px solid var(--sand, #F5F0E8); gap: 12px;
}
.quick-facts li:last-child { border-bottom: none; }
.fact-label { color: var(--ink-muted, #9a918b); }
.fact-value { color: var(--ink); font-weight: 500; text-align: right; }

/* ── Related articles ── */
.related-section { background: var(--white); padding: 4rem 2rem; }
.related-inner { max-width: var(--col-wide); margin: 0 auto; }
.related-section h2 {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 400;
  color: var(--ink); margin-bottom: 2rem;
}
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.related-card { text-decoration: none; }
.related-card-img {
  height: 160px; border-radius: 2px; overflow: hidden;
  margin-bottom: 10px; background: var(--forest);
}
.related-card span {
  display: block; font-size: 10px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--cta); margin-bottom: 4px;
}
.related-card h3 {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 600;
  color: var(--ink); line-height: 1.3; transition: color .2s;
}
.related-card:hover h3 { color: var(--forest); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .article-page { grid-template-columns: 1fr; gap: 0; }
  .article-sidebar { display: none; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .article-hero { height: 55vh; min-height: 360px; }
  .article-hero-title { font-size: 1.9rem; }
  .article-body { padding: 2.5rem 0 4rem; }
  .activity { grid-template-columns: 40px 1fr; gap: 0 1rem; }
  .activity-num { font-size: 2.2rem; }
  .pullquote { padding: 1.25rem 1.5rem; }
  .related-grid { grid-template-columns: 1fr; }
  .author-box { flex-direction: column; }
}
</style>

#wa-float{position:fixed;bottom:24px;left:24px;z-index:9998;display:flex;align-items:center;gap:9px;background:#25D366;color:#fff;text-decoration:none;padding:11px 16px 11px 13px;border-radius:50px;font-family:'Inter',system-ui,sans-serif;font-size:13px;font-weight:500;box-shadow:0 4px 16px rgba(37,211,102,.4);transition:transform .2s,box-shadow .2s}
#wa-float:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(37,211,102,.5)}
#wa-float svg{width:21px;height:21px;flex-shrink:0}
@media(max-width:480px){#wa-float span{display:none}#wa-float{padding:12px;border-radius:50%}}
</style>
