
:root {
  --ink: #17211d;
  --deep: #13251d;
  --muted: #5b6761;
  --paper: #fbfdf8;
  --soft: #eef5ed;
  --line: #dce8dc;
  --sage: #476b58;
  --sage-soft: #8fb19a;
  --mint: #dfeee3;
  --leaf: #6f9578;
  --forest: #284638;
  --gold: #7fa66f;
  --clay: #d9b6a5;
  --shadow: 0 22px 70px rgba(31, 55, 42, 0.13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(143, 177, 154, 0.24), transparent 34rem),
    linear-gradient(180deg, #fbfdf8 0%, #f3f9f2 48%, #fbfdf8 100%);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
  line-height: 1.7;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(251, 253, 248, 0.9);
  border-bottom: 1px solid rgba(143, 177, 154, 0.26);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 48px;
  height: 34px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.96rem;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.menu-button {
  display: none;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 8px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(31, 41, 36, 0.06);
  cursor: pointer;
}

.menu-button::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"]::after {
  transform: translateY(2px) rotate(225deg);
}

main {
  overflow: hidden;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 6vw, 5.2rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 3.5vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.25;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 16px;
  color: var(--sage);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage-soft);
}

.home-hero,
.network-hero,
.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 650px;
  padding: clamp(56px, 8vw, 112px) clamp(24px, 6vw, 84px);
  background:
    linear-gradient(90deg, rgba(251, 253, 248, 0.97), rgba(232, 244, 235, 0.8)),
    url("/assets/media/site-hero.jpg") center / cover;
}

.home-hero-copy,
.network-hero > div,
.contact-hero > div {
  max-width: 780px;
}

.home-hero p,
.network-hero p,
.contact-hero p {
  color: #344139;
  font-size: clamp(1.1rem, 2vw, 1.32rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--sage);
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  color: #fff;
  background: var(--sage);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255,253,249,0.75);
}

.button.light {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.home-hero-card,
.summary-card,
.contact-card {
  padding: 28px;
  background: rgba(251, 253, 248, 0.92);
  border: 1px solid rgba(143, 177, 154, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.home-hero-card strong,
.summary-card strong,
.contact-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.home-hero-card ul,
.summary-card ul,
.task-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-hero-card li,
.summary-card li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  color: var(--muted);
}

.home-hero-card li::before,
.summary-card li::before {
  content: "✓";
  color: var(--sage);
  font-weight: 900;
}

.content-section,
.article-shell,
.cta-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 24px;
}

.content-section.tinted {
  max-width: none;
  padding-inline: max(24px, calc((100vw - 1120px) / 2));
  background: var(--soft);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.rich-copy,
.article-intro {
  color: #303b36;
  font-size: 1.16rem;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-bottom: 20px;
}

.section-heading p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.12rem;
}

.exercise-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(50px, 7vw, 92px) 24px 28px;
}

.exercise-intro {
  max-width: 880px;
  margin-bottom: 30px;
}

.exercise-intro p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.16rem;
}

.tool-strip {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

.tool-tile {
  display: grid;
  gap: 8px;
  min-height: 170px;
  align-content: end;
  padding: 22px;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.tool-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.tool-tile.primary {
  color: #fff;
  background: linear-gradient(135deg, #435a51, #71887f);
  border-color: transparent;
}

.tool-tile span,
.path-group span {
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tool-tile.primary span,
.tool-tile.primary small {
  color: rgba(255, 255, 255, 0.78);
}

.tool-tile strong {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.tool-tile small {
  color: var(--muted);
  font-size: 0.98rem;
}

.quick-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.quick-jump a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.path-list {
  display: grid;
  gap: 14px;
}

.path-group {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.path-group h2 {
  margin: 7px 0 0;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.path-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.path-links a,
.compact-link-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  color: var(--sage);
  background: var(--soft);
  border: 1px solid rgba(83, 109, 99, 0.18);
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.exercise-all {
  padding-top: 34px;
}

.compact-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-route-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px clamp(48px, 7vw, 76px);
}

.quick-route-panel {
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(31, 55, 42, 0.09);
}

.quick-route-panel h2 {
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  letter-spacing: 0;
}

.quick-route-panel p {
  max-width: 720px;
  color: var(--muted);
}

.quick-route-group {
  margin-top: 24px;
}

.quick-route-group h3 {
  margin: 0 0 12px;
  color: var(--deep);
  font-size: 1.05rem;
  letter-spacing: 0;
}

.quick-route-group.secondary {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(71, 107, 88, 0.12);
}

.quick-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.quick-route-grid.priority {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 0;
}

.quick-route-grid.compact {
  margin-top: 0;
}

.quick-route-card {
  min-height: 138px;
  padding: 18px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
}

.quick-route-card.featured {
  background:
    linear-gradient(135deg, rgba(238, 245, 237, 0.98), rgba(255, 253, 249, 0.96));
  border-color: rgba(71, 107, 88, 0.28);
  box-shadow: 0 16px 36px rgba(31, 55, 42, 0.08);
}

.quick-route-card strong {
  display: block;
  margin-bottom: 8px;
  line-height: 1.2;
}

.quick-route-card span {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.acute-why-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: start;
}

.acute-why-copy {
  min-width: 0;
}

.acute-why-copy h2 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.8vw, 3.35rem);
  line-height: 1.08;
}

.acute-why-copy p {
  max-width: 820px;
  color: #2f3b35;
  font-size: clamp(1.05rem, 1.65vw, 1.18rem);
}

.acute-why-panel {
  padding: clamp(22px, 3vw, 30px);
  background: rgba(251, 253, 248, 0.9);
  border: 1px solid rgba(83, 109, 99, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(31, 55, 42, 0.08);
}

.acute-why-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.acute-why-full {
  grid-column: 1 / -1;
  max-width: 980px;
}

.exercise-guide {
  max-width: 1120px;
  margin: 0 auto 28px;
  padding: clamp(20px, 3vw, 28px);
  background:
    linear-gradient(135deg, rgba(251, 253, 248, 0.96), rgba(238, 245, 237, 0.9));
  border: 1px solid rgba(71, 107, 88, 0.18);
  border-radius: 8px;
}

.exercise-guide h2 {
  margin-bottom: 16px;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
}

.exercise-guide > p {
  max-width: 720px;
  margin: -4px 0 18px;
  color: var(--muted);
}

.exercise-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.exercise-guide-grid a {
  display: grid;
  gap: 6px;
  min-height: 108px;
  align-content: start;
  padding: 16px;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid rgba(71, 107, 88, 0.16);
  border-radius: 8px;
  text-decoration: none;
}

.exercise-guide-grid strong {
  line-height: 1.2;
}

.exercise-guide-grid span {
  color: var(--muted);
  font-size: 0.93rem;
}

.exercise-library-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto 22px;
  padding: 0 2px;
}

.exercise-library-tools span {
  margin-right: 4px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.exercise-library-tools a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 12px;
  color: var(--forest);
  background: rgba(251, 253, 248, 0.9);
  border: 1px solid rgba(71, 107, 88, 0.18);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
}

.exercise-library-tools a:hover,
.exercise-library-tools a:focus-visible {
  color: var(--deep);
  background: var(--soft);
  border-color: rgba(71, 107, 88, 0.34);
}

.audience-filter {
  display: grid;
  gap: 12px;
  max-width: 1120px;
  margin: 22px auto;
  padding: 18px;
  background: rgba(251, 253, 248, 0.82);
  border: 1px solid rgba(71, 107, 88, 0.16);
  border-radius: 8px;
}

.audience-filter p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  min-height: 40px;
  padding: 9px 13px;
  color: var(--forest);
  background: rgba(239, 247, 238, 0.72);
  border: 1px solid rgba(71, 107, 88, 0.22);
  border-radius: 999px;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.filter-button:hover,
.filter-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(83, 109, 99, 0.42);
}

.filter-button.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--sage), var(--forest));
  border-color: transparent;
}

.resource-card.is-filtered-out {
  display: none;
}

.knowledge-atlas {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: clamp(18px, 3.4vw, 34px);
  align-items: stretch;
  max-width: 1120px;
  margin: 28px auto;
  padding: clamp(20px, 4vw, 34px);
  background:
    radial-gradient(circle at 84% 14%, rgba(127, 166, 111, 0.2), transparent 14rem),
    linear-gradient(135deg, rgba(251, 253, 248, 0.98), rgba(238, 245, 237, 0.9));
  border: 1px solid rgba(71, 107, 88, 0.18);
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(31, 55, 42, 0.08);
}

.knowledge-atlas-intro {
  display: grid;
  align-content: center;
}

.knowledge-atlas-intro h2 {
  margin-bottom: 12px;
  color: var(--deep);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.05;
}

.knowledge-atlas-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.knowledge-atlas-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  isolation: isolate;
}

.knowledge-atlas-map::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  background:
    linear-gradient(90deg, transparent 49%, rgba(71, 107, 88, 0.12) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(71, 107, 88, 0.1) 50%, transparent 51%);
  border-radius: 8px;
}

.atlas-node {
  display: grid;
  gap: 7px;
  min-height: 112px;
  align-content: start;
  padding: 15px;
  color: var(--forest);
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid rgba(71, 107, 88, 0.18);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(31, 55, 42, 0.08);
  font: inherit;
  font-weight: 900;
  line-height: 1.18;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.atlas-node span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--sage);
  background: rgba(239, 247, 238, 0.9);
  border-radius: 50%;
  font-size: 0.78rem;
}

.atlas-node:hover,
.atlas-node:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(83, 109, 99, 0.38);
  box-shadow: 0 18px 42px rgba(31, 55, 42, 0.13);
}

.atlas-node.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--leaf), var(--forest));
  border-color: transparent;
}

.atlas-node.is-active span {
  color: var(--forest);
  background: #fff;
}

.knowledge-atlas-panel {
  display: grid;
}

.atlas-panel {
  display: grid;
  gap: 12px;
  align-content: center;
  min-height: 100%;
  padding: clamp(20px, 3vw, 28px);
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid rgba(71, 107, 88, 0.16);
  border-radius: 8px;
}

.atlas-panel[hidden] {
  display: none;
}

.atlas-panel > span {
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.atlas-panel h3 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
  line-height: 1.08;
}

.atlas-panel p {
  margin: 0;
  color: var(--muted);
}

.atlas-links {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.atlas-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 11px;
  color: var(--forest);
  background: rgba(239, 247, 238, 0.74);
  border: 1px solid rgba(71, 107, 88, 0.16);
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
}

.atlas-links a:hover,
.atlas-links a:focus-visible {
  color: var(--deep);
  background: #fff;
  transform: translateX(3px);
}

.book-tips {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.book-section {
  background: rgba(251, 253, 248, 0.86);
  border: 1px solid rgba(71, 107, 88, 0.17);
  border-radius: 8px;
  overflow: hidden;
}

.book-section summary {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  color: var(--deep);
  cursor: pointer;
  list-style: none;
}

.book-section summary::-webkit-details-marker {
  display: none;
}

.book-section summary::after {
  content: "+";
  justify-self: end;
  color: var(--sage);
  font-size: 1.45rem;
  font-weight: 900;
}

.book-section[open] summary::after {
  content: "-";
}

.book-section summary span {
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.book-section summary strong {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.14;
}

.book-list {
  display: grid;
  gap: 12px;
  padding: 0 20px 20px;
}

.book-card {
  padding: 18px;
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid rgba(71, 107, 88, 0.12);
  border-radius: 8px;
}

.book-card.highlighted {
  position: relative;
  background:
    linear-gradient(135deg, rgba(238, 245, 237, 0.96), rgba(255, 253, 249, 0.94));
  border-color: rgba(83, 109, 99, 0.24);
}

.book-card.highlighted::before {
  content: "Aanrader";
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 9px;
  color: var(--forest);
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid rgba(71, 107, 88, 0.16);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.book-card h2 {
  margin-bottom: 8px;
  color: var(--deep);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.book-card p {
  margin-bottom: 10px;
}

.book-card p:last-child {
  margin-bottom: 0;
}

.book-labels {
  color: var(--sage);
  font-size: 0.9rem;
  font-weight: 850;
}

.exercise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.exercise-tags b {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  color: var(--forest);
  background: rgba(238, 245, 237, 0.92);
  border: 1px solid rgba(71, 107, 88, 0.14);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
}

.movement-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.movement-card.has-links {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.movement-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.small-link-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.small-link-list a {
  display: block;
  padding: 16px 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.active-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.active-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 7px 11px;
  color: var(--forest);
  background: var(--mint);
  border: 1px solid rgba(71, 107, 88, 0.24);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1;
}

.active-pill::after {
  content: "Actief";
  color: #fff;
  background: var(--sage);
  border-radius: 999px;
  padding: 4px 7px;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.forgive-progress-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 5px;
  background: transparent;
}

.forgive-progress {
  width: 0%;
  height: 5px;
  background: linear-gradient(90deg, var(--sage), var(--clay));
}

.forgive-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(58px, 8vw, 104px) 24px clamp(48px, 7vw, 84px);
}

.forgive-hero .lead {
  max-width: 68ch;
  color: #35413c;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.forgive-page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.forgive-page-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 13px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
}

.forgive-card {
  position: relative;
  padding: clamp(24px, 4vw, 32px);
  background: rgba(251, 253, 248, 0.9);
  border: 1px solid rgba(143, 177, 154, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.forgive-card-title {
  margin: 0 0 6px;
  color: var(--forest);
  font-size: 1.2rem;
  font-weight: 850;
}

.forgive-slider-row {
  margin: 22px 0;
}

.forgive-slider-row label {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #38443e;
  font-weight: 800;
}

.forgive-slider-row input[type="range"] {
  width: 100%;
  margin-top: 10px;
  accent-color: var(--sage);
}

.forgive-scorebox {
  margin-top: 18px;
  padding: 18px;
  color: var(--forest);
  background: linear-gradient(135deg, rgba(143, 177, 154, 0.18), rgba(217, 182, 165, 0.16));
  border: 1px solid var(--line);
  border-radius: 8px;
}

.forgive-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 88px) 24px;
}

.forgive-section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.forgive-kicker {
  margin-bottom: 10px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.forgive-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.forgive-info-card,
.forgive-panel,
.forgive-letter,
.forgive-breath,
.forgive-quote,
.forgive-safety,
.forgive-accordion details {
  background: rgba(251, 253, 248, 0.9);
  border: 1px solid rgba(71, 107, 88, 0.16);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(31, 37, 35, 0.07);
}

.forgive-info-card {
  padding: 24px;
}

.forgive-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 15px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--leaf), var(--sage));
  border-radius: 50%;
  font-weight: 900;
}

.forgive-path {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.forgive-tabs {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 8px;
  padding: 14px;
  background: rgba(251, 253, 248, 0.86);
  border: 1px solid rgba(71, 107, 88, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(31, 37, 35, 0.08);
  backdrop-filter: blur(16px);
}

.forgive-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 13px 14px;
  color: var(--deep);
  background: transparent;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.forgive-tab.is-active {
  color: #fff;
  background: var(--sage);
}

.forgive-num {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  background: rgba(143, 177, 154, 0.2);
  border-radius: 50%;
  font-size: 0.9rem;
}

.forgive-tab.is-active .forgive-num {
  background: rgba(255, 255, 255, 0.22);
}

.forgive-panel {
  display: none;
  min-height: 360px;
  padding: clamp(24px, 4vw, 32px);
}

.forgive-panel.is-active {
  display: block;
}

.forgive-prompt {
  margin-top: 20px;
  padding: 18px;
  background: var(--soft);
  border: 1px solid rgba(71, 107, 88, 0.16);
  border-radius: 8px;
}

.forgive-quote {
  padding: clamp(26px, 4vw, 36px);
  color: var(--forest);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: 850;
  line-height: 1.35;
}

.forgive-exercise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.forgive-breath,
.forgive-letter {
  padding: clamp(24px, 4vw, 30px);
}

.forgive-breath {
  display: grid;
  min-height: 330px;
  place-items: center;
}

.forgive-breath-circle {
  display: grid;
  width: 160px;
  height: 160px;
  margin: 0 auto;
  place-items: center;
  color: #fff;
  background: radial-gradient(circle, rgba(143, 177, 154, 0.92), rgba(71, 107, 88, 0.82));
  border-radius: 50%;
  box-shadow: 0 18px 50px rgba(71, 107, 88, 0.2);
  font-weight: 900;
  text-align: center;
  animation: forgive-breathe 8s ease-in-out infinite;
}

@keyframes forgive-breathe {
  0%,
  100% { transform: scale(0.86); }
  45%,
  55% { transform: scale(1.08); }
}

.forgive-textarea {
  width: 100%;
  min-height: 124px;
  padding: 15px;
  color: var(--ink);
  background: #fffefb;
  border: 1px solid rgba(71, 107, 88, 0.22);
  border-radius: 8px;
  font: inherit;
  outline: none;
  resize: vertical;
}

.forgive-textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(143, 177, 154, 0.18);
}

.forgive-small-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.forgive-ghost {
  color: var(--forest);
  background: #fffefb;
  border-color: var(--line);
}

.forgive-hoopo {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.forgive-phrase {
  padding: 20px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
}

.forgive-accordion {
  display: grid;
  gap: 12px;
}

.forgive-accordion details {
  padding: 0 20px;
}

.forgive-accordion summary {
  padding: 18px 0;
  color: var(--forest);
  cursor: pointer;
  font-weight: 900;
}

.forgive-accordion p {
  margin-top: 0;
}

.forgive-safety {
  margin-top: 20px;
  padding: 24px;
  background: rgba(143, 177, 154, 0.14);
}

.forgive-floating {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.forgive-floating .button {
  box-shadow: 0 12px 30px rgba(31, 37, 35, 0.12);
}

.forgive-print-note {
  display: none;
}

.trauma-progress-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 5px;
  background: transparent;
}

.trauma-progress {
  width: 0%;
  height: 5px;
  background: linear-gradient(90deg, var(--sage), var(--clay));
}

.trauma-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(58px, 8vw, 104px) 24px clamp(48px, 7vw, 84px);
}

.trauma-hero .lead {
  max-width: 68ch;
  color: #35413c;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.trauma-route-card {
  position: relative;
  overflow: hidden;
}

.trauma-route-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.trauma-route-list a {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  padding: 13px 14px;
  color: #35413c;
  background: rgba(251, 253, 248, 0.74);
  border: 1px solid rgba(76, 91, 60, 0.14);
  border-radius: 8px;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.trauma-route-list a:hover {
  transform: translateY(-2px);
  background: rgba(251, 253, 248, 0.96);
}

.trauma-route-number {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--leaf), var(--sage));
  border-radius: 50%;
  font-size: 0.86rem;
  font-weight: 900;
}

.trauma-route-text strong {
  display: block;
  color: var(--forest);
  line-height: 1.25;
}

.trauma-route-text span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.35;
}

.trauma-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 88px) 24px;
}

