.page-shell {
  background: var(--ivory);
}

.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-nav a[aria-current="page"] {
  color: var(--brown);
}

.page-hero {
  position: relative;
  overflow: clip;
  padding-block: clamp(82px, 10vw, 144px) clamp(76px, 9vw, 126px);
  border-bottom: 1px solid var(--border);
  background: var(--ivory);
}

.page-hero::after {
  position: absolute;
  top: -210px;
  right: -120px;
  width: min(540px, 48vw);
  aspect-ratio: 1;
  border: 1px solid rgba(217, 123, 95, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 72px rgba(75, 58, 47, 0.035),
    0 0 0 144px rgba(167, 183, 164, 0.08);
  content: "";
  pointer-events: none;
}

.page-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 42px 8vw;
}

.page-hero h1 {
  max-width: 880px;
  margin-bottom: 0;
  font-size: clamp(3.4rem, 6.6vw, 7rem);
}

.page-hero__lead {
  max-width: 560px;
  margin: 0 0 8px;
  color: rgba(75, 58, 47, 0.86);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.75;
}

.page-hero--compact {
  padding-block: clamp(44px, 5.5vw, 72px) clamp(42px, 5vw, 64px);
}

.page-hero--compact h1 {
  max-width: 800px;
  font-size: clamp(2.8rem, 4.6vw, 4.8rem);
  line-height: 0.98;
}

.page-hero--areas {
  background: linear-gradient(135deg, var(--ivory) 0%, rgba(240, 180, 161, 0.13) 100%);
}

.page-hero--library {
  background: linear-gradient(135deg, var(--ivory) 0%, rgba(200, 169, 139, 0.16) 100%);
}

.page-hero--essays {
  background:
    linear-gradient(135deg, rgba(217, 123, 95, 0.1) 0%, transparent 58%),
    var(--ivory);
}

.page-hero--tools {
  background: linear-gradient(135deg, var(--ivory) 0%, rgba(167, 183, 164, 0.2) 100%);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 28px;
  padding: 0;
  gap: 7px;
  color: var(--brown);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  list-style: none;
  text-transform: uppercase;
}

.breadcrumb li:not(:last-child)::after {
  margin-left: 7px;
  color: var(--orange);
  content: "·";
}

.breadcrumb a {
  text-decoration: none;
}

.page-section {
  padding-block: clamp(80px, 10vw, 140px);
}

.page-section--cream {
  background: var(--cream);
}

.page-section--dark {
  background: var(--coffee);
  color: var(--ivory);
}

.page-section__heading {
  display: grid;
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 76px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 28px 8vw;
}

.page-section__heading h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.page-section__heading > p {
  max-width: 580px;
  margin: 0 0 8px;
  color: rgba(75, 58, 47, 0.82);
}

.page-section--dark .page-section__heading > p {
  color: rgba(250, 247, 242, 0.82);
}

.index-list {
  border-top: 1px solid var(--border);
}

.index-list--light {
  border-color: var(--border-light);
}

.index-row {
  display: grid;
  min-height: 172px;
  align-items: center;
  padding-block: 30px;
  border-bottom: 1px solid var(--border);
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 54px);
  text-decoration: none;
  transition: color 180ms ease, padding 220ms var(--ease);
}

.index-list--light .index-row {
  border-color: var(--border-light);
}

.index-row:hover {
  padding-inline: 12px;
  color: var(--brown);
}

.index-row__number {
  color: var(--orange);
  font-family: var(--serif);
  font-size: 2.1rem;
  line-height: 1;
}

.index-row__kicker {
  margin: 0 0 8px;
  color: var(--brown);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.page-section--dark .index-row__kicker {
  color: var(--orange-light);
}

.index-row h2,
.index-row h3 {
  margin: 0 0 8px;
  font-size: clamp(1.45rem, 2.2vw, 2.25rem);
}

.index-row p:not(.index-row__kicker) {
  max-width: 720px;
  margin: 0;
  color: rgba(75, 58, 47, 0.78);
}

.page-section--dark .index-row p:not(.index-row__kicker) {
  color: rgba(250, 247, 242, 0.76);
}

.index-row__action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brown);
  font-size: 0.75rem;
  font-weight: 700;
}

.index-row__action::after {
  width: 28px;
  height: 1px;
  background: var(--orange);
  content: "";
}

.page-section--dark .index-row__action {
  color: var(--ivory);
}

