/* Inkkspiration blog styles */
.blog-toolbar { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin: 2.25rem 0; }

.blog-search { flex: 1 1 260px; display: flex; gap: 0.6rem; }

.blog-search input {
  flex: 1; font: inherit; padding: 0.7rem 1.1rem;
  border: 1px solid var(--border); border-radius: var(--radius); background: var(--warm-white);
}

/* Content-specific editorial covers */
[data-post="why-motivation-doesnt-last"] {
  --journal-cover: url("../images/journal-why-motivation-v1.jpg");
}

[data-post="information-vs-transformation"] {
  --journal-cover: url("../images/journal-information-transformation-v1.jpg");
}

[data-post="why-do-we-keep-repeating-the-same-mistakes"] {
  --journal-cover: url("../images/journal-repeating-patterns-v1.jpg");
}

[data-post="the-stories-you-tell-yourself-become-your-reality"] {
  --journal-cover: url("../images/journal-stories-reality-v1.jpg");
}

[data-post="confidence-is-built-not-found"] {
  --journal-cover: url("../images/journal-confidence-built-v1.jpg");
}

[data-post="the-power-of-habit"] {
  --journal-cover: url("../images/journal-power-of-habit-v1.jpg");
}

.route-blog .featured-post {
  background-image: none !important;
}

.route-blog .featured-post-visual {
  background-image:
    linear-gradient(145deg, rgba(255, 253, 249, 0.03), rgba(29, 74, 56, 0.3)),
    var(--journal-cover) !important;
  background-size: cover;
  background-position: center;
}

.route-blog .post-card .illus-thumb,
.route-article .post-card .illus-thumb,
.route-article .article-page .article-hero-illus {
  background-image:
    linear-gradient(145deg, rgba(255, 253, 249, 0.04), rgba(29, 74, 56, 0.2)),
    var(--journal-cover) !important;
  background-size: cover;
  background-position: center;
}

.route-article .article-cta {
  background-image: none !important;
}

.filter-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.filter-chip {
  font-family: var(--sans); font-size: 0.82rem; letter-spacing: 0.03em;
  padding: 0.42rem 1rem; border: 1px solid var(--border); border-radius: 999px;
  background: var(--warm-white); color: var(--ink); cursor: pointer; transition: var(--transition);
}

.filter-chip:hover { border-color: var(--forest); }

.filter-chip[aria-pressed="true"] { background: var(--forest); color: var(--warm-white); border-color: var(--forest); }

.featured-post {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem);
  background: var(--forest); color: var(--forest-pale); border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 3rem); align-items: center; margin-bottom: 2.5rem;
}

.featured-post h2 { color: var(--warm-white); font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0.6rem 0; }

.featured-post .illus path, .featured-post .illus circle { stroke: var(--gold-light); }

.featured-post .illus circle[fill] { fill: var(--gold); }

.featured-post .post-meta { color: rgba(232, 242, 237, 0.8); }

.post-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 3vw, 2rem); }

.post-card { display: flex; flex-direction: column; }

.post-card .illus-thumb {
  background: var(--forest-pale); border-radius: var(--radius);
  padding: 1.2rem; margin-bottom: 1.2rem; display: grid; place-items: center;
}

.post-card .illus-thumb svg { height: 120px; width: 100%; }

.post-meta { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.03em; display: flex; flex-wrap: wrap; gap: 0.4rem 0.9rem; }

.post-card h3 { font-size: 1.35rem; margin: 0.55rem 0 0.5rem; }

.post-card h3 a { color: var(--ink); }

.post-card h3 a:hover { color: var(--forest); }

.post-card .excerpt { color: var(--muted); font-size: 0.95rem; flex: 1; }

.article-layout {
  display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.article-header { margin-bottom: 2.2rem; }

.article-header .subtitle { font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--muted); margin-top: 0.9rem; }

.article-header .post-meta { margin-top: 1.2rem; }

.article-hero-illus {
  background: var(--forest-pale); border-radius: var(--radius); padding: 1.5rem;
  margin: 2rem 0; display: grid; place-items: center;
}

.article-hero-illus svg { height: 200px; width: 100%; }

.article-body { max-width: 42rem; }

.article-body p { margin: 0 0 1.05rem; }

.article-body h2 {
  font-size: 1.7rem; margin: 2.6rem 0 1.1rem; padding-top: 1.4rem;
  border-top: 1px solid var(--border);
}