.trauma-section-head {
  max-width: 790px;
  margin-bottom: 30px;
}

.trauma-kicker {
  margin-bottom: 10px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trauma-cards,
.trauma-methods {
  display: grid;
  gap: 18px;
}

.trauma-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.trauma-info-card,
.trauma-method-card,
.trauma-card,
.trauma-panel,
.trauma-window,
.trauma-breath,
.trauma-quote,
.trauma-safety,
.trauma-accordion details {
  background: rgba(251, 253, 248, 0.9);
  border: 1px solid rgba(71, 107, 88, 0.16);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(31, 37, 35, 0.07);
}

.trauma-info-card,
.trauma-method-card,
.trauma-window,
.trauma-safety {
  padding: 24px;
}

.trauma-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 15px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--leaf), var(--sage));
  border-radius: 50%;
  font-weight: 900;
}

.trauma-attic-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}

.trauma-attic-scene,
.trauma-attic-detail {
  background: rgba(251, 253, 248, 0.9);
  border: 1px solid rgba(71, 107, 88, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trauma-attic-scene {
  position: relative;
  min-height: 430px;
  padding: 30px;
  overflow: hidden;
}

.trauma-attic-roof {
  position: absolute;
  top: -70px;
  left: 12%;
  width: 76%;
  height: 190px;
  border: 16px solid rgba(143, 177, 154, 0.16);
  border-bottom: 0;
  transform: rotate(0deg);
}

.trauma-attic-floor {
  position: absolute;
  right: 28px;
  bottom: 78px;
  left: 28px;
  height: 14px;
  background: linear-gradient(90deg, rgba(217, 182, 165, 0.42), rgba(111, 149, 120, 0.2));
  border-radius: 999px;
}

.trauma-attic-note {
  position: relative;
  z-index: 1;
  max-width: 40ch;
  margin-bottom: 22px;
}

.trauma-box-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.trauma-memory-box {
  position: relative;
  min-height: 118px;
  padding: 18px 16px 14px;
  color: inherit;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(76, 91, 60, 0.16);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(31, 37, 35, 0.06);
  cursor: pointer;
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.trauma-memory-box:hover,
.trauma-memory-box.is-active {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(71, 107, 88, 0.14);
}

.trauma-memory-box.is-active {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(223, 238, 227, 0.42));
  border-color: rgba(71, 107, 88, 0.38);
}

.trauma-box-lid {
  position: absolute;
  top: -10px;
  right: 10px;
  left: 10px;
  height: 20px;
  background: linear-gradient(180deg, rgba(217, 182, 165, 0.72), rgba(217, 182, 165, 0.38));
  border-radius: 8px 8px 4px 4px;
  transition: transform 180ms ease;
  transform-origin: center bottom;
}

.trauma-memory-box.is-active .trauma-box-lid {
  transform: rotate(-5deg) translateY(-2px);
}

.trauma-box-badge {
  display: inline-flex;
  margin-top: 10px;
  color: var(--sage);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trauma-memory-box h3 {
  margin: 8px 0 6px;
  font-size: 1.06rem;
}

.trauma-memory-box p {
  margin: 0;
  color: #4f5955;
  font-size: 0.96rem;
  line-height: 1.45;
}

.trauma-attic-detail {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
}

.trauma-detail-card {
  margin-top: 18px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(143, 177, 154, 0.14), rgba(217, 182, 165, 0.1));
  border: 1px solid rgba(71, 107, 88, 0.12);
  border-radius: 8px;
}

.trauma-pillbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.trauma-pill {
  padding: 8px 11px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(71, 107, 88, 0.12);
  border-radius: 999px;
  font-size: 0.9rem;
}

.trauma-method-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  color: var(--forest);
  background: var(--mint);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.trauma-timeline {
  position: relative;
  margin-top: 20px;
  padding-left: 20px;
}

.trauma-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 7px;
  width: 2px;
  background: rgba(143, 177, 154, 0.34);
}

.trauma-timeline-item {
  position: relative;
  margin: 0 0 18px;
  padding-left: 22px;
}

.trauma-timeline-item::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: -18px;
  width: 12px;
  height: 12px;
  background: var(--sage);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(143, 177, 154, 0.14);
}

.trauma-quote {
  padding: clamp(26px, 4vw, 36px);
  color: var(--forest);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: 850;
  line-height: 1.35;
}

.trauma-path,
.trauma-exercise-grid {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.trauma-tabs {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 8px;
  padding: 14px;
  background: rgba(251, 253, 248, 0.86);
  border: 1px solid rgba(71, 107, 88, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(31, 37, 35, 0.08);
  backdrop-filter: blur(16px);
}

.trauma-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 13px 14px;
  color: var(--deep);
  background: transparent;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.trauma-tab.is-active {
  color: #fff;
  background: var(--sage);
}

.trauma-num {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  background: rgba(143, 177, 154, 0.2);
  border-radius: 50%;
  font-size: 0.9rem;
}

.trauma-tab.is-active .trauma-num {
  background: rgba(255, 255, 255, 0.22);
}

.trauma-panel {
  display: none;
  min-height: 390px;
  padding: clamp(24px, 4vw, 32px);
}

.trauma-panel.is-active {
  display: block;
}

.trauma-prompt {
  margin-top: 20px;
  padding: 18px;
  background: var(--soft);
  border: 1px solid rgba(71, 107, 88, 0.16);
  border-radius: 8px;
}

.trauma-textarea {
  width: 100%;
  min-height: 124px;
  padding: 15px;
  color: var(--ink);
  background: #fffefb;
  border: 1px solid rgba(71, 107, 88, 0.22);
  border-radius: 8px;
  font: inherit;
  outline: none;
  resize: vertical;
}

.trauma-textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(143, 177, 154, 0.18);
}

.trauma-exercise-grid {
  grid-template-columns: 1fr 1fr;
}

.trauma-breath,
.trauma-window {
  padding: clamp(24px, 4vw, 30px);
}

.trauma-breath {
  display: grid;
  min-height: 330px;
  place-items: center;
}

.trauma-breath-circle {
  display: grid;
  width: 160px;
  height: 160px;
  margin: 0 auto;
  place-items: center;
  color: #fff;
  background: radial-gradient(circle, rgba(143, 177, 154, 0.92), rgba(71, 107, 88, 0.82));
  border-radius: 50%;
  box-shadow: 0 18px 50px rgba(71, 107, 88, 0.2);
  font-weight: 900;
  text-align: center;
  animation: trauma-breathe 8s ease-in-out infinite;
}

@keyframes trauma-breathe {
  0%,
  100% { transform: scale(0.86); }
  45%,
  55% { transform: scale(1.08); }
}

.trauma-small-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.trauma-ghost {
  color: var(--forest);
  background: #fffefb;
  border-color: var(--line);
}

.trauma-accordion {
  display: grid;
  gap: 12px;
}

.trauma-accordion details {
  padding: 0 20px;
}

.trauma-accordion summary {
  padding: 18px 0;
  color: var(--forest);
  cursor: pointer;
  font-weight: 900;
}

.trauma-accordion p {
  margin-top: 0;
}

.trauma-safety {
  margin-top: 20px;
  background: rgba(143, 177, 154, 0.14);
}

.trauma-floating {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.trauma-floating .button {
  box-shadow: 0 12px 30px rgba(31, 37, 35, 0.12);
}

.trauma-print-note {
  display: none;
}

.card-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.resource-card,
.feature-grid article,
.task-list li {
  padding: 24px;
  background: rgba(251, 253, 248, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.resource-card {
  display: flex;
  min-height: 245px;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.resource-card.featured,
.tool-callout {
  background: linear-gradient(145deg, var(--soft), rgba(223, 238, 227, 0.78));
  border-color: rgba(71, 107, 88, 0.28);
}

.resource-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.resource-card span,
.feature-grid span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.resource-card h2 {
  margin-bottom: 10px;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.resource-card p,
.feature-grid p,
.task-list span {
  color: var(--muted);
}

.feature-grid span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--leaf), var(--sage));
  border-radius: 50%;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.28fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.article-shell.compact {
  display: block;
  max-width: 860px;
}

.about-wide-shell {
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(28px, 5vw, 72px);
}

.about-wide-shell .article-body {
  max-width: 920px;
}

.about-logo-strip {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding: 16px;
  background: rgba(251, 253, 248, 0.82);
  border: 1px solid rgba(83, 109, 99, 0.16);
  border-radius: 8px;
}

.about-logo-strip img {
  display: block;
  width: 100%;
  max-height: 84px;
  object-fit: contain;
  padding: 8px;
  background: #fff;
  border: 1px solid rgba(83, 109, 99, 0.1);
  border-radius: 8px;
}

.about-logo-strip img:first-child {
  max-height: 68px;
}

.article-header {
  position: sticky;
  top: 96px;
  min-width: 0;
}

.article-header h1 {
  max-width: 100%;
  font-size: clamp(2.4rem, 4.65vw, 4.55rem);
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.article-subtitle {
  margin: -8px 0 14px;
  color: #344139;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.45;
}

.article-meta {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  color: var(--sage);
  background: var(--soft);
  border: 1px solid rgba(83, 109, 99, 0.16);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
}

.article-route-card {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 18px;
  background: rgba(251, 253, 248, 0.86);
  border: 1px solid rgba(83, 109, 99, 0.16);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(31, 55, 42, 0.08);
}

.article-route-card strong {
  margin-bottom: 4px;
  color: var(--deep);
}

.article-route-card a {
  padding: 9px 11px;
  color: var(--sage);
  background: var(--soft);
  border-radius: 8px;
  font-weight: 850;
  line-height: 1.25;
  text-decoration: none;
}

.article-route-card a:hover,
.article-route-card a:focus-visible {
  color: var(--deep);
  background: #fff;
  outline: 2px solid rgba(71, 107, 88, 0.22);
}

.article-body {
  min-width: 0;
  max-width: 760px;
  color: #2f3b35;
  font-size: 1.06rem;
}

.article-lead {
  color: #25322d;
  font-size: clamp(1.18rem, 2vw, 1.38rem);
  font-weight: 700;
  line-height: 1.55;
}

.article-body h2 {
  margin-top: 38px;
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  letter-spacing: -0.025em;
}

.article-body p {
  margin-bottom: 20px;
}

.article-list {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding-left: 1.25rem;
}

.article-list li {
  padding-left: 4px;
}

.article-list li::marker {
  color: var(--sage);
}

.article-note {
  margin-top: 34px;
  padding: 18px 20px;
  color: var(--muted);
  background: var(--soft);
  border: 1px solid rgba(83, 109, 99, 0.16);
  border-radius: 8px;
  font-size: 0.98rem;
}

.crisis-care-page {
  background:
    radial-gradient(circle at 88% 10%, rgba(163, 188, 196, 0.24), transparent 25rem),
    radial-gradient(circle at 8% 14%, rgba(143, 177, 154, 0.2), transparent 23rem),
    linear-gradient(180deg, #fbfdf8 0%, #f2f8f1 52%, #fbfdf8 100%);
}

.crisis-care-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(290px, 0.74fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  padding: clamp(56px, 8vw, 108px) max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(71, 107, 88, 0.12);
}

.crisis-care-hero h1 {
  max-width: 760px;
}

.crisis-care-visual,
.compare-card,
.care-step-panel,
.care-summary-grid article,
.related-panel {
  border: 1px solid rgba(71, 107, 88, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(31, 55, 42, 0.08);
}

.crisis-care-visual {
  position: relative;
  min-height: 390px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(251, 253, 248, 0.94), rgba(229, 240, 230, 0.9)),
    repeating-linear-gradient(120deg, rgba(71, 107, 88, 0.08) 0 1px, transparent 1px 42px);
}

.crisis-care-visual::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(71, 107, 88, 0.16);
  border-radius: 50%;
  background: rgba(143, 177, 154, 0.16);
}

.crisis-care-visual h2 {
  max-width: 360px;
  margin-top: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.crisis-care-visual p {
  max-width: 320px;
  color: var(--muted);
  font-weight: 750;
}

.status-pill {
  display: inline-flex;
  padding: 7px 11px;
  color: var(--sage);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(71, 107, 88, 0.18);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.care-orbit {
  position: absolute;
  right: 28px;
  bottom: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(82px, 1fr));
  gap: 8px;
  z-index: 1;
}

.care-orbit span {
  display: grid;
  place-items: center;
  min-height: 62px;
  padding: 8px;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(71, 107, 88, 0.16);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.crisis-care-shell {
  padding-top: clamp(48px, 7vw, 86px);
}

.compare-card {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.compare-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.compare-card a,
.related-panel a {
  color: var(--sage);
  font-weight: 900;
  text-decoration: none;
}

.care-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 36px;
}

.care-summary-grid article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.74);
}

.care-summary-grid span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.care-summary-grid strong {
  display: block;
  margin-bottom: 6px;
}

.care-summary-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.care-step-panel {
  margin: 32px 0;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(238, 245, 237, 0.92), rgba(255, 253, 249, 0.86));
}

.care-step-panel h3 {
  margin-bottom: 14px;
}

.care-step-panel ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.25rem;
  color: var(--muted);
}

.care-step-panel li::marker {
  color: var(--sage);
  font-weight: 900;
}

.care-reflection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0;
}

.care-reflection-grid article,
.hic-iht-compare {
  border: 1px solid rgba(71, 107, 88, 0.16);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(31, 55, 42, 0.06);
}

.care-reflection-grid article {
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(238, 245, 237, 0.72));
}

.care-reflection-grid span,
.hic-iht-columns span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.care-reflection-grid h3,
.hic-iht-columns h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.care-reflection-grid p,
.hic-iht-columns p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.hic-iht-compare {
  display: grid;
  gap: 18px;
  margin: 38px 0 10px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(23, 33, 29, 0.96), rgba(49, 72, 64, 0.94));
  color: #fff;
}

