:root {
  --charcoal: #191c1b;
  --charcoal-soft: #202422;
  --charcoal-raised: #252a27;
  --parchment: #eeeae1;
  --parchment-deep: #d9d2c3;
  --paper: #e7e0d2;
  --sage: #99a59e;
  --sage-deep: #75827b;
  --muted: #aeb4b0;
  --ink: #202321;
  --ink-muted: #626b66;
  --hairline: rgba(238, 234, 225, 0.14);
  --hairline-strong: rgba(238, 234, 225, 0.28);
  --ink-line: rgba(32, 35, 33, 0.18);
  --home-navy: #15242e;
  --home-navy-soft: #203844;
  --home-ivory: #f0ebde;
  --home-mist: #c4ccca;
  --home-gold: #c3a676;
  --home-sage: #7f948d;
  --dossier-paper: #f4f0e7;
  --dossier-paper-deep: #e8e0d2;
  --dossier-navy: #132633;
  --dossier-navy-soft: #203744;
  --dossier-gold: #bc9559;
  --dossier-ink: #17252d;
  --dossier-muted: #687177;
  --dossier-line: rgba(19, 38, 51, 0.14);
  --page-gutter: clamp(24px, 4.6vw, 72px);
  --content-width: 1440px;
  --reading-width: 880px;
  --serif: "Songti SC", "STSong", "SimSun", serif;
  --sans: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--parchment);
  background: var(--charcoal);
  font-family: var(--sans);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  content: "";
  opacity: 0.035;
  pointer-events: none;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea {
  font: inherit;
}

svg {
  display: block;
}

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--charcoal);
  background: var(--parchment);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding-inline: var(--page-gutter);
}

.site-header {
  position: relative;
  z-index: 30;
  border-bottom: 1px solid var(--hairline);
  background: rgba(25, 28, 27, 0.96);
}

.home-page .site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background: transparent;
}

.site-header__inner {
  display: flex;
  width: min(100%, var(--content-width));
  min-height: 88px;
  margin: 0 auto;
  padding-inline: var(--page-gutter);
  align-items: center;
}

.brand {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: clamp(26px, 3.6vw, 56px);
}

.site-nav a {
  position: relative;
  min-height: 44px;
  padding: 12px 0 8px;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.site-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 5px;
  left: 50%;
  height: 1px;
  background: var(--sage);
  content: "";
  transition: right 220ms ease, left 220ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--parchment);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  right: 0;
  left: 0;
}

.menu-toggle {
  display: none;
}

.home-opening {
  display: none;
}

html.js .home-opening {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  overflow: hidden;
  color: var(--home-ivory);
  background:
    radial-gradient(circle at 65% 47%, rgba(42, 67, 78, 0.72), transparent 38%),
    var(--home-navy);
  place-items: center;
  perspective: 1800px;
}

.home-opening[hidden] {
  display: none;
}

.home-opening__brand {
  position: absolute;
  top: clamp(24px, 4vw, 46px);
  left: var(--page-gutter);
  margin: 0;
  color: rgba(240, 235, 222, 0.76);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.5vw, 1.5rem);
  letter-spacing: 0.02em;
}

.home-opening__trigger {
  width: min(760px, 68vw);
  max-width: calc(68svh * 0.74);
  aspect-ratio: 0.74;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  transform-style: preserve-3d;
}

.home-opening__trigger:focus-visible {
  outline: 3px solid var(--home-gold);
  outline-offset: 10px;
}

.home-opening__book {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  transform: translateX(8%);
  transform-style: preserve-3d;
}

.home-opening__pages,
.home-opening__cover {
  position: absolute;
  inset: 0;
  border-radius: 12px 28px 28px 12px;
}