.article-body blockquote {
  border-left: 3px solid var(--gold); padding: 0.4rem 0 0.4rem 1.5rem; margin: 1.6rem 0;
  font-family: var(--serif); font-size: 1.35rem; font-style: italic; color: var(--forest);
}

.article-body blockquote p { margin: 0; }

.article-body .pull-line {
  font-family: var(--serif); font-size: 1.3rem; font-style: italic; color: var(--forest);
}

.article-body .reflection {
  background: var(--gold-light); border-radius: var(--radius); padding: 1.3rem 1.5rem;
  font-family: var(--serif); font-size: 1.2rem;
}

.article-epigraph {
  font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--muted);
  border-left: 3px solid var(--gold); padding-left: 1.4rem; margin: 1.4rem 0 0;
}

.article-sidebar { position: sticky; top: calc(var(--header-h) + 1.5rem); display: grid; gap: 1.5rem; }

.sidebar-box { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem 1.5rem; }

.sidebar-box h2 { font-size: 1.15rem; margin-bottom: 0.8rem; }

.sidebar-box ul { list-style: none; }

.sidebar-box li { padding: 0.35rem 0; font-size: 0.92rem; }

.share-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.share-btn {
  font-size: 0.8rem; padding: 0.45rem 0.9rem; border: 1px solid var(--border);
  border-radius: 999px; background: var(--warm-white); cursor: pointer; color: var(--ink);
  display: inline-flex; align-items: center; gap: 0.4rem; transition: var(--transition);
}

.share-btn:hover { border-color: var(--forest); color: var(--forest); }

.article-cta {
  background: var(--forest); color: var(--forest-pale); border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 2.5rem); margin: 2.5rem 0 0; max-width: 42rem;
}

.article-cta h2 { color: var(--warm-white); font-size: 1.6rem; margin-bottom: 0.6rem; }

.article-cta .btn { margin-top: 1.2rem; }

.prevnext { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2.5rem; max-width: 42rem; }

.prevnext a {
  border: 1px solid var(--border); border-radius: var(--radius); padding: 1.1rem 1.3rem;
  display: block; transition: var(--transition);
}

.prevnext a:hover { border-color: var(--forest); transform: translateY(-2px); }

.prevnext .pn-label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.3rem; }

.prevnext .pn-title { font-family: var(--serif); font-size: 1.05rem; color: var(--ink); }

.prevnext .next { text-align: right; }

.related { margin-top: 3.5rem; }

.related h2 { margin-bottom: 1.5rem; }

.route-method .inner-hero::before,
.route-blog .inner-hero::before,
.route-article .inner-hero::before {
  background-image: linear-gradient(90deg,rgba(255,253,249,.98),rgba(255,253,249,.88) 48%,rgba(255,253,249,.55)),url("../images/guided-reflection-bg.jpg");
  background-position: center;
}

.route-blog .featured-post { min-height: 430px; background-image: linear-gradient(90deg,rgba(29,74,56,.97),rgba(29,74,56,.75)),url("../images/group-conversation-bg.jpg"); background-size: cover; background-position: center; }

.route-blog .post-list { grid-template-columns: repeat(12,1fr); }

.route-blog .post-card { grid-column: span 4; }

.route-blog .post-card:nth-child(4n+1) { grid-column: span 5; }

.route-blog .post-card:nth-child(4n+2) { grid-column: span 3; }

.route-blog .post-card .illus-thumb { background-image: linear-gradient(rgba(232,242,237,.76),rgba(245,237,216,.72)),url("../images/guided-reflection-bg.jpg"); background-size: cover; }

.route-article .article-hero-illus { min-height: 320px; background-image: linear-gradient(rgba(232,242,237,.72),rgba(245,237,216,.58)),url("../images/guided-reflection-bg.jpg"); background-size: cover; background-position: center; }

.route-article .article-main { padding: clamp(1.2rem,3vw,2.3rem); background: rgba(255,253,249,.9); border: 1px solid var(--border); }

.route-article .sidebar-box { background: rgba(250,248,244,.9); backdrop-filter: blur(10px); }

@media (max-width: 980px) {
.route-blog .post-card,.route-blog .post-card:nth-child(4n+1),.route-blog .post-card:nth-child(4n+2) { grid-column: span 6; }
}

@media (max-width: 720px) {
.route-blog .post-list { grid-template-columns: 1fr; }
.route-blog .post-card,.route-blog .post-card:nth-child(n) { grid-column: 1; }
.route-article .article-main { padding: 1rem; }
}