.hic-iht-compare h2 {
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.hic-iht-compare .mini-eyebrow {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hic-iht-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hic-iht-columns article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.hic-iht-columns span {
  color: var(--gold);
}

.hic-iht-columns p {
  color: rgba(255, 255, 255, 0.75);
}

.related-panel {
  display: grid;
  gap: 10px;
  margin-top: 38px;
  padding: 18px;
  background: rgba(251, 253, 248, 0.82);
}

.crisis-care-page blockquote {
  margin: 30px 0;
  padding: 22px 24px;
  color: var(--deep);
  background: rgba(71, 107, 88, 0.08);
  border-left: 4px solid var(--sage);
  border-radius: 8px;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 850;
}

.crisis-care-page blockquote p {
  margin: 0;
}

.handbook-page {
  background:
    radial-gradient(circle at 88% 12%, rgba(163, 188, 196, 0.28), transparent 24rem),
    radial-gradient(circle at 10% 8%, rgba(154, 173, 148, 0.2), transparent 22rem),
    linear-gradient(180deg, #fbfdf8 0%, #f6f1e8 54%, #fbfdf8 100%);
}

.handbook-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.62fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: end;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) 24px clamp(38px, 7vw, 76px);
}

.handbook-hero h1 {
  max-width: 900px;
  color: #263321;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  letter-spacing: 0;
}

.handbook-hero .article-lead {
  max-width: 820px;
  margin-bottom: 0;
}

.status-notice {
  padding: 22px;
  color: #2d372d;
  background:
    linear-gradient(145deg, rgba(251, 253, 248, 0.96), rgba(246, 241, 232, 0.9)),
    repeating-linear-gradient(125deg, rgba(168, 113, 34, 0.08) 0 1px, transparent 1px 30px);
  border: 1px solid rgba(168, 113, 34, 0.24);
  border-left: 5px solid #a87122;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(76, 91, 60, 0.1);
}

.status-notice strong {
  display: block;
  margin-bottom: 8px;
  color: #4c5b3c;
}

.status-notice p {
  margin: 0;
  color: #526058;
}

.handbook-library {
  padding-top: clamp(28px, 5vw, 58px);
}

.handbook-chapter-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.handbook-chapter-card {
  position: relative;
  min-height: 285px;
}

.handbook-chapter-card h3 {
  margin: 4px 0 12px;
  color: var(--deep);
  font-size: 1.42rem;
  line-height: 1.18;
}

.handbook-chapter-card .chapter-status {
  width: fit-content;
  margin: -2px 0 14px;
  padding: 6px 10px;
  color: #4c5b3c;
  background: rgba(154, 173, 148, 0.18);
  border: 1px solid rgba(76, 91, 60, 0.18);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.handbook-chapter-card.is-disabled {
  color: inherit;
  opacity: 0.82;
}

.handbook-chapter-card.is-disabled:hover {
  transform: none;
  box-shadow: none;
}

.handbook-article .article-header h1 {
  font-size: clamp(2.15rem, 4vw, 3.9rem);
}

.chapter-meta {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
}

.chapter-meta div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
  width: fit-content;
  padding: 8px 11px;
  background: rgba(238, 245, 237, 0.9);
  border: 1px solid rgba(76, 91, 60, 0.15);
  border-radius: 999px;
}

.chapter-meta dt {
  color: #4c5b3c;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chapter-meta dd {
  margin: 0;
  color: #465049;
  font-weight: 750;
}

.handbook-panel,
.reflection-questions {
  margin: 34px 0;
  padding: clamp(20px, 4vw, 28px);
  background: rgba(251, 253, 248, 0.9);
  border: 1px solid rgba(76, 91, 60, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(76, 91, 60, 0.08);
}

.numbered-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 1.4rem;
}

.numbered-list li::marker {
  color: #a87122;
  font-weight: 900;
}

.reflection-questions ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reflection-questions li {
  padding-left: 22px;
  border-left: 3px solid rgba(84, 122, 130, 0.38);
}

.next-chapter-links {
  margin-top: 42px;
}

.next-chapter-links .resource-card {
  min-height: auto;
}

.chapter-end-notice {
  margin-top: 34px;
}

.subtle-handbook-link {
  margin-top: 28px;
}

.article-related-link {
  margin-top: -2px;
  margin-bottom: 34px;
}

.article-related-link a,
.subtle-handbook-link a {
  display: inline-flex;
  align-items: center;
  padding: 11px 14px;
  color: #4c5b3c;
  background: rgba(251, 253, 248, 0.78);
  border: 1px solid rgba(76, 91, 60, 0.18);
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
}

.article-related-link a:hover,
.article-related-link a:focus-visible,
.subtle-handbook-link a:hover,
.subtle-handbook-link a:focus-visible {
  color: #17211d;
  background: #fff;
}

.chapter-one-page {
  background:
    radial-gradient(circle at 88% 6%, rgba(163, 188, 196, 0.24), transparent 360px),
    radial-gradient(circle at 8% 16%, rgba(168, 113, 34, 0.12), transparent 320px),
    var(--paper);
}

.chapter-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.96fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 88px) 24px clamp(36px, 6vw, 70px);
}

.chapter-hero h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 6vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.chapter-hero .article-subtitle {
  max-width: 720px;
}

.chapter-visual-card {
  padding: clamp(20px, 4vw, 30px);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(238, 245, 237, 0.82)),
    repeating-linear-gradient(120deg, rgba(71, 107, 88, 0.06) 0 1px, transparent 1px 42px);
  border: 1px solid rgba(71, 107, 88, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.chapter-visual {
  display: block;
  width: 100%;
  height: auto;
}

.chapter-visual-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 750;
}

.chapter-summary-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: start;
  padding: clamp(42px, 6vw, 72px) max(24px, calc((100vw - 1180px) / 2));
  color: #fff;
  background:
    linear-gradient(135deg, rgba(19, 37, 29, 0.98), rgba(49, 72, 64, 0.95)),
    repeating-linear-gradient(118deg, rgba(230, 210, 168, 0.11) 0 1px, transparent 1px 48px);
}

.chapter-summary-band .eyebrow {
  color: var(--gold-soft);
}

.chapter-summary-band .eyebrow::before {
  background: var(--gold-soft);
}

.chapter-summary-band h2 {
  max-width: 520px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
}

.chapter-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.chapter-summary-grid article {
  min-height: 190px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.chapter-summary-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold-soft);
  font-size: 0.8rem;
  font-weight: 900;
}

.chapter-summary-grid h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.18rem;
}

.chapter-summary-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.chapter-reading-shell {
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: start;
}

.chapter-sticky-note {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 7px;
  padding: 18px;
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid rgba(71, 107, 88, 0.16);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(31, 55, 42, 0.07);
}

.chapter-sticky-note strong {
  color: var(--deep);
  margin-bottom: 6px;
}

.chapter-sticky-note a {
  padding: 8px 10px;
  color: var(--muted);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
}

.chapter-sticky-note a:hover,
.chapter-sticky-note a:focus-visible {
  color: var(--deep);
  background: rgba(238, 245, 237, 0.94);
}

.chapter-layer-diagram,
.chapter-movement-panel,
.chapter-problem-goal {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(20px, 4vw, 34px);
  align-items: start;
  margin: 34px 0;
  padding: clamp(22px, 4vw, 32px);
  background:
    linear-gradient(135deg, rgba(251, 253, 248, 0.94), rgba(238, 245, 237, 0.82));
  border: 1px solid rgba(71, 107, 88, 0.16);
  border-radius: 8px;
}

.layer-stack,
.movement-steps {
  display: grid;
  gap: 10px;
}

.layer-stack div {
  padding: 16px;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(71, 107, 88, 0.13);
  border-left: 5px solid var(--sage);
  border-radius: 8px;
}

.layer-stack div:nth-child(2) {
  border-left-color: #547a82;
}

.layer-stack div:nth-child(3) {
  border-left-color: var(--gold);
}

.layer-stack span,
.definition-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.layer-stack strong {
  color: var(--deep);
  line-height: 1.35;
}

.chapter-callout,
.chapter-question {
  margin: 34px 0;
  padding: clamp(22px, 4vw, 34px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(76, 91, 60, 0.98), rgba(71, 107, 88, 0.94));
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(31, 55, 42, 0.14);
}

.chapter-callout h2,
.chapter-question h2 {
  color: #fff;
}

.chapter-callout p,
.chapter-question p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
}

.movement-steps article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 0 14px;
  align-items: start;
  padding: 16px;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(71, 107, 88, 0.13);
  border-radius: 8px;
}

.movement-steps span {
  grid-row: span 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--sage);
  border-radius: 999px;
  font-weight: 900;
}

.movement-steps p {
  margin: 4px 0 0;
  color: var(--muted);
}

.chapter-bridge {
  margin: 34px 0;
}

.bridge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.bridge-grid div {
  display: grid;
  gap: 8px;
  min-height: 180px;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(71, 107, 88, 0.14);
  border-radius: 8px;
}

.bridge-grid span,
.bridge-grid em {
  color: var(--sage);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.bridge-grid strong {
  color: var(--deep);
  font-size: 1.08rem;
  line-height: 1.2;
}

.definition-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0;
}

.definition-grid article {
  padding: 20px;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(71, 107, 88, 0.14);
  border-radius: 8px;
}

@media (max-width: 900px) {
  .chapter-hero,
  .chapter-summary-band,
  .chapter-reading-shell,
  .chapter-layer-diagram,
  .chapter-movement-panel,
  .chapter-problem-goal {
    grid-template-columns: 1fr;
  }

  .chapter-summary-grid,
  .bridge-grid,
  .definition-grid {
    grid-template-columns: 1fr;
  }

  .chapter-sticky-note {
    position: static;
  }
}

@media (max-width: 560px) {
  .chapter-hero {
    padding-top: 32px;
  }

  .chapter-hero h1 {
    font-size: clamp(2.3rem, 11vw, 3.2rem);
    line-height: 1.02;
  }

  .chapter-summary-band,
  .chapter-layer-diagram,
  .chapter-movement-panel,
  .chapter-problem-goal,
  .chapter-callout,
  .chapter-question {
    margin-inline: 0;
  }

  .movement-steps article {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .movement-steps span {
    width: 36px;
    height: 36px;
  }
}

.interactive-article .article-body section {
  scroll-margin-top: 110px;
}

.article-toc-card {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 16px;
  background: rgba(251, 253, 248, 0.78);
  border: 1px solid rgba(71, 107, 88, 0.18);
  border-radius: 8px;
}

.article-note p:last-child {
  margin-bottom: 0;
}

.article-toc-card a {
  color: var(--sage);
  font-size: 0.95rem;
  font-weight: 850;
  text-decoration: none;
}

.article-toc-card a:hover,
.article-toc-card a:focus-visible {
  color: var(--forest);
}

.kopp-intro-panel,
.kopp-bento-grid,
.kopp-card-row,
.role-grid,
.needs-grid {
  display: grid;
  gap: 16px;
}

.kopp-intro-panel {
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
  align-items: stretch;
  margin-bottom: 34px;
}

.kopp-stat-card {
  display: grid;
  align-content: center;
  padding: 24px;
  color: #fff;
  background: linear-gradient(145deg, var(--leaf), var(--forest));
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(31, 55, 42, 0.16);
}

.kopp-stat-card span,
.kopp-bento-grid span,
.role-grid span,
.phase-timeline span {
  color: inherit;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.kopp-stat-card strong {
  margin: 10px 0;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1;
}

.kopp-stat-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.kopp-bento-grid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  margin: 30px 0 44px;
}

.kopp-bento-grid article,
.kopp-card-row article,
.role-grid article,
.needs-grid article,
.impact-list,
.source-panel {
  padding: 22px;
  background: rgba(251, 253, 248, 0.88);
  border: 1px solid rgba(71, 107, 88, 0.18);
  border-radius: 8px;
}

.kopp-bento-grid article:first-child {
  background: linear-gradient(145deg, var(--soft), rgba(223, 238, 227, 0.78));
}

.kopp-bento-grid h2,
.kopp-card-row h3,
.needs-grid h3,
.phase-timeline h3 {
  margin-bottom: 8px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: -0.02em;
}

.kopp-accordion {
  display: grid;
  gap: 10px;
  margin: 18px 0 38px;
  counter-reset: koppSteps;
}

.kopp-accordion details {
  background: rgba(251, 253, 248, 0.88);
  border: 1px solid rgba(71, 107, 88, 0.18);
  border-radius: 8px;
  overflow: hidden;
}

.kopp-accordion summary {
  position: relative;
  min-height: 58px;
  padding: 16px 52px 16px 18px;
  color: var(--deep);
  font-weight: 850;
  cursor: pointer;
}

.kopp-accordion summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  color: var(--sage);
  font-size: 1.4rem;
  transform: translateY(-50%);
}

