

/* === HOMEPAGE STYLES === */

    :root {
      --gh-font-heading: 'Switzer', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      --gh-font-body: 'Switzer', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      --cream: #F7F4EE;
      --paper: #FAFAF7;
      --ink: #0B1929;
      --ink-mid: #3A4A5A;
      --ink-soft: #6B7886;
      --green: #2D8B6F;
      --green-deep: #1F6B5F;
      --green-bright: #3FA886;
      --rule: #DDD6C8;
      --sans: 'Switzer', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html, body { background: var(--cream); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
    a { color: inherit; text-decoration: none; }
    button { font-family: inherit; cursor: pointer; }

    /* ---- NAV ---- */
    .nav {
      display: flex; align-items: center; justify-content: space-between;
      padding: 22px 56px; background: var(--cream);
      border-bottom: 1px solid var(--rule);
      position: sticky; top: 0; z-index: 100;
    }
    .nav-logo { font-family: var(--sans); font-size: 32px; font-weight: 700; color: var(--green); letter-spacing: -0.02em; line-height: 1; }
    .nav-right { display: flex; align-items: center; gap: 36px; }
    .nav-link { font-family: var(--sans); font-size: 17px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; transition: color 0.2s ease; }
    .nav-link:hover, .nav-link.active { color: var(--green); }
    .nav-cta {
      display: inline-flex; align-items: center; padding: 10px 22px;
      background: var(--green); color: var(--cream); border-radius: 100px;
      font-family: var(--sans); font-size: 16px; font-weight: 700;
      letter-spacing: -0.01em; transition: background 0.22s ease;
    }
    .nav-cta:hover { background: var(--green-deep); }

    /* ---- BLOG HEADER ---- */
    .blog-header {
      padding: 120px 56px 80px;
      max-width: 1320px; margin: 0 auto;
    }
    .blog-header h1 {
      font-family: var(--sans); font-size: clamp(38px, 4.8vw, 68px);
      font-weight: 700; color: var(--ink); letter-spacing: -0.035em;
      line-height: 1; margin-bottom: 24px; max-width: 1000px;
    }
    .blog-header h1 .accent { color: var(--green); font-style: italic; }
    .blog-header p {
      font-family: var(--sans); font-size: clamp(16px, 1.2vw, 19px);
      font-weight: 400; color: var(--ink-mid); line-height: 1.55; max-width: 680px;
    }

    /* ---- TWO-COLUMN LAYOUT ---- */
    .blog-grid {
      max-width: 1320px; margin: 0 auto; padding: 0 56px 120px;
      display: grid; grid-template-columns: 1fr 320px; gap: 80px;
      align-items: start;
      border-top: 3px solid var(--green);
    }

    /* ---- POST LIST ---- */
    .post-list { padding: 0; }
    .post-entry {
      display: block;
      padding: 48px 0;
      border-bottom: 1px solid var(--rule);
    }
    .post-entry:first-child { padding-top: 56px; }
    .post-entry:hover .post-title { color: var(--green); }
    .post-title {
      font-family: var(--sans); font-size: clamp(26px, 2.6vw, 36px);
      font-weight: 700; color: var(--ink); letter-spacing: -0.022em;
      line-height: 1.12; margin-bottom: 16px;
      transition: color 0.22s ease;
    }
    .post-byline {
      display: flex; align-items: center; gap: 16px;
      margin-bottom: 24px; flex-wrap: wrap;
    }
    .post-byline-text {
      font-family: var(--sans); font-size: 13px; font-weight: 600;
      color: var(--ink-soft); letter-spacing: 0.02em;
    }
    .post-byline-text strong { color: var(--ink-mid); font-weight: 700; }
    .post-share { display: inline-flex; gap: 8px; margin-left: auto; align-items: center; }
    .post-share::before {
      content: 'Share';
      font-family: var(--sans);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--ink-soft);
      margin-right: 4px;
    }
    .share-btn {
      display: inline-flex; align-items: center; justify-content: center;
      width: 36px; height: 36px;
      background: transparent; border: 1.5px solid var(--green);
      border-radius: 50%; color: var(--green);
      transition: all 0.22s ease;
    }
    .share-btn:hover {
      background: var(--green); color: var(--cream);
      transform: translateY(-2px);
      box-shadow: 0 4px 10px rgba(45, 139, 111, 0.18);
    }
    .share-btn svg { width: 16px; height: 16px; }
    .post-excerpt {
      font-family: var(--sans); font-size: 18px; font-weight: 400;
      color: var(--ink-mid); line-height: 1.6; margin-bottom: 20px;
    }
    .post-tags {
      display: flex; gap: 10px; flex-wrap: wrap;
    }
    .post-tag {
      font-family: var(--sans); font-size: 12px; font-weight: 700;
      color: var(--green); letter-spacing: 0.14em; text-transform: uppercase;
      padding: 4px 0;
    }
    .post-tag:not(:last-child)::after {
      content: '·'; margin-left: 10px; color: var(--ink-soft);
    }

    /* ---- PAGINATION ---- */
    .pagination {
      padding: 48px 0 0;
      display: flex; justify-content: center; gap: 10px;
    }
    .pagination a, .pagination span {
      display: inline-flex; align-items: center; justify-content: center;
      min-width: 40px; height: 40px; padding: 0 14px;
      font-family: var(--sans); font-size: 14px; font-weight: 700;
      color: var(--ink-soft); border-radius: 100px;
      transition: all 0.2s ease;
    }
    .pagination a:hover { color: var(--green); background: rgba(45, 139, 111, 0.08); }
    .pagination .current { background: var(--green); color: var(--cream); }
    .pagination .disabled { opacity: 0.3; cursor: not-allowed; }

    /* ---- SIDEBAR (subscribe) ---- */
    .blog-sidebar {
      position: sticky; top: 100px;
      padding-top: 56px;
    }
    .subscribe-block {
      padding: 36px 28px;
      background: var(--paper);
      border: 1px solid var(--rule);
      border-radius: 12px;
    }
    .subscribe-block h3 {
      font-family: var(--sans); font-size: 22px; font-weight: 700;
      color: var(--ink); letter-spacing: -0.018em; line-height: 1.2;
      margin-bottom: 12px;
    }
    .subscribe-block p {
      font-family: var(--sans); font-size: 14.5px; font-weight: 400;
      color: var(--ink-mid); line-height: 1.55; margin-bottom: 24px;
    }
    .subscribe-form { display: flex; flex-direction: column; gap: 12px; }
    .subscribe-form input[type="email"] {
      font-family: var(--sans); font-size: 15px; font-weight: 400;
      color: var(--ink); background: var(--cream);
      border: 1px solid var(--rule); border-radius: 8px;
      padding: 12px 14px; transition: border-color 0.2s ease;
    }
    .subscribe-form input[type="email"]:focus {
      outline: none; border-color: var(--green);
    }
    .subscribe-form input[type="email"]::placeholder { color: var(--ink-soft); }
    .subscribe-form button {
      font-family: var(--sans); font-size: 15px; font-weight: 700;
      background: var(--green); color: var(--cream);
      border: 1.5px solid var(--green); border-radius: 100px;
      padding: 12px 24px; transition: all 0.22s ease;
      letter-spacing: -0.005em;
    }
    .subscribe-form button:hover {
      background: var(--green-deep); border-color: var(--green-deep);
    }
    .subscribe-note {
      margin-top: 16px; font-family: var(--sans); font-size: 12px;
      color: var(--ink-soft); line-height: 1.5; text-align: center;
    }

    /* ---- FOOTER ---- */
    .footer {
      background: var(--cream); border-top: 1px solid var(--rule);
      padding: 72px 56px 40px;
    }
    .footer-inner {
      max-width: 1320px; margin: 0 auto;
      display: grid; grid-template-columns: 1.5fr 1fr 1fr;
      gap: 64px; margin-bottom: 56px;
    }
    .footer-brand {
      font-family: var(--sans); font-size: 28px; font-weight: 700;
      color: var(--green); letter-spacing: -0.02em;
      margin-bottom: 16px; display: inline-block;
    }
    .footer-tagline {
      font-family: var(--sans); font-size: 15px; font-weight: 400;
      color: var(--ink-mid); line-height: 1.55; max-width: 380px;
    }
    .footer-col h4 {
      font-family: var(--sans); font-size: 12px; font-weight: 700;
      color: var(--ink); letter-spacing: 0.14em; text-transform: uppercase;
      margin-bottom: 18px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .footer-col a {
      font-family: var(--sans); font-size: 15px; font-weight: 500;
      color: var(--ink-mid); transition: color 0.2s ease;
    }
    .footer-col a:hover { color: var(--green); }
    .footer-bottom {
      max-width: 1320px; margin: 0 auto;
      padding-top: 28px; border-top: 1px solid var(--rule);
      display: flex; justify-content: space-between; align-items: center;
      font-family: var(--sans); font-size: 13px; font-weight: 500;
      color: var(--ink-soft);
    }

    @media (max-width: 1000px) {
      .blog-grid { grid-template-columns: 1fr; }
      .blog-sidebar { position: static; padding-top: 0; }
    }
    @media (max-width: 700px) {
      .nav-right .nav-link:not(:last-child) { display: none; }
      .blog-header { padding: 72px 24px 56px; }
      .blog-grid { padding: 0 24px 80px; gap: 40px; }
      .post-byline { gap: 12px; }
      .post-share { margin-left: 0; }
      .footer { padding: 56px 24px 32px; }
      .footer-inner { grid-template-columns: 1fr; gap: 40px; }
      .footer-bottom { flex-direction: column; gap: 16px; }
    }
  
/* ============ v66 NAV (unified across site) ============ */
.nav {
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 56px !important;
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center;
  background: rgba(247, 244, 238, 0.92) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--rule);
  justify-content: initial !important;
}
.nav-logo {
  justify-self: start;
  font-family: var(--sans);
  font-size: 40px !important;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.03em;
  text-decoration: none;
  line-height: 1;
}
.nav-center { justify-self: center; display: flex; align-items: center; gap: 36px; }
.nav-center a {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.nav-center a:hover { color: var(--green); }
.nav-center a.active { color: var(--green); }
.nav-right { justify-self: end; display: flex; align-items: center; gap: 0; }
.nav-right a {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 800;
  color: var(--green);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.nav-right a:hover { color: var(--green-deep); }
/* Hide any stale .nav-right divs that have multiple anchors (we now use a single anchor) */

/* ============ v66 FOOTER (unified across site) ============ */
.footer {
  background: var(--ink) !important;
  color: rgba(247, 244, 238, 0.7) !important;
  padding: 80px 56px 40px !important;
  border-top: 1px solid rgba(247,244,238,0.08);
}
.footer-inner {
  max-width: 1320px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr !important;
  gap: 56px !important;
  align-items: start;
  margin-bottom: 64px !important;
}
.footer-brand-block { max-width: none; }
.footer-brand {
  font-family: var(--sans);
  font-size: 22px !important;
  font-weight: 700;
  color: var(--green) !important;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  display: block !important;
  text-decoration: none;
}
.footer-description {
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 400;
  color: rgba(247, 244, 238, 0.82) !important;
  line-height: 1.6;
  margin-top: 14px;
  margin-bottom: 0;
  max-width: 440px;
}
.footer-tagline { display: none; }  /* legacy element, hide if present */
.footer-col h5 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: rgba(247, 244, 238, 0.92) !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col h4 {  /* legacy heading, match the h5 treatment */
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: rgba(247, 244, 238, 0.92) !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: block; gap: 0 !important; flex-direction: initial !important; }
.footer-col li { margin-bottom: 0; }
.footer-col a {
  font-family: var(--sans);
  font-size: 14px !important;
  color: rgba(247, 244, 238, 0.7) !important;
  text-decoration: none;
  line-height: 1.8;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cream) !important; }
.footer-address { font-family: var(--sans); font-size: 13.5px; color: rgba(247, 244, 238, 0.68); line-height: 1.75; }
.footer-address-line { display: block; }
.footer-address-line a { color: rgba(247, 244, 238, 0.72); text-decoration: none; transition: color 0.2s ease; font-size: 13.5px !important; line-height: 1.75; }
.footer-address-line a:hover { color: var(--green) !important; }
.footer-gst { font-size: 12px; opacity: 0.85; letter-spacing: 0.02em; }
.footer-office .footer-address { font-size: 13.5px; line-height: 1.75; color: rgba(247, 244, 238, 0.68); }
.footer-office .footer-gst { font-size: 12px; opacity: 0.85; letter-spacing: 0.02em; }
.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(247,244,238,0.08);
  display: flex;
  justify-content: center !important;
  align-items: center;
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(247, 244, 238, 0.55);
  letter-spacing: 0.04em;
}
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr !important; gap: 48px !important; }
  .footer-brand-block { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
  .nav { padding: 20px 24px !important; }
  .nav-center { display: none; }
  .footer { padding: 56px 24px 32px !important; }
  .footer-inner { grid-template-columns: 1fr !important; gap: 40px !important; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; justify-content: flex-start !important; }
}


        /* ===== Footer social icons (v69) ===== */
        .footer-social { display: flex; align-items: center; gap: 18px; margin-top: 24px; }
        .footer-social a {
          color: rgba(247, 244, 238, 0.7);
          transition: color 0.2s ease, transform 0.2s ease;
          display: inline-flex; align-items: center; justify-content: center;
        }
        .footer-social a:hover { color: var(--green); transform: translateY(-1px); }
        .footer-social svg { display: block; }