.route-blog .blog-page-main {
  padding-top: clamp(1.4rem,3vw,2.4rem);
  padding-bottom: clamp(5rem,9vw,8rem);
  background:
    radial-gradient(circle at 4% 56%,rgba(232,242,237,.68),transparent 18%),
    radial-gradient(circle at 96% 82%,rgba(245,237,216,.72),transparent 19%),
    var(--warm-white);
}

.route-blog .blog-page-main::before {
  height: 475px;
  background-image:
    radial-gradient(circle at 84% 18%, rgba(232,242,237,.82), transparent 22rem),
    linear-gradient(120deg, rgba(255,253,249,.98), rgba(248,245,239,.88));
  background-position: center;
}

.route-blog .blog-page-main::after {
  top: 70px;
  right: -120px;
  width: 350px;
  height: 350px;
}

.route-blog .blog-page-main > .inner-morph {
  top: 250px;
  right: auto;
  left: -210px;
  opacity: .55;
}

.route-blog .blog-page-main .breadcrumbs {
  margin-bottom: 0;
}

.route-blog .blog-page-heading {
  min-height: 270px;
  max-width: 800px;
  margin: 0 !important;
  padding: clamp(1.75rem,3.5vw,3rem) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.route-blog .blog-page-heading .eyebrow {
  margin-bottom: .75rem;
}

.route-blog .blog-page-heading h1 {
  max-width: 760px;
  font-size: clamp(2.75rem,4.1vw,4.15rem);
  line-height: 0.98;
  opacity: 1;
  transform: none;
  clip-path: none;
}

.route-blog .blog-page-heading .lede {
  max-width: 650px;
  margin-top: .9rem !important;
  font-size: clamp(1.05rem,1.45vw,1.3rem);
}

.route-blog .featured-post {
  min-height: 485px;
  margin: clamp(2rem,4vw,3.5rem) 0 clamp(2rem,4vw,3.2rem) !important;
  padding: 0;
  grid-template-columns: minmax(0,.94fr) minmax(420px,1.06fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(29,74,56,.12);
  background: var(--forest);
  box-shadow: 0 36px 82px -55px rgba(29,74,56,.72);
}

.route-blog .featured-post-copy {
  position: relative;
  z-index: 2;
  padding: clamp(2.3rem,4.5vw,4.25rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.route-blog .featured-post-copy::before {
  content: "";
  width: 54px;
  height: 1px;
  margin-bottom: 1.15rem;
  background: var(--gold);
}

.route-blog .featured-post h2 {
  max-width: 530px;
  margin: .65rem 0 .7rem;
  font-size: clamp(2.35rem,3.7vw,3.5rem);
  line-height: 1.02;
}

.route-blog .featured-post-copy > p:not(.post-meta) {
  max-width: 560px;
  color: rgba(255,253,249,.74);
  font-size: .98rem;
  line-height: 1.7;
}

.route-blog .featured-post-visual {
  position: relative;
  min-height: 485px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background-image:
    linear-gradient(145deg,rgba(255,253,249,.03),rgba(29,74,56,.3)),
    url("../images/guided-reflection-bg.jpg");
  background-size: cover;
  background-position: 20% center;
}

.route-blog .featured-post-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 1px solid rgba(255,253,249,.5);
}

.route-blog .featured-post-visual::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -105px;
  bottom: -110px;
  border: 1px solid rgba(245,237,216,.52);
  border-radius: 50%;
  background: rgba(29,74,56,.1);
  transition: transform .75s cubic-bezier(.16,1,.3,1);
}

.route-blog .featured-post-visual .illus {
  position: absolute;
  right: clamp(1.6rem,3.5vw,3rem);
  bottom: clamp(1.6rem,3.5vw,3rem);
  width: clamp(135px,28%,190px);
  padding: .95rem;
  border-radius: 50%;
  background: rgba(255,253,249,.88);
  border: 1px solid rgba(255,253,249,.74);
  box-shadow: 0 24px 50px -30px rgba(26,26,24,.75);
  backdrop-filter: blur(10px);
  transition: transform .75s cubic-bezier(.16,1,.3,1);
}

.route-blog .featured-post:hover .featured-post-visual::after {
  transform: translate(-24px,-24px) scale(1.08);
}

.route-blog .featured-post:hover .featured-post-visual .illus {
  transform: translate(-5px,-7px) rotate(-2deg);
}

.route-blog .blog-toolbar {
  display: grid;
  grid-template-columns: minmax(330px,.8fr) minmax(0,1.2fr);
  gap: 1rem 1.5rem;
  align-items: center;
  margin: 0 0 clamp(2rem,4vw,3.2rem);
  padding: 1rem;
  background: rgba(250,248,244,.92);
  border: 1px solid var(--border);
  box-shadow: 0 24px 55px -46px rgba(29,74,56,.6);
}

.route-blog .blog-search {
  min-width: 0;
  gap: .5rem;
}

.route-blog .blog-search input {
  min-width: 0;
  height: 50px;
  padding-inline: 1rem;
  background: var(--warm-white);
  border-color: rgba(29,74,56,.16);
}

.route-blog .blog-search input:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176,141,87,.12);
}