.kopp-accordion details[open] summary::after {
  content: "-";
}

.kopp-accordion p {
  margin: 0;
  padding: 0 18px 18px;
}

.kopp-accordion.numbered summary {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
}

.kopp-accordion.numbered summary::before {
  counter-increment: koppSteps;
  content: counter(koppSteps, decimal-leading-zero);
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--sage);
  border-radius: 50%;
  font-size: 0.78rem;
}

.kopp-signal-grid,
.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 38px;
}

.kopp-signal-grid span,
.source-links a {
  padding: 10px 13px;
  color: var(--sage);
  background: var(--soft);
  border: 1px solid rgba(71, 107, 88, 0.18);
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
}

.section-mini-heading p {
  color: var(--muted);
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
  padding: 6px;
  background: var(--soft);
  border: 1px solid rgba(71, 107, 88, 0.16);
  border-radius: 8px;
}

.tab-buttons button {
  min-height: 42px;
  padding: 9px 13px;
  color: var(--sage);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.tab-buttons button[aria-selected="true"] {
  color: #fff;
  background: var(--sage);
  box-shadow: 0 12px 28px rgba(31, 55, 42, 0.12);
}

.tab-panel {
  margin-bottom: 40px;
}

.kopp-card-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.role-grid span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--sage);
}

.impact-list {
  display: grid;
  gap: 12px;
}

.impact-list p {
  margin: 0;
}

.phase-timeline {
  position: relative;
  display: grid;
  gap: 14px;
  margin: 20px 0 42px;
}

.phase-timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 18px;
  width: 2px;
  background: linear-gradient(180deg, var(--leaf), rgba(111, 149, 120, 0.18));
}

.phase-timeline article {
  position: relative;
  padding: 18px 18px 18px 58px;
  background: rgba(251, 253, 248, 0.88);
  border: 1px solid rgba(71, 107, 88, 0.18);
  border-radius: 8px;
}

.phase-timeline article::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 10px;
  width: 18px;
  aspect-ratio: 1;
  background: var(--paper);
  border: 4px solid var(--leaf);
  border-radius: 50%;
}

.phase-timeline span {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--sage);
}

.source-panel {
  margin-top: 36px;
  background: linear-gradient(145deg, rgba(238, 245, 237, 0.92), rgba(251, 253, 248, 0.88));
}

.emotion-wheel {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(18px, 4vw, 34px);
  margin: 30px 0 38px;
  padding: clamp(20px, 4vw, 30px);
  background:
    radial-gradient(circle at 16% 20%, rgba(127, 166, 111, 0.22), transparent 18rem),
    linear-gradient(145deg, rgba(238, 245, 237, 0.96), rgba(251, 253, 248, 0.9));
  border: 1px solid rgba(71, 107, 88, 0.2);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(31, 55, 42, 0.12);
}

.emotion-tool-heading {
  grid-column: 1 / -1;
  max-width: 720px;
}

.emotion-tool-heading span {
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.emotion-tool-heading h2 {
  margin: 8px 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.45rem);
}

.emotion-tool-heading p {
  color: var(--muted);
}

.emotion-orbit {
  position: relative;
  min-height: 420px;
  isolation: isolate;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(251, 253, 248, 0.94) 0 27%, transparent 28%),
    radial-gradient(circle, transparent 0 48%, rgba(143, 177, 154, 0.18) 49% 50%, transparent 51%),
    radial-gradient(circle, transparent 0 72%, rgba(71, 107, 88, 0.15) 73% 74%, transparent 75%);
}

.emotion-orbit::before,
.emotion-orbit::after {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(71, 107, 88, 0.12);
  border-radius: 44% 56% 50% 50% / 52% 42% 58% 48%;
  animation: organicDrift 16s ease-in-out infinite alternate;
}

.emotion-orbit::after {
  inset: 18%;
  border-color: rgba(127, 166, 111, 0.18);
  animation-duration: 12s;
  animation-direction: alternate-reverse;
}

.emotion-node {
  position: absolute;
  display: grid;
  gap: 8px;
  width: 112px;
  min-height: 104px;
  place-items: center start;
  padding: 16px;
  color: var(--deep);
  background: linear-gradient(145deg, rgba(251, 253, 248, 0.96), rgba(223, 238, 227, 0.82));
  border: 1px solid rgba(71, 107, 88, 0.2);
  border-radius: 46% 54% 50% 50% / 56% 44% 54% 46%;
  font: inherit;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(31, 55, 42, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.emotion-node i {
  display: block;
  width: 34px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 34%, rgba(255, 255, 255, 0.86), transparent 22%),
    linear-gradient(135deg, var(--leaf), var(--forest));
}

.emotion-node span {
  font-size: 0.94rem;
  font-weight: 900;
}

.emotion-node:hover,
.emotion-node.is-active {
  transform: translateY(-5px) scale(1.03);
  border-color: rgba(71, 107, 88, 0.48);
  box-shadow: 0 24px 54px rgba(31, 55, 42, 0.17);
}

.emotion-node.is-active {
  background: linear-gradient(145deg, #fff, rgba(216, 234, 216, 0.98));
}

.node-blij { left: 50%; top: 0; transform: translateX(-50%); }
.node-verdrietig { right: 1%; top: 23%; }
.node-boos { right: 8%; bottom: 8%; }
.node-bang { left: 8%; bottom: 8%; }
.node-beschaamd { left: 1%; top: 23%; }
.node-walging { left: 50%; bottom: 0; transform: translateX(-50%); }

.node-blij:hover,
.node-blij.is-active,
.node-walging:hover,
.node-walging.is-active {
  transform: translateX(-50%) translateY(-5px) scale(1.03);
}

.emotion-compass-center {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  width: 138px;
  aspect-ratio: 1;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(145deg, var(--leaf), var(--forest));
  border: 8px solid rgba(251, 253, 248, 0.86);
  border-radius: 50%;
  box-shadow: 0 22px 58px rgba(31, 55, 42, 0.2);
  transform: translate(-50%, -50%);
  z-index: 2;
}

.emotion-compass-center span {
  font-weight: 900;
}

.emotion-insight {
  display: grid;
  align-content: start;
  padding: clamp(22px, 4vw, 30px);
  background: rgba(251, 253, 248, 0.94);
  border: 1px solid rgba(71, 107, 88, 0.22);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(31, 55, 42, 0.09);
}

.emotion-insight > span {
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.emotion-insight dl {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.emotion-insight dl div {
  padding: 12px 0;
  border-top: 1px solid rgba(71, 107, 88, 0.12);
}

.emotion-insight dt {
  color: var(--deep);
  font-weight: 900;
}

.emotion-insight dd {
  margin: 2px 0 0;
  color: var(--muted);
}

.emotion-practice {
  margin-top: 20px;
  padding: 18px;
  background: var(--soft);
  border: 1px solid rgba(71, 107, 88, 0.16);
  border-radius: 8px;
}

.emotion-practice h3 {
  margin-bottom: 6px;
}

.emotion-practice p {
  margin-bottom: 0;
}

@keyframes organicDrift {
  from { transform: rotate(0deg) scale(1); }
  to { transform: rotate(8deg) scale(1.03); }
}

.pattern-timeline {
  margin: 26px 0 34px;
  padding: 22px;
  background: rgba(251, 253, 248, 0.9);
  border: 1px solid rgba(71, 107, 88, 0.18);
  border-radius: 8px;
}

.timeline-control {
  display: grid;
  gap: 12px;
}

.timeline-control label {
  color: var(--deep);
  font-weight: 900;
}

.timeline-control input {
  width: 100%;
  accent-color: var(--sage);
}

.timeline-stages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 0;
}

.timeline-stages span {
  padding: 10px;
  color: var(--muted);
  background: var(--soft);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 850;
  text-align: center;
}

.timeline-stages span.is-active {
  color: #fff;
  background: var(--sage);
}

.timeline-card {
  padding: 18px;
  background: var(--paper);
  border: 1px solid rgba(71, 107, 88, 0.16);
  border-radius: 8px;
}

.about-card-set {
  margin: 34px 0 42px;
  padding: clamp(20px, 4vw, 28px);
  background:
    radial-gradient(circle at top right, rgba(127, 166, 111, 0.2), transparent 16rem),
    linear-gradient(145deg, rgba(238, 245, 237, 0.92), rgba(251, 253, 248, 0.88));
  border: 1px solid rgba(71, 107, 88, 0.18);
  border-radius: 8px;
}

.about-card-set > h2 {
  margin-bottom: 16px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.about-flip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.about-flip-grid details {
  min-height: 136px;
  background:
    linear-gradient(145deg, rgba(251, 253, 248, 0.96), rgba(223, 238, 227, 0.72));
  border: 1px solid rgba(71, 107, 88, 0.2);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(31, 55, 42, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.about-flip-grid details:hover,
.about-flip-grid details[open] {
  transform: translateY(-3px);
  border-color: rgba(71, 107, 88, 0.42);
  box-shadow: 0 24px 54px rgba(31, 55, 42, 0.13);
}

.about-flip-grid details[open] {
  grid-column: auto;
  background:
    radial-gradient(circle at top left, rgba(127, 166, 111, 0.22), transparent 11rem),
    linear-gradient(145deg, rgba(251, 253, 248, 0.98), rgba(238, 245, 237, 0.92));
}

.about-flip-grid summary {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 136px;
  align-content: space-between;
  padding: 18px 52px 18px 18px;
  color: var(--deep);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.about-flip-grid summary::-webkit-details-marker {
  display: none;
}

.about-flip-grid summary::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 20px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--sage);
  border-bottom: 2px solid var(--sage);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.about-flip-grid details[open] summary::after {
  transform: rotate(225deg);
}

.about-flip-grid summary .about-card-mark {
  position: relative;
  display: grid;
  width: 44px;
  aspect-ratio: 1;
  place-items: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(127, 166, 111, 0.2));
  border: 1px solid rgba(71, 107, 88, 0.16);
  border-radius: 50%;
}

.about-card-mark::before,
.about-card-mark::after {
  content: "";
  position: absolute;
}

.mark-acute::before {
  width: 18px;
  height: 14px;
  border: 2px solid var(--sage);
  border-radius: 50%;
}

.mark-acute::after {
  width: 8px;
  height: 8px;
  right: 10px;
  bottom: 9px;
  border-right: 2px solid var(--sage);
  border-bottom: 2px solid var(--sage);
}

.mark-training::before {
  width: 19px;
  height: 19px;
  border: 2px solid var(--sage);
  border-radius: 50%;
}

.mark-training::after {
  width: 12px;
  height: 2px;
  background: var(--sage);
  box-shadow: 0 -5px 0 var(--sage), 0 5px 0 var(--sage);
}

.mark-consultation::before {
  width: 22px;
  height: 15px;
  border: 2px solid var(--sage);
  border-radius: 7px;
}

.mark-consultation::after {
  left: 12px;
  bottom: 10px;
  width: 7px;
  height: 7px;
  border-left: 2px solid var(--sage);
  transform: skewY(-35deg);
}

.mark-knowledge::before {
  width: 20px;
  height: 23px;
  border: 2px solid var(--sage);
  border-radius: 3px;
}

.mark-knowledge::after {
  width: 11px;
  height: 2px;
  background: var(--sage);
  box-shadow: 0 -5px 0 var(--sage), 0 5px 0 var(--sage);
}

.mark-projects::before {
  width: 22px;
  height: 15px;
  border: 2px solid var(--sage);
  border-top: 0;
}

.mark-projects::after {
  top: 10px;
  width: 24px;
  height: 10px;
  border-top: 2px solid var(--sage);
  border-bottom: 2px solid var(--sage);
}

.about-flip-grid p {
  margin: 0;
  padding: 0 16px 18px;
  color: var(--muted);
}

.article-quote {
  margin: 28px 0;
  padding: 24px;
  color: #25322d;
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.98), rgba(244, 241, 236, 0.9)),
    repeating-linear-gradient(118deg, rgba(168, 111, 13, 0.06) 0 1px, transparent 1px 34px);
  border: 1px solid rgba(83, 109, 99, 0.18);
  border-left: 6px solid var(--gold);
  border-radius: 8px;
}

.article-quote p {
  margin-bottom: 0;
  font-size: clamp(1.08rem, 2vw, 1.26rem);
  font-weight: 800;
  line-height: 1.55;
}

.article-body a {
  color: var(--sage);
  font-weight: 800;
}

.article-visual {
  margin: 0 0 34px;
}

.article-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(83, 109, 99, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(31, 41, 36, 0.1);
}

.action-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.action-card {
  display: flex;
  min-height: 240px;
  flex-direction: column;
  padding: 24px;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.action-card.primary {
  background: var(--soft);
  border-color: rgba(83, 109, 99, 0.28);
}

.action-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.action-card span {
  margin-bottom: 16px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.action-card h2 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.action-card p {
  color: var(--muted);
}

.action-card strong {
  margin-top: auto;
  color: var(--sage);
}

.article-body .action-card-grid {
  grid-template-columns: 1fr;
  margin: 26px 0 30px;
}

.article-body .action-card {
  min-height: auto;
}

.tool-callout {
  margin: 0 0 34px;
  padding: 24px;
  border: 1px solid rgba(83, 109, 99, 0.28);
  border-radius: 8px;
}

.tool-callout span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tool-callout h2 {
  margin-top: 0;
}

.tool-callout p {
  color: var(--muted);
}

.tool-callout .button {
  margin-top: 4px;
}

.tool-callout .button.primary {
  color: #fff;
}

.tool-callout .button.secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--sage);
}

.inline-list {
  margin: 22px 0;
  padding-left: 1.35rem;
  list-style: disc;
}

.inline-list li {
  padding: 4px 0 4px 2px;
}

.inline-list li::marker {
  color: var(--sage);
}

.insight-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.insight-list li {
  position: relative;
  padding: 14px 16px 14px 48px;
  color: #2f3b35;
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.98), rgba(244, 241, 236, 0.86)),
    repeating-linear-gradient(118deg, rgba(168, 111, 13, 0.07) 0 1px, transparent 1px 34px);
  border: 1px solid rgba(83, 109, 99, 0.16);
  border-radius: 8px;
}

.insight-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  width: 14px;
  aspect-ratio: 1;
  background: var(--paper);
  border: 3px solid var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.reflection-card {
  margin: 30px 0;
  padding: clamp(22px, 4vw, 30px);
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.98), rgba(244, 241, 236, 0.88)),
    repeating-linear-gradient(118deg, rgba(168, 111, 13, 0.07) 0 1px, transparent 1px 34px);
  border: 1px solid rgba(83, 109, 99, 0.18);
  border-left: 6px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(31, 41, 36, 0.08);
}

.reflection-card > span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.reflection-card.compact-card p {
  margin-bottom: 16px;
}