/* === POST PAGE STYLES === */

    :root {
      --cream: #F7F4EE; --paper: #FAFAF7;
      --ink: #0B1929; --ink-mid: #3A4A5A; --ink-soft: #6B7886;
      --green: #2D8B6F; --green-deep: #1F6B5F;
      --rule: #DDD6C8;
      --sans: 'Switzer', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html, body { background: var(--cream); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
    a { color: inherit; text-decoration: none; }
    button { font-family: inherit; cursor: pointer; }

    /* ---- NAV ---- */
    .nav { display: flex; align-items: center; justify-content: space-between; padding: 22px 56px; background: var(--cream); border-bottom: 1px solid var(--rule); position: sticky; top: 0; z-index: 100; }
    .nav-logo { font-family: var(--sans); font-size: 32px; font-weight: 700; color: var(--green); letter-spacing: -0.02em; line-height: 1; }
    .nav-right { display: flex; align-items: center; gap: 36px; }
    .nav-link { font-family: var(--sans); font-size: 17px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; transition: color 0.2s ease; }
    .nav-link:hover, .nav-link.active { color: var(--green); }
    .nav-cta { display: inline-flex; align-items: center; padding: 10px 22px; background: var(--green); color: var(--cream); border-radius: 100px; font-family: var(--sans); font-size: 16px; font-weight: 700; letter-spacing: -0.01em; transition: background 0.22s ease; }
    .nav-cta:hover { background: var(--green-deep); }

    /* ---- POST HEADER ---- */
    .post-page { padding-top: 80px; }
    .post-header {
      max-width: 940px; margin: 0 auto; padding: 0 56px 64px;
      text-align: center;
    }
    .post-header-tags {
      display: inline-flex; gap: 10px; margin-bottom: 32px; flex-wrap: wrap; justify-content: center;
    }
    .post-header-tags a {
      font-family: var(--sans); font-size: 12px; font-weight: 700;
      color: var(--green); letter-spacing: 0.14em; text-transform: uppercase;
    }
    .post-header-tags a:not(:last-child)::after {
      content: '·'; margin-left: 10px; color: var(--ink-soft);
    }
    .post-title {
      font-family: var(--sans); font-size: clamp(36px, 4.6vw, 60px);
      font-weight: 700; color: var(--ink); letter-spacing: -0.028em;
      line-height: 1.06; margin-bottom: 28px;
    }
    .post-subtitle {
      font-family: var(--sans); font-size: clamp(19px, 1.6vw, 24px);
      font-weight: 400; color: var(--ink-mid); line-height: 1.45;
      max-width: 820px; margin: 0 auto 48px;
    }
    .post-meta-row {
      display: flex; align-items: center; justify-content: center; gap: 16px;
      flex-wrap: wrap; padding-top: 32px; border-top: 1px solid var(--rule);
    }
    .post-meta-text {
      font-family: var(--sans); font-size: 14px; font-weight: 600;
      color: var(--ink-soft); letter-spacing: 0.02em;
    }
    .post-meta-text strong { color: var(--ink-mid); font-weight: 700; }
    .meta-separator { width: 4px; height: 4px; background: var(--rule); border-radius: 50%; }

    .post-share {
      display: inline-flex; gap: 8px; margin-left: 20px; align-items: center;
    }
    .post-share::before {
      content: 'Share';
      font-family: var(--sans); font-size: 11px; font-weight: 700;
      letter-spacing: 0.16em; text-transform: uppercase;
      color: var(--ink-soft); margin-right: 4px;
    }
    .share-btn {
      display: inline-flex; align-items: center; justify-content: center;
      width: 36px; height: 36px; background: transparent;
      border: 1.5px solid var(--green); border-radius: 50%;
      color: var(--green); transition: all 0.22s ease;
    }
    .share-btn:hover {
      background: var(--green); color: var(--cream); transform: translateY(-2px);
      box-shadow: 0 4px 10px rgba(45, 139, 111, 0.18);
    }
    .share-btn svg { width: 16px; height: 16px; }

    /* ---- POST BODY ---- */
    .post-body {
      max-width: 820px; margin: 0 auto;
      padding: 64px 56px 96px;
    }
    .post-body > * { margin-bottom: 28px; }
    .post-body p {
      font-family: var(--sans); font-size: 18px; font-weight: 400;
      color: var(--ink-mid); line-height: 1.72;
    }
    .post-body p:first-of-type {
      font-size: 21px; line-height: 1.55; color: var(--ink); font-weight: 400;
    }
    .post-body h2 {
      font-family: var(--sans); font-size: clamp(26px, 2.6vw, 32px);
      font-weight: 700; color: var(--ink); letter-spacing: -0.022em;
      line-height: 1.2; margin-top: 64px; margin-bottom: 20px;
    }
    .post-body h3 {
      font-family: var(--sans); font-size: clamp(19px, 1.8vw, 22px);
      font-weight: 700; color: var(--ink); letter-spacing: -0.015em;
      line-height: 1.3; margin-top: 40px; margin-bottom: 14px;
    }
    .post-body strong { color: var(--ink); font-weight: 700; }
    .post-body em { font-style: italic; }
    .post-body a { color: var(--green); border-bottom: 1px solid transparent; transition: border-color 0.18s ease; }
    .post-body a:hover { border-bottom-color: var(--green); }
    .post-body ul, .post-body ol { padding-left: 28px; }
    .post-body li {
      font-family: var(--sans); font-size: 18px; font-weight: 400;
      color: var(--ink-mid); line-height: 1.7; margin-bottom: 12px;
    }

    /* Pull-quote — breaks the 720px column */
    .post-body blockquote {
      margin: 56px -56px;
      padding: 0 56px 0 40px;
      border-left: 4px solid var(--green);
      font-family: var(--sans); font-size: clamp(22px, 2.2vw, 28px);
      font-weight: 400; font-style: italic;
      color: var(--ink); line-height: 1.4;
      letter-spacing: -0.015em;
    }
    .post-body code {
      font-family: ui-monospace, 'SF Mono', Menlo, monospace;
      font-size: 0.9em; background: var(--paper);
      padding: 2px 6px; border-radius: 4px; color: var(--ink);
    }

    /* ---- POST FOOTER ---- */
    .post-footer {
      max-width: 820px; margin: 0 auto;
      padding: 0 56px 56px;
      border-top: 1px solid var(--rule);
      padding-top: 48px;
    }
    .post-tags-end {
      margin-bottom: 56px;
      font-family: var(--sans); font-size: 13px; font-weight: 600;
      color: var(--ink-soft); letter-spacing: 0.04em;
    }
    .post-tags-end a {
      color: var(--green); font-weight: 700; letter-spacing: 0.12em;
      text-transform: uppercase; margin-left: 8px;
    }
    .post-tags-end a:not(:last-of-type)::after {
      content: '·'; margin-left: 8px; color: var(--ink-soft);
    }

    .post-author-block {
      margin-bottom: 64px;
      padding: 28px 0;
      border-top: 1px solid var(--rule);
      border-bottom: 1px solid var(--rule);
    }
    .post-author-block h4 {
      font-family: var(--sans); font-size: 18px; font-weight: 700;
      color: var(--ink); letter-spacing: -0.015em; margin-bottom: 8px;
    }
    .post-author-block p {
      font-family: var(--sans); font-size: 15px; font-weight: 400;
      color: var(--ink-mid); line-height: 1.55;
    }

    /* ---- END-OF-POST SUBSCRIBE BLOCK ---- */
    .post-subscribe-end {
      margin-bottom: 80px;
      padding: 40px 36px;
      background: var(--paper);
      border: 1px solid var(--rule);
      border-radius: 12px;
      text-align: center;
    }
    .post-subscribe-end h3 {
      font-family: var(--sans); font-size: 24px; font-weight: 700;
      color: var(--ink); letter-spacing: -0.02em; line-height: 1.2;
      margin-bottom: 12px;
    }
    .post-subscribe-end p {
      font-family: var(--sans); font-size: 15px; font-weight: 400;
      color: var(--ink-mid); line-height: 1.55; margin-bottom: 24px;
      max-width: 480px; margin-left: auto; margin-right: auto;
    }
    .subscribe-form-end {
      display: flex; gap: 10px; max-width: 440px; margin: 0 auto;
    }
    .subscribe-form-end input[type="email"] {
      flex: 1; font-family: var(--sans); font-size: 15px; font-weight: 400;
      color: var(--ink); background: var(--cream);
      border: 1px solid var(--rule); border-radius: 8px; padding: 12px 14px;
      transition: border-color 0.2s ease;
    }
    .subscribe-form-end input[type="email"]:focus { outline: none; border-color: var(--green); }
    .subscribe-form-end button {
      font-family: var(--sans); font-size: 15px; font-weight: 700;
      background: var(--green); color: var(--cream);
      border: 1.5px solid var(--green); border-radius: 100px;
      padding: 12px 24px; transition: all 0.22s ease;
    }
    .subscribe-form-end button:hover { background: var(--green-deep); border-color: var(--green-deep); }

    /* ---- MORE POSTS ---- */
    .post-more {
      max-width: 1180px; margin: 0 auto;
      padding: 80px 56px 120px;
      border-top: 3px solid var(--green);
    }
    .post-more-label {
      font-family: var(--sans); font-size: 12px; font-weight: 700;
      color: var(--green); letter-spacing: 0.16em; text-transform: uppercase;
      margin-bottom: 16px; padding-top: 56px;
    }
    .post-more-heading {
      font-family: var(--sans); font-size: clamp(28px, 3vw, 40px);
      font-weight: 700; color: var(--ink); letter-spacing: -0.025em;
      line-height: 1.1; margin-bottom: 48px;
    }
    .post-more-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
    }
    .more-post {
      padding: 28px 0; border-top: 1px solid var(--ink);
      transition: transform 0.22s ease;
    }
    .more-post:hover .more-post-title { color: var(--green); }
    .more-post-meta {
      font-family: var(--sans); font-size: 11px; font-weight: 700;
      color: var(--green); letter-spacing: 0.14em; text-transform: uppercase;
      margin-bottom: 14px;
    }
    .more-post-title {
      font-family: var(--sans); font-size: 20px; font-weight: 700;
      color: var(--ink); letter-spacing: -0.018em; line-height: 1.2;
      margin-bottom: 14px; transition: color 0.22s ease;
    }
    .more-post-date {
      font-family: var(--sans); font-size: 13px; font-weight: 600;
      color: var(--ink-soft); letter-spacing: 0.02em;
    }

    /* ---- FOOTER ---- */
    .footer { background: var(--cream); border-top: 1px solid var(--rule); padding: 72px 56px 40px; }
    .footer-inner { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 64px; margin-bottom: 56px; }
    .footer-brand { font-family: var(--sans); font-size: 28px; font-weight: 700; color: var(--green); letter-spacing: -0.02em; margin-bottom: 16px; display: inline-block; }
    .footer-tagline { font-family: var(--sans); font-size: 15px; font-weight: 400; color: var(--ink-mid); line-height: 1.55; max-width: 380px; }
    .footer-col h4 { font-family: var(--sans); font-size: 12px; font-weight: 700; color: var(--ink); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .footer-col a { font-family: var(--sans); font-size: 15px; font-weight: 500; color: var(--ink-mid); transition: color 0.2s ease; }
    .footer-col a:hover { color: var(--green); }
    .footer-bottom { max-width: 1320px; margin: 0 auto; padding-top: 28px; border-top: 1px solid var(--rule); display: flex; justify-content: space-between; align-items: center; font-family: var(--sans); font-size: 13px; font-weight: 500; color: var(--ink-soft); }

    @media (max-width: 900px) {
      .nav-right .nav-link:not(:last-child) { display: none; }
      .post-header { padding: 0 24px 48px; }
      .post-body { padding: 48px 24px 72px; }
      .post-body blockquote { margin: 40px -24px; padding: 0 24px 0 28px; }
      .post-footer { padding: 48px 24px 40px; }
      .post-more { padding: 56px 24px 80px; }
      .post-more-grid { grid-template-columns: 1fr; gap: 0; }
      .more-post { border-bottom: 1px solid var(--rule); padding-bottom: 28px; }
      .post-meta-row { flex-direction: column; align-items: flex-start; }
      .post-share { margin-left: 0; }
      .subscribe-form-end { flex-direction: column; }
      .footer { padding: 56px 24px 32px; }
      .footer-inner { grid-template-columns: 1fr; gap: 40px; }
      .footer-bottom { flex-direction: column; gap: 16px; }
    }
  
/* ============ v66 NAV (unified across site) ============ */
.nav {
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 56px !important;
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center;
  background: rgba(247, 244, 238, 0.92) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--rule);
  justify-content: initial !important;
}
.nav-logo {
  justify-self: start;
  font-family: var(--sans);
  font-size: 40px !important;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.03em;
  text-decoration: none;
  line-height: 1;
}
.nav-center { justify-self: center; display: flex; align-items: center; gap: 36px; }
.nav-center a {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.nav-center a:hover { color: var(--green); }
.nav-center a.active { color: var(--green); }
.nav-right { justify-self: end; display: flex; align-items: center; gap: 0; }
.nav-right a {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 800;
  color: var(--green);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.nav-right a:hover { color: var(--green-deep); }
/* Hide any stale .nav-right divs that have multiple anchors (we now use a single anchor) */

/* ============ v66 FOOTER (unified across site) ============ */
.footer {
  background: var(--ink) !important;
  color: rgba(247, 244, 238, 0.7) !important;
  padding: 80px 56px 40px !important;
  border-top: 1px solid rgba(247,244,238,0.08);
}
.footer-inner {
  max-width: 1320px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr !important;
  gap: 56px !important;
  align-items: start;
  margin-bottom: 64px !important;
}
.footer-brand-block { max-width: none; }
.footer-brand {
  font-family: var(--sans);
  font-size: 22px !important;
  font-weight: 700;
  color: var(--green) !important;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  display: block !important;
  text-decoration: none;
}
.footer-description {
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 400;
  color: rgba(247, 244, 238, 0.82) !important;
  line-height: 1.6;
  margin-top: 14px;
  margin-bottom: 0;
  max-width: 440px;
}
.footer-tagline { display: none; }  /* legacy element, hide if present */
.footer-col h5 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: rgba(247, 244, 238, 0.92) !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col h4 {  /* legacy heading, match the h5 treatment */
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: rgba(247, 244, 238, 0.92) !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: block; gap: 0 !important; flex-direction: initial !important; }
.footer-col li { margin-bottom: 0; }
.footer-col a {
  font-family: var(--sans);
  font-size: 14px !important;
  color: rgba(247, 244, 238, 0.7) !important;
  text-decoration: none;
  line-height: 1.8;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cream) !important; }
.footer-address { font-family: var(--sans); font-size: 13.5px; color: rgba(247, 244, 238, 0.68); line-height: 1.75; }
.footer-address-line { display: block; }
.footer-address-line a { color: rgba(247, 244, 238, 0.72); text-decoration: none; transition: color 0.2s ease; font-size: 13.5px !important; line-height: 1.75; }
.footer-address-line a:hover { color: var(--green) !important; }
.footer-gst { font-size: 12px; opacity: 0.85; letter-spacing: 0.02em; }
.footer-office .footer-address { font-size: 13.5px; line-height: 1.75; color: rgba(247, 244, 238, 0.68); }
.footer-office .footer-gst { font-size: 12px; opacity: 0.85; letter-spacing: 0.02em; }
.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(247,244,238,0.08);
  display: flex;
  justify-content: center !important;
  align-items: center;
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(247, 244, 238, 0.55);
  letter-spacing: 0.04em;
}
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr !important; gap: 48px !important; }
  .footer-brand-block { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
  .nav { padding: 20px 24px !important; }
  .nav-center { display: none; }
  .footer { padding: 56px 24px 32px !important; }
  .footer-inner { grid-template-columns: 1fr !important; gap: 40px !important; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; justify-content: flex-start !important; }
}


        /* ===== Footer social icons (v69) ===== */
        .footer-social { display: flex; align-items: center; gap: 18px; margin-top: 24px; }
        .footer-social a {
          color: rgba(247, 244, 238, 0.7);
          transition: color 0.2s ease, transform 0.2s ease;
          display: inline-flex; align-items: center; justify-content: center;
        }
        .footer-social a:hover { color: var(--green); transform: translateY(-1px); }
        .footer-social svg { display: block; }

/* ===== Ghost Koenig content classes (required by Ghost theme validator) ===== */
.kg-width-wide {
  position: relative;
  width: 85vw;
  max-width: 1240px;
  left: 50%;
  transform: translateX(-50%);
  margin: 2em 0;
}
.kg-width-full {
  position: relative;
  width: 100vw;
  max-width: none;
  left: 50%;
  transform: translateX(-50%);
  margin: 2em 0;
}
.kg-image-card,
.kg-gallery-card,
.kg-embed-card,
.kg-bookmark-card {
  margin: 1.5em 0;
}
.kg-image-card img,
.kg-gallery-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.kg-image-card figcaption,
.kg-embed-card figcaption {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 12px;
  font-style: italic;
}
.kg-bookmark-card a.kg-bookmark-container {
  display: flex;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.kg-bookmark-card a.kg-bookmark-container:hover {
  border-color: var(--green);
  transform: translateY(-1px);
}
.kg-callout-card {
  display: flex;
  padding: 20px;
  border-radius: 8px;
  background: var(--paper);
  border-left: 3px solid var(--green);
  margin: 1.5em 0;
}
.kg-toggle-card {
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 1.5em 0;
}