.route-blog .blog-search .btn {
  min-height: 50px;
  padding-inline: 1.35rem;
}

.route-blog .filter-row {
  justify-content: flex-end;
  gap: .42rem;
}

.route-blog .filter-chip {
  padding: .48rem .85rem;
  background: rgba(255,253,249,.84);
}

.route-blog .filter-chip:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.route-blog .post-list {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr)) !important;
  gap: clamp(1rem,2vw,1.45rem);
  align-items: stretch;
}

.route-blog .post-card,
.route-blog .post-card:nth-child(n) {
  grid-column: auto !important;
  height: 100%;
  min-height: 575px;
  padding: 0;
  overflow: hidden;
  background: rgba(255,253,249,.96);
  border: 1px solid rgba(29,74,56,.12);
  box-shadow: 0 28px 65px -50px rgba(29,74,56,.64);
}

.route-blog .post-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 3px;
  z-index: 4;
  background: linear-gradient(90deg,var(--gold),var(--forest));
  transition: width .55s cubic-bezier(.16,1,.3,1);
}

.route-blog .post-card:hover::after {
  width: 100%;
}

.route-blog .post-card .illus-thumb {
  position: relative;
  flex: none;
  aspect-ratio: 16 / 9;
  margin: 0;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--forest-pale);
  background-size: cover;
  background-position: center;
  border: 0;
}

.route-blog .post-card .illus-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: inherit;
  background-size: cover;
  background-position: inherit;
  transition: transform .8s cubic-bezier(.16,1,.3,1),filter .6s ease;
}

.route-blog .post-card:nth-child(1) .illus-thumb {
  background-image:
    linear-gradient(145deg,rgba(255,253,249,.05),rgba(29,74,56,.22)),
    url("../images/guided-reflection-bg.jpg");
  background-position: 18% center;
}

.route-blog .post-card:nth-child(2) .illus-thumb {
  background-image:
    linear-gradient(145deg,rgba(255,253,249,.04),rgba(29,74,56,.28)),
    url("../images/group-conversation-bg.jpg");
  background-position: 70% center;
}

.route-blog .post-card:nth-child(3) .illus-thumb {
  background-image:
    linear-gradient(145deg,rgba(255,253,249,.03),rgba(29,74,56,.22)),
    url("../images/about-banner-v1.jpg");
  background-position: 76% center;
}

.route-blog .post-card:nth-child(4) .illus-thumb {
  background-image:
    linear-gradient(145deg,rgba(255,253,249,.06),rgba(29,74,56,.26)),
    url("../images/guided-reflection-bg.jpg");
  background-position: 40% center;
}

.route-blog .post-card:nth-child(5) .illus-thumb {
  background-image:
    linear-gradient(145deg,rgba(255,253,249,.04),rgba(29,74,56,.3)),
    url("../images/group-conversation-bg.jpg");
  background-position: 58% center;
}

.route-blog .post-card:nth-child(6) .illus-thumb {
  background-image:
    linear-gradient(145deg,rgba(255,253,249,.03),rgba(29,74,56,.25)),
    url("../images/about-banner-v1.jpg");
  background-position: 67% center;
}

.route-blog .post-card:hover .illus-thumb::before {
  transform: scale(1.055);
  filter: saturate(1.05);
}

.route-blog .post-card .illus-thumb::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 88px;
  height: 88px;
  z-index: 1;
  border-radius: 50%;
  background: rgba(255,253,249,.88);
  border: 1px solid rgba(255,253,249,.72);
  box-shadow: 0 20px 40px -28px rgba(26,26,24,.8);
  backdrop-filter: blur(9px);
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}

.route-blog .post-card .illus-thumb .illus {
  position: absolute;
  right: 25px;
  bottom: 24px;
  width: 70px !important;
  height: 58px !important;
  z-index: 2;
  filter: none;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}