.reflection-card.compact-card li {
  min-height: auto;
  padding-left: 46px;
  font-size: 1.04rem;
}

.reflection-card.compact-card li::before {
  width: 30px;
  height: 30px;
  font-size: 0.68rem;
}

.reflection-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: reflection;
}

.reflection-card li {
  position: relative;
  min-height: 44px;
  padding-left: 56px;
  color: var(--deep);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  font-weight: 800;
  line-height: 1.35;
  counter-increment: reflection;
}

.reflection-card li::before {
  content: counter(reflection, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--sage);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.direction-questions li {
  min-height: 36px;
  padding-left: 48px;
  font-size: 1rem;
}

.direction-questions li::before {
  width: 32px;
  height: 32px;
  font-size: 0.68rem;
}

.aat-card-set {
  margin: 26px 0 30px;
  padding: clamp(20px, 4vw, 28px);
  background: linear-gradient(145deg, rgba(238, 245, 237, 0.95), rgba(251, 253, 248, 0.9));
  border: 1px solid rgba(71, 107, 88, 0.2);
  border-radius: 8px;
}

.aat-heading span {
  color: var(--sage);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.aat-heading h3 {
  margin: 7px 0 18px;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
}

.aat-card-grid {
  display: grid;
  gap: 10px;
}

.aat-card-grid details {
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(71, 107, 88, 0.18);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.aat-card-grid details:hover,
.aat-card-grid details[open] {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(31, 55, 42, 0.1);
}

.aat-card-grid summary {
  position: relative;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px 48px 16px 16px;
  color: var(--deep);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.aat-card-grid summary::-webkit-details-marker {
  display: none;
}

.aat-card-grid summary::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--sage);
  border-bottom: 2px solid var(--sage);
  transform: rotate(45deg);
}

.aat-card-grid details[open] summary::after {
  transform: rotate(225deg);
}

.aat-card-grid summary span {
  display: block;
  width: 28px;
  height: 28px;
  background:
    radial-gradient(circle at 36% 34%, rgba(255, 255, 255, 0.88), transparent 23%),
    linear-gradient(145deg, var(--leaf), var(--forest));
  border: 5px solid rgba(127, 166, 111, 0.16);
  border-radius: 50%;
}

.aat-card-grid summary span::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("/assets/media/favicon.svg") center / 18px 18px no-repeat;
}

.aat-card-grid p {
  margin: 0;
  padding: 0 18px 18px 58px;
  color: var(--muted);
}

.emotions-page .article-shell {
  max-width: 1320px;
  grid-template-columns: minmax(230px, 0.52fr) minmax(0, 1.48fr);
  gap: clamp(34px, 5vw, 76px);
}

.emotions-page .article-body {
  max-width: 920px;
}

/* Interactive emotions page */
.emotions-page main { overflow: visible; }
.emotion-hero,
.emotion-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}
.emotion-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
  min-height: 650px;
  padding: clamp(64px, 9vw, 116px) 0;
}
.emotion-hero h1 { color: var(--forest); }
.emotion-lead { color: #344139; font-size: clamp(1.12rem, 2vw, 1.36rem); }
.emotion-route,
.emotion-card-grid article,
.emotion-body-map > *,
.emotion-step-tabs,
.emotion-step-panels article,
.emotion-mask-grid article {
  background: rgba(251, 253, 248, .94);
  border: 1px solid rgba(71, 107, 88, .2);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(31, 55, 42, .09);
}
.emotion-route { display: grid; gap: 10px; padding: 26px; }
.emotion-route > strong { margin-bottom: 8px; font-size: 1.2rem; }
.emotion-route a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  color: var(--ink);
  background: var(--soft);
  border-radius: 8px;
  text-decoration: none;
}
.emotion-route span {
  display: grid;
  width: 34px;
  aspect-ratio: 1;
  place-items: center;
  color: #fff;
  background: var(--sage);
  border-radius: 50%;
  font-weight: 900;
}
.emotion-section { padding: clamp(52px, 8vw, 92px) 0; scroll-margin-top: 90px; }
.emotion-heading { max-width: 820px; margin-bottom: 30px; }
.emotion-heading > p:last-child { color: var(--muted); font-size: 1.06rem; }
.emotion-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.emotion-card-grid article { padding: 24px; }
.emotion-card-grid article > span {
  display: grid;
  width: 48px;
  aspect-ratio: 1;
  place-items: center;
  margin-bottom: 16px;
  color: var(--forest);
  background: var(--mint);
  border-radius: 50%;
  font-size: 1.3rem;
}
.emotion-depth { width: min(920px, calc(100% - 40px)); }
.emotion-accordion { display: grid; gap: 12px; }
.emotion-accordion details {
  background: rgba(251, 253, 248, .94);
  border: 1px solid rgba(71, 107, 88, .2);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(31, 55, 42, .06);
}
.emotion-accordion summary {
  position: relative;
  padding: 20px 58px 20px 22px;
  color: var(--deep);
  font-size: 1.08rem;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}
.emotion-accordion summary::-webkit-details-marker { display: none; }
.emotion-accordion summary::after {
  content: "+";
  position: absolute;
  top: 14px;
  right: 20px;
  color: var(--sage);
  font-size: 1.6rem;
}
.emotion-accordion details[open] summary::after { content: "−"; }
.emotion-accordion details > div { padding: 0 22px 22px; color: var(--muted); }
.emotion-accordion blockquote {
  margin: 22px 0 0;
  padding: 18px;
  color: var(--ink);
  background: var(--soft);
  border-left: 4px solid var(--sage);
}
.emotions-page .emotion-wheel { margin: 0; }
.emotion-body-map { display: grid; grid-template-columns: .85fr 1.15fr; gap: 20px; }
.emotion-silhouette { position: relative; min-height: 440px; overflow: hidden; }
.emotion-person { position: absolute; top: 48px; left: 50%; width: 150px; height: 330px; transform: translateX(-50%); }
.emotion-person i, .emotion-person b, .emotion-person em { position: absolute; left: 50%; display: block; background: rgba(71, 107, 88, .24); transform: translateX(-50%); }
.emotion-person i { width: 60px; height: 60px; border-radius: 50%; }
.emotion-person b { top: 72px; width: 110px; height: 150px; border-radius: 52px 52px 36px 36px; }
.emotion-person em { top: 214px; width: 74px; height: 116px; border-radius: 30px; }
.emotion-silhouette button {
  position: absolute;
  left: calc(50% + 78px);
  min-width: 80px;
  padding: 8px 12px;
  color: var(--sage);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}