.home-opening__pages {
  background: repeating-linear-gradient(90deg, #d7d0bf 0 2px, #eee8d9 2px 5px);
  box-shadow: 22px 22px 50px rgba(3, 10, 13, 0.42);
  transform: translate(13px, 12px);
}

.home-opening__cover {
  padding: 18% 16% 13%;
  border: 1px solid rgba(195, 166, 118, 0.5);
  background:
    radial-gradient(circle, rgba(195, 166, 118, 0.09) 0 1px, transparent 1.4px) 0 0 / 8px 8px,
    linear-gradient(135deg, #233b47, #10212b 76%);
  box-shadow:
    inset 16px 0 28px rgba(0, 0, 0, 0.24),
    inset 0 0 0 10px rgba(240, 235, 222, 0.025);
  text-align: left;
  transform-origin: left center;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.home-opening__spine {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 13px;
  border-right: 1px solid rgba(0, 0, 0, 0.36);
  border-left: 1px solid rgba(195, 166, 118, 0.25);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(255, 255, 255, 0.035), rgba(0, 0, 0, 0.12));
  box-shadow: 8px 0 15px rgba(0, 0, 0, 0.18);
}

.home-opening__eyebrow {
  display: block;
  color: rgba(195, 166, 118, 0.86);
  font-size: clamp(8px, 0.7vw, 11px);
  letter-spacing: 0.22em;
}

.home-opening__title {
  display: block;
  margin-top: 25%;
  font-family: var(--serif);
  line-height: 1.08;
}

.home-opening__title span,
.home-opening__title strong {
  display: block;
  font-weight: 400;
}

.home-opening__title span {
  color: var(--home-ivory);
  font-size: clamp(2.35rem, 3.8vw, 3.85rem);
}

.home-opening__title strong {
  color: var(--home-gold);
  font-size: clamp(2.25rem, 3.55vw, 3.7rem);
  white-space: nowrap;
}

.home-opening__rule {
  display: block;
  width: 72px;
  height: 2px;
  margin-top: 9%;
  background: var(--home-gold);
}

.home-opening__meta {
  display: block;
  margin-top: 22px;
  color: rgba(240, 235, 222, 0.82);
  font-size: clamp(15px, 1.2vw, 16px);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.home-opening__evidence {
  display: block;
  margin-top: 5px;
  color: rgba(195, 166, 118, 0.9);
  font-size: clamp(12px, 1vw, 13px);
  letter-spacing: 0.12em;
}

.home-opening__elastic {
  position: absolute;
  z-index: 3;
  top: -2px;
  right: 7%;
  bottom: -2px;
  width: 10px;
  border-radius: 5px;
  background: linear-gradient(90deg, #081116, #2a3b42, #071015);
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
}

.home-opening__bookmark {
  position: absolute;
  z-index: -1;
  right: 16%;
  bottom: -34px;
  width: 22px;
  height: 70px;
  background: linear-gradient(#b4925c, #80633c);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 76%, 0 100%);
}

.home-opening__tab {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: -106px;
  min-width: 126px;
  padding: 14px 18px;
  border-radius: 0 999px 999px 0;
  color: var(--home-navy);
  background: linear-gradient(135deg, #ddc28d, var(--home-gold));
  box-shadow: 8px 9px 24px rgba(0, 0, 0, 0.3), inset 0 1px rgba(255, 255, 255, 0.38);
  font-size: 0.82rem;
  font-weight: 650;
  white-space: nowrap;
  transform: translateY(-50%);
  animation: home-tab-pulse 2.2s ease-in-out infinite;
}

.home-opening__tab::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -14px;
  width: 15px;
  background: #d1ae72;
  content: "";
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
}

.home-opening.is-opening .home-opening__cover {
  animation: home-cover-open 820ms cubic-bezier(0.64, 0, 0.28, 1) forwards;
}

.home-opening.is-opening .home-opening__pages {
  opacity: 0;
}

.home-opening.is-opening .home-opening__tab {
  opacity: 0;
  animation: none;
}

.home-opening.is-opening {
  animation: home-opening-exit 1040ms ease 620ms forwards;
}

@keyframes home-tab-pulse {
  0%,
  100% {
    transform: translate(0, -50%);
  }
  50% {
    transform: translate(7px, -50%);
    box-shadow: 12px 12px 28px rgba(0, 0, 0, 0.35), 0 0 0 7px rgba(195, 166, 118, 0.09);
  }
}

@keyframes home-cover-open {
  to {
    transform: rotateY(-154deg);
  }
}

@keyframes home-opening-exit {
  to {
    visibility: hidden;
    opacity: 0;
  }
}

/* Home */

.home-page {
  color: var(--home-ivory);
  background: var(--home-navy);
}

.home-page .site-header {
  border-bottom-color: transparent;
}

.home-page .site-nav a {
  color: rgba(240, 235, 222, 0.68);
}

.home-page .site-nav a:first-child {
  color: var(--home-gold);
}

.home-page .site-nav a:hover,
.home-page .site-nav a:focus-visible {
  color: var(--home-gold);
}

.home-page .site-nav a::after {
  background: var(--home-gold);
}

.home-main {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  background:
    radial-gradient(circle at 75% 45%, rgba(37, 59, 70, 0.94), transparent 48%),
    var(--home-navy);
}

.home-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding-top: clamp(122px, 15vh, 154px);
  padding-bottom: clamp(44px, 6vh, 70px);
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: center;
  gap: clamp(54px, 7.5vw, 116px);
}

.home-hero__statement {
  position: relative;
  z-index: 2;
}

.home-hero__statement::before {
  position: absolute;
  z-index: -1;
  top: -18%;
  left: -14%;
  width: 114%;
  height: 128%;
  background-image: radial-gradient(rgba(195, 166, 118, 0.72) 0.72px, transparent 0.86px);
  background-size: 10px 10px;
  content: "";
  opacity: 0.22;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0, rgba(0, 0, 0, 0.82) 38%, transparent 76%);
  mask-image: radial-gradient(ellipse at center, #000 0, rgba(0, 0, 0, 0.82) 38%, transparent 76%);
}

.home-note-id {
  display: block;
  margin: 0 0 28px;
  color: var(--home-gold);
  font-size: clamp(0.72rem, 0.8vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.12em;
}

.home-hero h1 {
  max-width: none;
  margin: 0;
  color: var(--home-ivory);
  font-family: var(--serif);
  font-size: clamp(4.35rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

#home-title:focus {
  outline: none;
}

.home-hero h1 span {
  display: block;
}

.home-title__lead {
  color: var(--home-ivory);
  font-size: 0.76em;
  line-height: 1;
}

.home-title__focus {
  position: relative;
  z-index: 1;
  width: max-content;
  color: var(--home-gold);
  font-size: 1em;
  line-height: 0.95;
}

.home-title__focus::after {
  position: absolute;
  right: -0.08em;
  bottom: -0.05em;
  left: -0.06em;
  z-index: -1;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent, rgba(195, 166, 118, 0.42) 8% 92%, transparent);
  content: "";
  transform: rotate(-1deg);
}

.home-hero__annotation {
  max-width: none;
  margin: 28px 0 0;
  color: #d4d6d1;
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.45vw, 1.42rem);
  line-height: 1.75;
  white-space: nowrap;
}

.home-hero__annotation span {
  display: inline;
}

.home-note-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  margin-right: clamp(0px, 2vw, 28px);
  padding: clamp(36px, 4vw, 54px);
  overflow: visible;
  border-radius: clamp(18px, 1.8vw, 28px);
  background: rgba(240, 235, 222, 0.055);
  box-shadow: inset 0 1px rgba(240, 235, 222, 0.025);
  backdrop-filter: blur(7px);
  justify-self: end;
}

.home-note-panel__tab {
  position: absolute;
  top: -16px;
  left: 42px;
  padding: 8px 18px 7px;
  color: var(--home-navy);
  background: var(--home-gold);
  box-shadow: 0 8px 20px rgba(5, 14, 18, 0.18);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  transform: rotate(-1.2deg);
}

.home-note-panel__label {
  margin: 0 0 16px;
  color: var(--home-gold);
  font-size: clamp(0.72rem, 0.82vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.12em;
}

.home-note-panel__identity {
  margin: 0 0 12px;
  color: rgba(240, 235, 222, 0.96);
  font-size: clamp(1rem, 1.18vw, 1.15rem);
  font-weight: 650;
  letter-spacing: 0.01em;
  line-height: 1.7;
}

.home-hero__intro {
  max-width: 47em;
  margin: 0;
  color: var(--home-mist);
  font-size: clamp(0.82rem, 0.98vw, 0.98rem);
  line-height: 1.82;
}

.home-focus {
  display: grid;
  margin-top: 26px;
  color: rgba(240, 235, 222, 0.88);
  grid-template-columns: repeat(4, max-content);
  gap: 10px;
}

.home-focus span {
  display: inline-flex;
  padding: 7px 13px;
  border: 1px solid rgba(240, 235, 222, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  align-items: center;
  white-space: nowrap;
}

.hero-actions,
.close-actions {
  display: flex;
  margin-top: 38px;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 28px;
}

.home-page .hero-actions {
  margin-top: clamp(28px, 3.6vh, 38px);
  gap: 12px;
}

.primary-link,
.secondary-link,
.text-link,
.back-link {
  display: inline-flex;
  min-height: 48px;
  padding: 10px 0 7px;
  border-bottom: 1px solid var(--sage-deep);
  color: var(--parchment);
  font-size: 0.88rem;
  align-items: center;
  gap: 16px;
}

.secondary-link {
  color: var(--sage);
}

.home-page .primary-link,
.home-page .secondary-link {
  min-height: 44px;
  padding: 9px 17px;
  border: 0;
  border-radius: 999px;
  font-size: 0.82rem;
  gap: 12px;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.home-page .primary-link {
  color: var(--home-navy);
  background: var(--home-gold);
  box-shadow: 0 10px 26px rgba(5, 14, 18, 0.17);
}

.home-page .secondary-link {
  color: rgba(240, 235, 222, 0.9);
  background: rgba(240, 235, 222, 0.075);
}

.home-page .primary-link:focus-visible,
.home-page .secondary-link:focus-visible {
  outline: 2px solid var(--home-ivory);
  outline-offset: 4px;
}

.home-page .primary-link:hover,
.home-page .primary-link:focus-visible,
.home-page .secondary-link:hover,
.home-page .secondary-link:focus-visible {
  transform: translateY(-2px);
}

.home-page .hero-actions a span {
  transition: transform 180ms ease;
}

.home-page .hero-actions a:hover span,
.home-page .hero-actions a:focus-visible span {
  transform: translateX(4px);
}

.primary-link svg,
.secondary-link svg,
.text-link svg,
.back-link svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  transition: transform 220ms ease;
}

.primary-link:hover svg,
.secondary-link:hover svg,
.text-link:hover svg,
.back-link:hover svg {
  transform: translateX(4px);
}

/* Inner page shared */

.inner-main {
  min-height: 70vh;
}

.page-hero {
  padding: clamp(84px, 10vw, 148px) 0 clamp(72px, 8vw, 120px);
  border-bottom: 1px solid var(--hairline);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(290px, 0.75fr);
  gap: clamp(52px, 10vw, 150px);
  align-items: end;
}

.page-index,
.section-index,
.micro-label {
  margin: 0 0 24px;
  color: var(--sage);
  font-family: Georgia, var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-hero h1,
.section-heading h2,
.detail-section h2,
.page-close h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.page-hero h1 {
  max-width: 12ch;
  font-size: clamp(3.3rem, 6.8vw, 7.1rem);
}

.page-hero__lead {
  max-width: 35em;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: clamp(0.96rem, 1.12vw, 1.1rem);
  line-height: 2;
}

.page-section {
  padding: clamp(82px, 9vw, 138px) 0;
  border-bottom: 1px solid var(--hairline);
}

.page-section--paper {
  color: var(--ink);
  background: var(--parchment);
}

.section-heading {
  display: grid;
  margin-bottom: clamp(50px, 7vw, 90px);
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(42px, 9vw, 130px);
  align-items: end;
}

.section-heading h2 {
  font-size: clamp(2.5rem, 4.8vw, 5rem);
}

.section-heading > p:last-child {
  margin: 0 0 5px;
  color: var(--muted);
  line-height: 2;
}

.page-section--paper .section-index {
  color: var(--sage-deep);
}

.page-section--paper .section-heading > p:last-child {
  color: var(--ink-muted);
}

/* Practices */

.practices-page {
  color: var(--home-ivory);
  background: var(--home-navy);
}

.practices-page .site-header {
  color: var(--home-ivory);
  background: rgba(21, 36, 46, 0.92);
}

.practice-overview {
  display: flex;
  min-height: calc(100svh - 88px);
  padding: clamp(112px, 11vh, 144px) 0 clamp(44px, 6vh, 74px);
  align-items: center;
}

.practice-overview__layout {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(380px, 0.88fr) minmax(0, 1.55fr);
  gap: clamp(54px, 6vw, 96px);
  align-items: stretch;
}

.practice-overview__intro {
  position: relative;
  isolation: isolate;
  padding-top: clamp(18px, 3vh, 36px);
}

.practice-overview__intro::before {
  position: absolute;
  z-index: -1;
  top: -18px;
  right: -26px;
  width: min(38vw, 440px);
  height: 290px;
  content: "";
  opacity: 0.22;
  background-image: radial-gradient(circle, rgba(201, 173, 123, 0.52) 1px, transparent 1.2px);
  background-size: 18px 18px;
  -webkit-mask-image: linear-gradient(90deg, #000 35%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 35%, transparent 100%);
  pointer-events: none;
}

.practice-overview__index {
  margin: 0 0 28px;
  color: var(--home-gold);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
}

.practice-overview__intro h1 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(3.25rem, 4.25vw, 4.55rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.practice-overview__intro h1::after {
  display: block;
  width: 68px;
  height: 2px;
  margin-top: 24px;
  content: "";
  background: var(--home-gold);
}

.practice-overview__intro h1 span {
  display: block;
  white-space: nowrap;
}

.practice-overview__lead {
  position: relative;
  max-width: 34em;
  margin: 30px 0 0;
  padding: 18px 18px 16px 20px;
  border-left: 2px solid var(--home-gold);
  color: rgba(240, 235, 222, 0.68);
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 1.82em,
    rgba(240, 235, 222, 0.055) 1.82em,
    rgba(240, 235, 222, 0.055) calc(1.82em + 1px)
  );
  font-size: 0.94rem;
  line-height: 1.82;
}

.practice-overview__lead::before {
  position: absolute;
  top: -15px;
  right: 12px;
  padding: 5px 9px 4px;
  content: "经营答卷";
  color: var(--home-navy);
  background: var(--home-gold);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  transform: rotate(1.5deg);
}

.practice-chapter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(268px, 1fr));
  gap: 14px;
}

.practice-chapter {
  position: relative;
  display: flex;
  min-width: 0;
  padding: clamp(22px, 2.1vw, 30px);
  border: 1px solid rgba(240, 235, 222, 0.065);
  border-radius: 8px;
  color: inherit;
  background: rgba(240, 235, 222, 0.055);
  flex-direction: column;
  text-decoration: none;
  transition: background-color 240ms ease, border-color 240ms ease,
    box-shadow 240ms ease, transform 240ms ease;
}

.practice-chapter::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  content: "";
  opacity: 0.18;
  background: var(--home-gold);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  transition: opacity 240ms ease, transform 240ms ease;
  pointer-events: none;
}

.practice-chapter:nth-child(2),
.practice-chapter:nth-child(3) {
  background: rgba(196, 204, 202, 0.065);
}

.practice-chapter-grid .practice-chapter:nth-child(1) {
  --practice-entry-delay: 40ms;
}

.practice-chapter-grid .practice-chapter:nth-child(2) {
  --practice-entry-delay: 110ms;
}

.practice-chapter-grid .practice-chapter:nth-child(3) {
  --practice-entry-delay: 180ms;
}

.practice-chapter-grid .practice-chapter:nth-child(4) {
  --practice-entry-delay: 250ms;
}

.practice-chapter:hover,
.practice-chapter:focus-visible {
  background: rgba(240, 235, 222, 0.09);
  border-color: rgba(201, 173, 123, 0.56);
  box-shadow: 0 18px 40px rgba(2, 10, 14, 0.32),
    inset 0 0 0 1px rgba(201, 173, 123, 0.1);
  transform: translateY(-7px);
}

.practice-chapter:hover::after,
.practice-chapter:focus-visible::after {
  opacity: 0.58;
  transform: scale(1.12);
}

.practice-chapter:focus-visible {
  outline: 2px solid var(--home-gold);
  outline-offset: 3px;
}

.practice-chapter__number {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  padding: 6px 9px 5px;
  color: var(--home-gold);
  background: rgba(201, 173, 123, 0.11);
  align-items: center;
  font-size: 0.66rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  transition: color 220ms ease, background-color 220ms ease;
}

.practice-chapter:hover .practice-chapter__number,
.practice-chapter:focus-visible .practice-chapter__number {
  color: var(--home-navy);
  background: var(--home-gold);
}

.practice-chapter h2 {
  min-height: 2.8em;
  margin: 15px 0 0;
  font-family: var(--sans);
  font-size: clamp(1.22rem, 1.48vw, 1.48rem);
  font-weight: 600;
  line-height: 1.4;
}

.practice-chapter__value,
.practice-chapter__meaning,
.practice-chapter__proof {
  margin: 0;
}

.practice-chapter__value {
  min-height: 1.65em;
  margin-top: 7px;
  color: rgba(240, 235, 222, 0.6);
  font-size: 0.83rem;
  line-height: 1.65;
}

.practice-chapter__metric {
  display: flex;
  min-height: 1.2em;
  margin-top: auto;
  padding-top: 18px;
  color: var(--home-gold);
  align-items: flex-end;
  font-family: var(--sans);
  font-size: clamp(1.72rem, 2.15vw, 2.18rem);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 1.15;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.practice-chapter__meaning {
  margin-top: 10px;
  color: rgba(240, 235, 222, 0.78);
}

.practice-chapter__proof {
  min-height: 1.6em;
  margin-top: 8px;
  color: rgba(240, 235, 222, 0.75);
  font-size: 0.72rem;
  line-height: 1.6;
}

.practice-chapter__entry {
  display: inline-flex;
  margin-top: 15px;
  color: rgba(240, 235, 222, 0.82);
  align-items: center;
  align-self: flex-end;
  gap: 8px;
  font-size: 0.72rem;
  text-align: right;
}

.practice-chapter__entry > span {
  transition: transform 220ms ease;
}

.practice-chapter:hover .practice-chapter__entry > span,
.practice-chapter:focus-visible .practice-chapter__entry > span {
  transform: translateX(4px);
}

.practice-next {
  padding: 18px 0 clamp(58px, 6vw, 82px);
  background: var(--home-navy);
}

.practice-next .page-shell {
  display: flex;
  justify-content: flex-end;
}

.practice-next__link {
  display: grid;
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(240, 235, 222, 0.1);
  border-radius: 8px;
  color: var(--home-ivory);
  background: rgba(240, 235, 222, 0.055);
  box-shadow: none;
  text-decoration: none;
  transition: background-color 220ms ease;
}

.practice-next__label {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  padding: 7px 10px 6px;
  color: var(--home-navy);
  background: var(--home-gold);
  align-items: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.09em;
}

.practice-next__content {
  display: grid;
  gap: 4px;
}

.practice-next__content strong {
  font-family: var(--sans);
  font-size: clamp(1.2rem, 1.5vw, 1.42rem);
  font-weight: 600;
  line-height: 1.15;
}

.practice-next__description {
  color: rgba(240, 235, 222, 0.62);
  font-size: 0.7rem;
  line-height: 1.5;
}

.practice-next__arrow {
  display: inline-flex;
  color: var(--home-gold);
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  transition: transform 220ms ease;
}

.practice-next__link:hover,
.practice-next__link:focus-visible {
  background: rgba(240, 235, 222, 0.085);
}

.practice-next__link:hover .practice-next__arrow,
.practice-next__link:focus-visible .practice-next__arrow {
  transform: translateX(6px);
}

.practice-next__link:focus-visible {
  outline: 2px solid var(--home-gold);
  outline-offset: 5px;
}

/* Methodology */

.methodology-note {
  --methodology-line: rgba(19, 38, 51, 0.14);
  color: var(--dossier-ink);
  background: var(--dossier-paper);
}

.methodology-note .page-section {
  border-color: var(--methodology-line);
}

.methodology-note__hero {
  display: flex;
  min-height: clamp(500px, 70svh, 640px);
  padding: clamp(72px, 9vw, 108px) 0 clamp(54px, 6vw, 76px);
  border-bottom: 1px solid var(--methodology-line);
  align-items: center;
}

.methodology-note__hero-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.methodology-note__hero .page-index,
.methodology-note__evidence .section-index {
  color: var(--home-sage);
}

.methodology-note__hero h1 {
  max-width: 860px;
  margin: 0;
  color: var(--dossier-navy);
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6vw, 6.2rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.methodology-note__hero h1 span {
  display: block;
  white-space: nowrap;
}

.methodology-note__hero-copy {
  max-width: 1040px;
  margin: 32px 0 0;
  color: var(--dossier-muted);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.9;
}

.methodology-note__hero-copy span {
  display: block;
  white-space: nowrap;
}

.methodology-note__model {
  padding-top: 0;
  padding-bottom: clamp(72px, 8vw, 118px);
}

.methodology-note__model .growth-model {
  width: 100%;
  margin-top: 0;
}

.methodology-note__evidence {
  padding-block: clamp(72px, 8vw, 116px);
}

.methodology-note__evidence-heading {
  max-width: none;
}

.methodology-note__evidence-heading h2 {
  margin: 0;
  color: var(--dossier-navy);
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3.4vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.methodology-note__proofs {
  display: grid;
  margin-top: 48px;
  border-top: 1px solid var(--dossier-ink);
  border-bottom: 1px solid var(--methodology-line);
  background: transparent;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.methodology-proof {
  min-width: 0;
  padding: 30px 20px 28px;
  color: var(--dossier-ink);
  border-right: 1px solid var(--methodology-line);
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.methodology-proof:last-child {
  border-right: 0;
}

.methodology-proof strong {
  display: block;
  color: var(--dossier-gold);
  font-family: var(--sans);
  font-size: clamp(1.7rem, 2.35vw, 2.4rem);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  line-height: 1.15;
  white-space: nowrap;
}

.methodology-proof span {
  display: block;
  margin-top: 8px;
  color: var(--dossier-muted);
  line-height: 1.5;
}

.methodology-proof:hover {
  background: rgba(188, 149, 89, 0.07);
  transform: translateY(-3px);
}

.methodology-proof:focus-visible {
  outline: 2px solid var(--dossier-gold);
  outline-offset: 4px;
}

.methodology-note__cta {
  display: inline-flex;
  margin-top: 34px;
  color: var(--dossier-ink);
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  gap: 12px;
}

.methodology-note__cta:hover {
  color: var(--dossier-gold);
}

.methodology-note__cta:focus-visible {
  color: var(--dossier-gold);
  outline: 2px solid var(--dossier-gold);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.growth-model {
  --growth-navy: #132633;
  --growth-paper: #f4f0e7;
  --growth-gold: #bc9559;
  --growth-sage: #7f948d;
  --growth-ink: #17252d;
  width: min(100%, 1180px);
  margin: clamp(44px, 7vw, 88px) auto 0;
  padding: clamp(26px, 4.5vw, 58px);
  color: var(--growth-ink);
  border: 1px solid rgba(19, 38, 51, 0.12);
  background: var(--growth-paper);
  box-shadow: 0 24px 70px rgba(19, 38, 51, 0.09);
}

.growth-model__title {
  margin: 0;
  color: var(--growth-navy);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.8vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-align: center;
}

.growth-model__surface {
  position: relative;
  display: grid;
  min-height: 500px;
  margin-top: clamp(18px, 2.4vw, 30px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto minmax(112px, 0.72fr) auto;
  grid-template-areas:
    ". result ."
    ". action ."
    "organization . personal";
  gap: clamp(16px, 2vw, 26px);
  align-items: center;
}

.growth-model__flows {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.growth-model__flow {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.growth-model__flow--organization { stroke: url(#organization-flow); }
.growth-model__flow--personal { stroke: url(#personal-flow); }
.growth-model__flow--result { stroke: url(#result-flow); stroke-width: 2; }

.growth-model__domain {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  min-height: 168px;
  padding: clamp(22px, 2.8vw, 34px);
  border: 1px solid rgba(19, 38, 51, 0.13);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 16px 38px rgba(19, 38, 51, 0.07);
  text-align: center;
}

.growth-model__trigger {
  appearance: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, translate 180ms ease;
}

.growth-model__domain--result { grid-area: result; }
.growth-model__domain--organization { grid-area: organization; }
.growth-model__domain--personal { grid-area: personal; }

.growth-model__domain-line {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--growth-gold);
}

.growth-model__domain--organization .growth-model__domain-line { background: var(--growth-sage); }
.growth-model__domain--personal .growth-model__domain-line { background: var(--growth-navy); }

.growth-model__domain h4 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.2;
}

.growth-model__domain strong {
  display: block;
  margin-top: 16px;
  color: var(--growth-ink);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.growth-model__domain p {
  margin: 8px 0 0;
  color: rgba(23, 37, 45, 0.68);
  font-size: clamp(0.72rem, 1vw, 0.84rem);
  white-space: nowrap;
}

.growth-model__action {
  z-index: 3;
  display: grid;
  width: clamp(112px, 13vw, 150px);
  aspect-ratio: 1.55;
  margin: auto;
  color: var(--growth-paper);
  border: 6px solid rgba(244, 240, 231, 0.96);
  border-radius: 999px;
  background: var(--growth-navy);
  box-shadow: 0 14px 28px rgba(19, 38, 51, 0.18);
  grid-area: action;
  place-items: center;
  padding: 0;
}

.growth-model__action span {
  font-family: var(--sans);
  font-size: clamp(0.9rem, 1.2vw, 1.02rem);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.growth-model__poa {
  display: grid;
  margin-top: clamp(22px, 3vw, 34px);
  border-top: 1px solid rgba(19, 38, 51, 0.15);
  border-bottom: 1px solid rgba(19, 38, 51, 0.15);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.growth-model__poa > div {
  display: flex;
  min-height: 70px;
  padding: 16px 20px;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.growth-model__poa > div + div { border-left: 1px solid rgba(19, 38, 51, 0.15); }
.growth-model__poa b {
  width: 1.2em;
  color: var(--growth-gold);
  font-family: var(--sans);
  font-size: 1.08rem;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
  text-align: center;
}
.growth-model__poa span { font-size: 0.92rem; font-weight: 600; letter-spacing: 0.06em; }

.growth-model__ai {
  padding: 2px 7px;
  color: var(--growth-gold);
  border: 1px solid rgba(188, 149, 89, 0.68);
  border-radius: 2px;
  background: transparent;
  font-size: 0.72rem !important;
  letter-spacing: 0.04em !important;
}

@keyframes growth-model-ai-highlight {
  0%,
  100% {
    border-color: rgba(188, 149, 89, 0.68);
    background: transparent;
    box-shadow: 0 0 0 0 rgba(188, 149, 89, 0);
  }

  50% {
    border-color: rgba(188, 149, 89, 0.92);
    background: rgba(188, 149, 89, 0.08);
    box-shadow: 0 0 0 2px rgba(188, 149, 89, 0.1);
  }
}

.growth-model__note {
  display: grid;
  width: min(100%, 780px);
  margin: clamp(18px, 2.2vw, 26px) auto 0;
  padding: 14px 18px;
  border-top: 1px solid rgba(188, 149, 89, 0.42);
  border-bottom: 1px solid rgba(188, 149, 89, 0.42);
  background: rgba(188, 149, 89, 0.06);
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  text-align: left;
}

.growth-model__note-label {
  color: var(--growth-gold);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  white-space: nowrap;
}

.growth-model__view {
  margin: 0;
  color: rgba(23, 37, 45, 0.78);
  font-family: var(--sans);
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.6;
  text-align: left;
  white-space: nowrap;
}

.growth-model__popover {
  position: absolute;
  z-index: 12;
  display: block;
  box-sizing: border-box;
  width: clamp(230px, 24vw, 310px);
  padding: 20px 22px 21px;
  color: var(--growth-ink);
  border: 1px solid rgba(188, 149, 89, 0.42);
  border-top: 2px solid var(--growth-gold);
  border-radius: 2px;
  background: var(--growth-paper);
  box-shadow: 0 18px 40px rgba(19, 38, 51, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  text-align: left;
  transition: opacity 200ms ease, transform 200ms cubic-bezier(0.22, 1, 0.36, 1), visibility 200ms ease;
}

.growth-model__popover::before {
  position: absolute;
  width: 22px;
  height: 1px;
  background: rgba(188, 149, 89, 0.76);
  content: "";
}

.growth-model__popover-title {
  display: block;
  color: var(--growth-navy);
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.growth-model__popover-copy {
  display: block;
  margin-top: 8px;
  color: rgba(23, 37, 45, 0.78);
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.72;
}

.growth-model__domain--result .growth-model__popover {
  top: 50%;
  left: calc(100% + 22px);
  transform: translate(12px, -50%);
}

.growth-model__domain--organization .growth-model__popover {
  bottom: 0;
  left: calc(100% + 22px);
  transform: translate(12px, 8px);
}

.growth-model__domain--personal .growth-model__popover {
  right: calc(100% + 22px);
  bottom: 0;
  transform: translate(-12px, 8px);
}

.growth-model__domain--result .growth-model__popover::before,
.growth-model__domain--organization .growth-model__popover::before {
  top: 50%;
  right: 100%;
}

.growth-model__domain--personal .growth-model__popover::before {
  top: 50%;
  left: 100%;
}

.growth-model__trigger:hover .growth-model__popover {
  opacity: 1;
  visibility: visible;
}

.growth-model__trigger:focus-visible .growth-model__popover {
  opacity: 1;
  visibility: visible;
}

.growth-model__trigger.is-active .growth-model__popover {
  opacity: 1;
  visibility: visible;
}

.growth-model__domain--result:hover .growth-model__popover,
.growth-model__domain--result:focus-visible .growth-model__popover,
.growth-model__domain--result.is-active .growth-model__popover {
  transform: translate(0, -50%);
}

.growth-model__domain--organization:hover .growth-model__popover,
.growth-model__domain--organization:focus-visible .growth-model__popover,
.growth-model__domain--organization.is-active .growth-model__popover,
.growth-model__domain--personal:hover .growth-model__popover,
.growth-model__domain--personal:focus-visible .growth-model__popover,
.growth-model__domain--personal.is-active .growth-model__popover {
  transform: none;
}

.growth-model__domain,
.growth-model__action,
.growth-model__poa,
.growth-model__view,
.growth-model__flow {
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.growth-model__flow {
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
}

html.methodology-model-ready .growth-model:not(.is-visible) .growth-model__domain,
html.methodology-model-ready .growth-model:not(.is-visible) .growth-model__action,
html.methodology-model-ready .growth-model:not(.is-visible) .growth-model__poa,
html.methodology-model-ready .growth-model:not(.is-visible) .growth-model__view {
  opacity: 0;
  transform: translateY(10px);
}

html.methodology-model-ready .growth-model:not(.is-visible) .growth-model__flow {
  stroke-dashoffset: 1;
}

html.methodology-model-ready .growth-model.is-visible .growth-model__domain {
  opacity: 1;
  transform: none;
  transition-duration: 420ms;
}

html.methodology-model-ready .growth-model.is-visible .growth-model__action {
  opacity: 1;
  transform: none;
  transition-duration: 360ms;
  transition-delay: 260ms;
}

html.methodology-model-ready .growth-model.is-visible .growth-model__flow {
  stroke-dashoffset: 0;
  transition-duration: 520ms;
  transition-delay: 430ms;
}

html.methodology-model-ready .growth-model.is-visible .growth-model__flow--result {
  transition-delay: 620ms;
}

html.methodology-model-ready .growth-model.is-visible .growth-model__poa,
html.methodology-model-ready .growth-model.is-visible .growth-model__view {
  opacity: 1;
  transform: none;
  transition-duration: 360ms;
  transition-delay: 820ms;
}

html.methodology-model-ready .growth-model.is-visible .growth-model__ai {
  animation: growth-model-ai-highlight 320ms ease-out 860ms 1 both;
}

.growth-model__trigger:hover {
  z-index: 10;
  border-color: rgba(188, 149, 89, 0.72);
  box-shadow: 0 18px 42px rgba(19, 38, 51, 0.12);
  translate: 0 -4px;
}

.growth-model__trigger.is-active {
  z-index: 10;
  border-color: var(--growth-gold);
  background: rgba(188, 149, 89, 0.11);
  box-shadow: 0 0 0 2px rgba(188, 149, 89, 0.12), 0 18px 42px rgba(19, 38, 51, 0.12);
}

.growth-model__trigger:focus-visible {
  z-index: 10;
  border-color: var(--growth-gold);
  outline: 3px solid rgba(188, 149, 89, 0.5);
  outline-offset: 4px;
}

/* Career */

body[data-page="career"] .site-header {
  position: sticky;
  top: 0;
}

.career-path {
  color: var(--dossier-ink);
  background: var(--home-ivory);
}

.career-path__layout {
  display: grid;
  width: min(100%, var(--content-width));
  margin: 0 auto;
  grid-template-columns: minmax(390px, 39%) minmax(0, 61%);
  align-items: start;
}

.career-path__intro {
  position: sticky;
  top: 88px;
  display: flex;
  min-height: calc(100svh - 88px);
  padding: clamp(68px, 8vw, 118px) clamp(38px, 4.4vw, 64px);
  color: var(--home-ivory);
  background: var(--home-navy);
  flex-direction: column;
}

.career-path__index-label,
.career-path__chapter-kicker,
.career-path__key-label {
  margin: 0;
  color: var(--home-gold);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.career-path__title {
  margin: 28px 0 32px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.2vw, 3.875rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.career-path__title span,
.career-path__closing-copy span {
  display: block;
  white-space: nowrap;
}

.career-path__lead {
  max-width: 32rem;
  margin: 0;
  color: var(--home-mist);
  font-size: 0.94rem;
  line-height: 1.95;
}

.career-path__index {
  display: grid;
  margin-top: auto;
  padding-top: 50px;
  gap: 12px;
}

.career-path__index a {
  display: flex;
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(240, 235, 222, 0.14);
  color: var(--home-mist);
  font-size: 0.78rem;
  justify-content: space-between;
  gap: 20px;
}

.career-path__index strong { font-weight: 500; }
.career-path__index span { color: var(--home-gold); }

.career-path__chapter {
  position: relative;
  display: grid;
  min-height: 650px;
  padding: clamp(68px, 8vw, 116px) clamp(44px, 7vw, 104px);
  border-bottom: 1px solid var(--dossier-line);
  align-content: center;
  scroll-margin-top: 88px;
}

.career-path__chapter-number {
  position: absolute;
  top: 48px;
  right: 7%;
  color: rgba(188, 149, 89, 0.34);
  font-family: Georgia, var(--serif);
  font-size: 4.125rem;
  line-height: 1;
}

.career-path__chapter h2 {
  margin: 12px 0 22px;
  font-family: var(--serif);
  font-size: clamp(2.125rem, 3.7vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
}

.career-path__chapter-lead {
  max-width: 45rem;
  margin: 0 0 32px;
  color: var(--dossier-muted);
  font-size: 0.94rem;
  line-height: 1.95;
}

.career-path__facts {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--dossier-ink);
  border-bottom: 1px solid var(--dossier-line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
}

.career-path__facts li {
  min-width: 0;
  margin-right: 18px;
  padding: 22px 18px 23px 0;
  border-right: 1px solid var(--dossier-line);
  color: var(--dossier-muted);
  font-size: 0.8rem;
  line-height: 1.65;
}

.career-path__facts li:last-child {
  margin-right: 0;
  border-right: 0;
}

.career-path__judgment {
  max-width: 48rem;
  margin: 34px 0 0;
  padding-left: 20px;
  border-left: 2px solid var(--home-gold);
  color: var(--dossier-ink);
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.75;
}

.career-path__chapter--key {
  background: linear-gradient(145deg, var(--dossier-paper-deep), var(--home-ivory) 70%);
}

.career-path__key-label {
  position: absolute;
  top: 58px;
  left: clamp(44px, 7vw, 104px);
  font-size: 0.64rem;
}

.career-path__chapter--key .career-path__chapter-kicker { margin-top: 22px; }

.career-path__closing {
  padding: 86px clamp(38px, 5vw, 72px);
  background: var(--dossier-paper-deep);
}

.career-path__closing-copy {
  margin: 0;
  color: var(--dossier-ink);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.025em;
}

.career-path__cta {
  display: inline-flex;
  margin-top: 42px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  color: var(--dossier-ink);
  font-size: 0.84rem;
  align-items: center;
  gap: 12px;
}

.career-path__cta svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

.career-path__index a:focus-visible,
.career-path__cta:focus-visible {
  outline: 2px solid var(--home-gold);
  outline-offset: 5px;
}

/* About */

body[data-page="contact"] {
  color: var(--dossier-ink);
  background: var(--home-ivory);
  font-variant-numeric: tabular-nums;
}

body[data-page="contact"] .site-header {
  color: var(--dossier-ink);
  background: color-mix(in srgb, var(--home-ivory) 92%, transparent);
}

body[data-page="contact"] .site-nav a,
body[data-page="contact"] .site-nav a:hover,
body[data-page="contact"] .site-nav a:focus-visible,
body[data-page="contact"] .site-nav a[aria-current="page"] { color: var(--dossier-ink); }
body[data-page="contact"] .site-nav a::after { background: var(--dossier-gold); }

.about-contact-main { overflow: clip; background: var(--home-ivory); }
.about-section { position: relative; min-height: 100svh; padding: clamp(104px, 10vw, 152px) 0 clamp(82px, 8vw, 124px); }
.about-section .page-index { margin: 0 0 22px; color: var(--dossier-gold); font-size: 0.78rem; letter-spacing: 0.16em; }

.about-profile::before,
.about-trust::before {
  position: absolute;
  top: 15%;
  left: 4%;
  width: 240px;
  height: 160px;
  background-image: radial-gradient(rgba(177, 145, 91, 0.28) 1px, transparent 1px);
  background-size: 14px 14px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent);
  pointer-events: none;
}

.about-profile__layout { display: grid; grid-template-columns: minmax(320px, 40%) minmax(0, 1fr); gap: clamp(54px, 7vw, 112px); align-items: center; }
.about-profile__portrait { position: relative; align-self: end; min-height: min(70svh, 760px); margin: 0; background: transparent; overflow: visible; }
.about-profile__portrait::after { position: absolute; right: 9%; bottom: 4%; left: 9%; height: 18%; border-radius: 50%; background: rgba(180, 151, 101, 0.16); filter: blur(30px); content: ""; z-index: -1; }
.about-profile__portrait img { width: 100%; height: 100%; object-fit: contain; object-position: 50% 100%; }
.about-profile__copy { min-width: 0; }
.about-profile__copy h1 { margin: 0; font-family: var(--serif); font-size: clamp(4.6rem, 8vw, 8rem); font-weight: 400; line-height: 0.96; }
.about-profile__role { margin: 26px 0 0; color: var(--dossier-gold); font-size: clamp(1.2rem, 1.75vw, 1.7rem); }
.about-profile__statement { max-width: 38em; margin: 32px 0 0; color: var(--dossier-muted); font-size: clamp(1rem, 1.2vw, 1.17rem); line-height: 1.85; }
.about-profile__statement p { margin: 0; }
.about-profile__statement p + p { margin-top: 10px; }
.about-profile__perspective { display: flex; max-width: 46rem; margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--dossier-line); align-items: center; gap: 24px; }
.about-profile__perspective span { flex: 0 0 auto; padding-block: 3px; color: var(--dossier-gold); font-size: 0.94rem; font-weight: 600; letter-spacing: 0.08em; line-height: 1.4; }
.about-profile__perspective strong { color: var(--dossier-ink); font-size: clamp(0.9rem, 1.1vw, 1.05rem); font-weight: 500; letter-spacing: 0.04em; white-space: nowrap; }

.about-career { color: var(--home-ivory); background: var(--home-navy); }
.about-career::after { position: absolute; right: 4%; bottom: 7%; width: 86px; height: 116px; border: 1px solid rgba(195, 166, 118, 0.35); border-width: 0 1px 1px 0; content: ""; pointer-events: none; }
.about-section__heading { max-width: 100%; }
.about-section__heading h2 { max-width: none; margin: 0; font-family: var(--serif); font-size: clamp(2.5rem, 3.6vw, 4rem); font-weight: 400; line-height: 1.16; letter-spacing: -0.035em; white-space: nowrap; }
.about-section__intro { max-width: 58em; margin: 26px 0 0; color: var(--dossier-muted); font-size: clamp(1rem, 1.15vw, 1.15rem); line-height: 1.8; }
.about-section__heading--light .about-section__intro { color: var(--home-mist); }
.about-career__intro-line { display: block; white-space: nowrap; }
.about-career__intro-line + .about-career__intro-line { margin-top: 8px; }
.about-career__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: clamp(58px, 7vw, 96px); border-top: 1px solid rgba(240, 235, 222, 0.24); border-bottom: 1px solid rgba(240, 235, 222, 0.24); }
.about-career__item { position: relative; min-width: 0; min-height: 360px; padding: 44px clamp(20px, 2.2vw, 34px) 38px; border-left: 1px solid rgba(240, 235, 222, 0.2); outline: 2px solid transparent; outline-offset: -2px; transition: background 240ms ease, transform 240ms ease, box-shadow 240ms ease; }
.about-career__item:first-child { border-left: 0; }
.about-career__item:hover,
.about-career__item:focus-visible { background: rgba(255, 255, 255, 0.055); box-shadow: inset 0 -3px var(--home-gold); transform: translateY(-4px); }
.about-career__item:focus-visible { outline: 2px solid var(--home-gold); }
.about-career__number { color: var(--home-gold); font-family: var(--sans); font-size: 0.82rem; letter-spacing: 0.14em; }
.about-career__label { margin: 28px 0 0; color: var(--home-gold); font-size: 0.78rem; letter-spacing: 0.1em; }
.about-career__item h3 { min-height: 3.2em; margin: 18px 0 0; font-family: var(--serif); font-size: clamp(1.45rem, 1.7vw, 1.8rem); font-weight: 400; line-height: 1.55; }
.about-career__item h3 span { display: block; white-space: nowrap; }
.about-career__item > p:last-child { margin: 42px 0 0; color: var(--home-mist); font-size: 0.92rem; line-height: 1.85; }

.about-chain { color: var(--dossier-ink); background: var(--dossier-paper); }
.about-chain__stages { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(12px, 1.5vw, 22px); margin: clamp(58px, 7vw, 88px) 0 0; padding: 52px 0 0; list-style: none; }
.about-chain__stages::before { position: absolute; top: 17px; right: 8%; left: 8%; height: 1px; background: linear-gradient(90deg, rgba(177, 145, 91, 0.15), var(--dossier-gold) 14%, var(--dossier-gold) 86%, rgba(177, 145, 91, 0.15)); content: ""; }
.about-chain__stage { position: relative; min-width: 0; min-height: 330px; padding: 34px clamp(18px, 2vw, 30px) 30px; border: 1px solid rgba(23, 38, 49, 0.12); border-top: 3px solid rgba(177, 145, 91, 0.76); border-radius: 10px; background: rgba(255, 255, 255, 0.42); box-shadow: 0 18px 45px rgba(23, 38, 49, 0.06); }
.about-chain__stage:first-child { border-left: 1px solid rgba(23, 38, 49, 0.12); }
.about-chain__stage > span { position: absolute; top: -50px; left: 50%; display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(177, 145, 91, 0.72); border-radius: 50%; color: var(--dossier-gold); background: var(--dossier-paper); box-shadow: 0 0 0 7px var(--dossier-paper); font-family: var(--sans); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.04em; transform: translateX(-50%); }
.about-chain__stage h3 { min-height: 3em; margin: 0; font-family: var(--serif); font-size: clamp(1.25rem, 1.45vw, 1.55rem); font-weight: 400; line-height: 1.45; }
.about-chain__stage > p { min-height: 3.2em; margin: 18px 0 0; color: var(--dossier-muted); font-size: 0.9rem; line-height: 1.7; }
.about-chain__stage ul { margin: 20px 0 0; padding: 20px 0 0; border-top: 1px solid var(--dossier-line); color: var(--dossier-ink); font-size: 0.86rem; line-height: 1.7; list-style: none; }
.about-chain__stage li::before { margin-right: 10px; color: var(--dossier-gold); content: "○"; }
.about-chain__stage li + li { margin-top: 10px; }
.about-chain__thesis { max-width: 64rem; margin: clamp(34px, 4vw, 54px) auto 0; padding: 18px 24px 18px 30px; border-left: 3px solid var(--dossier-gold); color: var(--dossier-ink); background: rgba(255, 255, 255, 0.34); font-family: var(--serif); font-size: clamp(1.25rem, 1.75vw, 1.75rem); line-height: 1.55; text-align: left; }

.about-trust { color: var(--dossier-ink); background: var(--home-ivory); }
.about-trust__boundary { max-width: 58em; margin: 10px 0 0; color: var(--dossier-muted); font-size: 0.82rem; line-height: 1.7; }
.about-logo-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; margin-top: clamp(52px, 6vw, 82px); }
.about-logo { position: relative; display: flex; min-width: 0; min-height: 136px; flex-direction: column; align-items: center; justify-content: center; gap: 12px; margin: 0; padding: 20px 14px 16px; overflow: hidden; border: 1px solid rgba(19, 38, 51, 0.11); background: rgba(255, 255, 255, 0.42); outline: 2px solid transparent; outline-offset: 3px; transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease; }
.about-logo::after { position: absolute; right: 0; bottom: 0; left: 0; height: 2px; background: var(--dossier-gold); content: ""; transform: scaleX(0); transform-origin: left; transition: transform 240ms ease; }
.about-logo img { width: min(86%, 190px); height: 58px; object-fit: contain; filter: none; opacity: 1; pointer-events: none; transform: none; transform-origin: center; transition: transform 240ms ease; }
.about-logo--boost img { width: min(96%, 240px); height: 68px; }
.about-logo--mark img { width: min(90%, 210px); height: 76px; }
.about-logo--focus img { width: min(96%, 250px); height: 78px; }
.about-logo:hover,
.about-logo:focus-visible { background: rgba(255, 255, 255, 0.75); box-shadow: 0 15px 34px rgba(19, 38, 51, 0.1); transform: translateY(-4px); }
.about-logo:hover::after,
.about-logo:focus-visible::after { transform: scaleX(1); }
.about-logo:hover img,
.about-logo:focus-visible img { transform: translateY(-1px) scale(1.035); }
.about-logo:focus-visible { outline: 2px solid var(--dossier-gold); }
.about-logo figcaption { color: var(--dossier-muted); font-size: 0.72rem; line-height: 1.35; text-align: center; }

.about-contact { min-height: min(72svh, 720px); color: var(--home-ivory); background: var(--home-navy); }
.about-contact::after { position: absolute; top: 0; right: 0; width: 150px; height: 150px; border: 1px solid rgba(195, 166, 118, 0.36); border-width: 0 0 1px 1px; background-image: radial-gradient(rgba(195, 166, 118, 0.34) 1px, transparent 1px); background-size: 13px 13px; content: ""; clip-path: polygon(38% 0, 100% 0, 100% 100%); }
.about-contact__layout { display: grid; grid-template-columns: minmax(0, 4fr) minmax(420px, 7fr); gap: clamp(56px, 7vw, 112px); align-items: center; }
.about-contact h2 { max-width: 8em; margin: 0; font-family: var(--serif); font-size: clamp(2.55rem, 3.2vw, 3.6rem); font-weight: 400; line-height: 1.16; letter-spacing: -0.035em; white-space: normal; }
.about-contact__title-line { display: block; white-space: nowrap; }
.about-contact__intro { max-width: 34em; margin: 18px 0 0; color: var(--home-mist); font-size: clamp(0.98rem, 1.1vw, 1.1rem); line-height: 1.8; }
.about-contact__items { border-top: 1px solid rgba(240, 235, 222, 0.28); }
.about-contact__item { display: grid; min-height: 96px; grid-template-columns: 112px minmax(0, 1fr); gap: 24px; align-items: center; border-bottom: 1px solid rgba(240, 235, 222, 0.28); outline: 2px solid transparent; outline-offset: 4px; transition: background 220ms ease, padding 220ms ease; }
.about-contact__item:hover,
.about-contact__item:focus-visible { padding-inline: 14px; background: rgba(255, 255, 255, 0.045); }
.about-contact__item span { color: var(--home-gold); font-size: 0.78rem; letter-spacing: 0.08em; }
.about-contact__item strong { min-width: 0; color: var(--home-ivory); font-size: clamp(1.15rem, 1.45vw, 1.45rem); font-weight: 400; overflow-wrap: anywhere; }
.about-contact__item:focus-visible { outline: 2px solid var(--home-gold); }

/* Case detail */

.case-hero {
  padding: clamp(76px, 9vw, 132px) 0 clamp(58px, 7vw, 94px);
  border-bottom: 1px solid var(--hairline);
}

.case-hero__back {
  margin-bottom: 48px;
}

.case-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(44px, 9vw, 130px);
  align-items: end;
}

.case-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.1rem, 6.4vw, 6.8rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.case-hero__summary {
  margin: 26px 0 0;
  color: var(--muted);
  line-height: 2;
}

.project-card {
  border-top: 1px solid var(--hairline-strong);
}

.project-card__row {
  display: grid;
  min-height: 62px;
  border-bottom: 1px solid var(--hairline);
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 20px;
}

.project-card__row span {
  color: var(--sage-deep);
  font-size: 0.72rem;
}

.project-card__row strong {
  font-size: 0.86rem;
  font-weight: 400;
}

.case-metrics {
  display: grid;
  border-bottom: 1px solid var(--hairline);
  grid-template-columns: repeat(3, 1fr);
}

.case-metric {
  min-height: 190px;
  padding: clamp(30px, 4vw, 54px) var(--page-gutter);
}

.case-metric + .case-metric {
  border-left: 1px solid var(--hairline);
}

.case-metric strong,
.case-metric span {
  display: block;
}

.case-metric strong {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
}

.case-metric span {
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.78rem;
}

.detail-section {
  padding: clamp(80px, 9vw, 136px) 0;
  border-bottom: 1px solid var(--hairline);
}

.detail-section--paper {
  color: var(--ink);
  background: var(--parchment);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(230px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(52px, 10vw, 150px);
}

.detail-section h2 {
  font-size: clamp(2rem, 3.5vw, 3.8rem);
}

.detail-content {
  min-width: 0;
}

.detail-lead {
  margin: 0;
  color: var(--parchment-deep);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.8;
}

.detail-section--paper .detail-lead {
  color: var(--ink);
}

.detail-points,
.artifact-list {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--hairline);
}

.detail-section--paper .detail-points,
.detail-section--paper .artifact-list {
  border-color: var(--ink-line);
}

.detail-points li,
.artifact-list li {
  display: grid;
  padding: 20px 0;
  border-bottom: 1px solid var(--hairline);
  grid-template-columns: 140px 1fr;
  gap: 28px;
}

.detail-section--paper .detail-points li,
.detail-section--paper .artifact-list li {
  border-color: var(--ink-line);
}

.detail-points b,
.artifact-list b {
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 400;
}

.detail-section--paper .detail-points b,
.detail-section--paper .artifact-list b {
  color: var(--sage-deep);
}

.detail-points span,
.artifact-list span {
  color: var(--muted);
}

.detail-section--paper .detail-points span,
.detail-section--paper .artifact-list span {
  color: var(--ink-muted);
}

.solution-path,
.execution-path {
  display: grid;
  margin-top: 42px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  grid-template-columns: repeat(3, 1fr);
}

.solution-step,
.execution-step {
  min-height: 210px;
  padding: 30px;
}

.solution-step + .solution-step,
.execution-step + .execution-step {
  border-left: 1px solid var(--hairline);
}

.solution-step b,
.execution-step b {
  display: block;
  margin-bottom: 16px;
  color: var(--sage);
  font-family: Georgia, serif;
  font-weight: 400;
}

.solution-step span,
.execution-step span {
  color: var(--muted);
  font-size: 0.84rem;
}

.evidence-placeholder {
  display: grid;
  min-height: 230px;
  margin-top: 42px;
  border: 1px dashed var(--ink-line);
  color: var(--ink-muted);
  place-items: center;
  text-align: center;
}

.evidence-placeholder span {
  max-width: 26em;
  padding: 30px;
}

.case-pagination {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.case-pagination a {
  display: flex;
  min-height: 180px;
  padding: 34px var(--page-gutter);
  flex-direction: column;
  justify-content: center;
}

.case-pagination a + a {
  border-left: 1px solid var(--hairline);
  text-align: right;
}

.case-pagination span {
  color: var(--sage-deep);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.case-pagination strong {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.3vw, 2.3rem);
  font-weight: 400;
}

.case-error {
  display: none;
  min-height: 70vh;
  padding: 100px var(--page-gutter);
  place-items: center;
  text-align: center;
}

.case-error.is-visible {
  display: grid;
}

.case-error h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
}

.case-error p {
  color: var(--muted);
}

.case-noscript {
  margin: 48px auto;
  padding: 20px 24px;
  max-width: min(720px, calc(100% - 40px));
  border: 1px solid rgba(19, 38, 51, 0.2);
  background: var(--dossier-paper);
  color: var(--dossier-ink);
  text-align: center;
}

/* Store operating dossier */

body[data-page="case"] {
  color: var(--dossier-ink);
  background: var(--dossier-paper);
}

body[data-page="case"]::before {
  opacity: 0.022;
}

body[data-page="case"] .site-header {
  border-color: var(--dossier-line);
  color: var(--dossier-ink);
  background: rgba(244, 240, 231, 0.96);
}

body[data-page="case"] .site-nav a {
  color: var(--dossier-muted);
}

body[data-page="case"] .site-nav a:hover,
body[data-page="case"] .site-nav a:focus-visible,
body[data-page="case"] .site-nav a[aria-current="page"] {
  color: var(--dossier-ink);
}

body[data-page="case"] .site-nav a::after {
  background: var(--dossier-gold);
}

.store-dossier {
  --dossier-metric-size: clamp(3.35rem, 4.5vw, 5rem);
  overflow: hidden;
  background: var(--dossier-paper);
}

.dossier-hero {
  position: relative;
  padding: clamp(56px, 6vw, 92px) 0 clamp(62px, 6.5vw, 100px);
  background:
    radial-gradient(circle at 74% 38%, rgba(188, 149, 89, 0.09), transparent 32%),
    var(--dossier-paper);
}

.dossier-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: clamp(48px, 6vw, 88px);
  align-items: end;
}

.dossier-hero__back {
  display: inline-flex;
  margin-bottom: clamp(38px, 4vw, 62px);
  color: var(--dossier-muted);
  font-size: 0.82rem;
}

.dossier-number {
  display: flex;
  margin-bottom: 24px;
  align-items: baseline;
  color: var(--dossier-gold);
  font-family: var(--serif);
  line-height: 0.82;
}

.dossier-number::before {
  width: 4px;
  height: 62px;
  margin-right: 18px;
  background: var(--dossier-gold);
  content: "";
}

.dossier-number span {
  color: var(--dossier-ink);
  font-size: clamp(2.5rem, 4.6vw, 5rem);
}

.dossier-number strong {
  margin-left: 18px;
  font-size: clamp(3.4rem, 6vw, 6.7rem);
  font-weight: 400;
}

.dossier-eyebrow {
  margin: 0 0 17px;
  color: var(--dossier-gold);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.dossier-hero h1 {
  max-width: 12em;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.55rem, 3.45vw, 4.2rem);
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: -0.045em;
}

.dossier-title-line {
  display: block;
  white-space: nowrap;
}

.dossier-hero h1 em {
  color: var(--dossier-gold);
  font-style: normal;
}

.dossier-hero__summary {
  max-width: 50em;
  margin: 24px 0 0;
  color: var(--dossier-muted);
  font-size: 0.94rem;
  line-height: 2;
}

.dossier-role {
  display: flex;
  margin: 16px 0 0;
  padding: 8px 0 8px 14px;
  border-left: 2px solid rgba(188, 149, 89, 0.58);
  color: var(--dossier-muted);
  font-size: clamp(1rem, 0.95vw, 1.08rem);
  line-height: 1.65;
  flex-wrap: wrap;
  gap: 3px 14px;
}

.dossier-role b {
  color: var(--dossier-gold);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.dossier-role span {
  min-width: 0;
}

.dossier-card {
  position: relative;
  min-height: 360px;
  padding: clamp(34px, 4vw, 52px) clamp(36px, 4vw, 58px);
  border: 1px solid rgba(188, 149, 89, 0.28);
  border-radius: 3px 13px 13px 3px;
  color: #f4f0e7;
  background: var(--dossier-navy);
  box-shadow: 0 22px 48px rgba(19, 38, 51, 0.22), inset -8px 0 0 rgba(255, 255, 255, 0.025);
}

.dossier-card::after {
  position: absolute;
  top: 0;
  right: 32px;
  bottom: 0;
  width: 1px;
  background: rgba(188, 149, 89, 0.34);
  content: "";
}

.dossier-card__heading {
  display: flex;
  margin-right: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(244, 240, 231, 0.14);
  align-items: baseline;
  justify-content: space-between;
  color: var(--dossier-gold);
}

.dossier-card__heading span {
  font-family: var(--serif);
  font-size: 1.35rem;
}

.dossier-card__heading b {
  font-family: Georgia, serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.16em;
}

.dossier-card dl {
  margin: 8px 22px 0 0;
}

.dossier-card dl div {
  display: grid;
  padding: 17px 0;
  border-bottom: 1px solid rgba(244, 240, 231, 0.11);
  grid-template-columns: 82px 1fr;
  gap: 18px;
}

.dossier-card dt {
  color: var(--dossier-gold);
  font-size: 0.72rem;
}

.dossier-card dd {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.75;
}

.dossier-card__seal {
  position: absolute;
  right: 58px;
  bottom: 36px;
  display: grid;
  width: 70px;
  aspect-ratio: 1;
  border: 1px solid rgba(188, 149, 89, 0.48);
  border-radius: 50%;
  color: rgba(188, 149, 89, 0.62);
  font-family: var(--serif);
  font-size: 0.78rem;
  line-height: 1.2;
  place-items: center;
  text-align: center;
}

.dossier-card__seal::after {
  position: absolute;
  border: 1px solid rgba(188, 149, 89, 0.26);
  border-radius: 50%;
  content: "";
  inset: 5px;
}

.dossier-metrics {
  color: #f4f0e7;
  background: var(--dossier-navy);
}

.dossier-metrics__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.dossier-metrics__grid > div {
  position: relative;
  display: grid;
  min-height: 168px;
  padding: 34px clamp(24px, 4vw, 58px);
  grid-template-columns: auto 1fr;
  align-content: center;
  align-items: baseline;
  column-gap: 9px;
}

.dossier-metrics__grid > div + div {
  border-left: 1px solid rgba(244, 240, 231, 0.13);
}

.dossier-metrics strong {
  color: var(--dossier-gold);
  font-family: Georgia, var(--serif);
  font-size: var(--dossier-metric-size);
  font-weight: 400;
  font-variant-numeric: lining-nums tabular-nums;
  letter-spacing: -0.045em;
  line-height: 1;
}

.dossier-metrics strong,
.result-proof strong {
  font-variant-numeric: lining-nums tabular-nums;
}

.dossier-metrics span {
  font-size: 0.98rem;
}

.dossier-metric__label {
  position: absolute;
  top: 28px;
  left: clamp(24px, 4vw, 58px);
  color: rgba(244, 240, 231, 0.68);
  font-size: 0.72rem !important;
  letter-spacing: 0.12em;
}

.dossier-metrics small {
  grid-column: 1 / -1;
  margin-top: 9px;
  color: rgba(244, 240, 231, 0.58);
  font-size: 0.72rem;
}

.dossier-chapters {
  background: var(--dossier-paper);
}

.dossier-section {
  padding: clamp(72px, 7vw, 112px) 0;
  border-bottom: 1px solid var(--dossier-line);
}

.dossier-section--tint {
  background: #eee8dc;
}

.dossier-section__grid {
  display: grid;
  grid-template-columns: minmax(210px, 0.42fr) minmax(0, 1.58fr);
  gap: clamp(48px, 7vw, 108px);
}

.dossier-section__heading > span {
  display: block;
  width: 2.15ch;
  color: var(--dossier-gold);
  font-family: Arial, "Helvetica Neue", var(--sans);
  font-size: clamp(3.35rem, 4vw, 4.35rem);
  font-weight: 300;
  font-variant-numeric: lining-nums tabular-nums;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.dossier-section__heading h2 {
  margin: 17px 0 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.dossier-section__heading p {
  max-width: 16em;
  margin: 20px 0 0;
  color: var(--dossier-muted);
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.75;
}

.dossier-section__summary--nowrap {
  max-width: none !important;
  white-space: nowrap;
}

.dossier-section__content {
  min-width: 0;
}

.dossier-statement {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 2.7rem);
  font-weight: 600;
  line-height: 1.65;
}

.result-proof {
  display: grid;
  margin-top: 44px;
  grid-template-columns: repeat(3, 1fr);
}

.result-proof > div {
  padding: 4px clamp(16px, 2.5vw, 34px) 10px 0;
}

.result-proof > div + div {
  padding-left: clamp(16px, 2.5vw, 34px);
  border-left: 1px solid var(--dossier-line);
}

.result-proof strong,
.result-proof span {
  display: block;
}

.result-proof strong {
  font-family: Georgia, var(--serif);
  font-size: var(--dossier-metric-size);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.result-proof span {
  margin-top: 12px;
  color: var(--dossier-muted);
  font-size: 0.78rem;
}

.dossier-judgement {
  display: flex;
  margin: 44px 0 0;
  padding-top: 19px;
  border-top: 1px solid var(--dossier-line);
  color: var(--dossier-muted);
  gap: 20px;
  font-size: 0.84rem;
}

.dossier-judgement b {
  flex: 0 0 auto;
  color: var(--dossier-gold);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.dossier-kicker {
  margin: 0 0 20px;
  color: var(--dossier-gold);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.problem-layout,
.bem-layout,
.decision-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(230px, 0.55fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: stretch;
}

.value-tree {
  position: relative;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--dossier-line);
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 18px 44px rgba(19, 38, 51, 0.055);
}

.value-tree > strong {
  position: relative;
  display: block;
  width: min(100%, 260px);
  margin: 0 auto 34px;
  padding: 18px 22px;
  color: #f4f0e7;
  background: var(--dossier-navy);
  box-shadow: 0 10px 24px rgba(19, 38, 51, 0.14);
  font-family: var(--serif);
  font-size: 1.16rem;
  font-weight: 500;
  text-align: center;
}

.value-tree > strong::after {
  position: absolute;
  bottom: -18px;
  left: 50%;
  width: 1px;
  height: 18px;
  background: rgba(188, 149, 89, 0.72);
  content: "";
}

.value-tree > div {
  position: relative;
  display: grid;
  margin-bottom: 14px;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.value-tree > div::before {
  position: absolute;
  top: -16px;
  right: 25%;
  left: 25%;
  height: 1px;
  background: rgba(188, 149, 89, 0.72);
  content: "";
}

.value-tree > div span {
  position: relative;
  padding: 15px 18px;
  border: 1px solid var(--dossier-line);
  background: rgba(244, 240, 231, 0.72);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}

.value-tree > div span::before {
  position: absolute;
  top: -17px;
  left: 50%;
  width: 1px;
  height: 17px;
  background: rgba(188, 149, 89, 0.72);
  content: "";
}

.value-tree ul {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  list-style: none;
}

.value-tree li {
  padding: 12px 7px;
  border: 1px solid rgba(19, 38, 51, 0.08);
  color: #536068;
  background: rgba(19, 38, 51, 0.065);
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
}

.problem-source,
.diagnosis-note,
.decision-filters {
  padding: 28px;
  color: #f4f0e7;
  background: var(--dossier-navy);
}

.problem-source {
  display: grid;
  align-content: center;
  gap: 14px;
}

.problem-source span,
.diagnosis-note > span,
.decision-filters > span {
  display: block;
  margin-bottom: 20px;
  color: var(--dossier-gold);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.problem-source strong {
  display: block;
  padding: 17px 18px;
  border: 1px solid rgba(244, 240, 231, 0.13);
  background: rgba(244, 240, 231, 0.045);
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.problem-source i {
  display: grid;
  width: 50px;
  height: 50px;
  margin: 2px auto;
  border: 1px solid rgba(188, 149, 89, 0.68);
  border-radius: 50%;
  color: var(--dossier-gold);
  font-family: Georgia, serif;
  font-size: clamp(2rem, 2.4vw, 2.6rem);
  font-style: normal;
  line-height: 1;
  place-items: center;
}

.dossier-flow {
  position: relative;
  display: grid;
  margin: 44px 0 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  list-style: none;
}

.dossier-flow::before {
  position: absolute;
  top: 17px;
  right: 16.666%;
  left: 16.666%;
  height: 1px;
  background: linear-gradient(90deg, rgba(188, 149, 89, 0.22), rgba(188, 149, 89, 0.82), rgba(188, 149, 89, 0.22));
  content: "";
}

.dossier-flow li {
  position: relative;
  display: grid;
  padding: 0 18px;
  justify-items: center;
  text-align: center;
}

.dossier-flow li + li::before {
  display: none;
}

.dossier-flow b {
  display: grid;
  width: 34px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #f4f0e7;
  background: var(--dossier-gold);
  box-shadow: 0 0 0 8px var(--dossier-paper);
  font-family: Arial, "Helvetica Neue", var(--sans);
  font-weight: 600;
  place-items: center;
}

.dossier-flow span {
  margin-top: 16px;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 600;
}

.dossier-flow small {
  margin-top: 7px;
  color: var(--dossier-muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.bem-layout {
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.34fr);
}

.bem-matrix {
  display: grid;
  border: 1px solid rgba(19, 38, 51, 0.14);
  border-top: 3px solid var(--dossier-gold);
  background: rgba(255, 255, 255, 0.44);
  box-shadow: 0 20px 40px rgba(19, 38, 51, 0.07);
  grid-template-columns: 120px repeat(3, minmax(0, 1fr));
}

.bem-matrix > div {
  min-height: 132px;
  padding: 22px;
  border-right: 1px solid var(--dossier-line);
  border-bottom: 1px solid var(--dossier-line);
}

.bem-matrix .bem-axis {
  display: grid;
  border-right-color: rgba(244, 240, 231, 0.12);
  border-bottom-color: rgba(244, 240, 231, 0.12);
  color: #f4f0e7;
  background: var(--dossier-navy);
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.06em;
  place-items: center;
  text-align: center;
}

.bem-matrix > div:not(.bem-axis) {
  position: relative;
  background: rgba(255, 255, 255, 0.38);
}

.bem-matrix > div:nth-child(n + 6):not(.bem-axis) {
  background: rgba(19, 38, 51, 0.025);
}

.bem-matrix b,
.bem-matrix span {
  display: block;
}

.bem-matrix b {
  display: flex;
  font-family: var(--serif);
  font-size: 1.12rem;
  align-items: center;
  gap: 10px;
}

.bem-matrix b::before {
  width: 18px;
  height: 2px;
  background: var(--dossier-gold);
  content: "";
  flex: 0 0 auto;
}

.bem-matrix span {
  margin-top: 10px;
  color: var(--dossier-muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

.diagnosis-note {
  padding: 32px;
  border-top: 3px solid var(--dossier-gold);
  background: var(--dossier-navy);
  box-shadow: 0 18px 34px rgba(19, 38, 51, 0.12);
}

.diagnosis-note strong {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
}

.diagnosis-note p {
  margin: 22px 0 0;
  color: rgba(244, 240, 231, 0.74);
  font-size: 0.9rem;
  line-height: 1.8;
}

.diagnosis-flow {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  list-style: none;
}

.diagnosis-flow li {
  position: relative;
  display: grid;
  min-height: 112px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(19, 38, 51, 0.12);
  color: var(--dossier-ink);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 10px 24px rgba(19, 38, 51, 0.045);
  align-content: space-between;
}

.diagnosis-flow li + li::before {
  display: none;
}

.diagnosis-flow b {
  color: var(--dossier-gold);
  font-family: Arial, "Helvetica Neue", var(--sans);
  font-size: 0.76rem;
  font-variant-numeric: lining-nums tabular-nums;
  letter-spacing: 0.12em;
}

.diagnosis-flow span {
  max-width: 9em;
  font-family: var(--serif);
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.45;
}

.dossier-section--dark {
  color: #f4f0e7;
  background: var(--dossier-navy);
}

.dossier-section--dark .dossier-section__heading p,
.dossier-section--dark .dossier-judgement {
  color: rgba(244, 240, 231, 0.64);
}

.dossier-section--dark .dossier-kicker {
  color: var(--dossier-gold);
}

.dossier-section--dark .dossier-judgement {
  border-color: rgba(244, 240, 231, 0.14);
}

.decision-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.decision-matrix > div {
  display: grid;
  min-height: 130px;
  padding: 24px;
  border: 1px solid rgba(244, 240, 231, 0.18);
  align-content: center;
}

.decision-matrix__must {
  color: var(--dossier-navy);
  border-color: var(--dossier-gold) !important;
  background: var(--dossier-gold);
}

.decision-matrix strong,
.decision-matrix span {
  display: block;
}

.decision-matrix strong {
  font-family: var(--serif);
  font-size: 1.42rem;
}

.decision-matrix span {
  margin-top: 8px;
  color: rgba(244, 240, 231, 0.62);
  font-size: 0.8rem;
}

.decision-matrix__must span {
  color: rgba(19, 38, 51, 0.7);
}

.decision-filters {
  padding: 32px;
  border: 1px solid rgba(188, 149, 89, 0.4);
  background: rgba(244, 240, 231, 0.065);
}

.decision-filters ol {
  margin: 0;
  padding-left: 1.25em;
}

.decision-filters li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(244, 240, 231, 0.1);
  font-family: var(--serif);
  font-size: 1.04rem;
}

.milestone-path {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.milestone-path::before {
  position: absolute;
  top: 39px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: rgba(188, 149, 89, 0.58);
  content: "";
}

.milestone-path li {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.milestone-path li::after {
  width: 13px;
  aspect-ratio: 1;
  margin-top: 14px;
  border: 3px solid var(--dossier-paper);
  border-radius: 50%;
  outline: 1px solid var(--dossier-gold);
  background: var(--dossier-gold);
  content: "";
  grid-row: 2;
}

.milestone-path b {
  color: var(--dossier-gold);
  font-size: 0.82rem;
  font-weight: 500;
}

.milestone-path span {
  margin-top: 22px;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  grid-row: 3;
}

.milestone-path__bet {
  margin: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  box-shadow: none;
}

.milestone-path__bet b {
  color: #9d763d;
  font-weight: 700;
}

.milestone-path__bet span {
  color: var(--dossier-ink);
  font-size: 1.18rem;
}

.milestone-path__bet::after {
  width: 18px;
  border: 4px solid var(--dossier-paper) !important;
  outline: 2px solid var(--dossier-gold);
  background: var(--dossier-gold);
  box-shadow: 0 0 0 7px rgba(188, 149, 89, 0.12), inset 0 0 0 2px var(--dossier-paper);
}

.milestone-path__bet span::after {
  display: block;
  width: 38px;
  height: 2px;
  margin: 10px auto 0;
  background: var(--dossier-gold);
  content: "";
}

.artifact-preview {
  display: grid;
  margin-top: 52px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.artifact-preview article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--dossier-line);
  border-top: 3px solid rgba(188, 149, 89, 0.72);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 38px rgba(19, 38, 51, 0.07);
}

.artifact-preview header {
  display: flex;
  margin-bottom: 22px;
  align-items: baseline;
  justify-content: space-between;
}

.artifact-preview header span {
  font-family: var(--serif);
  font-size: 1.16rem;
  font-weight: 600;
}

.artifact-preview header small {
  color: var(--dossier-gold);
  font-size: 0.76rem;
}

.artifact-table {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(19, 38, 51, 0.13);
  border-radius: 3px;
  grid-template-columns: 0.8fr 1.3fr 0.8fr 1fr 0.7fr;
}

.artifact-table > * {
  display: flex;
  min-width: 0;
  min-height: 42px;
  padding: 9px 8px;
  border-right: 1px solid rgba(19, 38, 51, 0.11);
  border-bottom: 1px solid rgba(19, 38, 51, 0.11);
  align-items: center;
}

.artifact-table b {
  color: rgba(244, 240, 231, 0.82);
  background: var(--dossier-navy);
  font-size: 0.7rem;
  font-weight: 600;
}

.artifact-table span {
  color: #46535c;
  background: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
  line-height: 1.4;
}

.artifact-table span:nth-of-type(n + 6) {
  background: rgba(19, 38, 51, 0.035);
}

.artifact-status {
  width: fit-content;
  min-height: 0 !important;
  margin: auto;
  padding: 5px 8px !important;
  border: 1px solid rgba(188, 149, 89, 0.35) !important;
  border-radius: 999px;
  color: #76582f !important;
  background: rgba(188, 149, 89, 0.13) !important;
  font-weight: 600;
  white-space: nowrap;
}

.artifact-status--review {
  border-color: rgba(19, 38, 51, 0.18) !important;
  color: #526069 !important;
  background: rgba(19, 38, 51, 0.07) !important;
}

.review-cards {
  display: grid;
  gap: 10px;
}

.review-cards div {
  display: flex;
  padding: 13px 16px;
  background: rgba(19, 38, 51, 0.055);
  align-items: center;
  justify-content: space-between;
}

.review-cards b {
  font-family: var(--serif);
  font-size: 1rem;
}

.review-cards span {
  color: var(--dossier-muted);
  font-size: 0.76rem;
}

.dossier-closing {
  padding: clamp(68px, 7vw, 108px) 0;
  color: #f4f0e7;
  background: var(--dossier-navy);
  text-align: center;
}

.dossier-closing p {
  max-width: 28em;
  margin: 0 auto;
  color: var(--dossier-gold);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 3.25rem);
  font-weight: 600;
  line-height: 1.65;
}

.dossier-closing ol {
  display: flex;
  margin: 46px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(244, 240, 231, 0.14);
  justify-content: center;
  gap: 0;
  list-style: none;
}

.dossier-closing li {
  display: flex;
  align-items: center;
  color: rgba(244, 240, 231, 0.68);
  font-size: 0.82rem;
}

.dossier-closing li + li::before {
  margin: 0 14px;
  color: var(--dossier-gold);
  content: "→";
}

.dossier-pagination {
  color: #f4f0e7;
  background: #0d1c25;
}

.dossier-pagination span {
  color: var(--dossier-gold);
}

body[data-page="case"] .site-footer {
  border-color: rgba(244, 240, 231, 0.1);
  color: #f4f0e7;
  background: #0d1c25;
}

/* One-strategy evidence dossier */

.strategy-dossier {
  --dossier-paper-light: #faf8f2;
  overflow: clip;
  color: var(--dossier-ink);
  background: var(--dossier-paper-light);
}

.strategy-hero {
  padding: clamp(58px, 7vw, 104px) 0;
  background:
    linear-gradient(90deg, rgba(188, 149, 89, 0.09) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(rgba(188, 149, 89, 0.09) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--dossier-paper-light);
}

.strategy-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: clamp(48px, 7vw, 108px);
}

.strategy-hero__copy {
  min-width: 0;
}

.strategy-hero__back {
  display: inline-flex;
  margin-bottom: clamp(34px, 4vw, 58px);
  color: var(--dossier-muted);
  font-size: 0.8rem;
}

.strategy-hero h1 {
  max-width: none;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.7rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.strategy-hero__title-line {
  display: block;
  white-space: nowrap;
}

.strategy-hero__claim {
  max-width: 24em;
  margin: 26px 0 0;
  color: var(--dossier-gold);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.75vw, 1.85rem);
  font-weight: 600;
  line-height: 1.58;
}

.strategy-hero__summary {
  max-width: 49em;
  margin: 22px 0 0;
  color: var(--dossier-muted);
  font-size: 0.92rem;
  line-height: 1.9;
}

.strategy-role {
  display: grid;
  margin: 30px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--dossier-line);
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 18px;
  color: var(--dossier-muted);
  font-size: 0.82rem;
  line-height: 1.8;
}

.strategy-role b {
  color: var(--dossier-gold);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.strategy-hero .dossier-card {
  align-self: center;
}

.strategy-metrics {
  color: #f4f0e7;
  background: var(--dossier-navy);
}

.strategy-metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.strategy-metrics__grid > div {
  min-width: 0;
}

.strategy-metrics strong {
  color: var(--dossier-gold);
  font-size: clamp(2.75rem, 4vw, 4rem);
}

.strategy-metrics span {
  font-size: clamp(0.92rem, 1.05vw, 1.08rem);
}

.strategy-metrics small {
  font-size: clamp(0.76rem, 0.9vw, 0.88rem);
}

.strategy-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding-block: clamp(64px, 7vw, 104px);
}

.strategy-content {
  min-width: 0;
}

.strategy-section {
  scroll-margin-top: 96px;
  padding: clamp(58px, 6vw, 88px) 0;
  border-bottom: 1px solid var(--dossier-line);
}

.strategy-section:first-child {
  padding-top: 0;
}

.strategy-section__head {
  display: grid;
  margin-bottom: clamp(34px, 4vw, 54px);
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: start;
  gap: clamp(20px, 3vw, 38px);
}

.strategy-section__number {
  color: var(--dossier-gold);
  font-family: Georgia, var(--serif);
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  line-height: 1;
}

.strategy-section__head small {
  color: var(--dossier-gold);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.strategy-section__head h2,
.strategy-section__title {
  max-width: 18em;
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 3.25rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.strategy-section p {
  color: var(--dossier-muted);
}

.strategy-section__head p {
  max-width: 47em;
  margin: 14px 0 0;
  font-size: 0.9rem;
  line-height: 1.85;
}

.strategy-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.strategy-pain-card {
  min-height: 180px;
  padding: 28px;
  border-top: 3px solid var(--dossier-navy);
  background: #fff;
}

.strategy-pain-card h3,
.strategy-before-after h3,
.strategy-sample h3,
.strategy-validation-chain h3,
.strategy-governance h3,
.strategy-mechanism-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
}

.strategy-pain-card p {
  margin: 14px 0 0;
  font-size: 0.78rem;
  line-height: 1.8;
}

.strategy-judgement {
  margin: 24px 0;
  padding: 18px 22px;
  border-left: 4px solid var(--dossier-gold);
  background: var(--dossier-paper);
  font-size: 0.84rem;
  line-height: 1.8;
}

.strategy-judgement b {
  margin-right: 14px;
  color: var(--dossier-gold);
  font-weight: 500;
}

.strategy-before-after {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: 18px;
}

.strategy-before-after article {
  padding: 28px;
  border: 1px solid var(--dossier-line);
  background: #fff;
}

.strategy-before-after small,
.strategy-sample small,
.strategy-validation-chain small {
  display: block;
  margin-bottom: 9px;
  color: var(--dossier-gold);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.strategy-before-after > span {
  align-self: center;
  color: var(--dossier-gold);
  font-family: Georgia, var(--serif);
  font-size: 1.8rem;
}

.strategy-before-after ul {
  margin: 18px 0 0;
  padding-left: 1.2em;
  color: var(--dossier-muted);
  font-size: 0.76rem;
  line-height: 1.9;
}

.strategy-resource-section {
  scroll-margin-top: 184px;
}

.strategy-resource-section .strategy-section__head {
  margin-bottom: 30px;
}

.strategy-resource-problems {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--dossier-line);
  background: rgba(255, 255, 255, 0.42);
}

.strategy-resource-problem {
  display: grid;
  min-width: 0;
  min-height: 124px;
  padding: 22px 24px;
  border-right: 1px solid var(--dossier-line);
  grid-template-columns: 34px minmax(0, 1fr);
  align-content: center;
  gap: 12px;
}

.strategy-resource-problem:last-child {
  border-right: 0;
}

.strategy-resource-problem > span {
  padding-top: 2px;
  color: var(--dossier-gold);
  font-family: Georgia, var(--serif);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.strategy-resource-problem h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.35;
}

.strategy-resource-problem p {
  margin: 8px 0 0;
  font-size: 0.76rem;
  line-height: 1.65;
}

.strategy-resource-decision {
  display: grid;
  margin: 18px 0;
  padding: 20px 26px;
  border-bottom: 3px solid var(--dossier-gold);
  background: var(--dossier-navy);
  grid-template-columns: 118px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
}

.strategy-resource-decision small {
  color: var(--dossier-gold);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.strategy-resource-decision p {
  margin: 0;
  color: #f4f0e7;
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.8vw, 1.38rem);
  font-weight: 600;
  line-height: 1.45;
}

.strategy-resource-shift {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
  align-items: stretch;
}

.strategy-resource-shift article {
  min-width: 0;
  min-height: 156px;
  padding: 24px 28px;
  border: 1px solid var(--dossier-line);
}

.strategy-resource-shift__before {
  background: var(--dossier-paper);
}

.strategy-resource-shift__after {
  border-top: 3px solid var(--dossier-gold) !important;
  color: #f4f0e7;
  background: var(--dossier-navy);
}

.strategy-resource-shift small {
  display: block;
  margin-bottom: 7px;
  color: var(--dossier-gold);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.strategy-resource-shift h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.35;
}

.strategy-resource-shift ul {
  display: flex;
  margin: 20px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: var(--dossier-muted);
  font-size: 0.74rem;
  line-height: 1.7;
  list-style: none;
}

.strategy-resource-shift__after ul {
  color: rgba(244, 240, 231, 0.72);
}

.strategy-resource-shift li + li::before {
  margin-right: 12px;
  color: var(--dossier-gold);
  content: "·";
}

.strategy-resource-connector {
  display: grid;
  position: relative;
  place-items: center;
}

.strategy-resource-connector span {
  position: relative;
  width: 42px;
  height: 1px;
  background: var(--dossier-gold);
}

.strategy-resource-connector span::before,
.strategy-resource-connector span::after {
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  border: 1px solid var(--dossier-gold);
  border-radius: 50%;
  background: var(--dossier-paper);
  content: "";
  transform: translateY(-50%);
}

.strategy-resource-connector span::before {
  left: -1px;
}

.strategy-resource-connector span::after {
  right: -1px;
  background: var(--dossier-gold);
}

.strategy-map-section .strategy-section__head {
  margin-bottom: 28px;
}

.strategy-map-no-break {
  white-space: nowrap;
}

.strategy-map-formula {
  display: grid;
  margin-bottom: 22px;
  padding: 12px 16px;
  border-top: 3px solid var(--dossier-gold);
  border-bottom: 1px solid var(--dossier-line);
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: 10px;
  background: #fff;
}

.strategy-map-formula span {
  display: grid;
  min-height: 62px;
  padding: 8px 12px;
  place-content: center;
  text-align: center;
}

.strategy-map-formula b {
  color: var(--dossier-navy);
  font-family: var(--serif);
  font-size: 1.04rem;
  font-weight: 600;
}

.strategy-map-formula small {
  margin-top: 3px;
  color: var(--dossier-muted);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
}

.strategy-map-formula > strong {
  display: grid;
  color: var(--dossier-gold);
  font-family: Georgia, var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  place-items: center;
}

.strategy-map-formula .strategy-map-formula__result {
  background: var(--dossier-navy);
}

.strategy-map-formula__result b,
.strategy-map-formula__result small {
  color: #f4f0e7;
}

.strategy-map-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: stretch;
  gap: 18px;
}

.strategy-map-matrix-panel {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--dossier-line);
  background: var(--dossier-paper-deep);
}

.strategy-map-axis {
  display: flex;
  margin-bottom: 10px;
  justify-content: space-between;
  align-items: center;
  color: var(--dossier-muted);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
}

.strategy-map-axis b {
  color: var(--dossier-gold);
  font-weight: 600;
}

.strategy-map-swipe {
  display: none;
}

.strategy-matrix-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
}

.strategy-matrix-wrap:focus-visible {
  outline: 3px solid var(--dossier-gold);
  outline-offset: 4px;
}

.strategy-matrix {
  display: grid;
  gap: 4px;
  min-width: 720px;
}

.strategy-matrix__head,
.strategy-matrix__row {
  display: grid;
  grid-template-columns: 108px repeat(4, minmax(0, 1fr));
  gap: 4px;
}

.strategy-matrix__head > *,
.strategy-matrix__row > * {
  display: grid;
  min-height: 52px;
  margin: 0;
  padding: 9px 10px;
  border: 1px solid var(--dossier-line);
  align-items: center;
  background: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  text-align: center;
}

.strategy-matrix__head > * {
  color: #f4f0e7;
  border-color: var(--dossier-navy);
  background: var(--dossier-navy);
}

.strategy-matrix__row > b {
  color: var(--dossier-navy);
  background: #f2ecdf;
}

.strategy-matrix-cell.is-active,
.strategy-matrix__row .is-active {
  position: relative;
  color: var(--dossier-navy);
  border-color: var(--dossier-gold);
  background: #e7d4ad;
  box-shadow: inset 0 0 0 1px var(--dossier-gold), 0 8px 18px rgba(23, 43, 54, 0.1);
}

.strategy-matrix__row .is-active small {
  color: #74582f;
  font-size: 0.56rem;
  letter-spacing: 0.1em;
}

.strategy-matrix__row .is-active b {
  margin-top: 2px;
  font-size: 0.72rem;
  font-weight: 700;
}

.strategy-sample {
  display: flex;
  min-width: 0;
  margin: 0;
  flex-direction: column;
  gap: 12px;
}

.strategy-sample article,
.strategy-sample figure {
  margin: 0;
  padding: 22px;
  border: 1px solid var(--dossier-line);
  background: #fff;
}

.strategy-sample article {
  color: #f4f0e7;
  border-color: var(--dossier-navy);
  background: var(--dossier-navy);
}

.strategy-sample article h3 {
  color: #fff;
  font-size: 1.18rem;
  line-height: 1.45;
}

.strategy-sample__steps {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: strategy-step;
}

.strategy-sample__steps li {
  position: relative;
  min-height: 48px;
  padding: 10px 0 10px 40px;
  border-top: 1px solid rgba(244, 240, 231, 0.16);
  counter-increment: strategy-step;
}

.strategy-sample__steps li::before {
  position: absolute;
  top: 12px;
  left: 0;
  color: var(--dossier-gold);
  content: "0" counter(strategy-step);
  font-family: Georgia, var(--serif);
  font-size: 0.7rem;
}

.strategy-sample__steps b {
  display: block;
  color: #fff;
  font-size: 0.73rem;
  font-weight: 600;
}

.strategy-sample__steps p {
  margin: 3px 0 0;
  color: rgba(244, 240, 231, 0.68);
  font-size: 0.68rem;
  line-height: 1.55;
}

.strategy-sample figure {
  display: grid;
  flex: 1;
  align-content: center;
  padding: 14px;
}

.strategy-sample figure img {
  max-height: 340px;
}

.strategy-map-conclusion {
  display: grid;
  margin: 20px 0 0;
  padding: 16px 20px;
  border-left: 4px solid var(--dossier-gold);
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  background: var(--dossier-paper-deep);
  font-size: 0.8rem;
  line-height: 1.7;
}

.strategy-map-conclusion b {
  color: var(--dossier-gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.strategy-dossier img,
.strategy-sample img,
.strategy-evidence-grid img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.strategy-sample figcaption,
.strategy-evidence-grid figcaption {
  margin-top: 14px;
  color: var(--dossier-muted);
  font-size: 0.72rem;
  line-height: 1.65;
}

.strategy-validation-chain {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 40px;
}

.strategy-validation-chain::before {
  position: absolute;
  top: 50%;
  right: 11%;
  left: 11%;
  height: 1px;
  background: rgba(190, 154, 91, 0.55);
  content: "";
}

.strategy-validation-step {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 205px;
  padding: 30px;
  border: 1px solid var(--dossier-line);
  border-top: 3px solid var(--dossier-gold);
  align-content: center;
  background: #fff;
}

.strategy-validation-step:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -24px;
  width: 7px;
  height: 7px;
  border: 2px solid var(--dossier-paper);
  border-radius: 50%;
  background: var(--dossier-gold);
  box-shadow: 0 0 0 1px rgba(190, 154, 91, 0.36);
  content: "";
  transform: translate(50%, -50%);
}

.strategy-validation-step--field {
  border-color: rgba(23, 43, 54, 0.38);
  border-top-color: var(--dossier-navy);
  background: #f8f5ed;
}

.strategy-validation-step h3 {
  font-size: clamp(1.65rem, 2.5vw, 2.3rem);
  line-height: 1.15;
}

.strategy-validation-step p {
  max-width: 22em;
  margin: 18px 0 0;
  color: var(--dossier-muted);
  font-size: 0.78rem;
  line-height: 1.75;
}

.strategy-cycle {
  display: grid;
  margin-top: 22px;
  border-top: 1px solid var(--dossier-line);
  border-bottom: 1px solid var(--dossier-line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(255, 255, 255, 0.5);
}

.strategy-cycle article {
  display: grid;
  min-height: 124px;
  padding: 20px 24px;
  border-left: 1px solid var(--dossier-line);
  align-content: center;
  text-align: center;
}

.strategy-cycle article:first-child {
  border-left: 0;
}

.strategy-cycle article.strategy-cycle__active {
  background: rgba(23, 43, 54, 0.065);
  box-shadow: inset 0 3px 0 var(--dossier-navy);
}

.strategy-cycle b {
  color: var(--dossier-gold);
  font-family: Georgia, var(--serif);
  font-size: clamp(2.2rem, 3vw, 3.1rem);
  font-variant-numeric: tabular-nums lining-nums;
  font-weight: 400;
  line-height: 1;
}

.strategy-cycle span {
  margin-top: 5px;
  color: var(--dossier-ink);
  font-family: var(--serif);
  font-size: 0.88rem;
  font-weight: 600;
}

.strategy-cycle p {
  margin: 8px 0 0;
  color: var(--dossier-muted);
  font-size: 0.68rem;
  line-height: 1.55;
}

.strategy-governance {
  padding: clamp(30px, 4vw, 48px);
  border-top: 3px solid rgba(198, 163, 102, 0.82);
  color: #f4f0e7;
  background: var(--dossier-navy);
}

.strategy-governance__head {
  display: grid;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(244, 240, 231, 0.14);
  grid-template-columns: minmax(130px, 0.32fr) minmax(0, 1fr);
  align-items: end;
  gap: clamp(20px, 4vw, 54px);
}

.strategy-governance__head span {
  color: var(--dossier-gold);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
}

.strategy-governance__head h3 {
  color: #f4f0e7;
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  line-height: 1.25;
}

.strategy-governance__roles {
  display: grid;
  margin-top: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.strategy-governance__roles article {
  min-height: 92px;
  padding: 8px 28px 8px 0;
}

.strategy-governance__roles article + article {
  padding-left: 26px;
  border-left: 1px solid rgba(244, 240, 231, 0.14);
}

.strategy-governance__roles b {
  color: var(--dossier-gold);
  font-size: 0.86rem;
  font-weight: 600;
}

.strategy-governance__roles p {
  margin: 12px 0 0;
  color: rgba(244, 240, 231, 0.78);
  font-size: 0.78rem;
  line-height: 1.7;
}

.strategy-yearline {
  display: grid;
  margin: 28px 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
}

.strategy-yearline::before {
  display: none;
}

.strategy-yearline li {
  display: grid;
  min-height: 108px;
  padding: 18px 20px 20px;
  border-top: 3px solid rgba(198, 163, 102, 0.78);
  background: rgba(255, 255, 255, 0.5);
  align-content: start;
  gap: 10px;
}

.strategy-yearline li::after {
  display: none;
}

.strategy-yearline b {
  color: var(--dossier-gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.strategy-yearline span {
  color: var(--dossier-navy);
  font-family: var(--serif);
  font-size: clamp(0.86rem, 1.1vw, 1rem);
  line-height: 1.45;
}

.strategy-mechanism-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.strategy-mechanism-card {
  min-height: 154px;
  padding: 24px 22px;
  border: 1px solid var(--dossier-line);
  border-top: 3px solid var(--dossier-navy);
  background: rgba(255, 255, 255, 0.72);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.strategy-mechanism-card:hover {
  border-color: rgba(198, 163, 102, 0.62);
  box-shadow: 0 14px 28px rgba(18, 36, 47, 0.08);
  transform: translateY(-3px);
}

.strategy-mechanism-card b {
  color: var(--dossier-gold);
  font-family: Georgia, var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
}

.strategy-mechanism-card h3 {
  margin-top: 14px;
  font-size: 0.94rem;
}

.strategy-mechanism-card p {
  margin: 14px 0 0;
  color: var(--dossier-muted);
  font-size: clamp(0.78rem, 0.9vw, 0.88rem);
  line-height: 1.6;
}

.strategy-return-loop {
  display: grid;
  margin: 0 0 28px;
  padding: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  list-style: none;
}

.strategy-return-loop li {
  position: relative;
  padding: 17px 14px;
  border-top: 2px solid var(--dossier-gold);
  background: #fff;
  font-family: var(--serif);
  font-size: 0.86rem;
  text-align: center;
}

.strategy-return-loop li + li::before {
  position: absolute;
  top: 50%;
  left: -17px;
  color: var(--dossier-gold);
  content: "→";
  transform: translateY(-50%);
}

.strategy-evidence-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  align-items: start;
  gap: 18px;
}

.strategy-evidence-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.strategy-evidence-grid figure {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--dossier-line);
  background: #fff;
}

.strategy-evidence-grid figcaption b {
  display: block;
  margin-bottom: 3px;
  color: var(--dossier-ink);
  font-family: var(--serif);
}

.strategy-facts {
  display: grid;
  margin-top: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--dossier-navy);
}

.strategy-facts > div {
  padding: 30px 25px;
  text-align: center;
}

.strategy-facts > div + div {
  border-left: 1px solid rgba(244, 240, 231, 0.14);
}

.strategy-facts b,
.strategy-facts span {
  display: block;
}

.strategy-facts b {
  color: var(--dossier-gold);
  font-family: Georgia, var(--serif);
  font-size: clamp(2.75rem, 4vw, 4rem);
  font-weight: 400;
  font-variant-numeric: lining-nums tabular-nums;
  line-height: 1;
}

.strategy-facts span {
  margin-top: 10px;
  color: rgba(244, 240, 231, 0.65);
  font-size: clamp(0.84rem, 1vw, 1rem);
  line-height: 1.5;
}

.strategy-closing {
  padding: clamp(72px, 8vw, 122px) 0;
  color: #f4f0e7;
  background: var(--dossier-navy);
  text-align: center;
}

.strategy-closing p {
  max-width: 31em;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 3.15rem);
  font-weight: 600;
  line-height: 1.65;
}

.strategy-closing em {
  color: var(--dossier-gold);
  font-style: normal;
}

.strategy-closing ol {
  display: flex;
  margin: 38px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(244, 240, 231, 0.14);
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 0;
  list-style: none;
}

.strategy-closing li {
  color: rgba(244, 240, 231, 0.64);
  font-size: 0.7rem;
}

.strategy-closing li + li::before {
  margin: 0 12px;
  color: var(--dossier-gold);
  content: "→";
}

.page-close {
  padding: clamp(80px, 10vw, 150px) 0;
  text-align: center;
}

.page-close h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.page-close p {
  max-width: 46em;
  margin: 24px auto 0;
  color: var(--muted);
}

.page-close .close-actions {
  justify-content: center;
}

.site-footer {
  border-top: 1px solid var(--hairline);
}

.site-footer .page-shell {
  display: flex;
  min-height: 90px;
  color: var(--sage-deep);
  font-size: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.site-footer span:first-child {
  color: var(--parchment);
  font-family: var(--serif);
}

@keyframes practice-chapter-enter {
  from {
    opacity: 0;
    translate: 0 12px;
  }

  to {
    opacity: 1;
    translate: none;
  }
}

.reveal {
  opacity: 1;
  transform: none;
}

html.practice-entry-ready .practices-page .reveal {
  opacity: 0;
  translate: 0 12px;
  transition: opacity 650ms ease, translate 650ms ease;
}

html.practice-entry-ready .practices-page .practice-chapter.reveal {
  transition: opacity 650ms ease, translate 650ms ease,
    background-color 220ms ease, transform 220ms ease;
}

html.practice-entry-ready .practices-page .reveal.is-visible {
  opacity: 1;
  translate: none;
}

html.practice-entry-ready .practices-page .practice-chapter.reveal.is-visible {
  animation: practice-chapter-enter 540ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--practice-entry-delay);
}

@media (min-width: 1061px) and (max-height: 900px) {
  .practice-overview {
    padding-top: clamp(62px, 8vh, 72px);
    padding-bottom: 32px;
  }

  .practice-overview__intro {
    padding-top: 12px;
  }

  .practice-overview__index {
    margin-bottom: 18px;
  }

  .practice-overview__intro h1 {
    font-size: clamp(3.15rem, 4.15vw, 4.25rem);
  }

  .practice-overview__lead {
    margin-top: 26px;
    padding-top: 14px;
    padding-bottom: 12px;
    font-size: 0.82rem;
    line-height: 1.7;
  }

  .practice-chapter-grid {
    gap: 10px;
  }

  .practice-chapter {
    padding: clamp(20px, 1.65vw, 24px);
  }

  .practice-chapter__number {
    line-height: 1.5;
  }

  .practice-chapter h2 {
    margin-top: 8px;
    font-size: clamp(1.15rem, 1.45vw, 1.4rem);
    line-height: 1.35;
  }

  .practice-chapter__value {
    margin-top: 6px;
    line-height: 1.55;
  }

  .practice-chapter__metric {
    padding-top: 12px;
    font-size: clamp(1.58rem, 2vw, 1.95rem);
    line-height: 1.2;
  }

  .practice-chapter__meaning {
    margin-top: 6px;
    line-height: 1.5;
  }

  .practice-chapter__proof {
    margin-top: 3px;
    line-height: 1.45;
  }

  .practice-chapter__entry {
    margin-top: 10px;
    line-height: 1.45;
  }
}

@media (min-width: 1600px) {
  body[data-page="case"] {
    --content-width: 1760px;
    --page-gutter: clamp(56px, 4.2vw, 88px);
  }

  .strategy-body {
    grid-template-columns: 1fr;
  }

  .strategy-hero__summary,
  .strategy-section p,
  .strategy-evidence-grid figcaption {
    font-size: 1rem;
  }

  .dossier-hero {
    padding: 84px 0 110px;
  }

  .dossier-hero__layout {
    grid-template-columns: minmax(0, 1.22fr) minmax(520px, 0.78fr);
    gap: clamp(80px, 6vw, 120px);
  }

  .dossier-hero__back { font-size: 0.95rem; }
  .dossier-eyebrow { font-size: 0.9rem; }

  .dossier-hero h1 {
    max-width: none;
    font-size: clamp(4.15rem, 3.7vw, 4.85rem);
  }

  .dossier-hero__summary {
    max-width: 60em;
    font-size: 1.08rem;
    line-height: 1.9;
  }

  .dossier-card {
    min-height: 420px;
    padding: 52px 64px;
  }

  .dossier-card__heading span { font-size: 1.55rem; }
  .dossier-card dt { font-size: 0.84rem; }
  .dossier-card dd { font-size: 1rem; }

  .dossier-metrics__grid > div {
    min-height: 196px;
    padding-block: 42px;
  }

  .dossier-metrics span { font-size: 1.08rem; }
  .dossier-metric__label { font-size: 0.82rem !important; }
  .dossier-metrics small { font-size: 0.84rem; }

  .dossier-section__grid {
    grid-template-columns: minmax(280px, 0.44fr) minmax(0, 1.56fr);
    gap: clamp(88px, 7vw, 128px);
  }

  .dossier-section__heading p {
    max-width: 18em;
    font-size: 1.2rem;
  }

  .dossier-statement { font-size: clamp(1.8rem, 2.2vw, 3rem); }

  .result-proof span,
  .dossier-kicker,
  .dossier-judgement { font-size: 0.92rem; }

  .dossier-judgement { font-size: 0.98rem; }

  .value-tree li,
  .problem-source > span,
  .diagnosis-note > span,
  .decision-filters > span,
  .dossier-flow small,
  .bem-matrix span,
  .diagnosis-flow li,
  .decision-matrix span,
  .milestone-path b,
  .artifact-preview header small,
  .review-cards span,
  .dossier-closing li { font-size: 0.82rem; }

  .diagnosis-note p { font-size: 0.92rem; }
  .artifact-table b { font-size: 0.78rem; }
  .review-cards b { font-size: 1rem; }
}

@media (max-width: 1060px) {
  .strategy-hero__layout,
  .strategy-body {
    grid-template-columns: 1fr;
  }

  .strategy-map-stage,
  .strategy-sample,
  .strategy-governance__roles {
    grid-template-columns: 1fr;
  }

  .strategy-validation-chain {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .strategy-validation-chain::before {
    top: 9%;
    right: auto;
    bottom: 9%;
    left: 26px;
    width: 1px;
    height: auto;
  }

  .strategy-validation-step {
    min-height: 0;
    padding: 24px 26px 24px 42px;
  }

  .strategy-validation-step:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -16px;
    left: 26px;
    transform: translate(-50%, 50%);
  }

  .strategy-governance__roles article,
  .strategy-governance__roles article + article {
    padding: 16px 0;
    border-top: 1px solid rgba(244, 240, 231, 0.14);
    border-left: 0;
  }

  .dossier-hero__layout {
    grid-template-columns: 1fr;
  }

  .dossier-title-line {
    display: inline;
    white-space: normal;
    text-wrap: balance;
  }

  .dossier-hero h1 {
    text-wrap: balance;
  }

  .dossier-section__summary--nowrap {
    white-space: normal;
    text-wrap: balance;
  }

  .problem-layout,
  .bem-layout,
  .decision-layout {
    grid-template-columns: 1fr;
  }

  .problem-source,
  .diagnosis-note,
  .decision-filters {
    min-height: 0;
  }

  .home-hero {
    gap: clamp(36px, 5vw, 60px);
  }

  .home-hero h1 {
    font-size: clamp(4rem, 7.7vw, 5.4rem);
  }

  .home-note-panel {
    margin-right: 0;
    padding: 34px;
  }

  .home-focus {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-focus span {
    justify-content: center;
  }

  .practice-overview__layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .practice-overview__intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 48px;
  }

  .practice-overview__intro .practice-overview__index {
    grid-column: 1 / -1;
  }

  .growth-model {
    padding: clamp(26px, 4vw, 42px);
  }

  .growth-model__surface {
    min-height: 520px;
  }

}

@media (min-width: 761px) and (max-height: 760px) {
  .home-hero {
    padding-top: 112px;
    padding-bottom: 34px;
  }

  .home-note-panel {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .home-hero h1 {
    font-size: clamp(4rem, 6.4vw, 6rem);
  }

  .home-hero__annotation {
    margin-top: 22px;
  }

  .home-note-id {
    margin-bottom: 18px;
  }

  .home-focus {
    margin-top: 20px;
  }

  .home-page .hero-actions {
    margin-top: 22px;
  }
}

@media (max-width: 992px) {
  body[data-page="career"] .site-header { position: relative; }

  .about-profile__layout { grid-template-columns: 1fr; }
  .about-profile__portrait { width: min(100%, 680px); min-height: 0; aspect-ratio: 5 / 4; }
  .about-career__intro-line { white-space: normal; }
  .about-career__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-career__item:nth-child(3) { border-left: 0; border-top: 1px solid rgba(240, 235, 222, 0.2); }
  .about-career__item:nth-child(4) { border-top: 1px solid rgba(240, 235, 222, 0.2); }
  .about-chain__stages { grid-template-columns: repeat(2, minmax(0, 1fr)); padding-top: 0; }
  .about-chain__stages::before { display: none; }
  .about-chain__stage { min-height: 300px; padding-top: 68px; }
  .about-chain__stage:nth-child(3),
  .about-chain__stage:nth-child(4) { border: 1px solid rgba(23, 38, 49, 0.12); border-top: 3px solid rgba(177, 145, 91, 0.76); }
  .about-chain__stage > span { top: 20px; left: 28px; box-shadow: none; transform: none; }
  .about-logo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .about-contact__layout { grid-template-columns: 1fr; align-items: start; }

  .career-path__layout { grid-template-columns: 1fr; }

  .career-path__intro {
    position: relative;
    top: auto;
    min-height: 670px;
  }

  .career-path__index { margin-top: 50px; }

  .career-path__chapter {
    min-height: 0;
    padding: 76px var(--page-gutter);
    scroll-margin-top: 0;
  }

  .career-path__facts { grid-template-columns: 1fr; }

  .career-path__facts li {
    margin: 0;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--dossier-line);
  }

  .career-path__facts li:last-child { border-bottom: 0; }
  .career-path__key-label { left: var(--page-gutter); }
  .career-path__closing { padding: 70px var(--page-gutter); }
  .career-path__closing-copy span { white-space: normal; }
}

@media (max-width: 640px) {
  .about-section { min-height: 0; padding: 92px 0 72px; }
  .about-profile { padding-top: 72px; }
  .about-profile__layout { gap: 30px; }
  .about-profile__portrait { width: min(78vw, 290px); aspect-ratio: 5 / 4; justify-self: center; overflow: clip; }
  .about-profile__portrait img { object-fit: cover; object-position: 50% 16%; transform: scale(1.04); transform-origin: 50% 18%; }
  .about-profile__copy h1 { font-size: clamp(4.3rem, 24vw, 6rem); }
  .about-profile__perspective { align-items: flex-start; flex-direction: column; gap: 10px; }
  .about-profile__perspective strong { white-space: normal; }
  .about-section__heading h2 { white-space: normal; }
  .about-section__intro { margin-top: 20px; }
  .about-career__intro-line { white-space: normal; }
  .about-career__grid { grid-template-columns: 1fr; }
  .about-career__item { min-height: 0; padding: 34px 22px 32px; border-top: 1px solid rgba(240, 235, 222, 0.2); border-left: 0; }
  .about-career__item:first-child { border-top: 0; }
  .about-career__item h3 { min-height: 0; }
  .about-career__item > p:last-child { margin-top: 24px; }
  .about-chain__stages { grid-template-columns: 1fr; gap: 14px; padding: 0 0 0 44px; }
  .about-chain__stages::before { top: 18px; bottom: 18px; left: 16px; display: block; width: 1px; height: auto; background: rgba(177, 145, 91, 0.45); }
  .about-chain__stage { min-height: 0; padding: 26px 20px 26px 24px; border: 1px solid rgba(23, 38, 49, 0.12); border-top: 3px solid rgba(177, 145, 91, 0.76); }
  .about-chain__stage:first-child { border: 1px solid rgba(23, 38, 49, 0.12); border-top: 3px solid rgba(177, 145, 91, 0.76); }
  .about-chain__stage > span { top: 24px; left: -45px; box-shadow: 0 0 0 6px var(--dossier-paper); transform: none; }
  .about-chain__stage h3,
  .about-chain__stage > p { min-height: 0; }
  .about-chain__thesis { margin-top: 30px; padding: 16px 18px 16px 22px; text-align: left; }
  .about-logo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
  .about-logo { min-height: 108px; padding: 14px 7px 11px; }
  .about-logo img { max-width: 92%; height: 38px; }
  .about-logo--boost img { width: 96%; height: 46px; }
  .about-logo--mark img { width: 92%; height: 52px; }
  .about-logo--focus img { width: 96%; height: 50px; }
  .about-logo figcaption { font-size: 0.65rem; }
  .about-contact { min-height: 0; padding: 76px 0 60px; }
  .about-contact h2 { max-width: none; font-size: clamp(2.25rem, 10.8vw, 2.75rem); white-space: normal; }
  .about-contact__title-line { white-space: nowrap; }
  .about-contact__item { grid-template-columns: 1fr; gap: 10px; align-content: center; }
}

@media (max-width: 760px) {
  :root {
    --page-gutter: 20px;
  }

  .strategy-hero {
    padding-block: 42px 56px;
  }

  .strategy-hero h1 {
    font-size: clamp(2.2rem, 10.4vw, 3rem);
  }

  .strategy-hero__claim {
    margin-top: 22px;
    font-size: 1.2rem;
  }

  .strategy-hero__summary {
    margin-top: 18px;
    font-size: 0.9rem;
    line-height: 1.82;
  }

  .strategy-role {
    margin-top: 22px;
    padding-top: 16px;
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .strategy-metrics__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .strategy-body {
    gap: 0;
    padding-block: 54px;
  }

  .strategy-section {
    scroll-margin-top: 20px;
    padding-block: 52px;
  }

  .strategy-section__head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .strategy-section__number {
    font-size: 2.5rem;
  }

  .strategy-pain-grid,
  .strategy-evidence-grid {
    grid-template-columns: 1fr;
  }

  .strategy-governance__head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 10px;
  }

  .strategy-governance__roles {
    margin-top: 14px;
  }

  .strategy-yearline,
  .strategy-mechanism-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .strategy-yearline {
    gap: 10px;
  }

  .strategy-yearline li {
    min-height: 98px;
    padding: 16px;
  }

  .strategy-mechanism-card {
    min-height: 132px;
    padding: 18px 16px;
  }

  .strategy-mechanism-card:last-child {
    grid-column: 1 / -1;
  }

  .strategy-resource-section {
    scroll-margin-top: 20px;
  }

  .strategy-resource-section .strategy-section__head {
    margin-bottom: 22px;
  }

  .strategy-resource-problems {
    grid-template-columns: 1fr;
  }

  .strategy-resource-problem {
    min-height: auto;
    padding: 16px 2px;
    border-right: 0;
    border-bottom: 1px solid var(--dossier-line);
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
  }

  .strategy-resource-problem:last-child {
    border-bottom: 0;
  }

  .strategy-resource-problem p {
    margin-top: 5px;
    font-size: 0.74rem;
  }

  .strategy-resource-decision {
    margin-block: 16px;
    padding: 18px 20px;
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .strategy-resource-decision p {
    font-size: 1.02rem;
    line-height: 1.55;
  }

  .strategy-resource-shift {
    grid-template-columns: 1fr;
  }

  .strategy-resource-shift article {
    min-height: auto;
    padding: 21px 22px;
  }

  .strategy-resource-shift ul {
    margin-top: 15px;
    gap: 6px 9px;
    font-size: 0.7rem;
  }

  .strategy-resource-shift li + li::before {
    margin-right: 9px;
  }

  .strategy-resource-connector {
    min-height: 42px;
  }

  .strategy-resource-connector span {
    width: 1px;
    height: 26px;
  }

  .strategy-resource-connector span::before,
  .strategy-resource-connector span::after {
    top: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .strategy-resource-connector span::before {
    top: -1px;
  }

  .strategy-resource-connector span::after {
    right: auto;
    bottom: -1px;
  }

  .strategy-map-section .strategy-section__head {
    margin-bottom: 20px;
  }

  .strategy-map-formula {
    padding: 10px;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 6px;
  }

  .strategy-map-formula span {
    min-height: 54px;
    padding: 6px 8px;
  }

  .strategy-map-formula > strong:nth-of-type(2) {
    display: none;
  }

  .strategy-map-formula .strategy-map-formula__result {
    min-height: 48px;
    grid-column: 1 / -1;
  }

  .strategy-map-formula b {
    font-size: 0.84rem;
  }

  .strategy-map-stage {
    grid-template-columns: 1fr;
  }

  .strategy-map-matrix-panel {
    padding: 12px;
  }

  .strategy-map-swipe {
    display: flex;
    margin: 0 0 10px;
    justify-content: space-between;
    align-items: center;
    color: var(--dossier-muted);
    font-size: 0.66rem;
    letter-spacing: 0.04em;
  }

  .strategy-map-swipe b {
    color: var(--dossier-gold);
    font-size: 1rem;
    font-weight: 500;
  }

  .strategy-matrix-wrap {
    scrollbar-gutter: stable;
    -webkit-overflow-scrolling: touch;
  }

  .strategy-matrix__row > b {
    position: sticky;
    left: 0;
    z-index: 2;
    box-shadow: 6px 0 12px rgba(23, 43, 54, 0.08);
  }

  .strategy-before-after,
  .strategy-return-loop {
    grid-template-columns: 1fr;
  }

  .strategy-before-after > span {
    justify-self: center;
    transform: rotate(90deg);
  }

  .strategy-sample article,
  .strategy-sample figure,
  .strategy-validation-step {
    padding: 18px;
  }

  .strategy-validation-step {
    padding-left: 36px;
  }

  .strategy-validation-chain {
    gap: 18px;
  }

  .strategy-validation-step:not(:last-child)::after {
    bottom: -12px;
    left: 22px;
  }

  .strategy-validation-chain::before {
    left: 22px;
  }

  .strategy-validation-step h3 {
    font-size: 1.55rem;
  }

  .strategy-validation-step p {
    margin-top: 12px;
    font-size: 0.72rem;
  }

  .strategy-cycle article {
    min-height: 112px;
    padding: 14px 7px;
  }

  .strategy-cycle b {
    font-size: clamp(2rem, 10vw, 2.45rem);
  }

  .strategy-cycle span {
    font-size: 0.76rem;
  }

  .strategy-cycle p {
    font-size: 0.6rem;
    line-height: 1.45;
  }

  .strategy-sample figure {
    padding: 12px;
  }

  .strategy-sample figure img {
    max-height: none;
  }

  .strategy-map-conclusion {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .strategy-map-conclusion b {
    font-size: 0.72rem;
  }

  .strategy-yearline::before,
  .strategy-yearline li::after {
    display: none;
  }

  .strategy-yearline span {
    margin-top: 3px;
    grid-row: auto;
  }

  .strategy-return-loop {
    gap: 8px;
  }

  .strategy-return-loop li + li::before {
    display: none;
  }

  .strategy-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .strategy-facts > div + div {
    border-left: 0;
  }

  .strategy-facts > div:nth-child(even) {
    border-left: 1px solid rgba(244, 240, 231, 0.14);
  }

  .strategy-facts > div:nth-child(n + 3) {
    border-top: 1px solid rgba(244, 240, 231, 0.14);
  }

  .strategy-closing p br {
    display: none;
  }

  .site-header__inner {
    min-height: 72px;
  }

  .brand {
    max-width: calc(100% - 58px);
    overflow: hidden;
    font-size: 0.98rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    margin-left: auto;
    padding: 0;
    border: 0;
    color: var(--parchment);
    background: transparent;
    place-content: center;
    gap: 7px;
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: currentColor;
    transition: transform 200ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    margin: 0;
    padding: 0 var(--page-gutter);
    overflow: hidden;
    border-bottom: 1px solid transparent;
    background: rgba(25, 28, 27, 0.985);
    gap: 0;
    transition: max-height 260ms ease, padding 260ms ease, border-color 260ms ease;
  }

  .site-nav.is-open {
    max-height: 340px;
    padding-top: 10px;
    padding-bottom: 18px;
    border-color: var(--hairline);
  }

  .site-nav a {
    border-bottom: 1px solid var(--hairline);
  }

  .site-nav a::after {
    display: none;
  }

  .home-page .site-nav {
    max-height: 0;
    background: rgba(21, 36, 46, 0.985);
  }

  .home-page .site-nav.is-open {
    max-height: 340px;
  }

  .home-page .site-header {
    position: absolute;
  }

  .home-hero {
    min-height: 100svh;
    padding-top: 84px;
    padding-bottom: 18px;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 32px;
  }

  .home-hero__statement::before {
    display: none;
  }

  .home-note-id {
    margin-bottom: 8px;
    font-size: 0.66rem;
  }

  .home-hero h1 {
    max-width: none;
    font-size: clamp(3.35rem, 17vw, 4.15rem);
  }

  .home-hero h1 span {
    display: block;
  }

  .home-hero__annotation {
    margin-top: 8px;
    font-size: clamp(0.78rem, 3.9vw, 0.94rem);
    line-height: 1.5;
  }

  .home-hero__annotation span {
    display: inline;
  }

  .home-hero__intro {
    font-size: 0.72rem;
    line-height: 1.72;
  }

  .home-note-panel {
    width: 100%;
    margin: 0;
    padding: 28px 18px 16px;
    border-radius: 18px;
  }

  .home-note-panel__tab {
    top: -11px;
    left: 18px;
    padding: 5px 12px;
    font-size: 0.62rem;
  }

  .home-note-panel__label {
    margin-bottom: 10px;
  }

  .home-note-panel__identity {
    margin-bottom: 10px;
    font-size: 0.78rem;
  }

  .home-focus {
    margin-top: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .home-focus span {
    justify-content: center;
    padding: 5px 6px;
    font-size: 0.65rem;
    white-space: nowrap;
  }

  .home-page .hero-actions {
    display: grid;
    margin-top: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .home-page .primary-link,
  .home-page .secondary-link {
    justify-content: center;
    min-width: 0;
    min-height: 38px;
    padding: 7px 6px;
    font-size: 0.68rem;
  }

  .home-opening__brand {
    top: max(18px, env(safe-area-inset-top));
    left: 20px;
    font-size: 0.95rem;
  }

  .home-opening__trigger {
    width: min(74vw, 300px);
    max-width: calc((100svh - 84px) * 0.74);
  }

  .home-opening__book {
    transform: translateX(-7%);
  }

  .home-opening__cover {
    padding: 15% 14% 10% 18%;
  }

  .home-opening__spine {
    left: 18px;
    width: 9px;
  }

  .home-opening__title {
    margin-top: 29%;
  }

  .home-opening__title span {
    font-size: clamp(2.25rem, 10.2vw, 2.55rem);
  }

  .home-opening__title strong {
    font-size: clamp(2.05rem, 9vw, 2.3rem);
  }

  .home-opening__rule {
    width: 38px;
  }

  .home-opening__meta {
    margin-top: 25px;
    font-size: 11px;
    letter-spacing: 0.02em;
  }

  .home-opening__evidence {
    margin-top: 7px;
    font-size: 9px;
    letter-spacing: 0.14em;
  }

  .home-opening__elastic {
    width: 7px;
  }

  .home-opening__bookmark {
    bottom: -26px;
    width: 15px;
    height: 48px;
  }

  .home-opening__tab {
    right: -57px;
    min-width: 84px;
    padding: 12px 10px 12px 13px;
    font-size: 0.68rem;
  }

  .home-opening__tab::before {
    left: -11px;
    width: 12px;
  }

  .page-hero__grid,
  .section-heading,
  .case-hero__grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-top: 70px;
  }

  .page-hero h1,
  .case-hero h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .page-hero__grid,
  .section-heading,
  .case-hero__grid,
  .detail-grid {
    gap: 38px;
  }

  .practice-overview {
    min-height: calc(100svh - 72px);
    padding: 88px 0 24px;
  }

  .practice-overview__layout {
    gap: 24px;
  }

  .practice-overview__intro {
    display: block;
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .practice-overview__intro::before {
    top: -10px;
    right: auto;
    left: -18px;
    width: 240px;
    height: 150px;
    background-size: 15px 15px;
  }

  .practice-overview__index {
    margin-bottom: 13px;
    font-size: 0.66rem;
  }

  .practice-overview__intro h1 {
    font-size: clamp(2rem, 9.2vw, 2.45rem);
    line-height: 1.16;
    letter-spacing: -0.05em;
  }

  .practice-overview__intro h1::after {
    width: 48px;
    margin-top: 13px;
  }

  .practice-overview__lead {
    max-width: 33em;
    margin-top: 22px;
    padding: 12px 12px 10px 14px;
    font-size: 0.68rem;
    line-height: 1.7;
  }

  .practice-overview__lead::before {
    top: -13px;
    right: 8px;
    padding: 4px 7px 3px;
    font-size: 0.5rem;
  }

  .practice-chapter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(212px, 1fr));
    gap: 10px;
  }

  .practice-chapter {
    min-height: 0;
    padding: 13px 12px;
    border-radius: 6px;
  }

  .practice-chapter__number {
    min-height: 23px;
    padding: 5px 7px 4px;
    font-size: 0.55rem;
  }

  .practice-chapter h2 {
    min-height: 2.8em;
    margin-top: 9px;
    font-size: clamp(0.84rem, 3.8vw, 0.94rem);
    line-height: 1.4;
  }

  .practice-chapter__value {
    min-height: 3em;
    margin-top: 5px;
    font-size: 0.62rem;
    line-height: 1.5;
  }

  .practice-chapter__metric {
    min-height: 1.2em;
    padding-top: 7px;
    font-size: clamp(0.82rem, 3.6vw, 0.94rem);
    line-height: 1.2;
    letter-spacing: -0.055em;
  }

  .practice-chapter__proof {
    min-height: 3em;
    margin-top: 6px;
    font-size: 0.58rem;
    line-height: 1.5;
  }

  .practice-chapter__entry {
    margin-top: 6px;
    gap: 5px;
    font-size: 0.56rem;
  }

  .practice-next__link {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    padding: 13px 12px;
  }

  .practice-next {
    padding-top: 12px;
    padding-bottom: 44px;
  }

  .practice-next__label {
    min-height: 25px;
    padding: 5px 6px 4px;
    font-size: 0.53rem;
  }

  .practice-next__description {
    display: none;
  }

  .practice-next__content {
    gap: 6px;
  }

  .practice-next__content strong {
    font-size: 1.02rem;
  }

  .practice-next__arrow {
    gap: 5px;
    font-size: 0.58rem;
  }

  .methodology-note__hero {
    min-height: min(620px, calc(100svh - 72px));
    padding: 68px 0 44px;
  }

  .methodology-note__hero h1 {
    font-size: clamp(2rem, 8.9vw, 2.65rem);
  }

  .methodology-note__hero-copy {
    margin-top: 24px;
    line-height: 1.72;
  }

  .methodology-note__hero-copy span {
    white-space: normal;
  }

  .methodology-note__evidence-heading h2 {
    text-wrap: balance;
    white-space: normal;
  }

  .methodology-note__proofs {
    margin-top: 32px;
    grid-template-columns: 1fr;
  }

  .methodology-proof {
    display: grid;
    padding: 20px 12px;
    border-bottom: 1px solid var(--methodology-line);
    border-right: 0;
    grid-template-columns: minmax(0, auto) minmax(0, 1fr);
    align-items: baseline;
    column-gap: 16px;
  }

  .methodology-proof:nth-child(2n) {
    border-right: 0;
  }

  .methodology-proof strong {
    font-size: 1.25rem;
    white-space: nowrap;
  }

  .methodology-proof span {
    margin-top: 0;
    font-size: 0.82rem;
  }

  .growth-model {
    width: 100%;
    padding: 24px 16px;
  }

  .growth-model__surface {
    min-height: 420px;
    margin-top: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto minmax(86px, 1fr) auto;
    grid-template-areas:
      "result result"
      "action action"
      "organization personal";
    gap: 12px;
  }

  .growth-model__domain {
    min-height: 140px;
    padding: 20px 12px;
  }

  .growth-model__domain--result {
    width: calc((100% - 12px) / 2);
    justify-self: center;
  }

  .growth-model__domain h4 { font-size: clamp(1.2rem, 6vw, 1.5rem); }
  .growth-model__domain strong { margin-top: 12px; font-size: 0.68rem; }
  .growth-model__domain p { font-size: 0.64rem; white-space: normal; }
  .growth-model__action { width: 100px; }
  .growth-model__flow { stroke-width: 2; }

  .growth-model__poa > div {
    min-height: 62px;
    padding: 12px 6px;
    flex-wrap: wrap;
    gap: 5px;
    text-align: center;
  }

  .growth-model__poa { margin-top: 20px; }
  .growth-model__poa b { width: 100%; font-size: 0.95rem; }
  .growth-model__poa span { font-size: 0.76rem; }
  .growth-model__note {
    margin: 16px auto 0;
    padding: 12px 14px;
    grid-template-columns: 1fr;
    gap: 4px;
    text-align: center;
  }
  .growth-model__note-label { font-size: 0.72rem; }
  .growth-model__view {
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    text-align: center;
    white-space: normal;
  }

  .growth-model__popover {
    width: min(280px, calc(100vw - 72px));
    padding: 17px 18px 18px;
  }

  .growth-model__popover-title { font-size: 0.86rem; }
  .growth-model__popover-copy { font-size: 0.8rem; line-height: 1.66; }

  .growth-model__domain--result .growth-model__popover {
    top: calc(100% + 12px);
    right: auto;
    bottom: auto;
    left: 50%;
    transform: translate(-50%, 8px);
  }

  .growth-model__domain--organization .growth-model__popover {
    top: auto;
    right: auto;
    bottom: calc(100% + 12px);
    left: 0;
    transform: translateY(-8px);
  }

  .growth-model__domain--personal .growth-model__popover {
    top: auto;
    right: 0;
    bottom: calc(100% + 12px);
    left: auto;
    transform: translateY(-8px);
  }

  .growth-model__domain--result .growth-model__popover::before {
    top: auto;
    right: auto;
    bottom: 100%;
    left: 50%;
    width: 1px;
    height: 12px;
  }

  .growth-model__domain--organization .growth-model__popover::before,
  .growth-model__domain--personal .growth-model__popover::before {
    top: 100%;
    right: auto;
    left: 50%;
    width: 1px;
    height: 12px;
  }

  .growth-model__domain--result:hover .growth-model__popover,
  .growth-model__domain--result:focus-visible .growth-model__popover,
  .growth-model__domain--result.is-active .growth-model__popover {
    transform: translate(-50%, 0);
  }

  .growth-model__domain--organization:hover .growth-model__popover,
  .growth-model__domain--organization:focus-visible .growth-model__popover,
  .growth-model__domain--organization.is-active .growth-model__popover,
  .growth-model__domain--personal:hover .growth-model__popover,
  .growth-model__domain--personal:focus-visible .growth-model__popover,
  .growth-model__domain--personal.is-active .growth-model__popover {
    transform: none;
  }

  .case-metrics,
  .solution-path,
  .execution-path {
    grid-template-columns: 1fr;
  }

  .case-metric + .case-metric,
  .solution-step + .solution-step,
  .execution-step + .execution-step {
    border-top: 1px solid var(--hairline);
    border-left: 0;
  }

  .case-metric {
    min-height: 140px;
  }

  .detail-points li,
  .artifact-list li {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .case-pagination {
    grid-template-columns: 1fr;
  }

  .case-pagination a + a {
    border-top: 1px solid var(--hairline);
    border-left: 0;
  }

  .site-footer .page-shell {
    display: grid;
    padding-top: 24px;
    padding-bottom: 24px;
    gap: 4px;
  }

  body[data-page="case"] .menu-toggle {
    color: var(--dossier-ink);
  }

  body[data-page="case"] .site-nav {
    border-color: var(--dossier-line);
    background: rgba(244, 240, 231, 0.99);
  }

  body[data-page="contact"] .menu-toggle {
    color: var(--dossier-ink);
    display: none;
  }

  body[data-page="contact"] .site-nav {
    border-color: var(--dossier-line);
    background: var(--home-ivory);
    max-height: none;
    padding-top: 10px;
    padding-bottom: 18px;
  }

  body[data-page="contact"] .site-nav a {
    color: var(--dossier-ink);
  }

  html.js body[data-page="contact"] .menu-toggle {
    display: grid;
  }

  html.js body[data-page="contact"] .site-nav {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-color: transparent;
  }

  html.js body[data-page="contact"] .site-nav.is-open {
    max-height: 340px;
    padding-top: 10px;
    padding-bottom: 18px;
    border-color: var(--dossier-line);
  }

  .dossier-hero {
    padding-top: 38px;
  }

  .store-dossier {
    --dossier-metric-size: clamp(2.15rem, 10.5vw, 2.75rem);
  }

  .dossier-hero__layout,
  .dossier-section__grid {
    grid-template-columns: 1fr;
  }

  .dossier-hero__layout,
  .dossier-section__grid {
    gap: 42px;
  }

  .dossier-number::before {
    height: 48px;
  }

  .dossier-hero h1 br,
  .dossier-closing p br {
    display: none;
  }

  .dossier-title-line {
    display: inline;
    white-space: normal;
    text-wrap: balance;
  }

  .dossier-hero h1 {
    text-wrap: balance;
  }

  .dossier-section__summary--nowrap {
    white-space: normal;
    text-wrap: balance;
  }

  .dossier-card {
    min-height: 0;
  }

  .dossier-metrics__grid,
  .result-proof,
  .dossier-flow,
  .diagnosis-flow,
  .artifact-preview {
    grid-template-columns: 1fr;
  }

  .dossier-metrics__grid,
  .result-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dossier-metrics__grid > div {
    min-height: 112px;
    padding: 20px 10px 18px;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .dossier-metrics span {
    margin-top: 5px;
    font-size: 0.72rem;
  }

  .dossier-metrics small {
    margin-top: 6px;
    font-size: 0.62rem;
    line-height: 1.4;
  }

  .dossier-metric__label {
    top: 8px;
    left: 50%;
    font-size: 0.58rem !important;
    transform: translateX(-50%);
  }

  .dossier-metrics__grid > div + div,
  .result-proof > div + div {
    border-top: 1px solid rgba(244, 240, 231, 0.13);
    border-left: 0;
  }

  .dossier-metrics__grid > div + div {
    border-top: 0;
    border-left: 1px solid rgba(244, 240, 231, 0.13);
  }

  .dossier-metrics__grid.strategy-metrics__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .strategy-metrics .strategy-metrics__grid span {
    font-size: 0.82rem;
  }

  .strategy-metrics .strategy-metrics__grid small {
    font-size: 0.72rem;
  }

  .result-proof > div,
  .result-proof > div + div {
    padding: 16px 8px;
    text-align: center;
  }

  .result-proof > div + div {
    border-top: 0;
    border-left: 1px solid var(--dossier-line);
    border-color: var(--dossier-line);
  }

  .result-proof span {
    font-size: 0.66rem;
    line-height: 1.45;
  }

  .value-tree {
    padding: 20px 16px;
  }

  .problem-source i {
    justify-self: center;
  }

  .value-tree ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .dossier-flow {
    position: relative;
    gap: 18px;
  }

  .dossier-flow::before {
    top: 17px;
    right: auto;
    bottom: 17px;
    left: 17px;
    width: 1px;
    height: auto;
    background: rgba(188, 149, 89, 0.55);
  }

  .dossier-flow li {
    padding: 0;
    grid-template-columns: 34px 1fr;
    justify-items: start;
    gap: 0 14px;
    text-align: left;
  }

  .dossier-flow b {
    grid-row: 1 / span 2;
    box-shadow: 0 0 0 6px var(--dossier-paper);
  }

  .dossier-flow span {
    margin-top: 1px;
  }

  .dossier-flow small {
    margin-top: 3px;
  }

  .diagnosis-flow {
    gap: 10px;
  }

  .diagnosis-flow li {
    min-height: 72px;
    padding: 14px 16px;
    grid-template-columns: 38px 1fr;
    align-items: center;
    align-content: center;
    gap: 10px;
  }

  .diagnosis-flow span {
    max-width: none;
  }

  .bem-matrix {
    padding-top: 10px;
    border: 0;
    border-top: 3px solid var(--dossier-gold);
    background: transparent;
    box-shadow: none;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .bem-matrix > div {
    min-height: 0;
    border: 1px solid var(--dossier-line);
  }

  .bem-matrix .bem-axis {
    padding: 13px 18px;
    justify-items: start;
  }

  .decision-matrix {
    grid-template-columns: 1fr;
  }

  .milestone-path {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
  }

  .milestone-path::before,
  .milestone-path li::after {
    display: none;
  }

  .milestone-path span {
    margin-top: 5px;
    grid-row: auto;
  }

  .milestone-path__bet {
    margin: 0;
    padding: 0;
  }

  .artifact-preview article {
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .artifact-table {
    min-width: 510px;
  }

  .dossier-judgement {
    display: block;
  }

  .dossier-judgement b {
    display: block;
    margin-bottom: 8px;
  }

  .dossier-closing ol {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .dossier-closing li + li::before {
    margin-inline: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .home-opening__tab {
    animation: none;
  }

  .home-opening.is-opening,
  .home-opening.is-opening .home-opening__cover {
    animation-duration: 1ms;
    animation-delay: 0ms;
  }

  .home-page .primary-link,
  .home-page .secondary-link,
  .home-page .hero-actions a span {
    transition: none;
  }

  .about-career__item,
  .about-logo,
  .about-logo img,
  .about-contact__item { transition: none; }

  .growth-model__domain,
  .growth-model__action,
  .growth-model__poa,
  .growth-model__view,
  .growth-model__trigger,
  .growth-model__flow {
    opacity: 1 !important;
    transform: none !important;
    translate: none !important;
    transition: none !important;
    animation: none !important;
    stroke-dashoffset: 0 !important;
  }

  .growth-model__popover {
    transition: none !important;
  }

  .growth-model__ai {
    animation: none !important;
  }

  html.practice-entry-ready .practices-page .reveal,
  html.practice-entry-ready .practices-page .reveal.is-visible {
    opacity: 1;
    translate: none;
    transition: none;
  }

  html.practice-entry-ready .practices-page .practice-chapter.reveal.is-visible {
    animation: none;
  }

  .practice-next__link,
  .practice-next__arrow,
  .methodology-proof,
  .methodology-note__cta {
    transition: none;
  }

  .practice-next__link:hover .practice-next__arrow,
  .practice-next__link:focus-visible .practice-next__arrow {
    transform: none;
  }
}