.route-blog .post-card:hover .illus-thumb::after {
  transform: scale(1.08);
}

.route-blog .post-card:hover .illus-thumb .illus {
  transform: rotate(-3deg) scale(1.04);
}

.post-card-body {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.route-blog .post-card-body {
  position: relative;
  z-index: 2;
  padding: 1.45rem 1.45rem 1.55rem;
}

.route-blog .post-card .post-meta {
  min-height: 24px;
  gap: .28rem .7rem;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.45;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.route-blog .post-card h3 {
  min-height: 4.75rem;
  margin: .65rem 0 .55rem;
  font-size: clamp(1.55rem,2vw,1.82rem);
  line-height: 1.13;
}

.route-blog .post-card .excerpt {
  flex: 1;
  color: var(--muted);
  font-size: .91rem;
  line-height: 1.62;
}

.route-blog .post-card .card-tags {
  margin-top: 1.05rem;
  padding-top: .8rem;
  border-top: 1px solid var(--border);
  color: var(--forest-mid);
  font-size: .75rem;
}

.route-blog .post-card .card-link {
  align-self: flex-start;
  margin-top: .85rem;
  color: var(--forest);
}

.route-blog .post-card > .inner-card-glow {
  z-index: 3;
  mix-blend-mode: soft-light;
}

.route-blog .cta-band {
  min-height: 420px;
  display: grid;
  align-items: center;
  background-image:
    linear-gradient(90deg,rgba(29,74,56,.98),rgba(29,74,56,.82) 58%,rgba(29,74,56,.6)),
    url("../images/group-conversation-bg.jpg");
  background-size: cover;
  background-position: center;
}

.route-blog .cta-band > .inner-morph {
  display: none !important;
}

.route-blog .cta-band .wrap {
  max-width: 900px;
  margin-inline: auto;
}

.route-blog .cta-band h2 {
  opacity: 1 !important;
  transform: none !important;
  clip-path: none !important;
}

@media (max-width: 980px) {
.route-blog .featured-post {
    grid-template-columns: 1fr;
  }
.route-blog .featured-post-visual {
    min-height: 390px;
  }
.route-blog .blog-toolbar {
    grid-template-columns: 1fr;
  }
.route-blog .filter-row {
    justify-content: flex-start;
  }
.route-blog .post-list {
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
  }
}

@media (max-width: 720px) {
.route-blog .blog-page-main::before {
    height: 410px;
    background-position: 69% center;
  }
.route-blog .blog-page-heading {
    min-height: 250px;
  }
.route-blog .blog-page-heading h1 {
    font-size: clamp(2.5rem,11vw,3.45rem);
  }
.route-blog .featured-post {
    min-height: 0;
  }
.route-blog .featured-post-copy {
    padding: 1.7rem;
  }
.route-blog .featured-post h2 {
    font-size: clamp(2.15rem,10vw,2.8rem);
  }
.route-blog .featured-post-visual {
    min-height: 310px;
  }
.route-blog .featured-post-visual::before {
    inset: 12px;
  }
.route-blog .featured-post-visual .illus {
    width: 120px;
    right: 1.2rem;
    bottom: 1.2rem;
  }
.route-blog .blog-toolbar {
    padding: .8rem;
  }
.route-blog .blog-search {
    flex-direction: column;
  }
.route-blog .blog-search .btn {
    justify-content: center;
  }
.route-blog .post-list {
    grid-template-columns: 1fr !important;
  }
.route-blog .post-card,
  .route-blog .post-card:nth-child(n) {
    min-height: 0;
  }
.route-blog .post-card h3 {
    min-height: 0;
  }
.route-blog .cta-band {
    min-height: 500px;
    background-position: 58% center;
  }
}

.route-article .article-page {
  padding-top: clamp(1.4rem,3vw,2.4rem);
  padding-bottom: clamp(5rem,9vw,8rem);
  background:
    radial-gradient(circle at 4% 44%,rgba(232,242,237,.7),transparent 18%),
    radial-gradient(circle at 96% 76%,rgba(245,237,216,.74),transparent 19%),
    var(--warm-white);
}

.route-article .article-page::before {
  height: 560px;
  background:
    radial-gradient(circle at 78% 36%,rgba(212,231,221,.72),transparent 31%),
    linear-gradient(112deg,rgba(255,253,249,.98),rgba(250,246,237,.9) 54%,rgba(232,242,237,.72));
}

.route-article .article-page::after {
  top: 105px;
  right: -130px;
  width: 360px;
  height: 360px;
}

.route-article .article-page > .inner-morph {
  top: 650px;
  right: auto;
  left: -220px;
  opacity: .5;
}

.route-article .article-page .breadcrumbs {
  max-width: 100%;
  margin-bottom: clamp(1.5rem,3vw,2.4rem);
}

.route-article .article-page-hero {
  min-height: 460px;
  display: grid;
  grid-template-columns: minmax(0,.96fr) minmax(420px,1.04fr);
  gap: 0;
  overflow: hidden;
  background: rgba(255,253,249,.97);
  border: 1px solid rgba(29,74,56,.12);
  box-shadow: 0 38px 88px -60px rgba(29,74,56,.74);
}

.route-article .article-page-hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(2.5rem,5vw,4.7rem);
  display: flex;
  align-items: center;
}

.route-article .article-header {
  width: 100%;
  margin: 0;
}

.route-article .article-header .eyebrow {
  margin-bottom: .9rem;
}

.route-article .article-header h1 {
  max-width: 690px;
  font-size: clamp(2.6rem,4vw,3.7rem);
  line-height: 1.03;
  opacity: 1;
  transform: none;
  clip-path: none;
}

.route-article .article-header .subtitle,
.route-article .article-header .article-epigraph {
  max-width: 610px;
  margin-top: 1.1rem;
  padding-left: 1.2rem;
  border-left: 2px solid var(--gold);
  color: var(--forest);
  font-size: clamp(1.22rem,1.8vw,1.5rem);
  line-height: 1.5;
}

.route-article .article-header .post-meta {
  margin-top: 1.45rem;
  gap: .55rem;
}

.route-article .article-header .post-meta span {
  padding: .38rem .62rem;
  background: var(--cream);
  border: 1px solid var(--border);
  font-size: .72rem;
  line-height: 1.3;
}

.route-article .article-hero-illus {
  position: relative;
  min-height: 460px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background-image:
    linear-gradient(145deg,rgba(255,253,249,.02),rgba(29,74,56,.26)),
    url("../images/guided-reflection-bg.jpg");
  background-size: cover;
  background-position: 18% center;
}

.route-article .article-hero-illus::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 1px solid rgba(255,253,249,.6);
}