.emotion-silhouette button.is-active { color: #fff; background: var(--sage); }
.emotion-silhouette button:nth-of-type(1) { top: 60px; }
.emotion-silhouette button:nth-of-type(2) { top: 126px; }
.emotion-silhouette button:nth-of-type(3) { top: 196px; }
.emotion-silhouette button:nth-of-type(4) { top: 270px; }
.emotion-body-copy { padding: clamp(24px, 4vw, 34px); }
.emotion-body-copy label { display: block; margin: 20px 0 8px; font-weight: 900; }
.emotion-body-copy small { display: block; margin-top: 8px; color: var(--muted); }
.emotion-prompt { margin-top: 20px; padding: 18px; background: var(--soft); border-radius: 8px; }
.emotion-prompt p { margin-bottom: 0; }
.emotions-page textarea {
  width: 100%;
  min-height: 120px;
  padding: 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  resize: vertical;
}
.emotions-page textarea:focus { outline: 3px solid rgba(71, 107, 88, .18); border-color: var(--sage); }
.emotion-steps { display: grid; grid-template-columns: 330px 1fr; gap: 22px; align-items: start; }
.emotion-step-tabs { display: grid; gap: 6px; padding: 12px; }
.emotion-step-tabs button {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}
.emotion-step-tabs button span { display: grid; width: 32px; aspect-ratio: 1; place-items: center; background: var(--mint); border-radius: 50%; }
.emotion-step-tabs button[aria-selected="true"] { color: #fff; background: var(--sage); }
.emotion-step-tabs button[aria-selected="true"] span { color: var(--sage); background: #fff; }
.emotion-step-panels article { min-height: 330px; padding: clamp(26px, 5vw, 40px); }
.emotion-step-panels textarea { margin-top: 20px; }
.emotion-mask-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.emotion-mask-grid article { padding: 24px; }
.emotion-quote {
  margin: 0 0 42px;
  padding: clamp(28px, 5vw, 42px);
  color: var(--forest);
  background: linear-gradient(135deg, var(--soft), rgba(223, 238, 227, .55));
  border-left: 6px solid var(--sage);
  border-radius: 8px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 800;
}
.emotion-safety { padding: clamp(26px, 5vw, 40px); background: var(--soft); border: 1px solid var(--line); border-radius: 8px; }
.emotion-safety h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
@media (max-width: 900px) {
  .emotion-hero, .emotion-body-map, .emotion-steps { grid-template-columns: 1fr; }
  .emotion-hero { min-height: auto; }
  .emotion-card-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .emotion-hero, .emotion-section, .emotion-depth { width: min(100% - 28px, 1120px); }
  .emotion-mask-grid { grid-template-columns: 1fr; }
  .emotion-silhouette button { left: calc(50% + 46px); min-width: 68px; font-size: .86rem; }
}

.emotion-page-nav {
  display: flex;
  gap: 8px;
  margin: 0 0 34px;
  padding: 0 0 14px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.emotion-page-nav a {
  flex: 0 0 auto;
  padding: 9px 13px;
  color: var(--deep);
  background: var(--soft);
  border: 1px solid rgba(71, 107, 88, 0.18);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 850;
  text-decoration: none;
}

.emotion-intro,
.emotion-explanation,
.body-explorer,
.emotion-process,
.emotion-faq {
  scroll-margin-top: 24px;
  margin: 0 0 48px;
}

.emotion-kicker,
.emotion-section-heading > span,
.body-insight > span,
.emotion-safety > span {
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.emotion-intro > h2 {
  max-width: 760px;
  margin-top: 8px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
}

.emotion-lead {
  color: var(--deep);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  font-weight: 700;
}

.emotion-foundations,
.emotion-contrast,
.emotion-mask-grid {
  display: grid;
  gap: 14px;
  margin: 26px 0;
}

.emotion-foundations {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.emotion-foundations article,
.emotion-contrast article,
.emotion-mask-grid article {
  padding: 20px;
  background: rgba(251, 253, 248, 0.9);
  border: 1px solid rgba(71, 107, 88, 0.17);
  border-radius: 8px;
}

.emotion-foundations article > span {
  display: inline-grid;
  width: 36px;
  aspect-ratio: 1;
  margin-bottom: 14px;
  place-items: center;
  color: #fff;
  background: var(--sage);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.emotion-foundations h3,
.emotion-contrast h3,
.emotion-mask-grid h3 {
  margin-bottom: 7px;
}

.emotion-foundations p,
.emotion-contrast p,
.emotion-mask-grid p {
  margin-bottom: 0;
}

.emotion-contrast,
.emotion-mask-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.body-explorer,
.emotion-process {
  padding: clamp(22px, 4vw, 32px);
  background: linear-gradient(145deg, rgba(238, 245, 237, 0.96), rgba(251, 253, 248, 0.92));
  border: 1px solid rgba(71, 107, 88, 0.2);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(31, 55, 42, 0.1);
}

.emotion-section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.emotion-section-heading h2 {
  margin: 8px 0 10px;
}

.body-explorer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 22px;
}

.body-map {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background: rgba(251, 253, 248, 0.75);
  border: 1px solid rgba(71, 107, 88, 0.16);
  border-radius: 8px;
}

.body-figure {
  position: absolute;
  top: 34px;
  left: 50%;
  width: 142px;
  height: 310px;
  transform: translateX(-50%);
}

.body-head,
.body-torso,
.body-legs {
  position: absolute;
  left: 50%;
  display: block;
  background: rgba(83, 109, 99, 0.22);
  transform: translateX(-50%);
}

.body-head {
  width: 54px;
  height: 54px;
  border-radius: 50%;
}

.body-torso {
  top: 64px;
  width: 94px;
  height: 142px;
  border-radius: 46px 46px 34px 34px;
}

.body-legs {
  top: 196px;
  width: 62px;
  height: 114px;
  border-radius: 0 0 30px 30px;
}

.body-point {
  position: absolute;
  z-index: 2;
  min-width: 72px;
  padding: 8px 10px;
  color: var(--deep);
  background: var(--paper);
  border: 1px solid rgba(71, 107, 88, 0.24);
  border-radius: 999px;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(31, 55, 42, 0.1);
}

.body-point.is-active {
  color: #fff;
  background: var(--sage);
}

.point-head { top: 43px; left: calc(50% + 34px); }
.point-throat { top: 105px; right: calc(50% + 25px); }
.point-chest { top: 156px; left: calc(50% + 35px); }
.point-belly { top: 222px; right: calc(50% + 24px); }

.body-insight {
  padding: clamp(22px, 4vw, 30px);
  background: rgba(251, 253, 248, 0.94);
  border: 1px solid rgba(71, 107, 88, 0.2);
  border-radius: 8px;
}

.body-insight h3 {
  margin-top: 8px;
}

.body-insight > div {
  margin-top: 22px;
  padding: 18px;
  background: var(--soft);
  border-radius: 8px;
}

.body-insight > div p {
  margin-bottom: 0;
}

.emotion-steps {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
}

.emotion-step-tabs {
  display: grid;
  align-content: start;
  gap: 8px;
}

.emotion-step-tabs button {
  padding: 13px 14px;
  color: var(--deep);
  background: rgba(251, 253, 248, 0.76);
  border: 1px solid rgba(71, 107, 88, 0.16);
  border-radius: 8px;
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.emotion-step-tabs button[aria-selected="true"] {
  color: #fff;
  background: var(--sage);
}

.emotion-step-panels {
  min-height: 315px;
}

.emotion-step-panels > section {
  height: 100%;
  padding: 24px;
  background: rgba(251, 253, 248, 0.94);
  border: 1px solid rgba(71, 107, 88, 0.18);
  border-radius: 8px;
}

.emotion-step-panels blockquote {
  margin: 22px 0 0;
  padding: 18px;
  color: var(--deep);
  background: var(--soft);
  border-left: 4px solid var(--sage);
  font-weight: 800;
}

.emotion-step-panels label {
  display: block;
  margin: 18px 0 7px;
  color: var(--deep);
  font-weight: 850;
}

.emotion-step-panels textarea {
  width: 100%;
  padding: 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(71, 107, 88, 0.28);
  border-radius: 8px;
  font: inherit;
  resize: vertical;
}

.privacy-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  color: var(--muted);
  background: rgba(251, 253, 248, 0.7);
  border-left: 4px solid var(--sage);
  font-size: 0.9rem;
}

.emotion-faq details {
  margin-bottom: 10px;
  padding: 0 18px;
  background: rgba(251, 253, 248, 0.9);
  border: 1px solid rgba(71, 107, 88, 0.17);
  border-radius: 8px;
}

.emotion-faq summary {
  padding: 17px 28px 17px 0;
  color: var(--deep);
  font-weight: 900;
  cursor: pointer;
}

.emotion-safety {
  margin-top: 42px;
  padding: clamp(22px, 4vw, 30px);
  background: rgba(232, 241, 238, 0.96);
  border: 1px solid rgba(83, 109, 99, 0.25);
  border-left: 5px solid var(--sage);
  border-radius: 8px;
}

.emotion-safety h2 {
  margin-top: 8px;
}

.interest-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 34px;
  padding: 0;
  list-style: none;
}

.interest-list li {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px 10px 40px;
  position: relative;
  color: var(--deep);
  background: rgba(244, 241, 236, 0.78);
  border: 1px solid rgba(83, 109, 99, 0.16);
  border-left: 4px solid var(--clay);
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.25;
}

.interest-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  width: 10px;
  aspect-ratio: 1;
  background: var(--sage);
  border-radius: 50%;
}

.word-quote {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0;
}

.word-quote span {
  display: inline-flex;
  padding: 12px 18px;
  color: var(--sage);
  background: var(--soft);
  border-left: 4px solid var(--clay);
  border-radius: 8px;
  font-size: 1.15rem;
  font-weight: 900;
}

.task-list strong {
  display: block;
  margin-bottom: 4px;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 72px;
  color: #fff;
  background: linear-gradient(135deg, #435a51, #71887f);
  border-radius: 8px;
}

.cta-section h2 {
  color: #fff;
}

.cta-section p {
  max-width: 720px;
  color: rgba(255,255,255,0.88);
}

.cta-section .small {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.contact-card {
  display: grid;
  gap: 10px;
}

.contact-card a {
  color: var(--sage);
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 38px clamp(24px, 6vw, 84px);
  color: rgba(255,255,255,0.82);
  background: #17211d;
}

.site-footer p {
  max-width: 620px;
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer-copyright {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer nav {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: nowrap;
    overflow: visible;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: clamp(20px, 4vw, 56px);
    left: clamp(20px, 4vw, 56px);
    display: grid;
    width: auto;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px;
    color: var(--ink);
    background:
      linear-gradient(135deg, rgba(255, 253, 249, 0.98), rgba(244, 241, 236, 0.94)),
      repeating-linear-gradient(118deg, rgba(168, 111, 13, 0.07) 0 1px, transparent 1px 34px);
    border: 1px solid rgba(83, 109, 99, 0.16);
    border-radius: 8px;
    box-shadow: 0 28px 70px rgba(31, 41, 36, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top center;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    visibility: hidden;
    counter-reset: menu;
  }

  .site-header:focus-within .site-nav,
  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    visibility: visible;
  }

  .site-nav a {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 10px;
    align-items: center;
    min-height: 48px;
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 900;
  }

  .site-nav a::before {
    counter-increment: menu;
    content: "0" counter(menu);
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    color: var(--sage);
    background: rgba(83, 109, 99, 0.1);
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 900;
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    color: var(--deep);
    background: rgba(255, 253, 249, 0.78);
    border-color: rgba(83, 109, 99, 0.16);
  }

  .site-nav a[aria-current="page"]::before {
    color: #fff;
    background: var(--sage);
  }

  .home-hero,
  .network-hero,
  .contact-hero,
  .handbook-hero,
  .split,
  .quick-route-grid,
  .exercise-guide-grid,
  .movement-card.has-links,
  .article-shell,
  .kopp-intro-panel,
  .kopp-bento-grid,
  .kopp-card-row,
  .role-grid,
  .needs-grid,
  .emotion-wheel,
  .about-flip-grid,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .home-hero,
  .network-hero,
  .contact-hero {
    min-height: auto;
  }

  .article-header {
    position: static;
  }

  .card-grid,
  .home-principles,
  .handbook-chapter-grid,
  .feature-grid,
  .tool-strip,
  .action-card-grid,
  .path-group {
    grid-template-columns: 1fr;
  }

  .exercise-page {
    padding-top: 44px;
    padding-bottom: 12px;
  }

  .exercise-intro {
    margin-bottom: 22px;
  }

  .tab-buttons {
    display: grid;
  }

  .emotion-orbit,
  .timeline-stages {
    grid-template-columns: 1fr;
  }

  .about-flip-grid details[open] {
    grid-column: auto;
  }

  .about-flip-grid details,
  .about-flip-grid summary {
    min-height: auto;
  }

  .tool-strip {
    gap: 10px;
    margin-bottom: 18px;
  }

  .tool-tile {
    min-height: auto;
    padding: 18px;
  }

  .quick-jump {
    flex-wrap: nowrap;
    margin-right: -24px;
    margin-left: -24px;
    padding: 0 24px 6px;
    overflow-x: auto;
    scroll-padding-inline: 24px;
    -webkit-overflow-scrolling: touch;
  }

  .quick-jump a {
    flex: 0 0 auto;
  }

  .path-group {
    gap: 14px;
    padding: 18px;
  }

  .path-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .path-links a,
  .compact-link-grid a {
    width: 100%;
    justify-content: space-between;
    border-radius: 8px;
  }

  .resource-card {
    min-height: auto;
    padding: 18px;
  }

  .resource-card span {
    margin-bottom: 8px;
  }

  .resource-card h2 {
    margin-bottom: 6px;
  }

  .handbook-hero {
    align-items: start;
    padding-top: 46px;
  }

  .handbook-chapter-card {
    min-height: auto;
  }

  .chapter-meta div {
    width: 100%;
    border-radius: 8px;
  }

  .subtle-handbook-link a {
    width: 100%;
    border-radius: 8px;
  }

  .site-footer {
    flex-direction: column;
  }
}

/* Redesign layer */
:root {
  --gold: #7fa66f;
  --gold-soft: #d8ead8;
  --leaf: #6f9578;
  --mist: #d9e9dd;
  --sky: #c7ddd0;
  --deep: #13251d;
  --cream: #fbfdf8;
}

h1,
h2 {
  letter-spacing: 0;
}

:focus-visible {
  outline: 3px solid rgba(168, 111, 13, 0.45);
  outline-offset: 4px;
}

.site-header {
  box-shadow: 0 10px 40px rgba(31, 41, 36, 0.06);
}

.brand span {
  letter-spacing: 0;
}

.redesigned-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(118deg, rgba(255, 253, 249, 0.98) 0%, rgba(245, 239, 226, 0.95) 45%, rgba(218, 231, 224, 0.92) 100%),
    repeating-linear-gradient(105deg, rgba(83, 109, 99, 0.09) 0 1px, transparent 1px 76px),
    linear-gradient(135deg, #fffdf9 0%, #f3efe5 52%, #dce7e0 100%);
}

.redesigned-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(105deg, rgba(83, 109, 99, 0.08) 1px, transparent 1px),
    linear-gradient(15deg, rgba(168, 111, 13, 0.08) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
}

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

.home-hero.redesigned-hero {
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  align-items: center;
  min-height: min(560px, calc(100vh - 85px));
  padding-top: clamp(46px, 5.5vw, 72px);
  padding-bottom: clamp(42px, 5vw, 62px);
}

.home-hero.redesigned-hero .home-hero-copy {
  max-width: 980px;
}

.home-network-card {
  position: relative;
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 420px;
  padding: clamp(24px, 3.2vw, 34px);
  overflow: hidden;
  color: var(--deep);
  background:
    linear-gradient(115deg, rgba(255, 253, 248, 0.98), rgba(245, 239, 226, 0.72)),
    linear-gradient(135deg, rgba(71, 107, 88, 0.08), rgba(168, 111, 13, 0.12));
  border: 1px solid rgba(71, 107, 88, 0.18);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(31, 41, 36, 0.16);
}

.home-network-card::before {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -16%;
  width: 72%;
  aspect-ratio: 1;
  background:
    radial-gradient(circle, rgba(71, 107, 88, 0.12) 0 32%, transparent 33%),
    radial-gradient(circle at 50% 50%, transparent 0 44%, rgba(71, 107, 88, 0.2) 45% 46%, transparent 47%);
  border-radius: 50%;
}

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

.home-network-card .status-pill {
  width: fit-content;
  margin: 0;
  padding: 8px 13px;
  color: var(--forest);
  background: rgba(255, 253, 249, 0.75);
  border: 1px solid rgba(71, 107, 88, 0.28);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-network-card h2 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.05;
}

.home-network-card p:not(.status-pill) {
  max-width: 32ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.network-orbit {
  position: absolute;
  right: clamp(12px, 4vw, 42px);
  bottom: clamp(18px, 4vw, 38px);
  width: min(44%, 260px);
  aspect-ratio: 1;
  opacity: 0.76;
}

.network-orbit span {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48%;
  aspect-ratio: 1;
  color: rgba(19, 37, 29, 0.62);
  border: 1px solid rgba(71, 107, 88, 0.26);
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.network-orbit span:nth-child(1) { top: 0; left: 26%; }
.network-orbit span:nth-child(2) { top: 27%; right: 0; }
.network-orbit span:nth-child(3) { bottom: 0; left: 26%; }
.network-orbit span:nth-child(4) { top: 27%; left: 0; }

.network-orbit::after {
  content: "";
  position: absolute;
  inset: 34%;
  background: rgba(71, 107, 88, 0.34);
  border-radius: 50%;
}

.home-hero-copy h1 {
  max-width: 860px;
  color: var(--deep);
  font-size: clamp(2.55rem, 3.8vw, 4.25rem);
  line-height: 1.05;
}

.home-hero-copy p:not(.eyebrow) {
  max-width: 680px;
}

.home-hero-copy .actions {
  margin-top: 22px;
}

.home-start-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-items: start;
  margin-top: 26px;
}

.home-start-actions .button {
  min-width: 170px;
  text-align: center;
}

.home-route-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  width: min(100%, 1060px);
}

.home-route-button {
  position: relative;
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 156px;
  padding: 20px;
  color: inherit;
  background: rgba(251, 253, 248, 0.9);
  border: 1px solid rgba(71, 107, 88, 0.22);
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 16px 42px rgba(31, 41, 36, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.home-route-button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--leaf), var(--forest));
  border-color: rgba(71, 107, 88, 0.26);
}

.home-route-button.secondary {
  background: rgba(255, 253, 249, 0.92);
}

.home-route-button strong {
  color: inherit;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.15;
}

.home-route-button span {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.45;
}

.home-route-button.primary span {
  color: rgba(255, 255, 255, 0.82);
}

.home-route-button:hover,
.home-route-button:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(83, 109, 99, 0.42);
  box-shadow: 0 24px 58px rgba(31, 55, 42, 0.17);
}

.home-start-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.home-start-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: var(--forest);
  font-weight: 850;
  text-decoration: none;
}

.home-start-links a:hover,
.home-start-links a:focus-visible {
  color: var(--deep);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.home-featured-tool {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  max-width: 1120px;
  margin: 34px auto 0;
  padding: clamp(24px, 4vw, 38px);
  background:
    radial-gradient(circle at 88% 18%, rgba(127, 166, 111, 0.24), transparent 15rem),
    linear-gradient(135deg, rgba(238, 245, 237, 0.96), rgba(251, 253, 248, 0.94));
  border: 1px solid rgba(71, 107, 88, 0.2);
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(31, 55, 42, 0.09);
}

.home-featured-tool h2 {
  margin: 5px 0 8px;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.home-featured-tool p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
}

.home-featured-tool .button {
  white-space: nowrap;
}

.home-popular {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 66px) 24px 0;
}

.popular-grid .resource-card {
  min-height: 230px;
}

.button {
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(31, 41, 36, 0.15);
}

.button.primary {
  background: linear-gradient(135deg, var(--leaf), var(--forest));
}

.button.secondary {
  border-color: rgba(71, 107, 88, 0.32);
  background: rgba(239, 247, 238, 0.84);
}

.hero-pathfinder {
  --path-x: 0;
  --path-y: 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-height: auto;
  padding: 22px;
  isolation: isolate;
  transform: translate3d(calc(var(--path-x) * 5px), calc(var(--path-y) * 4px), 0);
  transition: transform 220ms ease;
}

.hero-pathfinder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(251, 253, 248, 0.9), rgba(224, 239, 226, 0.46)),
    repeating-linear-gradient(0deg, transparent 0 36px, rgba(71, 107, 88, 0.08) 37px 38px),
    repeating-linear-gradient(90deg, transparent 0 44px, rgba(111, 149, 120, 0.08) 45px 46px);
  border: 1px solid rgba(71, 107, 88, 0.16);
  border-radius: 8px;
  box-shadow: 0 28px 72px rgba(31, 55, 42, 0.13);
}

.hero-pathfinder::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 24px;
  width: 94px;
  aspect-ratio: 1;
  border: 14px solid rgba(111, 149, 120, 0.14);
  border-radius: 50%;
  opacity: 0.86;
}

.pathfinder-heading,
.pathfinder-item {
  position: relative;
  z-index: 2;
}

.pathfinder-heading {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
  padding: 4px 4px 12px;
}

.pathfinder-heading span,
.pathfinder-item small {
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.pathfinder-heading strong {
  max-width: 520px;
  color: var(--deep);
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  line-height: 1.08;
}

.pathfinder-item {
  display: grid;
  gap: 7px;
  width: auto;
  min-height: 146px;
  align-content: space-between;
  padding: 18px 18px 18px 52px;
  color: inherit;
  background: rgba(251, 253, 248, 0.94);
  border: 1px solid rgba(71, 107, 88, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(31, 41, 36, 0.12);
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.pathfinder-item:hover,
.pathfinder-item:focus-visible,
.pathfinder-item.is-active {
  transform: translateY(-4px);
  border-color: rgba(111, 149, 120, 0.5);
  box-shadow: 0 24px 60px rgba(31, 55, 42, 0.18);
}

.pathfinder-item strong {
  color: var(--deep);
  font-size: clamp(1.08rem, 1.75vw, 1.32rem);
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.path-dot {
  position: absolute;
  top: 20px;
  left: 18px;
  width: 20px;
  aspect-ratio: 1;
  background: #fbfdf8;
  border: 3px solid var(--leaf);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(31, 41, 36, 0.16);
}

.route-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(46px, 7vw, 88px) 24px;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.route-card {
  position: relative;
  display: grid;
  min-height: 270px;
  align-content: end;
  padding: clamp(24px, 4vw, 40px);
  overflow: hidden;
  color: inherit;
  background:
    linear-gradient(135deg, rgba(251, 253, 248, 0.98), rgba(232, 244, 235, 0.9)),
    repeating-linear-gradient(118deg, rgba(111, 149, 120, 0.09) 0 1px, transparent 1px 34px);
  border: 1px solid rgba(71, 107, 88, 0.2);
  border-radius: 8px;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.route-card::before {
  content: "";
  position: absolute;
  top: -38px;
  right: -36px;
  width: 190px;
  aspect-ratio: 1;
  border: 18px solid rgba(111, 149, 120, 0.18);
  border-radius: 50%;
}

.route-card::after {
  content: "";
  position: absolute;
  right: 26px;
  bottom: 28px;
  width: 130px;
  height: 24px;
  border-top: 5px solid rgba(83, 109, 99, 0.28);
  border-bottom: 5px solid rgba(83, 109, 99, 0.18);
  border-radius: 50%;
}

.route-card:hover,
.route-card.is-active {
  transform: translateY(-6px);
  border-color: rgba(83, 109, 99, 0.38);
  box-shadow: var(--shadow);
}

.route-card.featured {
  color: #fff;
  background:
    repeating-linear-gradient(118deg, rgba(223, 238, 227, 0.13) 0 1px, transparent 1px 42px),
    linear-gradient(135deg, var(--leaf), var(--forest));
}

.route-card.featured p,
.route-card.featured .route-number {
  color: rgba(255, 255, 255, 0.78);
}

.route-number {
  position: absolute;
  top: 24px;
  left: 24px;
  color: var(--sage);
  font-size: 0.9rem;
  font-weight: 900;
}

.route-card h3 {
  max-width: 560px;
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  line-height: 1.1;
}

.route-card p {
  max-width: 560px;
  color: var(--muted);
}

.route-card strong {
  margin-top: 16px;
}

.profile-block {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(22px, 4vw, 54px);
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(38px, 6vw, 68px) max(24px, calc((100vw - 1180px) / 2));
  background: linear-gradient(90deg, rgba(239, 247, 238, 0.56), rgba(251, 253, 248, 0));
  border-top: 1px solid rgba(71, 107, 88, 0.14);
  border-bottom: 1px solid rgba(71, 107, 88, 0.14);
}

.profile-block h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.profile-block p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
}

.profile-note {
  display: grid;
  gap: 12px;
  align-content: center;
  padding: clamp(22px, 3vw, 30px);
  background: rgba(251, 253, 248, 0.78);
  border: 1px solid rgba(71, 107, 88, 0.18);
  border-radius: 8px;
}

.profile-note strong {
  color: var(--deep);
  font-weight: 850;
}

.profile-note p {
  margin: 0;
  font-size: 1rem;
}

.profile-note a {
  width: fit-content;
  margin-top: 4px;
  padding: 11px 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--sage), var(--forest));
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
}

.profile-note a:hover,
.profile-note a:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(31, 41, 36, 0.14);
}

.home-social-links {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(71, 107, 88, 0.14);
}

.profile-note .home-social-links a {
  width: fit-content;
  margin-top: 0;
  padding: 9px 11px;
  color: var(--forest);
  background: rgba(239, 247, 238, 0.72);
  border: 1px solid rgba(71, 107, 88, 0.16);
  border-radius: 8px;
  box-shadow: none;
  font-size: 0.96rem;
}

.profile-note .home-social-links a:hover,
.profile-note .home-social-links a:focus-visible {
  color: var(--deep);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(31, 41, 36, 0.1);
  text-decoration: none;
}

.profile-note .home-social-links span {
  flex: 0 0 auto;
}

.home-acute-hub {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(26px, 5vw, 64px);
  width: 100%;
  max-width: none;
  margin: clamp(24px, 5vw, 56px) 0 0;
  padding: clamp(28px, 5vw, 52px) max(24px, calc((100vw - 1180px) / 2));
  border-top: 1px solid rgba(71, 107, 88, 0.14);
  border-bottom: 1px solid rgba(71, 107, 88, 0.14);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(19, 37, 29, 0.98), rgba(49, 72, 64, 0.95)),
    repeating-linear-gradient(115deg, rgba(230, 210, 168, 0.11) 0 1px, transparent 1px 52px);
}

.home-acute-copy h2 {
  max-width: 620px;
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 1.05;
}

.home-acute-copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.home-acute-hub .eyebrow {
  color: var(--gold-soft);
}

.home-acute-hub .eyebrow::before {
  background: var(--gold-soft);
}

.home-acute-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.home-acute-links a {
  display: grid;
  gap: 8px;
  min-height: 168px;
  padding: 20px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.home-acute-links a:hover,
.home-acute-links a:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(230, 210, 168, 0.36);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.home-acute-links span {
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 900;
}

.home-acute-links strong {
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.15;
}

.home-acute-links small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.45;
}

.home-continue {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(38px, 6vw, 72px) 24px 0;
}

.home-continue-head {
  max-width: 840px;
  margin-bottom: 24px;
}

.home-continue-head h2 {
  margin-bottom: 10px;
  max-width: 12ch;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.08;
}

.home-continue-head p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.04rem;
}