.home-resources {
  background: var(--cream);
}

.home-resources .index-row {
  min-height: 158px;
}

.book-promise {
  display: grid;
  align-items: center;
  padding-block: clamp(42px, 6vw, 72px);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 96px);
}

.book-promise__count {
  display: flex;
  align-items: baseline;
  margin: 0;
  color: var(--orange-light);
  font-family: var(--serif);
  font-size: clamp(7rem, 15vw, 13rem);
  line-height: 0.8;
}

.book-promise__count span {
  margin-left: 12px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.book-promise h2 {
  max-width: 760px;
  font-size: clamp(2.3rem, 4.4vw, 4.8rem);
}

.book-promise p {
  max-width: 660px;
  color: rgba(250, 247, 242, 0.82);
}

.status-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--orange-light);
  font-size: 0.74rem;
  font-weight: 600;
}

.status-note::before {
  width: 10px;
  height: 10px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
}

.split-copy {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 112px);
}

.split-copy__aside {
  align-self: start;
  padding-top: 20px;
  border-top: 2px solid var(--orange);
  color: var(--brown);
  font-size: 0.8rem;
  font-weight: 600;
}

.identity-aside {
  display: grid;
  gap: 24px;
}

.identity-aside img {
  width: 72px;
  height: auto;
}

.identity-aside p {
  margin: 0;
  color: inherit;
  font-size: 0.8rem;
  line-height: 1.75;
}

.identity-statement {
  margin-top: 34px;
  padding: 26px 0 0 30px;
  border-top: 1px solid var(--border);
  color: var(--coffee) !important;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.45;
}

.identity-statement::before {
  float: left;
  width: 12px;
  height: 12px;
  margin: 8px 0 0 -30px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.page-next-step .container {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 32px 8vw;
}

.page-next-step h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.page-next-step__copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 24px;
  color: rgba(75, 58, 47, 0.8);
}

.page-section--dark.page-next-step .page-next-step__copy > p:not(.eyebrow) {
  color: rgba(250, 247, 242, 0.78);
}

.page-next-step__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 28px;
}

.page-next-step__status {
  margin: 18px 0 0;
  color: rgba(75, 58, 47, 0.62);
  font-size: 0.74rem;
}

.page-section--dark.page-next-step .page-next-step__status {
  color: rgba(250, 247, 242, 0.62);
}

.split-copy__body {
  max-width: 780px;
}

.split-copy__body h2 {
  font-size: clamp(2.4rem, 4.5vw, 4.7rem);
}

.split-copy__body p {
  color: rgba(75, 58, 47, 0.84);
}