.route-article .article-hero-illus::after {
  content: "";
  position: absolute;
  right: -105px;
  bottom: -110px;
  width: 255px;
  height: 255px;
  border: 1px solid rgba(245,237,216,.55);
  border-radius: 50%;
  background: rgba(29,74,56,.1);
  transition: transform .75s cubic-bezier(.16,1,.3,1);
}

.route-article .article-hero-illus .illus {
  position: absolute;
  right: clamp(1.5rem,3vw,2.6rem);
  bottom: clamp(1.5rem,3vw,2.6rem);
  width: clamp(130px,27%,185px);
  height: auto;
  padding: .95rem;
  border-radius: 50%;
  background: rgba(255,253,249,.88);
  border: 1px solid rgba(255,253,249,.76);
  box-shadow: 0 24px 50px -30px rgba(26,26,24,.76);
  backdrop-filter: blur(10px);
  transition: transform .75s cubic-bezier(.16,1,.3,1);
}

.route-article .article-page-hero:hover .article-hero-illus::after {
  transform: translate(-24px,-24px) scale(1.08);
}

.route-article .article-page-hero:hover .article-hero-illus .illus {
  transform: translate(-5px,-7px) rotate(-2deg);
}

.route-article .article-layout {
  grid-template-columns: minmax(0,1fr) 300px;
  gap: clamp(1.5rem,4vw,3.5rem);
  margin-top: clamp(1.5rem,3vw,2.4rem);
}

.route-article .article-main {
  min-width: 0;
  padding: clamp(2rem,4.5vw,4.5rem);
  background: rgba(255,253,249,.97);
  border: 1px solid rgba(29,74,56,.11);
  box-shadow: 0 32px 75px -58px rgba(29,74,56,.7);
}

.route-article .article-body {
  max-width: 760px;
  margin: 0 auto;
  color: #343530;
  font-size: clamp(1rem,1.2vw,1.08rem);
  line-height: 1.86;
}

.route-article .article-body > p {
  margin-bottom: 1.15rem;
}

.route-article .article-body > p:first-child {
  margin-bottom: 1.25rem;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(1.45rem,2.25vw,1.8rem);
  line-height: 1.45;
}