.home-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-principles article {
  min-height: 220px;
  padding: clamp(22px, 3vw, 28px);
  background:
    linear-gradient(135deg, rgba(251, 253, 248, 0.98), rgba(232, 244, 235, 0.82));
  border: 1px solid rgba(71, 107, 88, 0.18);
  border-radius: 8px;
}

.home-principles span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--sage);
  font-size: 0.82rem;
  font-weight: 900;
}

.home-principles h3 {
  margin-bottom: 10px;
  color: var(--deep);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.home-principles p {
  margin: 0;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 3px;
  pointer-events: none;
  transform: scaleX(var(--reading-progress, 0));
  transform-origin: left;
  background: linear-gradient(90deg, var(--sage), var(--gold));
}

.story-section {
  position: relative;
}

.story-section::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 24px;
  width: min(34vw, 260px);
  height: 8px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 999px;
}

.focus-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: clamp(56px, 8vw, 96px) max(24px, calc((100vw - 1120px) / 2));
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 33, 29, 0.97), rgba(49, 72, 64, 0.94)),
    repeating-linear-gradient(118deg, rgba(230, 210, 168, 0.12) 0 1px, transparent 1px 44px);
}

.focus-band .eyebrow {
  color: var(--gold-soft);
}

.focus-band .eyebrow::before {
  background: var(--gold-soft);
}

.focus-list {
  display: grid;
  gap: 12px;
}

.focus-list article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.focus-list span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.focus-list h3 {
  margin-bottom: 8px;
}

.focus-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.resource-card {
  overflow: hidden;
}

.resource-card,
.quick-route-card,
.home-route-button,
.home-acute-links a,
.atlas-node,
.article-route-card,
.action-card,
.pathfinder-item,
.home-featured-tool,
.profile-note,
.home-principles article,
.focus-list article {
  border-radius: 8px;
}

.home-route-button,
.quick-route-card,
.atlas-node,
.home-acute-links a {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.home-route-button:hover,
.home-route-button:focus-visible,
.quick-route-card:hover,
.quick-route-card:focus-visible,
.atlas-node:hover,
.atlas-node:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(31, 55, 42, 0.12);
}

.resource-card,
.book-card {
  box-shadow: 0 10px 28px rgba(31, 55, 42, 0.05);
}

.article-route-card,
.audience-filter,
.exercise-guide,
.profile-note,
.atlas-panel,
.book-section {
  border-color: rgba(71, 107, 88, 0.16);
}

.resource-card::after {
  content: "";
  width: 56px;
  height: 6px;
  margin-top: auto;
  background: var(--gold);
  border-radius: 999px;
  transition: width 180ms ease;
}

.resource-card:hover::after {
  width: 96px;
}

.contact-hero.redesigned-hero {
  min-height: 520px;
}

.contact-card.lifted {
  display: grid;
  gap: 10px;
}

.social-link-list {
  display: grid;
  gap: 8px;
}

.social-link-list a {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  width: fit-content;
  color: var(--forest);
  font-weight: 850;
  text-decoration: none;
}

.social-link-list span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: #fff;
  background: #0a66c2;
  border-radius: 5px;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
}

.social-link-list a:hover,
.social-link-list a:focus-visible {
  color: var(--deep);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.lv-linkedin-button {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  width: fit-content;
  min-height: 3rem;
  padding: 0.68rem 1.05rem 0.68rem 0.78rem;
  color: var(--forest);
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(244, 238, 227, 0.94));
  border: 1px solid rgba(168, 111, 13, 0.34);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(76, 91, 60, 0.11);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.lv-linkedin-button:hover,
.lv-linkedin-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(168, 111, 13, 0.58);
  box-shadow: 0 16px 34px rgba(76, 91, 60, 0.16);
  text-decoration: none;
}

.social-link-list .lv-linkedin-button__icon,
.lv-linkedin-button .lv-linkedin-button__icon {
  display: grid;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  place-items: center;
  color: var(--cognac);
  background: rgba(168, 111, 13, 0.11);
  border-radius: 50%;
}

.lv-linkedin-button__icon svg {
  width: 1.55rem;
  height: 1.55rem;
}

.lv-linkedin-button__icon rect,
.lv-linkedin-button__icon path {
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lv-linkedin-button__icon circle {
  fill: currentColor;
}

.social-link-list .lv-linkedin-button > span:not(.lv-linkedin-button__icon) {
  display: inline;
  width: auto;
  height: auto;
  color: inherit;
  background: transparent;
  border-radius: 0;
  font-size: inherit;
  line-height: inherit;
}

.policy-status-list {
  display: grid;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}

.policy-status-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(71, 107, 88, 0.12);
}

.policy-status-list li:last-child {
  border-bottom: 0;
}

.status-badge {
  flex: 0 0 auto;
  padding: 5px 10px;
  color: var(--forest);
  background: rgba(127, 166, 111, 0.14);
  border: 1px solid rgba(71, 107, 88, 0.22);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-badge.active {
  color: #fff;
  background: var(--forest);
  border-color: var(--forest);
}

.acute-ggz-page .article-header h1 {
  max-width: 11ch;
  overflow-wrap: anywhere;
  font-size: clamp(2.5rem, 6.2vw, 5.2rem);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 70px);
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 24px;
}

.contact-note {
  padding-top: 8px;
}

.contact-note p:not(.eyebrow) {
  color: var(--muted);
}

.safety-note {
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.94), rgba(244, 241, 236, 0.82)),
    repeating-linear-gradient(118deg, rgba(168, 111, 13, 0.08) 0 1px, transparent 1px 34px);
  border: 1px solid rgba(168, 111, 13, 0.24);
  border-left: 6px solid var(--gold);
  border-radius: 8px;
}

.safety-note h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--deep);
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--sage);
  outline: none;
  box-shadow: 0 0 0 4px rgba(83, 109, 99, 0.12);
}

