:root {
  --wf-dark: #111827;
  --wf-dark-soft: #1f2937;
  --wf-bg: #fafaf7;
  --wf-surface: #ffffff;
  --wf-surface-soft: #f3f4f0;
  --wf-text: #111827;
  --wf-muted: #374151;
  --wf-border: #e5e7eb;
  --wf-teal: #7fa4a0;
  --wf-teal-dark: #5b7a6e;
  --wf-gold: #d99000;
  --wf-gold-dark: #9a6500;
  --wf-blue: #3b5f7f;
  --wf-sage: #8aa17d;
  --wf-radius-md: 14px;
  --wf-radius-lg: 24px;
  --wf-shadow-soft: 0 14px 36px rgba(17, 24, 39, 0.08);
  --wf-shadow-dark: 0 24px 70px rgba(0, 0, 0, 0.22);
  --wf-max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--wf-bg);
  color: var(--wf-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-container {
  width: min(100% - 2rem, var(--wf-max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(17, 24, 39, 0.94);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(100% - 2rem, var(--wf-max-width));
  min-height: 78px;
  margin: 0 auto;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.brand img {
  max-height: 46px;
  width: auto;
}

.footer-brand img {
  max-height: 54px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 750;
}

.site-nav ul,
.site-nav li {
  display: contents;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav .nav-current a {
  color: #ffffff;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.78rem 1.12rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1;
}

.nav-cta,
.button-primary {
  background: var(--wf-gold);
  color: #111827 !important;
  box-shadow: 0 12px 28px rgba(245, 160, 0, 0.22);
}

.nav-cta:hover,
.button-primary:hover {
  background: #efa400;
}

.button-secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #ffffff;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--wf-text);
  background:
    radial-gradient(circle at 80% 18%, rgba(91, 122, 110, 0.26), transparent 31%),
    radial-gradient(circle at 12% 5%, rgba(217, 144, 0, 0.22), transparent 28%),
    linear-gradient(135deg, #f6ecd8 0%, #edf2eb 48%, #dbe8e5 100%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(17, 24, 39, 0.08);
  content: "";
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: 650px;
  padding: 5rem 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: #a86400;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3rem, 6.2vw, 5.55rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.hero-lede {
  max-width: 660px;
  margin: 1.35rem 0 0;
  color: #243142;
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-panel {
  padding: 1.6rem;
  border: 1px solid rgba(17, 24, 39, 0.14);
  border-radius: var(--wf-radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.16);
  backdrop-filter: blur(18px);
}

.panel-kicker {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.44rem 0.66rem;
  border: 1px solid rgba(217, 144, 0, 0.6);
  border-radius: 999px;
  color: #7a4c00;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.panel-list {
  display: grid;
  gap: 0.72rem;
  margin-top: 1.35rem;
}

.panel-list a {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: var(--wf-radius-md);
  background: rgba(255, 255, 255, 0.92);
  color: #1f2937;
  font-weight: 850;
}

.panel-list a:hover {
  background: #ffffff;
  color: var(--wf-teal-dark);
}

.hero .button-secondary {
  color: var(--wf-text);
  border-color: rgba(17, 24, 39, 0.24);
  background: rgba(255, 255, 255, 0.82);
}

.hero .button-secondary:hover {
  background: #ffffff;
}

.section {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.section-light {
  background: #ffffff;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-heading-wide {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  max-width: none;
}

.section-heading h2,
.archive-hero h1,
.article-header h1,
.custom-landing-hero h1 {
  margin: 0;
  color: var(--wf-text);
  font-size: clamp(2.25rem, 4vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1;
}

.section-heading p:not(.eyebrow),
.archive-hero p,
.article-header p,
.custom-landing-hero p:not(.eyebrow) {
  margin: 1rem 0 0;
  color: var(--wf-muted);
  font-size: 1.08rem;
}

.section-heading-wide > p {
  max-width: 440px;
  margin: 0;
}

.service-section {
  background:
    radial-gradient(circle at 95% 8%, rgba(127, 164, 160, 0.12), transparent 26%),
    var(--wf-bg);
}

.service-grid,
.topic-grid,
.post-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.topic-card,
.post-card,
.value-card,
.checklist-card {
  border: 1px solid var(--wf-border);
  border-radius: var(--wf-radius-lg);
  background: var(--wf-surface);
  box-shadow: var(--wf-shadow-soft);
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 1.35rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.topic-card:hover,
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(17, 24, 39, 0.12);
}

.service-card::before {
  position: absolute;
  inset: 0;
  opacity: 0.9;
  content: "";
}

.service-card::after {
  position: absolute;
  top: -62px;
  right: -62px;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  content: "";
  opacity: 0.48;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card-gold::before {
  background: linear-gradient(150deg, #fff8e8, #ffffff);
}

.service-card-gold::after {
  background: var(--wf-gold);
}

.service-card-teal::before {
  background: linear-gradient(150deg, #eef7f5, #ffffff);
}

.service-card-teal::after {
  background: var(--wf-teal);
}

.service-card-blue::before {
  background: linear-gradient(150deg, #eff6ff, #ffffff);
}

.service-card-blue::after {
  background: var(--wf-blue);
}

.service-card-sage::before {
  background: linear-gradient(150deg, #f1f7ed, #ffffff);
}

.service-card-sage::after {
  background: var(--wf-sage);
}

.service-card span,
.topic-card span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--wf-gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.service-card h3,
.value-card h2,
.checklist-card h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.service-card p,
.value-card p,
.checklist-card p {
  margin: 0.7rem 0 0;
  color: var(--wf-muted);
}

.service-card a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--wf-teal-dark);
  font-weight: 900;
}

.topic-section {
  background: #ffffff;
}

.topic-card {
  min-height: 170px;
  padding: 1.35rem;
  border-top-width: 3px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.topic-card strong {
  display: block;
  color: #25303f;
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.35;
}

.topic-gold {
  border-top-color: var(--wf-gold);
}

.topic-teal {
  border-top-color: var(--wf-teal);
}

.topic-blue {
  border-top-color: var(--wf-blue);
}

.topic-sage {
  border-top-color: var(--wf-sage);
}

.topic-slate {
  border-top-color: #64748b;
}

.topic-charcoal {
  border-top-color: var(--wf-dark);
}

.post-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.post-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.post-card-content {
  padding: 1.25rem;
}

.post-card-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 0.7rem;
  color: #6b7280;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.post-card-meta span:first-child,
.article-meta a {
  color: var(--wf-teal-dark);
}

.post-card h2 {
  margin: 0;
  font-size: 1.24rem;
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.post-card p {
  margin: 0.7rem 0 0;
  color: var(--wf-muted);
  font-size: 0.95rem;
}

.text-link {
  color: var(--wf-teal-dark);
  font-weight: 900;
}

.work-cta-section {
  padding-top: 0;
  background: #ffffff;
}

.work-cta,
.article-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.6rem, 4vw, 2.7rem);
  border-radius: var(--wf-radius-lg);
  background:
    radial-gradient(circle at 85% 18%, rgba(127, 164, 160, 0.22), transparent 32%),
    linear-gradient(135deg, #111827 0%, #1f2937 60%, #0f172a 100%);
  color: #ffffff;
  box-shadow: var(--wf-shadow-dark);
}

.work-cta .eyebrow,
.article-cta .eyebrow {
  color: #ffd88a;
}

.work-cta h2,
.article-cta h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.6vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.052em;
  line-height: 1;
}

.work-cta p,
.article-cta p {
  max-width: 650px;
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.article-cta {
  margin-top: 3rem;
}

.archive-hero,
.custom-landing-hero {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(circle at 80% 20%, rgba(127, 164, 160, 0.14), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, var(--wf-bg) 100%);
  text-align: center;
}

.archive-hero h1,
.custom-landing-hero h1 {
  max-width: 860px;
  margin: 0 auto;
}

.archive-hero p,
.custom-landing-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.article {
  width: min(100% - 2rem, 780px);
  margin: 0 auto;
  padding: 4.5rem 0 6rem;
}

.article-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.article-image {
  width: 100%;
  margin-top: 2rem;
  border-radius: var(--wf-radius-lg);
  box-shadow: var(--wf-shadow-soft);
}

/* Standard article/page images. Keeps mixed source images visually consistent. */
.post-template .article-image,
.page-template .article-image,
.content > img,
.content .kg-image-card:not(.kg-bookmark-card):not(.kg-gallery-card):not(.kg-width-wide):not(.kg-width-full),
.content figure:not(.kg-bookmark-card):not(.kg-gallery-card):not(.kg-width-wide):not(.kg-width-full) {
  width: 100%;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.post-template .article-image,
.page-template .article-image,
.content > img,
.content .kg-image-card:not(.kg-bookmark-card):not(.kg-gallery-card):not(.kg-width-wide):not(.kg-width-full) img,
.content figure:not(.kg-bookmark-card):not(.kg-gallery-card):not(.kg-width-wide):not(.kg-width-full) img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 380px;
  border-radius: var(--wf-radius-lg);
  object-fit: cover;
  object-position: center center;
}

.post-template figcaption,
.page-template figcaption,
.content .kg-image-card figcaption,
.content figure:not(.kg-bookmark-card) figcaption {
  display: none;
}

.content {
  color: #25303f;
  font-size: 1.08rem;
}

.content > * + * {
  margin-top: 1.2em;
}

.content h2,
.content h3 {
  color: var(--wf-text);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.content h2 {
  margin-top: 2em;
  font-size: 2rem;
}

.content h3 {
  margin-top: 1.6em;
  font-size: 1.45rem;
}

.content a {
  color: var(--wf-teal-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.content blockquote {
  margin: 2rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--wf-gold);
  border-radius: 0 var(--wf-radius-md) var(--wf-radius-md) 0;
  background: #fff8e8;
  color: #5b3a00;
  font-weight: 700;
}

.content .pull-quote {
  margin: 2.5rem 0;
  padding: 1.75rem 2rem;
  border-left: none;
  border-radius: var(--wf-radius-md);
  background: var(--wf-surface-soft);
  color: var(--wf-text);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: -0.01em;
  position: relative;
}
.content .pull-quote::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--wf-gold);
  border-radius: var(--wf-radius-md) 0 0 var(--wf-radius-md);
}
.content .pull-quote p {
  margin: 0;
}

.content img {
  border-radius: var(--wf-radius-lg);
}

.content .kg-width-wide {
  width: min(100vw - 2rem, 1040px);
  max-width: 1040px;
  margin-left: 50%;
  transform: translateX(-50%);
}

.content .kg-width-full {
  width: 100vw;
  max-width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

.content .kg-width-wide img,
.content .kg-width-full img {
  width: 100%;
  height: auto;
  border-radius: var(--wf-radius-lg);
  object-fit: cover;
}

.content .kg-width-full img {
  border-radius: 0;
}

.kg-button-card a.kg-btn {
  border-radius: 999px;
  background: var(--wf-dark);
  color: #ffffff;
  font-weight: 850;
}

.author-box,
.site-disclaimer {
  margin-top: 2rem;
}

.author-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem;
  border: 1px solid var(--wf-border);
  border-radius: var(--wf-radius-lg);
  background: #ffffff;
  box-shadow: var(--wf-shadow-soft);
}

.author-box img {
  width: 68px;
  height: 68px;
  border-radius: 999px;
  object-fit: cover;
}

.author-box h2 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.author-box p:not(.eyebrow) {
  margin: 0.35rem 0 0;
  color: var(--wf-muted);
  font-size: 0.95rem;
}

.site-disclaimer {
  display: flex;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 1.25rem;
  border: 1px solid #f3d28a;
  border-radius: var(--wf-radius-md);
  background: #fff8e8;
  color: #5b3a00;
  font-size: 0.92rem;
}

.site-disclaimer strong {
  flex: 0 0 auto;
  font-weight: 900;
}

.related-posts {
  padding-top: 0;
  background: #ffffff;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  color: var(--wf-muted);
  font-weight: 850;
}

.subscribe-section {
  background: var(--wf-bg);
}

.subscribe-card {
  padding: 2.5rem;
  border: 1px solid var(--wf-border);
  border-radius: var(--wf-radius-lg);
  background: var(--wf-surface);
  box-shadow: var(--wf-shadow-soft);
  text-align: center;
}

.subscribe-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.value-grid {
  margin-top: 2rem;
}

.value-card,
.checklist-card {
  padding: 1.45rem;
}

.checklist-card ul {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist-card li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--wf-muted);
}

.checklist-card li::before {
  position: absolute;
  top: 0.42rem;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--wf-teal);
  content: "";
}

.articles-hero,
.start-hero {
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(circle at 12% 16%, rgba(245, 160, 0, 0.12), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(127, 164, 160, 0.16), transparent 30%),
    linear-gradient(180deg, #fffaf0 0%, #f7faf8 100%);
}

.articles-hero {
  text-align: center;
}

.articles-hero h1,
.start-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--wf-text);
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.articles-hero h1 {
  margin-inline: auto;
}

.articles-hero p:not(.eyebrow),
.start-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 1.2rem 0 0;
  color: var(--wf-muted);
  font-size: 1.16rem;
}

.articles-hero p:not(.eyebrow) {
  margin-inline: auto;
}

.articles-topic-section {
  position: relative;
  overflow: hidden;
}

.articles-topic-section::before {
  position: absolute;
  top: 7rem;
  right: max(-10rem, -12vw);
  width: 26rem;
  height: 26rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(127, 164, 160, 0.13), transparent 68%);
  content: "";
  pointer-events: none;
}

.article-topic-grid,
.article-feature,
.pathway-grid,
.start-hero-grid,
.start-feature {
  position: relative;
  z-index: 1;
}

.article-feature,
.start-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.6rem, 4vw, 2.4rem);
  border: 1px solid rgba(245, 160, 0, 0.32);
  border-radius: var(--wf-radius-lg);
  background:
    radial-gradient(circle at 90% 18%, rgba(245, 160, 0, 0.16), transparent 30%),
    #fffaf0;
  box-shadow: var(--wf-shadow-soft);
}

.article-feature h2,
.start-feature h2 {
  max-width: 700px;
  margin: 0;
  color: var(--wf-text);
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1;
}

.article-feature p,
.start-feature p {
  max-width: 720px;
  margin: 1rem 0 0;
  color: var(--wf-muted);
}

.article-feature-list {
  display: grid;
  gap: 0.75rem;
  min-width: min(100%, 340px);
}

.article-feature-list a {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: var(--wf-radius-md);
  background: rgba(255, 255, 255, 0.72);
  color: var(--wf-text);
  font-weight: 850;
}

.article-feature-list a:hover {
  color: var(--wf-teal-dark);
  background: #ffffff;
}

.articles-page-content,
.start-page-content {
  padding-top: 0;
}

.articles-page-content .article,
.start-page-content .article {
  padding-top: 0;
  padding-bottom: 0;
}

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

.start-hero-panel {
  padding: 1.45rem;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: var(--wf-radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--wf-shadow-soft);
}

.start-hero-panel span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--wf-gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.start-hero-panel h2 {
  margin: 0;
  color: var(--wf-text);
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.start-hero-panel a {
  display: inline-flex;
  margin-top: 1.15rem;
  color: var(--wf-teal-dark);
  font-weight: 900;
}

.start-pathway-section {
  background: #ffffff;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.pathway-card {
  position: relative;
  overflow: hidden;
  min-height: 285px;
  padding: 1.45rem;
  border: 1px solid var(--wf-border);
  border-radius: var(--wf-radius-lg);
  background: #ffffff;
  box-shadow: var(--wf-shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pathway-card::before,
.pathway-card::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.pathway-card::before {
  inset: 0;
  opacity: 0.92;
}

.pathway-card::after {
  top: -60px;
  right: -60px;
  width: 148px;
  height: 148px;
  border-radius: 999px;
  opacity: 0.46;
}

.pathway-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(17, 24, 39, 0.12);
}

.pathway-card > * {
  position: relative;
  z-index: 1;
}

.pathway-card span {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.42rem 0.62rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.73rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pathway-card h2 {
  margin: 0;
  color: var(--wf-text);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.pathway-card p {
  margin: 0.8rem 0 0;
  color: var(--wf-muted);
}

.pathway-gold::before {
  background: linear-gradient(150deg, #fff8e8, #ffffff);
}

.pathway-gold::after {
  background: var(--wf-gold);
}

.pathway-gold span {
  color: var(--wf-gold-dark);
}

.pathway-teal::before {
  background: linear-gradient(150deg, #eef7f5, #ffffff);
}

.pathway-teal::after {
  background: var(--wf-teal);
}

.pathway-teal span {
  color: var(--wf-teal-dark);
}

.pathway-blue::before {
  background: linear-gradient(150deg, #eff6ff, #ffffff);
}

.pathway-blue::after {
  background: var(--wf-blue);
}

.pathway-blue span {
  color: #1d4ed8;
}

.pathway-sage::before {
  background: linear-gradient(150deg, #f1f7ed, #ffffff);
}

.pathway-sage::after {
  background: var(--wf-sage);
}

.pathway-sage span {
  color: #5f7d50;
}

.pathway-slate::before {
  background: linear-gradient(150deg, #f8fafc, #ffffff);
}

.pathway-slate::after {
  background: #94a3b8;
}

.pathway-slate span {
  color: #475569;
}

.pathway-charcoal::before {
  background: linear-gradient(150deg, #f8fafc, #ffffff);
}

.pathway-charcoal::after {
  background: var(--wf-dark);
}

.pathway-charcoal span {
  color: var(--wf-dark);
}

.start-service-grid {
  margin-top: 2rem;
}

/* ==================================================
   Service and trust landing templates
================================================== */

.service-hero,
.about-hero {
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(circle at 14% 18%, rgba(245, 160, 0, 0.14), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(127, 164, 160, 0.16), transparent 30%),
    linear-gradient(180deg, #fffaf0 0%, #f7faf8 100%);
}

.service-hero-grid,
.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.65fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.service-hero h1,
.about-hero h1 {
  max-width: 880px;
  margin: 0;
  color: var(--wf-text);
  font-size: clamp(3.1rem, 6vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.service-hero p:not(.eyebrow),
.about-hero p:not(.eyebrow) {
  max-width: 740px;
  margin: 1.2rem 0 0;
  color: var(--wf-muted);
  font-size: 1.16rem;
}

.glance-card,
.credential-card {
  padding: 1.45rem;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: var(--wf-radius-lg);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--wf-shadow-soft);
}

.glance-card span,
.credential-card span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--wf-gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.glance-card dl {
  display: grid;
  gap: 0.85rem;
  margin: 0;
}

.glance-card dl div {
  padding: 0.82rem 0.9rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--wf-radius-md);
  background: rgba(255, 255, 255, 0.7);
}

.glance-card dt {
  color: var(--wf-teal-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.glance-card dd {
  margin: 0.2rem 0 0;
  color: var(--wf-text);
  font-weight: 850;
  line-height: 1.3;
}

.glance-card p {
  margin: 0;
  color: var(--wf-muted);
}

.landing-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.two-column-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.landing-card,
.fit-card,
.resource-feature {
  position: relative;
  overflow: hidden;
  padding: 1.45rem;
  border: 1px solid var(--wf-border);
  border-radius: var(--wf-radius-lg);
  background: #ffffff;
  box-shadow: var(--wf-shadow-soft);
}

.landing-card {
  min-height: 285px;
}

.landing-card::before,
.landing-card::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.landing-card::before {
  inset: 0;
  opacity: 0.92;
}

.landing-card::after {
  top: -60px;
  right: -60px;
  width: 148px;
  height: 148px;
  border-radius: 999px;
  opacity: 0.46;
}

.landing-card > * {
  position: relative;
  z-index: 1;
}

.landing-card span {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.42rem 0.62rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.73rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-card h2,
.fit-card h2,
.resource-feature h2 {
  margin: 0;
  color: var(--wf-text);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.landing-card p,
.fit-card p,
.resource-feature p {
  margin: 0.8rem 0 0;
  color: var(--wf-muted);
}

.landing-card a,
.resource-feature a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--wf-teal-dark);
  font-weight: 900;
}

.landing-card-gold::before {
  background: linear-gradient(150deg, #fff8e8, #ffffff);
}

.landing-card-gold::after {
  background: var(--wf-gold);
}

.landing-card-gold span {
  color: var(--wf-gold-dark);
}

.landing-card-teal::before {
  background: linear-gradient(150deg, #eef7f5, #ffffff);
}

.landing-card-teal::after {
  background: var(--wf-teal);
}

.landing-card-teal span {
  color: var(--wf-teal-dark);
}

.landing-card-blue::before {
  background: linear-gradient(150deg, #eff6ff, #ffffff);
}

.landing-card-blue::after {
  background: var(--wf-blue);
}

.landing-card-blue span {
  color: #1d4ed8;
}

.split-grid,
.service-note-grid,
.resource-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.fit-card ul,
.credential-card ul {
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.fit-card li,
.credential-card li {
  position: relative;
  padding-left: 1.55rem;
  color: var(--wf-muted);
}

.fit-card li::before,
.credential-card li::before {
  position: absolute;
  top: 0.52rem;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--wf-teal);
  content: "";
}

.fit-card-muted {
  border-color: #f3d28a;
  background: #fff8e8;
}

.service-note-grid > div,
.resource-feature {
  padding: 1.45rem;
  border: 1px solid var(--wf-border);
  border-radius: var(--wf-radius-lg);
  background: #ffffff;
  box-shadow: var(--wf-shadow-soft);
}

.service-note-grid h2 {
  margin: 0;
  color: var(--wf-text);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.service-note-grid p:not(.eyebrow) {
  margin: 1rem 0 0;
  color: var(--wf-muted);
}

.decision-section {
  background: var(--wf-bg);
}

.decision-list,
.about-path-grid {
  display: grid;
  gap: 0.85rem;
}

.decision-list a,
.about-path-grid a {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--wf-border);
  border-radius: var(--wf-radius-md);
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.decision-list a:hover,
.about-path-grid a:hover {
  transform: translateY(-2px);
  box-shadow: var(--wf-shadow-soft);
}

.decision-list strong,
.about-path-grid strong {
  color: var(--wf-text);
  font-size: 1rem;
  font-weight: 900;
}

.decision-list span,
.about-path-grid span {
  color: var(--wf-muted);
}

.resources-topic-section {
  background: #ffffff;
}

.resources-hero {
  background:
    radial-gradient(circle at 14% 18%, rgba(245, 160, 0, 0.12), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(59, 95, 127, 0.12), transparent 30%),
    linear-gradient(180deg, #fffaf0 0%, #f7faf8 100%);
}

.about-path-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-final-cta {
  padding-top: 0;
}

.cta-button-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

.landing-disclaimer-section {
  padding-top: 0;
}

.site-footer {
  color: #ffffff;
  background:
    radial-gradient(circle at 85% 10%, rgba(127, 164, 160, 0.16), transparent 26%),
    var(--wf-dark);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(0, 1.8fr);
  gap: clamp(2rem, 5vw, 4rem);
  width: min(100% - 2rem, var(--wf-max-width));
  margin: 0 auto;
  padding: 3rem 0;
}

.footer-about p {
  max-width: 520px;
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-about small {
  display: block;
  max-width: 520px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  line-height: 1.5;
}

.footer-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
}

.footer-links strong {
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: #ffd88a;
}

@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--wf-radius-lg);
    background: var(--wf-dark);
    box-shadow: var(--wf-shadow-dark);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.85rem 0.95rem;
    border-radius: var(--wf-radius-md);
  }

  .nav-cta {
    margin-top: 0.4rem;
  }

  .hero-grid,
  .start-hero-grid,
  .service-hero-grid,
  .about-hero-grid,
  .work-cta,
  .article-feature,
  .start-feature,
  .article-cta,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .section-heading-wide {
    display: grid;
  }

  .section-heading-wide > p {
    max-width: none;
  }

  .topic-grid,
  .pathway-grid,
  .landing-card-grid,
  .two-column-grid,
  .split-grid,
  .service-note-grid,
  .resource-feature-grid,
  .about-path-grid,
  .post-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .footer-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-disclaimer {
    display: grid;
  }

  .cta-button-stack {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .site-container,
  .nav-shell,
  .article,
  .footer-inner {
    width: min(100% - 1.25rem, var(--wf-max-width));
  }

  .brand img {
    max-height: 38px;
  }

  .hero-grid {
    padding: 3.5rem 0;
  }

  .hero h1 {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .service-grid,
  .footer-link-grid {
    grid-template-columns: 1fr;
  }

  .post-template .article-image,
  .page-template .article-image,
  .content > img,
  .content .kg-image-card:not(.kg-bookmark-card):not(.kg-gallery-card):not(.kg-width-wide):not(.kg-width-full) img,
  .content figure:not(.kg-bookmark-card):not(.kg-gallery-card):not(.kg-width-wide):not(.kg-width-full) img {
    height: 260px;
  }

  .archive-hero,
  .custom-landing-hero,
  .articles-hero {
    text-align: left;
  }
}