.route-article .article-body h2 {
  margin: 3.4rem 0 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(176,141,87,.28);
  color: var(--forest);
  font-size: clamp(2rem,3vw,2.65rem);
  line-height: 1.08;
}

.route-article .article-body blockquote {
  position: relative;
  margin: 2.2rem 0;
  padding: clamp(1.6rem,3vw,2.35rem);
  border: 0;
  background: var(--forest);
  color: var(--warm-white);
  font-size: clamp(1.65rem,2.8vw,2.3rem);
  line-height: 1.3;
  text-align: center;
  box-shadow: 0 28px 58px -45px rgba(29,74,56,.72);
}

.route-article .article-body blockquote::before {
  content: "\201C";
  position: absolute;
  left: 1rem;
  top: -.35rem;
  color: rgba(245,237,216,.35);
  font-family: var(--serif);
  font-size: 5rem;
  font-style: normal;
  line-height: 1;
}

.route-article .article-body .pull-line {
  margin: 1.55rem 0;
  padding-left: 1.25rem;
  border-left: 2px solid var(--gold);
  color: var(--forest);
  font-size: clamp(1.35rem,2vw,1.65rem);
  line-height: 1.45;
}

.route-article .article-body .article-story {
  margin: 2.2rem 0;
  padding: clamp(1.45rem,3vw,2.1rem);
  background:
    linear-gradient(135deg,rgba(232,242,237,.76),rgba(250,248,244,.96));
  border: 1px solid rgba(29,74,56,.12);
  border-left: 4px solid var(--forest);
  box-shadow: 0 24px 55px -46px rgba(29,74,56,.6);
}

.route-article .article-body .method-line {
  margin: 2.2rem 0 1.5rem;
  padding: 1.4rem 1.6rem;
  background: var(--gold-light);
  border: 1px solid rgba(176,141,87,.24);
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(1.45rem,2.2vw,1.8rem);
  line-height: 1.4;
  text-align: center;
}

.route-article .article-practice {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: .65rem;
  margin: 2.2rem 0;
}

.route-article .article-practice p {
  min-height: 105px;
  margin: 0;
  padding: 1.1rem;
  display: grid;
  place-items: center;
  background: var(--cream);
  border: 1px solid rgba(176,141,87,.24);
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.35;
  text-align: center;
  transition: transform .3s ease,background .3s ease,border-color .3s ease;
}

.route-article .article-practice p:hover {
  transform: translateY(-4px);
  background: var(--gold-light);
  border-color: rgba(176,141,87,.45);
}

.route-article .article-body .reflection {
  margin-top: 1.2rem;
  padding: clamp(1.5rem,3vw,2.2rem);
  background:
    radial-gradient(circle at 92% 12%,rgba(214,181,127,.18),transparent 34%),
    linear-gradient(120deg,rgba(29,74,56,.99),rgba(35,82,64,.94));
  border: 0;
  color: var(--warm-white);
  font-size: clamp(1.35rem,2.2vw,1.75rem);
  line-height: 1.45;
}

.route-article .author-box,
.route-article .article-cta,
.route-article .prevnext,
.route-article .related {
  max-width: 760px;
  margin-inline: auto;
}

.route-article .author-box {
  grid-template-columns: 105px minmax(0,1fr);
  gap: 1.5rem;
  margin-top: 3.2rem;
  padding: 1.5rem;
  background: var(--cream);
  border: 1px solid rgba(29,74,56,.12);
}

.route-article .author-avatar {
  width: 105px;
  height: 105px;
  padding: 0;
  overflow: hidden;
  border: 2px solid var(--gold-light);
  border-radius: 50%;
  background-image: url("../images/about-founder-visual-v1.jpg");
  background-size: cover;
  background-position: center 29%;
  box-shadow: 0 18px 38px -28px rgba(29,74,56,.72);
}

.route-article .author-box h2 {
  font-size: 1.55rem;
}

.route-article .article-cta {
  position: relative;
  overflow: hidden;
  margin-top: 1.25rem;
  padding: clamp(1.8rem,3vw,2.5rem);
  background:
    radial-gradient(circle at 92% 18%,rgba(214,181,127,.19),transparent 34%),
    linear-gradient(105deg,rgba(29,74,56,.99),rgba(35,82,64,.94));
  border: 1px solid rgba(255,253,249,.12);
}

.route-article .article-cta h2 {
  font-size: clamp(1.8rem,2.8vw,2.3rem);
}

.route-article .article-cta p {
  max-width: 600px;
  color: rgba(255,253,249,.74);
}