.proof-strip {
  display: grid;
  margin-top: 58px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.proof-strip p {
  display: grid;
  min-height: 144px;
  align-content: center;
  margin: 0;
  padding: 28px;
  border-right: 1px solid var(--border);
  gap: 6px;
}

.proof-strip p:last-child {
  border-right: 0;
}

.proof-strip strong {
  color: var(--brown);
  font-family: var(--serif);
  font-size: 2.8rem;
  line-height: 1;
}

.proof-strip span {
  font-size: 0.78rem;
}

.article-hero {
  padding-block: clamp(72px, 9vw, 126px) clamp(58px, 7vw, 92px);
  border-bottom: 1px solid var(--border);
}

.reading-progress {
  position: fixed;
  z-index: 110;
  top: calc(var(--header-height) - 2px);
  right: 0;
  left: 0;
  height: 2px;
  overflow: hidden;
  background: rgba(75, 58, 47, 0.08);
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(var(--reading-progress, 0));
  transform-origin: left center;
  background: var(--orange);
  transition: transform 90ms linear;
}

.article-hero__inner,
.reading-shell {
  width: min(760px, calc(100vw - 48px));
  margin-inline: auto;
}

.article-hero h1 {
  margin-bottom: 28px;
  font-size: clamp(3rem, 6.2vw, 6.2rem);
}

.essay-hero {
  position: relative;
  overflow: clip;
  background:
    linear-gradient(120deg, rgba(200, 169, 139, 0.14), transparent 54%),
    var(--ivory);
}

.essay-hero::after {
  position: absolute;
  right: -90px;
  bottom: -170px;
  width: min(420px, 40vw);
  aspect-ratio: 1;
  border: 1px solid rgba(217, 123, 95, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 64px rgba(75, 58, 47, 0.025);
  content: "";
  pointer-events: none;
}

.essay-hero .article-hero__inner {
  position: relative;
  z-index: 1;
}

.essay-hero h1 {
  font-size: clamp(3rem, 5.4vw, 5.5rem);
}

.article-deck {
  color: rgba(75, 58, 47, 0.84);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.72;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  margin: 28px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--border);
  gap: 8px 22px;
  color: var(--brown);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-toc {
  width: min(760px, calc(100vw - 48px));
  margin-inline: auto;
  padding-block: clamp(38px, 5vw, 58px);
  border-bottom: 1px solid var(--border);
}

.article-toc .eyebrow {
  margin-bottom: 18px;
}

.article-toc ol {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
}

.article-toc li {
  border-bottom: 1px solid var(--border);
}

.article-toc li:nth-child(odd) {
  border-right: 1px solid var(--border);
}

.article-toc a {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 12px;
  padding: 12px 18px 12px 0;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.45;
  text-decoration: none;
}

.article-toc li:nth-child(even) a {
  padding-left: 18px;
}

.article-toc a::before {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border: 1px solid var(--orange);
  border-radius: 50%;
  content: "";
}

.reading-shell {
  padding-block: clamp(64px, 8vw, 108px);
}

.prose {
  color: rgba(75, 58, 47, 0.92);
  font-size: clamp(1.02rem, 1.15vw, 1.1rem);
  line-height: 1.86;
}

.prose h2 {
  margin: 2.2em 0 0.7em;
  font-size: clamp(2rem, 3.3vw, 3.25rem);
  line-height: 1.12;
  scroll-margin-top: calc(var(--header-height) + 26px);
}

.prose h3 {
  margin: 2em 0 0.6em;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.prose p,
.prose ul,
.prose ol {
  margin-bottom: 1.35em;
}

.prose li + li {
  margin-top: 0.55em;
}

.prose blockquote {
  position: relative;
  margin: 2.2em 0;
  padding: 26px 0 0 30px;
  border-top: 1px solid var(--border);
  color: var(--coffee);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  line-height: 1.4;
}

.prose blockquote::before {
  position: absolute;
  top: 28px;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.essay-prose {
  color: rgba(75, 58, 47, 0.94);
  font-size: clamp(1.03rem, 1.2vw, 1.12rem);
  line-height: 1.95;
}

.essay-prose > p:first-child:not(:only-of-type) {
  color: var(--coffee);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  line-height: 1.62;
}

.essay-verse {
  font-family: var(--serif);
  font-size: clamp(1.03rem, 1.25vw, 1.15rem);
  line-height: 1.9;
}

.essay-signature {
  display: grid;
  margin-top: clamp(58px, 8vw, 92px);
  padding-block: 28px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px 48px;
}

.essay-signature p {
  margin: 0;
  color: rgba(75, 58, 47, 0.66);
  font-size: 0.75rem;
  line-height: 1.65;
}

.essay-signature p:first-child {
  display: grid;
  gap: 4px;
}

.essay-signature strong {
  color: var(--coffee);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.essay-page--short .reading-shell {
  min-height: 56vh;
}

.essay-page--short .essay-prose > p {
  font-family: var(--serif);
  font-size: clamp(1.32rem, 2.1vw, 1.72rem);
  line-height: 1.72;
}

.essay-index .index-row {
  min-height: 184px;
}

.article-reflection {
  display: grid;
  margin-top: 68px;
  padding-block: 34px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 22px;
}

.article-reflection > [aria-hidden="true"] {
  width: 20px;
  height: 20px;
  margin-top: 5px;
  border: 1px solid var(--orange);
  border-radius: 50%;
}

.article-reflection .eyebrow {
  margin-bottom: 12px;
}

.prose .article-reflection h2 {
  margin: 0 0 24px;
  font-size: clamp(1.7rem, 2.7vw, 2.4rem);
  line-height: 1.18;
}

.article-reflection ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: reflection-question;
}

.article-reflection li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 12px;
  counter-increment: reflection-question;
}

.article-reflection li::before {
  color: var(--orange);
  content: counter(reflection-question, decimal-leading-zero);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.article-reflection__step {
  margin: 26px 0 0 !important;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  color: rgba(75, 58, 47, 0.78);
  font-size: 0.9rem;
}

.article-reflection__step strong {
  color: var(--coffee);
}

.article-footer {
  margin-top: 42px;
  padding-top: 0;
}

.article-footer p {
  color: rgba(75, 58, 47, 0.72);
  font-size: 0.86rem;
}

.article-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
}

.article-series {
  display: grid;
  margin-top: 58px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.essay-all-link {
  margin: 42px 0 0 !important;
}

.essay-series {
  margin-top: 22px;
}

.essay-series a:only-child {
  grid-column: 1 / -1;
}

.article-series a {
  display: grid;
  min-height: 116px;
  align-content: center;
  padding: 24px 28px 24px 0;
  gap: 7px;
  text-decoration: none;
}

.article-series a + a {
  padding-right: 0;
  padding-left: 28px;
  border-left: 1px solid var(--border);
}

.article-series__label {
  color: var(--orange);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-series strong {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.25;
}

.content-index-link {
  margin-top: 30px;
}

.reading-paths {
  display: grid;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reading-path {
  display: grid;
  min-height: 300px;
  padding: clamp(26px, 3.4vw, 46px);
  border-right: 1px solid var(--border);
  color: var(--coffee);
  grid-template-rows: auto auto minmax(0, 1fr) auto auto;
  gap: 16px;
  text-decoration: none;
  transition: background 220ms var(--ease), box-shadow 220ms var(--ease);
}

.reading-path:nth-child(-n + 3) {
  border-bottom: 1px solid var(--border);
}

.reading-path:nth-child(3n) {
  border-right: 0;
}

.reading-path:hover {
  background: var(--cream);
  box-shadow: inset 0 -3px var(--orange);
}

.reading-path__mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  place-items: center;
  border: 1px solid var(--orange);
  border-radius: 50%;
  color: var(--brown);
  font-size: 0.64rem;
  font-weight: 700;
}

.reading-path__kicker {
  color: var(--brown);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reading-path__intent {
  max-width: 340px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  line-height: 1.13;
}

.reading-path strong {
  max-width: 330px;
  color: rgba(75, 58, 47, 0.74);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.55;
}

.reading-path__meta {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 12px;
  color: var(--brown);
  font-size: 0.7rem;
  font-weight: 700;
  gap: 10px;
}

.reading-path__meta::after {
  width: 28px;
  height: 1px;
  background: var(--orange);
  content: "";
  transition: width 220ms var(--ease);
}

.reading-path:hover .reading-path__meta::after {
  width: 42px;
}

.tool-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.52fr);
  gap: clamp(48px, 8vw, 112px);
}

.tool-intro h2 {
  font-size: clamp(2.3rem, 4.3vw, 4.5rem);
}

.tool-intro > p {
  color: rgba(75, 58, 47, 0.84);
}

.tool-principles {
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.tool-principles li {
  padding-block: 14px;
  border-bottom: 1px solid var(--border);
  font-size: 0.84rem;
}

.balance-form {
  padding: clamp(26px, 4vw, 44px);
  border-radius: var(--radius-md);
  background: var(--cream);
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.tool-progress {
  display: none;
  align-items: center;
  margin-bottom: 30px;
  grid-template-columns: auto minmax(80px, 1fr);
  gap: 8px 14px;
}

.js .tool-progress {
  display: grid;
}

html:not(.js) [data-tool-next] {
  display: none;
}

.tool-progress__count {
  color: var(--brown);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.tool-progress__track {
  height: 2px;
  overflow: hidden;
  background: rgba(75, 58, 47, 0.14);
}

.tool-progress__fill {
  display: block;
  width: calc(var(--tool-progress, 1) * 50%);
  height: 100%;
  background: var(--orange);
  transition: width 260ms var(--ease);
}

.tool-progress__label {
  margin: 0;
  color: rgba(75, 58, 47, 0.68);
  font-size: 0.7rem;
  grid-column: 2;
}

.balance-field + .balance-field {
  margin-top: 24px;
}

.balance-field__label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 16px;
  font-size: 0.88rem;
  font-weight: 600;
}

.balance-field output {
  color: var(--brown);
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1;
}

.balance-field input[type="range"] {
  width: 100%;
  height: 28px;
  margin: 0;
  accent-color: var(--orange);
  cursor: pointer;
}

.balance-scale {
  display: flex;
  justify-content: space-between;
  color: rgba(75, 58, 47, 0.62);
  font-size: 0.64rem;
}

.balance-form .button {
  width: 100%;
  margin-top: 34px;
}

.tool-priority {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.tool-priority legend {
  max-width: 560px;
  margin-bottom: 12px;
  padding: 0;
  color: var(--coffee);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.12;
}

.tool-priority__lead {
  margin: 0 0 28px;
  color: rgba(75, 58, 47, 0.78);
  font-size: 0.84rem;
}

.tool-priority__options {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
}

.tool-priority__choice {
  display: grid;
  min-height: 58px;
  align-items: center;
  padding-block: 12px;
  border-bottom: 1px solid var(--border);
  grid-template-columns: 22px minmax(0, 1fr);
  cursor: pointer;
  gap: 13px;
  font-size: 0.86rem;
  font-weight: 600;
}

.tool-priority__choice input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--orange);
}

.tool-action-field {
  display: block;
  margin-top: 30px;
  color: var(--coffee);
  font-size: 0.82rem;
  font-weight: 600;
}

.tool-action-field textarea {
  display: block;
  width: 100%;
  min-height: 112px;
  margin-top: 10px;
  padding: 14px 16px;
  resize: vertical;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--ivory);
  color: var(--coffee);
  font: inherit;
  font-size: 0.88rem;
  line-height: 1.6;
}

.tool-action-field__meta {
  display: flex;
  justify-content: space-between;
  margin-top: 7px;
  color: rgba(75, 58, 47, 0.58);
  font-size: 0.65rem;
  font-weight: 400;
  gap: 16px;
}

.tool-step__actions {
  display: flex;
  align-items: center;
  margin-top: 28px;
  gap: 18px;
}

.tool-step__actions .button {
  margin-top: 0;
}

.tool-back {
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--brown);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.balance-result {
  padding: clamp(30px, 5vw, 64px);
  border-radius: var(--radius-md);
  background: var(--coffee);
  color: var(--ivory);
  grid-column: 1 / -1;
}

.balance-result h2 {
  font-size: clamp(2rem, 3.6vw, 3.4rem);
}

.balance-result .eyebrow {
  color: var(--orange-light);
}

.balance-result__header {
  max-width: 780px;
}

.balance-result__header > p {
  color: rgba(250, 247, 242, 0.82);
}

.balance-result__body {
  display: grid;
  align-items: center;
  margin-top: clamp(34px, 5vw, 56px);
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(38px, 7vw, 92px);
}

.balance-wheel {
  margin: 0;
}

.balance-wheel canvas {
  display: block;
  width: min(100%, 440px);
  height: auto;
  margin-inline: auto;
  aspect-ratio: 1;
}

.balance-wheel figcaption {
  max-width: 420px;
  margin: 20px auto 0;
  color: rgba(250, 247, 242, 0.64);
  font-size: 0.68rem;
  line-height: 1.65;
  text-align: center;
}

.balance-bars {
  margin: 0;
  padding: 0;
  list-style: none;
}

.balance-bars li + li {
  margin-top: 14px;
}

.balance-bar__label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  gap: 18px;
  font-size: 0.74rem;
}

.balance-bar__track {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(250, 247, 242, 0.16);
}

.balance-bar__fill {
  width: calc(var(--score, 5) * 10%);
  height: 100%;
  border-radius: inherit;
  background: var(--orange-light);
  transition: width 420ms var(--ease);
}

.result-disclaimer {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(250, 247, 242, 0.62);
  font-size: 0.72rem;
}

.balance-result__next {
  max-width: 820px;
  margin-top: clamp(38px, 5vw, 58px);
  padding-top: clamp(28px, 4vw, 40px);
  border-top: 1px solid var(--border-light);
}

.balance-result__next > p:not(.eyebrow) {
  color: rgba(250, 247, 242, 0.82);
}

.balance-result__next h3 {
  margin-bottom: 10px;
  color: var(--ivory);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.balance-result__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 18px;
  gap: 10px clamp(24px, 4vw, 46px);
}

.result-copy-status {
  min-height: 1.4em;
  margin: 8px 0 0;
  color: rgba(250, 247, 242, 0.62);
  font-size: 0.68rem;
}

.balance-reset {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(250, 247, 242, 0.76);
  cursor: pointer;
  gap: 10px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
}

.balance-reset::before {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border: 1px solid var(--orange-light);
  border-radius: 50%;
  content: "";
  transition: background 220ms var(--ease);
}

.balance-reset:hover::before {
  background: var(--orange-light);
}

.reflection-result {
  padding: clamp(30px, 5vw, 64px);
  border-radius: var(--radius-md);
  background: var(--coffee);
  color: var(--ivory);
  grid-column: 1 / -1;
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.reflection-result h2 {
  font-size: clamp(2rem, 3.6vw, 3.4rem);
}

.reflection-result .eyebrow {
  color: var(--orange-light);
}

.reflection-result__header {
  max-width: 800px;
}

.reflection-result__header > p:not(.eyebrow) {
  color: rgba(250, 247, 242, 0.82);
}

.reflection-result__body {
  display: grid;
  align-items: start;
  margin-top: clamp(34px, 5vw, 56px);
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(38px, 7vw, 92px);
}

.reflection-selection {
  border-top: 1px solid var(--border-light);
}

.reflection-selection__block {
  padding-block: 22px;
  border-bottom: 1px solid var(--border-light);
}

.reflection-selection__block h3 {
  margin-bottom: 8px;
  color: var(--ivory);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.reflection-selection__block p:not(.eyebrow) {
  margin: 0;
  color: rgba(250, 247, 242, 0.8);
  font-size: 0.88rem;
  line-height: 1.65;
}

.reflection-action-output {
  padding-left: 20px;
  border-left: 2px solid var(--orange-light);
}

.reflection-prompts {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border-light);
}

.reflection-prompts p {
  margin: 0;
  padding: 18px 0 18px 26px;
  border-bottom: 1px solid var(--border-light);
  color: rgba(250, 247, 242, 0.84);
  font-size: 0.88rem;
  line-height: 1.65;
}

.reflection-prompts strong {
  display: block;
  margin-bottom: 3px;
  color: var(--orange-light);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.content-status {
  max-width: 760px;
  padding: 24px 0 0 30px;
  border-top: 1px solid var(--border);
  color: rgba(75, 58, 47, 0.76);
}

.content-status::before {
  float: left;
  width: 12px;
  height: 12px;
  margin: 7px 0 0 -30px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  content: "";
}

.page-section--dark .split-copy__aside,
.page-section--dark .split-copy__body .service-topics {
  color: var(--orange-light);
}

.page-section--dark .split-copy__body > p:not(.eyebrow):not(.service-topics) {
  color: rgba(250, 247, 242, 0.84);
}

.service-page .page-hero h1 {
  max-width: 960px;
  font-size: clamp(3.35rem, 6.2vw, 6.6rem);
}

.service-summary {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 112px);
}

.service-summary__label {
  margin: 0;
  padding-top: 20px;
  border-top: 2px solid var(--orange);
  color: var(--brown);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-summary__copy {
  max-width: 820px;
}

.service-summary__copy h2 {
  margin-bottom: 28px;
  font-size: clamp(2.45rem, 4.5vw, 4.8rem);
}

.service-summary__copy > p {
  max-width: 720px;
  color: rgba(75, 58, 47, 0.84);
  font-size: clamp(1rem, 1.25vw, 1.13rem);
  line-height: 1.82;
}

.service-fit-list {
  display: grid;
  margin: 38px 0 0;
  padding: 0;
  border-top: 1px solid var(--border);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
}

.service-fit-list li {
  min-height: 92px;
  padding: 22px 24px 22px 0;
  border-bottom: 1px solid var(--border);
  color: var(--coffee);
  font-size: 0.88rem;
}

.service-fit-list li:nth-child(odd) {
  border-right: 1px solid var(--border);
}

.service-fit-list li:nth-child(even) {
  padding-left: 24px;
}

.focus-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.focus-list li {
  display: grid;
  min-height: 118px;
  align-items: center;
  padding-block: 24px;
  border-bottom: 1px solid var(--border);
  grid-template-columns: 64px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 38px);
}

.focus-list__number {
  color: var(--orange);
  font-family: var(--serif);
  font-size: 2rem;
}

.focus-list h3 {
  margin: 0 0 6px;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.focus-list p {
  max-width: 760px;
  margin: 0;
  color: rgba(75, 58, 47, 0.76);
}

.principle-grid {
  display: grid;
  margin-top: clamp(42px, 6vw, 72px);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.principle-grid article {
  min-height: 250px;
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid var(--border-light);
}

.principle-grid article:last-child {
  border-right: 0;
}

.principle-grid__mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 38px;
  place-items: center;
  border: 1px solid var(--orange-light);
  border-radius: 50%;
  color: var(--orange-light);
  font-size: 0.66rem;
  font-weight: 700;
}

.principle-grid h3 {
  margin-bottom: 14px;
  color: var(--ivory);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.principle-grid p {
  margin: 0;
  color: rgba(250, 247, 242, 0.74);
  font-size: 0.9rem;
}

@media (max-width: 1120px) {
  .primary-nav {
    gap: 16px;
  }

  .primary-nav a {
    font-size: 0.76rem;
  }
}

@media (max-width: 940px) {
  .page-hero__grid,
  .page-section__heading,
  .tool-layout,
  .service-summary,
  .page-next-step .container {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-hero__lead {
    max-width: 720px;
  }

  .primary-nav a[aria-current="page"] {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .primary-nav a[aria-current="page"]::before {
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
    border: 1px solid var(--orange);
    border-radius: 50%;
    content: "";
  }

  .split-copy {
    grid-template-columns: minmax(0, 1fr);
  }

  .reading-paths {
    grid-template-columns: minmax(0, 1fr);
  }

  .reading-path {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .reading-path:last-child {
    border-bottom: 0;
  }

  .balance-result__body {
    grid-template-columns: minmax(0, 1fr);
  }

  .reflection-result__body {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .principle-grid article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--border-light);
  }

  .principle-grid article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 680px) {
  .page-hero {
    padding-block: 64px 72px;
  }

  .page-hero--compact {
    padding-block: 32px 42px;
  }

  .service-page .page-hero {
    padding-block: 52px 58px;
  }

  .page-hero::after {
    top: -150px;
    right: -190px;
    width: 390px;
  }

  .page-hero h1 {
    font-size: clamp(2.85rem, 14vw, 4rem);
  }

  .page-hero--compact h1 {
    font-size: clamp(2.45rem, 11.5vw, 3.15rem);
  }

  .service-page .page-hero h1 {
    font-size: clamp(2.65rem, 12vw, 3.35rem);
  }

  .page-section {
    padding-block: 80px;
  }

  .tool-step__actions {
    align-items: stretch;
    flex-direction: column-reverse;
    gap: 8px;
  }

  .tool-step__actions .button,
  .tool-back {
    width: 100%;
  }

  .index-row {
    min-height: 0;
    padding-block: 28px;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
  }

  .index-row__number {
    font-size: 1.6rem;
  }

  .index-row__action {
    grid-column: 2;
  }

  .book-promise {
    grid-template-columns: minmax(0, 1fr);
  }

  .book-promise__count {
    font-size: 8rem;
  }

  .proof-strip {
    grid-template-columns: minmax(0, 1fr);
  }

  .proof-strip p {
    min-height: 126px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .proof-strip p:last-child {
    border-bottom: 0;
  }

  .article-hero__inner,
  .reading-shell,
  .article-toc {
    width: calc(100vw - 32px);
  }

  .article-hero h1 {
    font-size: clamp(2.75rem, 13vw, 3.8rem);
  }

  .essay-hero h1 {
    font-size: clamp(2.45rem, 11.6vw, 3.35rem);
  }

  .essay-hero::after {
    right: -180px;
    bottom: -120px;
    width: 360px;
  }

  .essay-signature {
    grid-template-columns: minmax(0, 1fr);
  }

  .article-toc ol,
  .article-series {
    grid-template-columns: minmax(0, 1fr);
  }

  .article-toc li:nth-child(odd) {
    border-right: 0;
  }

  .article-toc li:nth-child(even) a {
    padding-left: 0;
  }

  .article-series a,
  .article-series a + a {
    min-height: 104px;
    padding-inline: 0;
  }

  .article-series a + a {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .article-reflection {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .balance-form,
  .balance-result {
    margin-inline: -4px;
  }

  .balance-wheel canvas {
    width: min(100%, 340px);
  }

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

  .service-fit-list li,
  .service-fit-list li:nth-child(odd),
  .service-fit-list li:nth-child(even) {
    min-height: 0;
    padding-inline: 0;
    border-right: 0;
  }

  .focus-list li {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .focus-list__number {
    font-size: 1.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .index-row,
  .reading-path,
  .reading-path__meta::after,
  .reading-progress span,
  .balance-bar__fill,
  .balance-reset::before {
    transition-duration: 0.01ms !important;
  }
}