.form-privacy {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

@keyframes pathFlow {
  to {
    stroke-dashoffset: -128;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 900px) {
  .quick-route-grid.priority {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero.redesigned-hero,
  .crisis-care-hero,
  .crisis-care-shell,
  .route-grid,
  .profile-block,
  .home-acute-hub,
  .acute-why-section,
  .about-wide-shell,
  .focus-band,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .acute-why-full {
    grid-column: auto;
  }

  .about-logo-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
  }

  .home-hero.redesigned-hero {
    min-height: auto;
    padding-top: 44px;
    gap: 22px;
  }

  .crisis-care-hero {
    padding-top: 44px;
  }

  .crisis-care-visual {
    min-height: 340px;
  }

  .crisis-care-shell .article-header {
    position: static;
  }

  .care-summary-grid {
    grid-template-columns: 1fr;
  }

  .care-reflection-grid,
  .hic-iht-columns {
    grid-template-columns: 1fr;
  }

  .home-network-card {
    min-height: 360px;
  }

  .home-featured-tool {
    grid-template-columns: 1fr;
    margin-right: 24px;
    margin-left: 24px;
  }

  .home-route-actions,
  .home-acute-links,
  .knowledge-atlas,
  .home-principles {
    grid-template-columns: 1fr;
  }

  .knowledge-atlas-map {
    grid-template-columns: repeat(3, minmax(160px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 42px), transparent 100%);
  }

  .knowledge-atlas-map::before {
    display: none;
  }

  .home-route-button {
    min-height: auto;
  }

  .home-route-button strong {
    font-size: 1.02rem;
    line-height: 1.18;
  }

  .home-route-button span {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .home-featured-tool .button {
    width: fit-content;
  }

  .emotions-page .article-shell {
    grid-template-columns: 1fr;
  }

  .emotion-foundations,
  .body-explorer-grid,
  .emotion-steps {
    grid-template-columns: 1fr;
  }

  .emotion-step-tabs {
    grid-template-columns: repeat(5, minmax(135px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 42px), transparent 100%);
  }

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

  .pathfinder-heading {
    padding-top: 4px;
  }

  .pathfinder-item {
    width: auto;
  }

  .route-card {
    min-height: 280px;
  }
}

@media (max-width: 560px) {
  .brand-mark {
    width: 42px;
    height: 30px;
  }

  .article-header h1 {
    font-size: clamp(2.15rem, 12vw, 3.15rem);
    line-height: 1.08;
  }

  .emotion-contrast,
  .emotion-mask-grid {
    grid-template-columns: 1fr;
  }

  .emotion-page-nav {
    margin-right: -24px;
    margin-left: -24px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .body-explorer,
  .emotion-process {
    padding: 18px;
  }

  .home-hero-copy h1 {
    font-size: clamp(2rem, 9.6vw, 2.8rem);
    line-height: 1.04;
  }

  .home-hero.redesigned-hero {
    padding: 30px 20px 34px;
  }

  .home-network-card {
    min-height: 320px;
    padding: 22px;
  }

  .network-orbit {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(230px, 78vw);
    margin-top: 8px;
  }

  .policy-status-list li {
    display: grid;
    justify-items: start;
  }

  .home-hero-copy p:not(.eyebrow) {
    font-size: 1.02rem;
    line-height: 1.55;
  }

  .hero-audience {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .hero-audience span {
    min-width: 0;
    padding: 10px 3px;
    color: var(--deep);
    background: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    text-align: center;
    white-space: nowrap;
  }

  .home-featured-tool {
    margin-top: 24px;
  }

  .home-start-actions {
    justify-items: stretch;
    margin-top: 18px;
  }

  .home-route-actions {
    gap: 10px;
  }

  .home-route-button {
    padding: 17px;
  }

  .home-continue-head p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .home-principles {
    gap: 12px;
  }

  .home-principles article {
    min-height: auto;
    padding: 20px;
  }

  .home-principles h3 {
    font-size: 1.18rem;
  }

  .home-start-links {
    display: flex;
    gap: 8px 12px;
  }

  .home-start-links a {
    min-height: 32px;
    font-size: 0.94rem;
  }

  .about-logo-strip {
    grid-template-columns: 1fr;
  }

  .actions,
  .button-row {
    display: grid;
  }

  .button,
  .contact-form .button {
    width: 100%;
  }

  .filter-buttons {
    flex-wrap: nowrap;
    padding-bottom: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 34px), transparent 100%);
  }

  .exercise-library-tools {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 34px), transparent 100%);
  }

  .quick-route-grid.priority {
    grid-template-columns: 1fr;
  }

  .filter-button {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .book-section summary {
    grid-template-columns: 1fr auto;
    gap: 6px 12px;
  }

  .book-section summary span {
    grid-column: 1 / -1;
  }

  .hero-pathfinder {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    min-height: auto;
    padding: 0;
    transform: none;
  }

  .hero-pathfinder::before,
  .hero-pathfinder::after,
  .pathfinder-curve {
    display: none;
  }

  .pathfinder-heading,
  .pathfinder-item {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .pathfinder-heading {
    padding: 14px 0 2px;
  }

  .pathfinder-heading strong {
    font-size: 1.35rem;
  }

  .pathfinder-item {
    min-height: 92px;
    align-content: center;
    gap: 4px;
    padding: 14px 14px 14px 46px;
  }

  .pathfinder-item small {
    font-size: 0.72rem;
  }

  .pathfinder-item strong {
    font-size: 1rem;
    line-height: 1.22;
  }

  .path-dot {
    top: 16px;
    left: 15px;
    width: 17px;
    border-width: 2px;
  }

  .profile-block,
  .home-popular,
  .home-continue {
    padding-right: 20px;
    padding-left: 20px;
  }

  .home-featured-tool {
    margin-right: 20px;
    margin-left: 20px;
  }

  .resource-card {
    min-height: 210px;
  }

  .popular-grid .resource-card {
    min-height: 200px;
  }

  .route-card {
    min-height: 245px;
  }

  .route-card h3 {
    font-size: 1.7rem;
  }

  .site-footer nav {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 900px) {
  .forgive-hero,
  .forgive-path,
  .forgive-exercise-grid,
  .trauma-hero,
  .trauma-attic-layout,
  .trauma-path,
  .trauma-exercise-grid {
    grid-template-columns: 1fr;
  }

  .forgive-tabs,
  .trauma-tabs {
    position: relative;
    top: 0;
  }

  .forgive-cards,
  .forgive-hoopo,
  .trauma-cards,
  .trauma-methods {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .forgive-hero,
  .forgive-section,
  .trauma-hero,
  .trauma-section {
    padding-inline: 16px;
  }

  .forgive-floating,
  .trauma-floating {
    right: 12px;
    left: 12px;
  }

  .forgive-floating .button,
  .trauma-floating .button {
    flex: 1;
  }

  .trauma-box-grid {
    grid-template-columns: 1fr;
  }

  .trauma-attic-scene {
    min-height: auto;
  }
}

@media print {
  .forgive-progress-wrap,
  .forgive-page-nav,
  .forgive-tabs,
  .forgive-small-actions,
  .forgive-floating,
  .trauma-progress-wrap,
  .trauma-tabs,
  .trauma-small-actions,
  .trauma-floating {
    display: none;
  }

  .forgive-hero,
  .forgive-section,
  .trauma-hero,
  .trauma-section {
    display: block;
    padding: 18px 0;
  }

  .forgive-panel,
  .trauma-panel {
    display: block;
    min-height: auto;
    margin-bottom: 12px;
    break-inside: avoid;
  }

  .forgive-card,
  .forgive-info-card,
  .forgive-panel,
  .forgive-quote,
  .forgive-breath,
  .forgive-letter,
  .forgive-accordion details,
  .trauma-card,
  .trauma-info-card,
  .trauma-method-card,
  .trauma-panel,
  .trauma-quote,
  .trauma-breath,
  .trauma-window,
  .trauma-accordion details {
    box-shadow: none;
    break-inside: avoid;
  }

  .forgive-print-note,
  .trauma-print-note {
    display: block;
  }
}

/* Homepage: Kennisatlas / Levenslijn-route */
:root {
  --lw-olive: #4c5b3c;
  --lw-cognac: #a87122;
  --lw-bluegray: #547a82;
  --lw-pale-blue: #a3bcc4;
  --lw-sage: #9aad94;
  --lw-muted-olive: #7a8450;
  --lw-cream: #fbf7ee;
  --lw-sand: #eee4d2;
  --lw-warm-gray: #f4f2ec;
  --lw-card: rgba(255, 254, 249, 0.88);
  --lw-text: #213027;
  --lw-soft-text: #5e685f;
  --lw-border: rgba(76, 91, 60, 0.16);
  --lw-soft-shadow: 0 24px 70px rgba(56, 67, 48, 0.12);
}

.is-home {
  color: var(--lw-text);
  background:
    radial-gradient(circle at 12% 8%, rgba(154, 173, 148, 0.22), transparent 28rem),
    radial-gradient(circle at 86% 22%, rgba(163, 188, 196, 0.22), transparent 30rem),
    linear-gradient(180deg, #fffdf8 0%, var(--lw-cream) 42%, #f7f5ef 100%);
}

.is-home main {
  overflow: clip;
}

.is-home .site-header {
  background: rgba(255, 253, 248, 0.86);
  border-bottom-color: rgba(76, 91, 60, 0.14);
}

.nav-route-button {
  min-height: 38px;
  padding: 8px 13px;
  color: #fff !important;
  background: var(--lw-olive);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(76, 91, 60, 0.18);
}

.life-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  min-height: min(760px, calc(100vh - 82px));
  padding: clamp(44px, 6vw, 78px) clamp(22px, 6vw, 86px);
}

.life-hero-copy {
  max-width: 720px;
}

.life-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 20px;
  color: var(--lw-olive);
  font-size: clamp(3rem, 6.2vw, 6.4rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.035em;
}

.life-hero-copy p:not(.eyebrow) {
  max-width: 650px;
  color: #536052;
  font-size: clamp(1.12rem, 1.55vw, 1.38rem);
  line-height: 1.55;
}

.life-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 22px;
}

.life-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.life-feature-list li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  color: var(--lw-olive);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(76, 91, 60, 0.13);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 850;
}

.hero-safety-note {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  max-width: 660px;
  padding: 18px 20px;
  color: #687064;
  background: rgba(255, 250, 241, 0.72);
  border: 1px solid rgba(168, 113, 34, 0.22);
  border-radius: 18px;
}

.hero-safety-note::before {
  content: "";
  width: 13px;
  height: 13px;
  margin-top: 7px;
  background: var(--lw-cognac);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(168, 113, 34, 0.1);
}

.hero-safety-note strong {
  display: inline;
  grid-column: 2;
  color: #6c704f;
}

.hero-safety-note span {
  display: inline;
  grid-column: 2;
}

.life-map-card {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(249, 247, 241, 0.84)),
    linear-gradient(90deg, rgba(76, 91, 60, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(76, 91, 60, 0.04) 1px, transparent 1px);
  background-size: auto, 58px 58px, 58px 58px;
  border: 1px solid rgba(76, 91, 60, 0.12);
  border-radius: 34px;
  box-shadow: var(--lw-soft-shadow);
}

.life-map-card::before {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(76, 91, 60, 0.09);
  border-radius: 28px;
  pointer-events: none;
}

.life-map-line {
  position: absolute;
  inset: 40px 34px;
  width: calc(100% - 68px);
  height: calc(100% - 80px);
}

.life-map-shadow,
.life-map-dash {
  fill: none;
  stroke-linecap: round;
}

.life-map-shadow {
  stroke: rgba(76, 91, 60, 0.07);
  stroke-width: 38;
}

.life-map-dash {
  stroke: var(--lw-cognac);
  stroke-width: 5;
  stroke-dasharray: 13 18;
  animation: pathFlow 20s linear infinite;
}

.life-map-stop {
  position: absolute;
  display: grid;
  gap: 8px;
  min-width: 160px;
  padding: 19px 21px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(76, 91, 60, 0.12);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(56, 67, 48, 0.11);
}

.life-map-stop span {
  color: var(--lw-cognac);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.life-map-stop strong {
  color: var(--lw-olive);
  font-size: 1.25rem;
  line-height: 1.1;
}

.stop-question { top: 70px; left: 62px; }
.stop-understand { top: 154px; right: 70px; }
.stop-practice { top: 285px; left: 160px; }
.stop-recovery { right: 40px; bottom: 120px; }
.stop-depth { left: 70px; bottom: 62px; }

.life-route-section,
.life-audience-section,
.life-safety-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 92px) 24px;
}

.life-section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.life-section-head h2 {
  margin-bottom: 10px;
  color: var(--lw-olive);
  font-size: clamp(2.25rem, 4.5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.life-section-head p:not(.eyebrow) {
  color: var(--lw-soft-text);
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
}

.life-route-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr);
  gap: clamp(22px, 4vw, 38px);
  align-items: start;
}

.life-route-stops {
  position: relative;
  display: grid;
  gap: 14px;
  padding-left: 30px;
}

.life-route-stops::before {
  content: "";
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 16px;
  width: 3px;
  background: linear-gradient(180deg, var(--lw-sage), var(--lw-cognac), var(--lw-bluegray));
  border-radius: 999px;
  opacity: 0.38;
}

.life-route-stop {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  width: 100%;
  padding: 18px;
  color: inherit;
  background: var(--lw-card);
  border: 1px solid var(--lw-border);
  border-radius: 22px;
  box-shadow: 0 10px 32px rgba(56, 67, 48, 0.06);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.life-route-stop:hover,
.life-route-stop:focus-visible {
  transform: translateY(-3px) scale(1.01);
  border-color: rgba(168, 113, 34, 0.34);
  box-shadow: 0 18px 50px rgba(56, 67, 48, 0.12);
}

.life-route-stop.is-active {
  background:
    linear-gradient(135deg, rgba(255, 254, 249, 0.96), rgba(246, 239, 226, 0.9));
  border-color: rgba(168, 113, 34, 0.42);
  box-shadow: 0 22px 58px rgba(56, 67, 48, 0.15);
}

.route-marker {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--lw-olive);
  background: #fffdf8;
  border: 3px solid var(--lw-sage);
  border-radius: 50%;
  font-weight: 900;
}

.life-route-stop.is-active .route-marker {
  color: #fff;
  background: var(--lw-cognac);
  border-color: var(--lw-cognac);
}

.route-stop-copy {
  display: grid;
  gap: 6px;
}

.route-type {
  color: var(--lw-bluegray);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-stop-copy strong {
  color: var(--lw-olive);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.15;
}

.route-stop-copy span:last-child {
  color: var(--lw-soft-text);
  line-height: 1.45;
}

.route-preview-panel {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 30px);
  background:
    radial-gradient(circle at 90% 12%, rgba(163, 188, 196, 0.24), transparent 11rem),
    rgba(255, 254, 249, 0.9);
  border: 1px solid rgba(76, 91, 60, 0.14);
  border-radius: 26px;
  box-shadow: var(--lw-soft-shadow);
}

.route-preview-panel.is-changing {
  animation: routePanelSwap 220ms ease;
}

@keyframes routePanelSwap {
  0% { opacity: 0.72; transform: translateY(5px); }
  100% { opacity: 1; transform: translateY(0); }
}

.route-step-count {
  width: fit-content;
  margin: 0;
  padding: 6px 10px;
  color: var(--lw-cognac);
  background: rgba(168, 113, 34, 0.09);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.route-preview-panel h3 {
  margin: 0;
  color: var(--lw-olive);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.route-preview-panel > p:not(.route-step-count) {
  margin: 0;
  color: var(--lw-soft-text);
}

.route-recommendations {
  display: grid;
  gap: 10px;
}

.route-recommendations div {
  display: grid;
  gap: 5px;
  padding: 14px;
  background: rgba(244, 242, 236, 0.64);
  border: 1px solid rgba(76, 91, 60, 0.11);
  border-radius: 16px;
}

.route-recommendations span {
  color: var(--lw-soft-text);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.route-recommendations a {
  color: var(--lw-olive);
  font-weight: 900;
  text-decoration: none;
}

.route-recommendations a:hover,
.route-recommendations a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.possible-route {
  padding-top: 6px;
  border-top: 1px solid rgba(76, 91, 60, 0.12);
}

.possible-route h4 {
  margin: 0 0 12px;
  color: var(--lw-olive);
  font-size: 1rem;
}

.possible-route ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: route;
}

.possible-route li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
  color: #546056;
}

.possible-route li::before {
  counter-increment: route;
  content: counter(route);
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: #fff;
  background: var(--lw-olive);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.audience-card {
  display: grid;
  gap: 12px;
  min-height: 240px;
  padding: clamp(22px, 3vw, 30px);
  background: rgba(255, 254, 249, 0.86);
  border: 1px solid rgba(76, 91, 60, 0.13);
  border-radius: 24px;
  box-shadow: 0 12px 34px rgba(56, 67, 48, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 113, 34, 0.28);
  box-shadow: 0 22px 54px rgba(56, 67, 48, 0.12);
}

.audience-card span {
  width: fit-content;
  padding: 6px 10px;
  color: var(--lw-bluegray);
  background: rgba(163, 188, 196, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audience-card h3 {
  margin: 0;
  color: var(--lw-olive);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

.audience-card p {
  margin: 0;
  color: var(--lw-soft-text);
}

.audience-card a {
  align-self: end;
  width: fit-content;
  color: var(--lw-olive);
  font-weight: 900;
  text-decoration: none;
}

.audience-card a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 4px;
  background: var(--lw-cognac);
  transform: scaleX(0.36);
  transform-origin: left;
  transition: transform 180ms ease;
}

.audience-card a:hover::after,
.audience-card a:focus-visible::after {
  transform: scaleX(1);
}

.life-safety-section {
  padding-top: 0;
}

.life-safety-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  align-items: start;
  padding: clamp(24px, 4vw, 34px);
  background: linear-gradient(135deg, rgba(255, 250, 241, 0.94), rgba(244, 242, 236, 0.88));
  border: 1px solid rgba(168, 113, 34, 0.22);
  border-radius: 26px;
}

.life-safety-card > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: rgba(168, 113, 34, 0.12);
  border-radius: 50%;
}

.life-safety-card > span::before {
  content: "";
  width: 13px;
  height: 13px;
  background: var(--lw-cognac);
  border-radius: 50%;
}

.life-safety-card h2 {
  margin-bottom: 8px;
  color: var(--lw-olive);
  font-size: clamp(1.55rem, 3vw, 2.3rem);
}

.life-safety-card p {
  max-width: 910px;
  margin: 0;
  color: #5e6259;
}

@media (max-width: 980px) {
  .nav-route-button {
    color: var(--deep) !important;
    background: rgba(255, 253, 249, 0.78);
    box-shadow: none;
  }

  .life-hero,
  .life-route-layout,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .life-hero {
    min-height: auto;
    padding-top: 44px;
  }

  .life-map-card {
    min-height: 540px;
  }

  .route-preview-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .life-hero,
  .life-route-section,
  .life-audience-section,
  .life-safety-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .life-hero-copy h1 {
    font-size: clamp(2.45rem, 12vw, 3.5rem);
    line-height: 0.98;
  }

  .life-hero-actions {
    display: grid;
  }

  .life-map-card {
    min-height: auto;
    padding: 18px;
  }

  .life-map-line,
  .life-map-card::before {
    display: none;
  }

  .life-map-stop {
    position: relative;
    inset: auto;
    min-width: 0;
    margin-bottom: 10px;
    padding: 15px 17px;
    border-radius: 18px;
  }

  .life-route-stops {
    padding-left: 0;
  }

  .life-route-stops::before {
    display: none;
  }

  .life-route-stop {
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding: 15px;
    border-radius: 18px;
  }

  .route-marker {
    width: 36px;
    height: 36px;
    border-width: 2px;
  }

  .route-preview-panel,
  .audience-card,
  .life-safety-card {
    border-radius: 20px;
  }

  .life-safety-card {
    grid-template-columns: 1fr;
  }
}