.route-article .prevnext {
  gap: .8rem;
  margin-top: 1.25rem;
}

.route-article .prevnext a {
  min-height: 112px;
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}

.route-article .related {
  margin-top: 3rem;
}

.route-article .related > h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2rem,3vw,2.5rem);
}

.route-article .related .grid-2 {
  align-items: stretch;
  gap: .9rem;
}

.route-article .related .post-card {
  height: 100%;
  min-height: 450px;
  padding: 0;
  overflow: hidden;
}

.route-article .related .post-card .illus-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  background-image:
    linear-gradient(145deg,rgba(255,253,249,.03),rgba(29,74,56,.27)),
    url("../images/guided-reflection-bg.jpg");
  background-size: cover;
  background-position: 22% center;
}

.route-article .related .post-card:nth-child(even) .illus-thumb {
  background-image:
    linear-gradient(145deg,rgba(255,253,249,.03),rgba(29,74,56,.28)),
    url("../images/about-banner-v1.jpg");
  background-position: 72% center;
}

.route-article .related .post-card .illus-thumb .illus {
  width: 90px;
  height: auto;
}

.route-article .related .post-card-body {
  padding: 1.25rem;
}

.route-article .related .post-card h3 {
  font-size: 1.45rem;
  line-height: 1.15;
}

.route-article .article-sidebar {
  top: calc(var(--header-h) + 1.2rem);
  gap: .9rem;
}

.route-article .sidebar-box {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  background: rgba(250,248,244,.94);
  border: 1px solid rgba(29,74,56,.12);
  box-shadow: 0 22px 50px -45px rgba(29,74,56,.62);
}

.route-article .sidebar-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 2px;
  background: var(--gold);
}

.route-article .sidebar-box h2 {
  color: var(--forest);
  font-size: 1.3rem;
}

.route-article .sidebar-box li {
  padding: .55rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.45;
}

.route-article .sidebar-box li:last-child {
  border-bottom: 0;
}

.route-article .share-row {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: .45rem;
}

.route-article .share-btn {
  justify-content: center;
  padding: .55rem .65rem;
  border-radius: 2px;
  background: var(--warm-white);
}

@media (max-width: 980px) {
.route-article .article-page-hero {
    grid-template-columns: 1fr;
  }
.route-article .article-hero-illus {
    min-height: 420px;
  }
.route-article .article-layout {
    grid-template-columns: 1fr;
  }
.route-article .article-sidebar {
    position: static;
    order: 0;
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
.route-article .article-sidebar .sb-related {
    display: none;
  }
}

@media (max-width: 720px) {
.route-article .article-page::before {
    height: 440px;
    background-position: 30% center;
  }
.route-article .article-page-hero {
    min-height: 0;
  }
.route-article .article-page-hero-copy {
    padding: 1.8rem 1.45rem;
  }
.route-article .article-header h1 {
    font-size: clamp(2.35rem,10.5vw,3.05rem);
  }
.route-article .article-header .post-meta span {
    padding: .32rem .5rem;
  }
.route-article .article-hero-illus {
    min-height: 310px;
  }
.route-article .article-hero-illus::before {
    inset: 12px;
  }
.route-article .article-hero-illus .illus {
    width: 118px;
    right: 1.1rem;
    bottom: 1.1rem;
  }
.route-article .article-main {
    padding: 1.45rem;
  }
.route-article .article-body {
    font-size: .98rem;
  }
.route-article .article-practice {
    grid-template-columns: 1fr;
  }
.route-article .article-practice p {
    min-height: 78px;
  }
.route-article .author-box {
    grid-template-columns: 1fr;
    text-align: center;
  }
.route-article .author-avatar {
    margin-inline: auto;
  }
.route-article .prevnext,
  .route-article .related .grid-2,
  .route-article .article-sidebar {
    grid-template-columns: 1fr;
  }
.route-article .prevnext .next {
    text-align: left;
  }
}

@media (max-width: 980px) {
.hero-grid, .founder-grid, .contact-grid, .featured-post { grid-template-columns: 1fr; }
.grid-3, .post-list { grid-template-columns: repeat(2, 1fr); }
.article-layout { grid-template-columns: 1fr; }
.article-sidebar { position: static; order: -1; }
.article-sidebar .sidebar-box.sb-related { display: none; }
}

@media (max-width: 720px) {
.grid-2, .grid-3, .post-list, .prevnext { grid-template-columns: 1fr; }
}
