:root {
  --ink: #0a0a0a;
  --ink-raised: #12110f;
  --ivory: #f2eee6;
  --ivory-strong: #fffdf8;
  --ivory-muted: #c9c2b5;
  --charcoal: #24211d;
  --charcoal-muted: #706a61;
  --gold: #c4a45f;
  --gold-dark: #74582a;
  --hairline-dark: rgba(196, 164, 95, 0.34);
  --hairline-light: rgba(78, 62, 34, 0.2);
  --page-pad: clamp(24px, 4.2vw, 78px);
  --display: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Manrope', Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--ivory);
  color: var(--ink);
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.deck {
  min-height: 100svh;
}

.slide {
  position: relative;
  min-height: 100svh;
  scroll-snap-align: start;
  scroll-margin-top: 0;
  background: var(--ink);
}

.slide--ivory {
  background: var(--ivory);
  color: var(--charcoal);
}

.slide__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  padding: clamp(52px, 6vh, 88px) var(--page-pad) clamp(112px, 12vh, 150px);
}

.slide__header {
  max-width: 1180px;
}

.slide__header :is(h1, h2) {
  max-width: 18ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(56px, 6.3vw, 112px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.slide__header--light :is(h1, h2) {
  color: var(--ivory-strong);
}

.slide__lede {
  max-width: 770px;
  margin: 28px 0 0;
  color: var(--ivory-muted);
  font-size: clamp(16px, 1.25vw, 21px);
  line-height: 1.62;
}

.section-label,
.eyebrow {
  margin: 0 0 20px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.slide:not(.slide--ivory) .section-label,
.slide:not(.slide--ivory) .eyebrow {
  color: var(--gold);
}

.source-note {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--hairline-light);
  color: var(--charcoal-muted);
  font-size: 10px;
  line-height: 1.55;
}

.source-note > .citation-note__label {
  margin-right: 12px;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.source-note--dark {
  border-top-color: var(--hairline-dark);
  color: #a9a195;
}

.source-note--dark > .citation-note__label {
  color: var(--gold);
}

.citation-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px 18px;
  align-items: start;
}

.citation-note__label {
  padding-top: 2px;
  white-space: nowrap;
}

.citation-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  min-width: 0;
}

.citation {
  position: relative;
  display: inline-flex;
  gap: 7px;
  align-items: baseline;
  margin: 0;
  padding: 0 0 2px;
  border: 0;
  border-bottom: 1px dotted currentColor;
  background: transparent;
  color: inherit;
  cursor: help;
  font-size: 10px;
  line-height: 1.45;
  text-align: left;
}

.citation__ref {
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.source-note--dark .citation__ref {
  color: var(--gold);
}

.citation:hover,
.citation:focus-visible,
.citation[aria-expanded="true"] {
  color: var(--gold-dark);
  outline: 0;
}

.source-note--dark .citation:hover,
.source-note--dark .citation:focus-visible,
.source-note--dark .citation[aria-expanded="true"] {
  color: var(--gold);
}

.citation__popover {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 0;
  z-index: 40;
  display: grid;
  gap: 8px;
  width: min(370px, calc(100vw - 32px));
  padding: 15px 17px;
  border: 1px solid var(--hairline-dark);
  background: #11100e;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  color: var(--ivory);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
  opacity: 0;
  visibility: hidden;
  transform: translate(var(--citation-shift-x, 0px), 5px);
  pointer-events: none;
  transition: opacity 120ms ease, transform 120ms ease, visibility 120ms ease;
}

.citation__popover-label {
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.citation:hover .citation__popover,
.citation:focus-visible .citation__popover,
.citation[aria-expanded="true"] .citation__popover {
  opacity: 1;
  visibility: visible;
  transform: translate(var(--citation-shift-x, 0px), 0);
}

/* Cover */

.cover {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(390px, 0.85fr);
  overflow: clip;
}

.cover__content {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(44px, 6vh, 90px);
  min-height: 100svh;
  padding: clamp(28px, 4.4vw, 78px) var(--page-pad) clamp(110px, 10vh, 130px);
  background: var(--ink);
}

.cover__masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--hairline-dark);
}

.cover__logo {
  width: clamp(158px, 15vw, 240px);
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.cover__edition {
  display: flex;
  gap: 15px;
  align-items: center;
  color: var(--ivory-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.cover__edition span + span {
  color: var(--gold);
}

.cover__body {
  align-self: center;
  max-width: 900px;
}

.cover h1 {
  max-width: 11.5ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(68px, 7.6vw, 138px);
  font-weight: 500;
  line-height: 0.83;
  letter-spacing: -0.045em;
}

.cover h1 > span {
  display: block;
}

.cover__title-accent {
  margin-top: 0.12em;
  color: var(--gold);
  font-style: italic;
}

.cover__dek {
  max-width: 690px;
  margin: clamp(28px, 3.4vw, 54px) 0 0;
  color: #d5d0c6;
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.65;
}

.cover__question {
  padding-top: 25px;
  border-top: 1px solid var(--hairline-dark);
}

.cover__question-copy {
  max-width: 760px;
}

.cover__question-label {
  display: block;
  margin-bottom: 9px;
  color: var(--ivory-muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cover__question-copy p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.12;
}

.cover__visual {
  position: relative;
  min-height: 100svh;
  margin: 0;
  isolation: isolate;
  background: #181612;
}

.cover__visual img {
  width: 100%;
  height: 100%;
  min-height: 100svh;
  object-fit: cover;
  object-position: center 45%;
  filter: saturate(0.72) contrast(1.06) brightness(0.84);
}

.cover__visual-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10,10,10,0.62) 0%, rgba(10,10,10,0.1) 34%, transparent 62%),
    linear-gradient(180deg, rgba(0,0,0,0.08) 38%, rgba(0,0,0,0.76) 100%);
}

.cover__visual figcaption {
  position: absolute;
  right: clamp(54px, 6vw, 92px);
  bottom: clamp(120px, 12vh, 150px);
  left: clamp(54px, 6vw, 92px);
  z-index: 2;
  max-width: 540px;
}

.cover__visual figcaption span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cover__visual figcaption strong {
  display: block;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(27px, 2.3vw, 43px);
  font-weight: 500;
  line-height: 1.08;
}

/* Slide 1: premise */

.premise::before {
  content: '';
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(242, 238, 230, 1) 0%, rgba(242, 238, 230, 0.99) 46%, rgba(242, 238, 230, 0.9) 68%, rgba(242, 238, 230, 0.64) 100%),
    url('assets/jwp-atrium.jpg') center 42% / cover no-repeat;
  opacity: 0.86;
  transition: opacity 500ms ease, transform 900ms cubic-bezier(.2,.75,.2,1);
}


.premise__inner {
  justify-content: space-between;
}

.premise__body {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(54px, 7vw, 120px);
  align-items: end;
  margin: clamp(44px, 7vh, 92px) 0 clamp(40px, 6vh, 74px);
}

.premise__intro {
  max-width: 520px;
  margin: 0 0 30px;
  color: var(--charcoal-muted);
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.6;
}

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

.inventory-list li {
  padding: 15px 0;
  border-bottom: 1px solid var(--hairline-light);
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.05;
}

.inventory-list li:nth-child(odd) {
  padding-right: 24px;
}

.inventory-list li:nth-child(even) {
  padding-left: 24px;
  border-left: 1px solid var(--hairline-light);
}

.premise__conclusion {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(34px, 4vw, 60px);
  background: var(--ink);
  color: var(--ivory);
}

.conclusion-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.conclusion-statement {
  max-width: 17ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 3.8vw, 68px);
  line-height: 1;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.conclusion-detail {
  max-width: 610px;
  margin: 30px 0 0;
  color: #cfc8bb;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.62;
}

/* Slide 2: strategic shift */

.shift::before {
  content: '';
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, 0.99) 46%, rgba(10, 10, 10, 0.84) 68%, rgba(10, 10, 10, 0.5) 100%),
    url('assets/lafayette-dining.jpg') center / cover no-repeat;
  opacity: 0.9;
  filter: saturate(0.72) contrast(0.95);
  transition: opacity 500ms ease, transform 900ms cubic-bezier(.2,.75,.2,1);
}


.shift__inner {
  background: transparent;
}

.shift__comparison {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) 100px minmax(0, 1.18fr);
  gap: clamp(30px, 4vw, 72px);
  align-items: center;
  margin: clamp(42px, 5.5vh, 70px) 0 clamp(36px, 4.5vh, 58px);
}

.shift__column {
  min-width: 0;
}

.shift__label {
  margin: 0 0 22px;
  color: var(--ivory-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.term-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.term-list li {
  padding: 8px 0;
  border-bottom: 1px solid currentColor;
  font-family: var(--display);
  font-size: clamp(31px, 3vw, 54px);
  line-height: 1;
}

.term-list--quiet {
  color: #847d72;
}

.term-list--active {
  color: var(--ivory-strong);
}

.term-list--active li:nth-child(3),
.term-list--active li:nth-child(5),
.term-list--active li:nth-child(7),
.term-list--active li:nth-child(8) {
  color: var(--gold);
}

.shift__marker {
  display: grid;
  place-items: center;
  min-height: 150px;
  border-left: 1px solid var(--hairline-dark);
  border-right: 1px solid var(--hairline-dark);
}

.shift__marker span {
  transform: rotate(-90deg);
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.shift__destination {
  display: grid;
  grid-template-columns: minmax(120px, 0.2fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 70px);
  align-items: start;
  padding: 26px 0 30px;
  border-top: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
}

.shift__destination-label {
  margin: 3px 0 0;
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.shift__destination-copy {
  display: flex;
  gap: 18px;
  align-items: baseline;
  flex-wrap: wrap;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(25px, 2.3vw, 42px);
  line-height: 1.08;
}

.shift__destination-copy span:first-child {
  color: #9f978b;
}

.shift__destination-separator {
  color: var(--gold);
}

.shift__destination-copy strong {
  max-width: 700px;
  color: var(--ivory-strong);
  font-weight: 500;
}

.shift__principle {
  grid-column: 2;
  max-width: 650px;
  margin: 12px 0 0;
  color: var(--ivory-muted);
  font-size: 14px;
  line-height: 1.55;
}

/* Slide 3: fragmentation */

.fragmentation::before {
  content: '';
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(242, 238, 230, 1) 0%, rgba(242, 238, 230, 0.99) 52%, rgba(242, 238, 230, 0.93) 72%, rgba(242, 238, 230, 0.72) 100%),
    url('assets/jwp-atrium.jpg') 72% 35% / cover no-repeat;
  opacity: 0.72;
  transition: opacity 500ms ease, transform 900ms cubic-bezier(.2,.75,.2,1);
}


.fragmentation .slide__header :is(h1, h2) {
  max-width: 18ch;
  font-size: clamp(52px, 5vw, 88px);
}

.fragmentation__body {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
  gap: clamp(48px, 6vw, 100px);
  margin: clamp(28px, 3.5vh, 46px) 0 clamp(28px, 3.5vh, 46px);
}

.evidence-block,
.diagnosis-block {
  min-width: 0;
}

.evidence-block {
  padding-right: clamp(28px, 3vw, 52px);
  border-right: 1px solid var(--hairline-light);
}

.evidence-block__heading {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hairline-light);
}

.evidence-label,
.evidence-sample,
.seams__label {
  margin: 0;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.evidence-label,
.seams__label {
  color: var(--gold-dark);
}

.evidence-sample {
  color: var(--charcoal-muted);
  text-align: right;
}

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

.evidence-stat strong {
  display: block;
  color: var(--gold-dark);
  font-family: var(--display);
  font-size: clamp(72px, 7vw, 124px);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.055em;
}

.evidence-stat p {
  max-width: 310px;
  margin: 20px 0 0;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.55;
}

.evidence-caveat {
  margin: 32px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--hairline-light);
  color: var(--charcoal-muted);
  font-size: 12px;
  line-height: 1.6;
}

.diagnosis-block {
  display: flex;
  flex-direction: column;
}

.diagnosis-block__statement {
  max-width: 20ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 3.2vw, 56px);
  line-height: 1;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.seams {
  margin-top: 34px;
  padding: 22px 0;
  border-top: 1px solid var(--hairline-light);
  border-bottom: 1px solid var(--hairline-light);
}

.seams__items {
  margin: 10px 0 0;
  color: var(--charcoal);
  font-family: var(--display);
  font-size: clamp(20px, 1.6vw, 28px);
  line-height: 1.35;
}

.diagnosis-block__principle {
  max-width: 620px;
  margin: 28px 0 0;
  font-size: clamp(17px, 1.25vw, 21px);
  font-weight: 600;
  line-height: 1.5;
}

.diagnosis-block__implication {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--charcoal-muted);
  font-size: 14px;
  line-height: 1.58;
}

.diagnosis-block__implication strong {
  color: var(--charcoal);
}

/* Slide 4: guest outcome */

.outcome .slide__header :is(h1, h2) {
  max-width: 17ch;
  font-size: clamp(52px, 5.4vw, 92px);
}

.outcome__body {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: clamp(44px, 6vw, 96px);
  margin: clamp(28px, 3.5vh, 46px) 0 24px;
}

.mission-example__label,
.outcome__role-label {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mission-example blockquote {
  max-width: 880px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(36px, 3.7vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.mission-flow {
  margin-top: 34px;
  border-top: 1px solid var(--hairline-dark);
}

.mission-flow__outcome {
  padding: 13px 0 12px;
  color: var(--ivory-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mission-flow__contributors {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
}

.mission-flow__contributors span {
  position: relative;
  padding: 15px 12px 15px 0;
  color: var(--ivory);
  font-size: 11px;
  line-height: 1.35;
}

.mission-flow__contributors span:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 12px;
  right: 7px;
  bottom: 12px;
  width: 1px;
  background: var(--hairline-dark);
}

.outcome__role {
  padding-left: clamp(26px, 3vw, 48px);
  border-left: 1px solid var(--hairline-dark);
}

.outcome__role :is(h2, h3) {
  max-width: 17ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(32px, 2.9vw, 50px);
  font-weight: 500;
  line-height: 1;
  text-wrap: balance;
}

.role-definition {
  margin: 20px 0 0;
}

.role-definition div {
  padding: 12px 0;
  border-top: 1px solid var(--hairline-dark);
}

.role-definition div:last-child {
  border-bottom: 1px solid var(--hairline-dark);
}

.role-definition dt {
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.role-definition dd {
  margin: 0;
  color: var(--ivory-muted);
  font-size: 13px;
  line-height: 1.52;
}

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

.outcome__other-missions p {
  margin: 0;
  padding: 18px 22px 18px 0;
  color: #bfb7aa;
  font-family: var(--display);
  font-size: clamp(18px, 1.45vw, 25px);
  line-height: 1.2;
}

.outcome__other-missions p + p {
  padding-left: 22px;
  border-left: 1px solid var(--hairline-dark);
}

@media (hover: hover) {
  .shift:has(.shift__column--to:hover)::before,
  .shift:has(.shift__column--to:focus-within)::before {
    opacity: 0.98;
    transform: scale(1.01);
  }
}

/* Navigation */

.presentation-nav {
  position: fixed;
  top: 20px;
  right: 22px;
  bottom: auto;
  left: auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto auto auto minmax(200px, 1fr) auto;
  gap: 1px;
  width: min(860px, calc(100vw - 44px));
  padding: 1px;
  background: rgba(196, 164, 95, 0.35);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
}

.presentation-nav.is-cover {
  top: 116px;
}

.nav-button,
.nav-status {
  min-height: 50px;
  border: 0;
  background: rgba(10, 10, 10, 0.96);
  color: var(--ivory);
}

.nav-button {
  min-width: 92px;
  padding: 0 18px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-button:hover,
.nav-button:focus-visible {
  background: #1b1916;
  color: var(--gold);
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.nav-button:disabled {
  cursor: default;
  color: #645f57;
}

.nav-button:disabled:hover {
  background: rgba(10, 10, 10, 0.96);
  color: #645f57;
  outline: 0;
}

.nav-button--contents,
.nav-button--notes {
  color: var(--gold);
}

.nav-status {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 0 18px;
}

.nav-status__number {
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.nav-status__title {
  overflow: hidden;
  color: var(--ivory-muted);
  font-size: 11px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* Contents */

.contents-dialog {
  width: min(980px, calc(100vw - 40px));
  max-width: none;
  max-height: calc(100svh - 40px);
  margin: auto;
  padding: 0;
  border: 1px solid var(--hairline-dark);
  background: var(--ink);
  color: var(--ivory);
}

.contents-dialog::backdrop {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(5px);
}

.contents-dialog__panel {
  padding: clamp(28px, 4vw, 58px);
}

.contents-dialog__header {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--hairline-dark);
}

.contents-dialog__header h2 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 500;
  line-height: 0.96;
}

.contents-dialog__close {
  padding: 10px 0;
  border: 0;
  background: transparent;
  color: var(--ivory-muted);
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contents-dialog__close:hover,
.contents-dialog__close:focus-visible {
  color: var(--gold);
  outline: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contents-list {
  display: grid;
}

.contents-list a {
  display: grid;
  grid-template-columns: 52px minmax(180px, 0.55fr) minmax(0, 1fr);
  gap: 22px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline-dark);
  color: inherit;
  text-decoration: none;
}

.contents-list a:hover,
.contents-list a:focus-visible,
.contents-list a[aria-current="true"] {
  color: var(--gold);
  outline: 0;
}

.contents-list a span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.contents-list a strong {
  font-family: var(--display);
  font-size: clamp(24px, 2.2vw, 36px);
  font-weight: 500;
}

.contents-list a small {
  color: var(--ivory-muted);
  font-size: 12px;
  line-height: 1.45;
}

.contents-dialog__footer {
  padding-top: 22px;
  color: #8d867b;
  font-size: 10px;
  line-height: 1.5;
}

/* Slide notes */

.notes-dialog {
  width: min(760px, 58vw);
  height: 100svh;
  max-width: none;
  max-height: none;
  margin: 0 0 0 auto;
  padding: 0;
  border: 0;
  border-left: 1px solid var(--hairline-dark);
  background: var(--ink);
  color: var(--ivory);
}

.notes-dialog[open] {
  display: block;
}

.notes-dialog::backdrop {
  background: rgba(0, 0, 0, 0.68);
}

.notes-dialog__panel {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(34px, 4vw, 64px);
}

.notes-dialog__header {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--hairline-dark);
}

.notes-dialog__eyebrow {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.notes-dialog__header h2 {
  max-width: 16ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 4.6vw, 68px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.notes-dialog__close {
  padding: 10px 0;
  border: 0;
  background: transparent;
  color: var(--ivory-muted);
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.notes-dialog__close:hover,
.notes-dialog__close:focus-visible {
  color: var(--gold);
  outline: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.notes-dialog__body {
  overflow-y: auto;
  padding: 8px 0 28px;
}

.presenter-notes {
  max-width: 64ch;
  padding: 30px 0 48px;
}

.presenter-notes p {
  margin: 0;
  color: #d4cec3;
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.78;
}

.presenter-notes p + p {
  margin-top: 24px;
}

.presenter-notes p:first-child {
  color: var(--ivory-strong);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.68;
}

/* Slide 5: 10-star method */

.ten-star-method__inner {
  gap: clamp(34px, 5vh, 68px);
}

.ten-star-method__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 220px);
  gap: clamp(34px, 4vw, 70px);
  align-items: start;
}

.ten-star-method__header {
  max-width: 1100px;
}

.ten-star-method__header h1 {
  max-width: 15ch;
}

.ten-star-method__video {
  width: 100%;
  margin: clamp(54px, 7vh, 76px) 0 0;
}

.ten-star-method__video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: var(--ink);
  border: 1px solid var(--hairline-light);
}

.ten-star-method__video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.ten-star-method__video figcaption {
  margin-top: 10px;
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}

.ten-star-method__prompt,
.remove-work__lede {
  max-width: 920px;
  margin: 24px 0 0;
  color: var(--charcoal-muted);
  font-size: clamp(16px, 1.25vw, 21px);
  line-height: 1.6;
}

.star-ladder {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--hairline-light);
  border-bottom: 1px solid var(--hairline-light);
}

.star-step {
  min-width: 0;
  padding: clamp(20px, 2vw, 32px) clamp(14px, 1.5vw, 24px) clamp(24px, 2.4vw, 38px);
  border-right: 1px solid var(--hairline-light);
}

.star-step:last-child {
  border-right: 0;
}

.star-step__number {
  display: block;
  margin-bottom: 22px;
  color: var(--gold-dark);
  font-family: var(--display);
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1;
}

.star-step strong {
  display: block;
  margin-bottom: 9px;
  font-family: var(--display);
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 500;
  line-height: 1;
}

.star-step p {
  margin: 0;
  color: var(--charcoal-muted);
  font-size: 12px;
  line-height: 1.55;
}

.star-step--ten {
  background: var(--ink);
  color: var(--ivory-strong);
}

.star-step--ten .star-step__number {
  color: var(--gold);
}

.star-step--ten p {
  color: var(--ivory-muted);
}

.method-rule {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) minmax(220px, 0.55fr);
  gap: 26px;
  align-items: baseline;
  padding-top: 18px;
  border-top: 1px solid var(--hairline-light);
}

.method-rule__label {
  margin: 0;
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.method-rule > p:not(.method-rule__label) {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.15;
}

.method-rule small {
  color: var(--charcoal-muted);
  font-size: 10px;
  line-height: 1.55;
}

/* Slide 6: restraint */

.restraint__inner {
  gap: clamp(34px, 5vh, 66px);
}

.restraint__header {
  max-width: 1250px;
}

.restraint__header h1 {
  max-width: 17ch;
}

.restraint__body {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 4vw, 72px);
}

.restraint__case,
.restraint__principle {
  padding-top: 20px;
  border-top: 1px solid var(--hairline-dark);
}

.restraint__eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.restraint__case h2,
.restraint__principle h2 {
  max-width: 14ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(36px, 3.4vw, 62px);
  font-weight: 500;
  line-height: 0.98;
}

.restraint__case > p:last-child {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--ivory-muted);
  font-size: 14px;
  line-height: 1.7;
}

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

.restraint__comparison > div {
  padding-top: 14px;
  border-top: 1px solid var(--hairline-dark);
}

.restraint__comparison span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.restraint__comparison ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.restraint__comparison li {
  padding: 6px 0;
  color: #d8d2c7;
  font-size: 13px;
  line-height: 1.4;
}

.restraint__question {
  max-width: 1040px;
  margin: 0;
  padding: clamp(22px, 2.5vw, 34px) 0 0;
  border-top: 1px solid var(--hairline-dark);
  color: var(--ivory-strong);
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 50px);
  font-style: italic;
  line-height: 1.05;
}

/* Slide 6: Eleven Madison Park case study */

.emp-case__inner {
  min-height: 100svh;
  gap: 8px;
  padding-top: clamp(26px, 2.8vh, 36px);
  padding-bottom: 42px;
}

.emp-case__header {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: end;
}

.emp-case__header .section-label {
  margin-bottom: 10px;
}

.emp-case__header h1 {
  max-width: 13ch;
  margin: 0;
  color: var(--ivory-strong);
  font-family: var(--display);
  font-size: clamp(46px, 4.6vw, 72px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.emp-case__lede {
  max-width: 610px;
  margin: 0;
  padding-bottom: 5px;
  color: var(--ivory-muted);
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.55;
}

.emp-case__core {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(220px, 0.7fr) minmax(240px, 0.8fr);
  min-height: clamp(205px, 22vh, 235px);
  border-top: 1px solid var(--hairline-dark);
  border-left: 1px solid var(--hairline-dark);
}

.emp-case__image,
.emp-case__diagnosis,
.emp-case__tension {
  min-width: 0;
  min-height: 0;
  border-right: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
}

.emp-case__image {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--ink-raised);
}

.emp-case__image::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.06), rgba(10, 10, 10, 0) 58%, rgba(10, 10, 10, 0.18));
}

.emp-case__image img {
  width: 100%;
  height: 100%;
  min-height: clamp(205px, 22vh, 235px);
  object-fit: cover;
  object-position: center 56%;
  filter: saturate(0.82) contrast(0.97);
}

.emp-case__image figcaption {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 10px;
  left: 12px;
  margin: 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: 7px;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

.case-reveal {
  position: relative;
  overflow: hidden;
  outline: none;
}

.emp-case__diagnosis,
.emp-case__tension {
  padding: clamp(18px, 2vw, 28px);
  background: rgba(18, 17, 15, 0.78);
}

.case-reveal__eyebrow,
.case-reveal__index,
.case-reveal__detail > span,
.emp-case__section-head > span {
  color: var(--gold);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.emp-case__metric {
  display: block;
  margin-top: 12px;
  color: var(--gold);
  font-family: var(--display);
  font-size: clamp(70px, 6.8vw, 106px);
  font-weight: 500;
  line-height: 0.72;
  letter-spacing: -0.06em;
}

.emp-case__diagnosis h2,
.emp-case__outcome h2,
.emp-case__jwp h2,
.emp-case__section-head h2,
.emp-case__moves h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.emp-case__diagnosis h2 {
  max-width: 14ch;
  margin-top: 14px;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1;
}

.case-reveal__prompt {
  position: absolute;
  right: 18px;
  bottom: 14px;
  left: 18px;
  margin: 0;
  color: #857d70;
  font-size: 8px;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
  transition: opacity 220ms ease;
}

.emp-case__tension dl {
  display: grid;
  gap: 16px;
  margin: 20px 0 34px;
}

.emp-case__tension dl div {
  padding-top: 10px;
  border-top: 1px solid var(--hairline-dark);
}

.emp-case__tension dt {
  color: var(--gold);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.emp-case__tension dd {
  max-width: 18ch;
  margin: 7px 0 0;
  color: var(--ivory-strong);
  font-family: var(--display);
  font-size: clamp(20px, 1.7vw, 29px);
  line-height: 1.04;
}

.case-reveal__detail {
  position: absolute;
  z-index: 4;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(18px, 2vw, 28px);
  background: rgba(17, 16, 14, 0.985);
  opacity: 0;
  pointer-events: none;
  transform: translateY(7px);
  transition: opacity 220ms ease, transform 260ms cubic-bezier(.2,.75,.2,1);
}

.case-reveal__detail p {
  margin: 10px 0 0;
  color: #d4cdc1;
  font-size: 11px;
  line-height: 1.55;
}

.case-reveal:hover .case-reveal__detail,
.case-reveal:focus .case-reveal__detail,
.case-reveal:focus-within .case-reveal__detail {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.case-reveal:hover .case-reveal__prompt,
.case-reveal:focus .case-reveal__prompt,
.case-reveal:focus-within .case-reveal__prompt {
  opacity: 0;
}

.case-reveal:focus-visible {
  box-shadow: inset 0 0 0 2px var(--gold);
}

.emp-case__reset {
  display: grid;
  grid-template-columns: minmax(200px, 0.26fr) minmax(0, 0.74fr);
  border-top: 1px solid var(--hairline-dark);
  border-left: 1px solid var(--hairline-dark);
}

.emp-case__section-head {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 118px;
  padding: 14px 18px;
  border-right: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
}

.emp-case__section-head .restraint__eyebrow {
  margin: 0;
}

.emp-case__section-head h2 {
  max-width: 13ch;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1;
}

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

.emp-case__moves > article {
  min-width: 0;
  min-height: 118px;
  padding: 14px;
  border-right: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
  background: rgba(18, 17, 15, 0.5);
}

.emp-case__moves h3 {
  max-width: 12ch;
  margin-top: 12px;
  color: var(--ivory-strong);
  font-size: clamp(21px, 1.55vw, 27px);
  line-height: 1;
}

.emp-case__moves > article > p {
  margin: 9px 0 0;
  color: var(--ivory-muted);
  font-size: 10px;
  line-height: 1.45;
}

.emp-case__bottom {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  border-top: 1px solid var(--hairline-dark);
  border-left: 1px solid var(--hairline-dark);
}

.emp-case__outcome,
.emp-case__jwp {
  min-height: 126px;
  padding: 14px 18px;
  border-right: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
}

.emp-case__outcome h2,
.emp-case__jwp h2 {
  max-width: 22ch;
  margin-top: 10px;
  color: var(--ivory-strong);
  font-size: clamp(24px, 2vw, 33px);
  line-height: 1;
}

.emp-case__outcome-stats,
.emp-case__principle {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 16px;
}

.emp-case__outcome-stats span,
.emp-case__principle span {
  padding-top: 7px;
  border-top: 1px solid var(--hairline-dark);
  color: var(--ivory-muted);
  font-size: 9px;
  line-height: 1.35;
}

.emp-case__jwp {
  background: rgba(196, 164, 95, 0.055);
}

.emp-case__jwp > p {
  max-width: 660px;
  margin: 10px 0 0;
  color: var(--ivory-muted);
  font-size: 11px;
  line-height: 1.5;
}

.emp-case__citations {
  margin-top: 0;
  padding-top: 11px;
}

@media (max-width: 1080px) {
  .emp-case__inner {
    padding-bottom: 112px;
  }

  .emp-case__header,
  .emp-case__core,
  .emp-case__bottom {
    grid-template-columns: 1fr;
  }

  .emp-case__image img {
    min-height: 260px;
  }

  .emp-case__reset {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .emp-case__inner {
    gap: 18px;
  }

  .emp-case__header h1 {
    font-size: clamp(46px, 13vw, 66px);
  }

  .emp-case__lede {
    margin-top: 6px;
  }

  .emp-case__moves {
    grid-template-columns: 1fr;
  }

  .emp-case__moves > article,
  .emp-case__section-head,
  .emp-case__outcome,
  .emp-case__jwp {
    min-height: 132px;
  }

  .case-reveal__detail {
    padding: 18px;
  }
}

/* Slide 7: remove the work */

.remove-work::before {
  content: '';
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(242, 238, 230, 1) 0%, rgba(242, 238, 230, 0.99) 50%, rgba(242, 238, 230, 0.92) 70%, rgba(242, 238, 230, 0.67) 100%),
    url('assets/lafayette-shopping.jpg') 82% 45% / cover no-repeat;
  opacity: 0.78;
  filter: saturate(0.84) contrast(0.98);
  transition: opacity 500ms ease, transform 900ms cubic-bezier(.2,.75,.2,1);
}


.remove-work__inner {
  gap: clamp(30px, 4.5vh, 58px);
}

.remove-work__header {
  max-width: 1320px;
}

.remove-work__header h1 {
  max-width: 18ch;
  font-size: clamp(52px, 5.8vw, 102px);
}

.work-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--hairline-light);
  border-left: 1px solid var(--hairline-light);
}

.work-item {
  min-height: 190px;
  padding: clamp(20px, 2vw, 30px);
  border-right: 1px solid var(--hairline-light);
  border-bottom: 1px solid var(--hairline-light);
}

.work-item__index {
  display: block;
  margin-bottom: 26px;
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.work-item h2 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(28px, 2.5vw, 42px);
  font-weight: 500;
  line-height: 1;
}

.work-item p {
  max-width: 37ch;
  margin: 0;
  color: var(--charcoal-muted);
  font-size: 12px;
  line-height: 1.55;
}

.work-item--result {
  background: var(--ink);
  color: var(--ivory-strong);
}

.work-item--result .work-item__index {
  color: var(--gold);
}

.work-item--result p {
  color: var(--ivory-muted);
}

.remove-work__principle {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  gap: 34px;
  align-items: baseline;
  padding-top: 18px;
  border-top: 1px solid var(--hairline-light);
}

.remove-work__principle p {
  margin: 0;
}

.remove-work__principle p:first-child {
  color: var(--charcoal-muted);
  font-size: 12px;
  line-height: 1.6;
}

.remove-work__principle p:last-child {
  max-width: 900px;
  font-family: var(--display);
  font-size: clamp(25px, 2.3vw, 38px);
  line-height: 1.12;
}

@keyframes deck-fade-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes deck-fade-left {
  from {
    opacity: 0;
    transform: translateX(-12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes deck-fade-right {
  from {
    opacity: 0;
    transform: translateX(12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes deck-image-settle {
  from {
    opacity: 0;
    transform: scale(1.018);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes deck-exit-forward {
  to {
    opacity: 0;
    transform: translateX(-8px);
  }
}

@keyframes deck-exit-backward {
  to {
    opacity: 0;
    transform: translateX(8px);
  }
}

@keyframes deck-chrome-exit {
  to {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: no-preference) {
  body.is-leaving[data-nav-direction="forward"] .deck {
    animation: deck-exit-forward 170ms cubic-bezier(.4, 0, 1, 1) both;
  }

  body.is-leaving[data-nav-direction="backward"] .deck {
    animation: deck-exit-backward 170ms cubic-bezier(.4, 0, 1, 1) both;
  }

  body.is-leaving .presentation-nav {
    animation: deck-chrome-exit 130ms ease both;
  }

  /* Cover: establish the brand, then the question. */
  body[data-slide-index="0"] .cover__masthead {
    animation: deck-fade-rise 420ms cubic-bezier(.2,.75,.2,1) 40ms both;
  }

  body[data-slide-index="0"] .cover__body {
    animation: deck-fade-rise 560ms cubic-bezier(.2,.75,.2,1) 120ms both;
  }

  body[data-slide-index="0"] .cover__question {
    animation: deck-fade-rise 480ms cubic-bezier(.2,.75,.2,1) 280ms both;
  }

  body[data-slide-index="0"] .cover__visual {
    animation: deck-image-settle 760ms cubic-bezier(.22,.72,.18,1) both;
  }

  body[data-slide-index="0"] .cover__visual figcaption {
    animation: deck-fade-rise 460ms cubic-bezier(.2,.75,.2,1) 360ms both;
  }

  /* Slide 1: establish what already exists, then land the implication. */
  body[data-slide-index="1"] .slide__header {
    animation: deck-fade-rise 440ms cubic-bezier(.2,.75,.2,1) 40ms both;
  }

  body[data-slide-index="1"] .premise__intro {
    animation: deck-fade-left 420ms cubic-bezier(.2,.75,.2,1) 130ms both;
  }

  body[data-slide-index="1"] .inventory-list li {
    animation: deck-fade-left 360ms cubic-bezier(.2,.75,.2,1) both;
  }

  body[data-slide-index="1"] .inventory-list li:nth-child(1) { animation-delay: 170ms; }
  body[data-slide-index="1"] .inventory-list li:nth-child(2) { animation-delay: 205ms; }
  body[data-slide-index="1"] .inventory-list li:nth-child(3) { animation-delay: 240ms; }
  body[data-slide-index="1"] .inventory-list li:nth-child(4) { animation-delay: 275ms; }
  body[data-slide-index="1"] .inventory-list li:nth-child(5) { animation-delay: 310ms; }
  body[data-slide-index="1"] .inventory-list li:nth-child(6) { animation-delay: 345ms; }
  body[data-slide-index="1"] .inventory-list li:nth-child(7) { animation-delay: 380ms; }

  body[data-slide-index="1"] .premise__conclusion {
    animation: deck-fade-right 520ms cubic-bezier(.2,.75,.2,1) 230ms both;
  }

  body[data-slide-index="1"] .source-note {
    animation: deck-fade-rise 360ms ease 430ms both;
  }

  /* Slide 2: reveal the old management model before the new one. */
  body[data-slide-index="2"] .slide__header {
    animation: deck-fade-rise 440ms cubic-bezier(.2,.75,.2,1) 40ms both;
  }

  body[data-slide-index="2"] .shift__column--from {
    animation: deck-fade-left 460ms cubic-bezier(.2,.75,.2,1) 140ms both;
  }

  body[data-slide-index="2"] .shift__marker {
    animation: deck-fade-rise 360ms ease 240ms both;
  }

  body[data-slide-index="2"] .shift__column--to {
    animation: deck-fade-right 500ms cubic-bezier(.2,.75,.2,1) 300ms both;
  }

  body[data-slide-index="2"] .term-list--active li {
    animation: deck-fade-rise 320ms cubic-bezier(.2,.75,.2,1) both;
  }

  body[data-slide-index="2"] .term-list--active li:nth-child(1) { animation-delay: 330ms; }
  body[data-slide-index="2"] .term-list--active li:nth-child(2) { animation-delay: 360ms; }
  body[data-slide-index="2"] .term-list--active li:nth-child(3) { animation-delay: 390ms; }
  body[data-slide-index="2"] .term-list--active li:nth-child(4) { animation-delay: 420ms; }
  body[data-slide-index="2"] .term-list--active li:nth-child(5) { animation-delay: 450ms; }
  body[data-slide-index="2"] .term-list--active li:nth-child(6) { animation-delay: 480ms; }
  body[data-slide-index="2"] .term-list--active li:nth-child(7) { animation-delay: 510ms; }
  body[data-slide-index="2"] .term-list--active li:nth-child(8) { animation-delay: 540ms; }

  body[data-slide-index="2"] .shift__destination {
    animation: deck-fade-rise 460ms cubic-bezier(.2,.75,.2,1) 500ms both;
  }

  body[data-slide-index="2"] .source-note {
    animation: deck-fade-rise 340ms ease 600ms both;
  }

  /* Slide 3: evidence first, diagnosis second. */
  body[data-slide-index="3"] .slide__header {
    animation: deck-fade-rise 440ms cubic-bezier(.2,.75,.2,1) 40ms both;
  }

  body[data-slide-index="3"] .evidence-block {
    animation: deck-fade-left 480ms cubic-bezier(.2,.75,.2,1) 150ms both;
  }

  body[data-slide-index="3"] .evidence-stat:first-child {
    animation: deck-fade-rise 380ms cubic-bezier(.2,.75,.2,1) 240ms both;
  }

  body[data-slide-index="3"] .evidence-stat:last-child {
    animation: deck-fade-rise 380ms cubic-bezier(.2,.75,.2,1) 310ms both;
  }

  body[data-slide-index="3"] .diagnosis-block {
    animation: deck-fade-right 520ms cubic-bezier(.2,.75,.2,1) 310ms both;
  }

  body[data-slide-index="3"] .seams {
    animation: deck-fade-rise 380ms cubic-bezier(.2,.75,.2,1) 430ms both;
  }

  body[data-slide-index="3"] .source-note {
    animation: deck-fade-rise 340ms ease 540ms both;
  }

  /* Slide 4: mission first, operating model second. */
  body[data-slide-index="4"] .slide__header {
    animation: deck-fade-rise 440ms cubic-bezier(.2,.75,.2,1) 40ms both;
  }

  body[data-slide-index="4"] .mission-example {
    animation: deck-fade-left 500ms cubic-bezier(.2,.75,.2,1) 150ms both;
  }

  body[data-slide-index="4"] .mission-flow__contributors span {
    animation: deck-fade-rise 320ms cubic-bezier(.2,.75,.2,1) both;
  }

  body[data-slide-index="4"] .mission-flow__contributors span:nth-child(1) { animation-delay: 250ms; }
  body[data-slide-index="4"] .mission-flow__contributors span:nth-child(2) { animation-delay: 285ms; }
  body[data-slide-index="4"] .mission-flow__contributors span:nth-child(3) { animation-delay: 320ms; }
  body[data-slide-index="4"] .mission-flow__contributors span:nth-child(4) { animation-delay: 355ms; }
  body[data-slide-index="4"] .mission-flow__contributors span:nth-child(5) { animation-delay: 390ms; }
  body[data-slide-index="4"] .mission-flow__contributors span:nth-child(6) { animation-delay: 425ms; }

  body[data-slide-index="4"] .outcome__role {
    animation: deck-fade-right 520ms cubic-bezier(.2,.75,.2,1) 300ms both;
  }

  body[data-slide-index="4"] .outcome__other-missions {
    animation: deck-fade-rise 430ms cubic-bezier(.2,.75,.2,1) 440ms both;
  }

  body[data-slide-index="4"] .source-note {
    animation: deck-fade-rise 340ms ease 540ms both;
  }

  /* Slide 5: explain the provocation, then translate it into JWP. */
  body[data-slide-index="5"] .slide__header {
    animation: deck-fade-rise 440ms cubic-bezier(.2,.75,.2,1) 40ms both;
  }

  body[data-slide-index="5"] .ten-star-method__video {
    animation: deck-fade-right 480ms cubic-bezier(.2,.75,.2,1) 130ms both;
  }

  body[data-slide-index="5"] .star-step {
    animation: deck-fade-rise 360ms cubic-bezier(.2,.75,.2,1) both;
  }

  body[data-slide-index="5"] .star-step:nth-child(1) { animation-delay: 260ms; }
  body[data-slide-index="5"] .star-step:nth-child(2) { animation-delay: 315ms; }
  body[data-slide-index="5"] .star-step:nth-child(3) { animation-delay: 370ms; }
  body[data-slide-index="5"] .star-step:nth-child(4) { animation-delay: 425ms; }
  body[data-slide-index="5"] .star-step:nth-child(5) { animation-delay: 480ms; }
  body[data-slide-index="5"] .star-step:nth-child(6) { animation-delay: 535ms; }

  body[data-slide-index="5"] .method-rule {
    animation: deck-fade-rise 400ms cubic-bezier(.2,.75,.2,1) 610ms both;
  }

  /* Slide 6: compact case study, from diagnosis to redesign to transfer. */
  body[data-slide-index="6"] .emp-case__header {
    animation: deck-fade-rise 420ms cubic-bezier(.2,.75,.2,1) 40ms both;
  }

  body[data-slide-index="6"] .emp-case__core {
    animation: deck-fade-rise 460ms cubic-bezier(.2,.75,.2,1) 140ms both;
  }

  body[data-slide-index="6"] .emp-case__reset {
    animation: deck-fade-rise 480ms cubic-bezier(.2,.75,.2,1) 250ms both;
  }

  body[data-slide-index="6"] .emp-case__bottom {
    animation: deck-fade-rise 480ms cubic-bezier(.2,.75,.2,1) 360ms both;
  }

  body[data-slide-index="6"] .source-note {
    animation: deck-fade-rise 320ms ease 470ms both;
  }

  /* Slide 7: reveal the guest work, then the outcome of removing it. */
  body[data-slide-index="7"] .slide__header {
    animation: deck-fade-rise 440ms cubic-bezier(.2,.75,.2,1) 40ms both;
  }

  body[data-slide-index="7"] .work-item {
    animation: deck-fade-rise 360ms cubic-bezier(.2,.75,.2,1) both;
  }

  body[data-slide-index="7"] .work-item:nth-child(1) { animation-delay: 150ms; }
  body[data-slide-index="7"] .work-item:nth-child(2) { animation-delay: 205ms; }
  body[data-slide-index="7"] .work-item:nth-child(3) { animation-delay: 260ms; }
  body[data-slide-index="7"] .work-item:nth-child(4) { animation-delay: 315ms; }
  body[data-slide-index="7"] .work-item:nth-child(5) { animation-delay: 370ms; }
  body[data-slide-index="7"] .work-item:nth-child(6) { animation-delay: 425ms; }

  body[data-slide-index="7"] .remove-work__principle {
    animation: deck-fade-rise 420ms cubic-bezier(.2,.75,.2,1) 500ms both;
  }

  body[data-slide-index="7"] .source-note {
    animation: deck-fade-rise 340ms ease 570ms both;
  }
}

@media (max-width: 1180px) {
  .cover {
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  }

  .cover h1 {
    font-size: clamp(64px, 8.4vw, 102px);
  }

  .shift__comparison {
    grid-template-columns: minmax(0, 0.85fr) 70px minmax(0, 1.15fr);
  }

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

  .mission-flow__contributors span:nth-child(3)::after {
    display: none;
  }
}

@media (max-width: 900px) {
  html {
    scroll-snap-type: none;
  }

  .presentation-nav,
  .presentation-nav.is-cover {
    top: auto;
    right: 18px;
    bottom: 18px;
    left: 18px;
    width: auto;
  }

  .notes-dialog {
    width: min(700px, calc(100vw - 36px));
  }

  .slide__inner {
    min-height: auto;
    padding-bottom: 118px;
  }

  .cover {
    display: block;
    min-height: auto;
  }

  .cover__content {
    min-height: 92svh;
  }

  .cover__masthead {
    align-items: flex-start;
  }

  .cover__edition {
    flex-direction: column;
    gap: 5px;
    align-items: flex-end;
  }

  .cover h1 {
    max-width: 9.5ch;
    font-size: clamp(62px, 16vw, 104px);
  }

  .cover__visual,
  .cover__visual img {
    min-height: 72svh;
  }

  .cover__visual figcaption {
    bottom: 108px;
    max-width: 72%;
  }

  .premise__body,
  .fragmentation__body,
  .outcome__body {
    grid-template-columns: 1fr;
  }

  .premise__conclusion {
    min-height: 420px;
  }

  .shift__comparison {
    grid-template-columns: 1fr;
  }

  .shift__marker {
    place-items: start;
    min-height: auto;
    padding: 14px 0;
    border-right: 0;
    border-left: 0;
    border-top: 1px solid var(--hairline-dark);
    border-bottom: 1px solid var(--hairline-dark);
  }

  .shift__marker span {
    transform: none;
  }

  .shift__destination {
    grid-template-columns: 1fr;
  }

  .shift__principle {
    grid-column: 1;
  }

  .evidence-block {
    padding-right: 0;
    padding-bottom: 34px;
    border-right: 0;
    border-bottom: 1px solid var(--hairline-light);
  }

  .outcome__role {
    padding-top: 30px;
    padding-left: 0;
    border-top: 1px solid var(--hairline-dark);
    border-left: 0;
  }

  .outcome__other-missions {
    grid-template-columns: 1fr;
  }

  .outcome__other-missions p,
  .outcome__other-missions p + p {
    padding: 16px 0;
    border-left: 0;
    border-top: 1px solid var(--hairline-dark);
  }

  .outcome__other-missions p:first-child {
    border-top: 0;
  }

  .ten-star-method__intro {
    grid-template-columns: 1fr;
  }

  .ten-star-method__video {
    width: min(240px, 100%);
    margin-top: 0;
  }

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

  .star-step:nth-child(3) {
    border-right: 0;
  }

  .star-step:nth-child(-n + 3) {
    border-bottom: 1px solid var(--hairline-light);
  }

  .method-rule,
  .restraint__body,
  .remove-work__principle {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .slide__inner {
    padding-top: 38px;
  }

  .slide__header :is(h1, h2) {
    font-size: clamp(48px, 14vw, 72px);
  }

  .cover__content {
    gap: 38px;
    min-height: 100svh;
    padding-bottom: 118px;
  }

  .cover__masthead {
    gap: 18px;
  }

  .cover__logo {
    width: 150px;
  }

  .cover h1 {
    font-size: clamp(56px, 18vw, 82px);
    line-height: 0.86;
  }

  .cover__dek {
    font-size: 15px;
  }

  .cover__question-copy p {
    font-size: 24px;
  }

  .cover__visual,
  .cover__visual img {
    min-height: 66svh;
  }

  .cover__visual figcaption {
    right: 28px;
    bottom: 100px;
    left: 28px;
    max-width: none;
  }

  .inventory-list,
  .evidence-stats {
    grid-template-columns: 1fr;
  }

  .inventory-list li:nth-child(odd),
  .inventory-list li:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-left: 0;
  }

  .premise__conclusion {
    min-height: 360px;
  }

  .shift__destination-copy {
    display: grid;
    gap: 10px;
  }

  .shift__destination-separator {
    display: none;
  }

  .evidence-block__heading {
    display: grid;
  }

  .evidence-sample {
    text-align: left;
  }

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

  .mission-flow__contributors span:nth-child(2n)::after {
    display: none;
  }

  .citation-note {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .citation {
    width: 100%;
  }

  .citation__popover,
  .citation:last-child .citation__popover {
    right: auto;
    left: 0;
    width: min(340px, calc(100vw - 48px));
  }

  .presentation-nav {
    top: auto;
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    grid-template-columns: 58px 70px 58px minmax(0, 1fr) 58px;
  }

  .notes-dialog {
    width: 100vw;
    height: 100svh;
    border-left: 0;
  }

  .notes-dialog__panel {
    padding: 26px 22px 92px;
  }

  .notes-dialog__header {
    gap: 18px;
  }

  .notes-dialog__header h2 {
    font-size: 44px;
  }

  .presenter-notes {
    padding-top: 24px;
  }

  .presenter-notes p,
  .presenter-notes p:first-child {
    font-size: 15px;
    line-height: 1.7;
  }

  .presenter-notes p + p {
    margin-top: 20px;
  }

  .nav-button {
    min-width: 0;
    padding: 0 8px;
    font-size: 8px;
    letter-spacing: 0.08em;
  }

  .nav-status {
    gap: 7px;
    padding: 0 9px;
  }

  .nav-status__title {
    display: none;
  }

  .contents-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100svh - 20px);
  }

  .contents-dialog__panel {
    padding: 24px;
  }

  .contents-dialog__header {
    gap: 18px;
  }

  .contents-dialog__header h2 {
    font-size: 46px;
  }

  .contents-list a {
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

  .contents-list a small {
    grid-column: 2;
  }

  .star-ladder,
  .work-map,
  .restraint__comparison {
    grid-template-columns: 1fr;
  }

  .star-step,
  .star-step:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid var(--hairline-light);
  }

  .star-step:last-child {
    border-bottom: 0;
  }

  .work-item {
    min-height: 0;
  }

  .method-rule {
    gap: 16px;
  }

  .remove-work__header h1 {
    font-size: clamp(46px, 13.6vw, 68px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .cover__body,
  .cover__visual {
    animation: none;
  }

  .premise::before,
  .shift::before,
  .fragmentation::before,
  .remove-work::before,
  .case-reveal__detail {
    transition: none;
    transform: none !important;
  }
}

/* Slide 8: operating model */

.operating-model__inner {
  gap: clamp(22px, 2.8vh, 36px);
}

.operating-model__header {
  max-width: 1320px;
}

.operating-model__header h1 {
  max-width: 15ch;
  font-size: clamp(50px, 5.2vw, 88px);
}

.operating-model__header .slide__lede {
  max-width: 940px;
  margin-top: 18px;
}

.operating-floor {
  display: grid;
  grid-template-columns: minmax(180px, 0.25fr) minmax(0, 0.75fr);
  gap: clamp(28px, 4vw, 68px);
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
}

.operating-floor__label,
.weak-link__label,
.operating-dimensions__head > p {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.operating-floor h2,
.weak-link h2,
.operating-dimensions__head h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.operating-floor h2 {
  color: var(--ivory-strong);
  font-size: clamp(25px, 2.2vw, 36px);
  line-height: 1;
}

.operating-floor__items {
  margin: 0;
  color: var(--ivory-muted);
  font-size: clamp(12px, 0.9vw, 15px);
  line-height: 1.65;
}

.operating-model__body {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 5vw, 82px);
  align-items: start;
}

.weak-link {
  padding-left: clamp(22px, 2.4vw, 38px);
  border-left: 1px solid var(--gold);
}

.weak-link h2 {
  max-width: 12ch;
  color: var(--ivory-strong);
  font-size: clamp(34px, 3vw, 50px);
  line-height: 0.98;
}

.weak-link > p:not(.weak-link__label) {
  max-width: 510px;
  margin: 17px 0 0;
  color: var(--ivory-muted);
  font-size: 12px;
  line-height: 1.6;
}

.weak-link blockquote {
  max-width: 16ch;
  margin: 22px 0 0;
  color: var(--ivory-strong);
  font-family: var(--display);
  font-size: clamp(24px, 2.1vw, 34px);
  font-style: italic;
  line-height: 1.06;
}

.weak-link small {
  display: block;
  max-width: 510px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--hairline-dark);
  color: #968e82;
  font-size: 10px;
  line-height: 1.55;
}

.operating-dimensions__head {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 20px;
  align-items: baseline;
  margin-bottom: 14px;
}

.operating-dimensions__head > p {
  margin: 0;
}

.operating-dimensions__head h2 {
  max-width: 22ch;
  color: var(--ivory-strong);
  font-size: clamp(25px, 2.1vw, 36px);
  line-height: 1.02;
}

.dimension-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--hairline-dark);
  border-left: 1px solid var(--hairline-dark);
  list-style: none;
}

.dimension-grid li {
  min-width: 0;
  min-height: 112px;
  padding: 14px 15px;
  border-right: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
}

.dimension-grid span,
.blueprint-steps span,
.value-currencies span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.dimension-grid strong {
  display: block;
  color: var(--ivory-strong);
  font-family: var(--display);
  font-size: clamp(18px, 1.45vw, 25px);
  font-weight: 500;
  line-height: 1.02;
}

.dimension-grid small {
  display: block;
  margin-top: 8px;
  color: #9e968a;
  font-size: 9px;
  line-height: 1.48;
}

/* Slide 9: experience intensity */

.moment-allocation__inner {
  gap: clamp(22px, 2.8vh, 36px);
}

.moment-allocation__header {
  max-width: 1320px;
}

.moment-allocation__header h1 {
  max-width: 15ch;
  font-size: clamp(54px, 5.5vw, 92px);
}

.moment-allocation__lede,
.value-legitimacy__lede {
  max-width: 980px;
  margin: 20px 0 0;
  color: var(--charcoal-muted);
  font-size: clamp(15px, 1.1vw, 19px);
  line-height: 1.58;
}

.moment-allocation__body {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(320px, 0.76fr);
  gap: clamp(38px, 5vw, 82px);
  align-items: stretch;
}

.moment-sequence {
  border-bottom: 1px solid var(--hairline-light);
}

.moment-sequence article {
  display: grid;
  grid-template-columns: 48px minmax(200px, 0.62fr) minmax(0, 1fr);
  gap: clamp(16px, 2vw, 34px);
  align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid var(--hairline-light);
}

.moment-sequence__index {
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.moment-sequence h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(22px, 1.9vw, 32px);
  font-weight: 500;
  line-height: 1.02;
}

.moment-sequence p {
  margin: 0;
  color: var(--charcoal-muted);
  font-size: 11px;
  line-height: 1.55;
}

.moment-sequence__peak h2,
.moment-sequence__peak .moment-sequence__index {
  color: var(--gold-dark);
}

.restraint-panel {
  padding: clamp(22px, 2.6vw, 38px);
  background: var(--ink);
  color: var(--ivory-strong);
}

.restraint-panel__label,
.protected-attention span,
.moment-allocation__principle-label {
  margin: 0;
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.restraint-panel h2 {
  max-width: 14ch;
  margin: 10px 0 0;
  font-family: var(--display);
  font-size: clamp(29px, 2.5vw, 43px);
  font-weight: 500;
  line-height: 1;
}

.restraint-tests {
  margin: 22px 0 0;
}

.restraint-tests div {
  display: grid;
  grid-template-columns: minmax(90px, 0.42fr) minmax(0, 0.58fr);
  gap: 14px;
  padding: 8px 0;
  border-top: 1px solid var(--hairline-dark);
}

.restraint-tests div:last-child {
  border-bottom: 1px solid var(--hairline-dark);
}

.restraint-tests dt,
.restraint-tests dd {
  margin: 0;
  font-size: 10px;
  line-height: 1.45;
}

.restraint-tests dt {
  color: var(--ivory-strong);
  font-weight: 600;
}

.restraint-tests dd {
  color: var(--ivory-muted);
}

.protected-attention {
  margin-top: 20px;
}

.protected-attention p {
  margin: 8px 0 0;
  color: var(--ivory-muted);
  font-size: 10px;
  line-height: 1.55;
}

.moment-allocation__principle {
  display: grid;
  grid-template-columns: 140px minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(20px, 3vw, 46px);
  align-items: start;
  padding-top: 16px;
  border-top: 1px solid var(--hairline-light);
}

.moment-allocation__principle-label {
  color: var(--gold-dark);
}

.moment-allocation__principle > p:not(.moment-allocation__principle-label) {
  margin: 0;
  color: var(--charcoal-muted);
  font-size: 11px;
  line-height: 1.55;
}

.moment-allocation__principle blockquote {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(23px, 2vw, 34px);
  font-style: italic;
  line-height: 1.08;
}

/* Slide 10: backstage blueprint */

.blueprint__inner {
  gap: clamp(20px, 2.5vh, 32px);
}

.blueprint__header {
  max-width: 1320px;
}

.blueprint__header h1 {
  max-width: 16ch;
  font-size: clamp(48px, 4.9vw, 82px);
}

.blueprint__header .slide__lede {
  max-width: 940px;
  margin-top: 17px;
}

.blueprint-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.64fr) minmax(0, 1.36fr);
  border-top: 1px solid var(--hairline-dark);
  border-left: 1px solid var(--hairline-dark);
}

.blueprint-promise,
.blueprint-system {
  min-width: 0;
  border-right: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
}

.blueprint-promise {
  padding: clamp(20px, 2.5vw, 36px);
  background: rgba(196, 164, 95, 0.055);
}

.blueprint-promise__label,
.blueprint-system__head > p,
.advocacy__head > p,
.blueprint-promise__role > span {
  margin: 0;
  color: var(--gold);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.blueprint-promise h2,
.blueprint-system__head h2,
.advocacy__head h2 {
  margin: 0;
  color: var(--ivory-strong);
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.blueprint-promise h2 {
  max-width: 12ch;
  margin-top: 9px;
  font-size: clamp(32px, 2.8vw, 46px);
  line-height: 1;
}

.blueprint-promise > p:not(.blueprint-promise__label) {
  max-width: 470px;
  margin: 16px 0 0;
  color: var(--ivory-muted);
  font-size: 11px;
  line-height: 1.58;
}

.blueprint-promise__role {
  margin-top: 24px;
  padding-top: 15px;
  border-top: 1px solid var(--hairline-dark);
}

.blueprint-promise__role p {
  margin: 8px 0 0;
  color: #d8d1c5;
  font-size: 10px;
  line-height: 1.55;
}

.blueprint-system__head {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 20px;
  align-items: baseline;
  padding: 14px 16px;
  border-bottom: 1px solid var(--hairline-dark);
}

.blueprint-system__head h2 {
  max-width: 22ch;
  font-size: clamp(23px, 1.9vw, 32px);
  line-height: 1.04;
}

.blueprint-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.blueprint-steps li {
  min-width: 0;
  min-height: 112px;
  padding: 13px 14px;
  border-right: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
}

.blueprint-steps li:nth-child(4n) {
  border-right: 0;
}

.blueprint-steps li:nth-child(n + 5) {
  border-bottom: 0;
}

.blueprint-steps strong {
  display: block;
  color: var(--ivory-strong);
  font-family: var(--display);
  font-size: clamp(17px, 1.35vw, 23px);
  font-weight: 500;
  line-height: 1.03;
}

.blueprint-steps small {
  display: block;
  margin-top: 7px;
  color: #948c80;
  font-size: 8.5px;
  line-height: 1.45;
}

.advocacy {
  display: grid;
  grid-template-columns: minmax(240px, 0.52fr) minmax(0, 1.48fr);
  border-top: 1px solid var(--hairline-dark);
  border-left: 1px solid var(--hairline-dark);
}

.advocacy__head {
  padding: 14px 18px;
  border-right: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
}

.advocacy__head h2 {
  max-width: 16ch;
  margin-top: 8px;
  font-size: clamp(21px, 1.7vw, 29px);
  line-height: 1.04;
}

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

.advocacy__routes article {
  min-width: 0;
  padding: 14px 16px;
  border-right: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
}

.advocacy__routes span {
  color: var(--gold);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.advocacy__routes p {
  margin: 8px 0 0;
  color: var(--ivory-muted);
  font-size: 9px;
  line-height: 1.5;
}

.advocacy__principle {
  grid-column: 1 / -1;
  margin: 0;
  padding: 10px 16px;
  border-right: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
  color: #aaa296;
  font-size: 9px;
  line-height: 1.5;
}

.advocacy__principle strong {
  color: var(--ivory-strong);
  font-weight: 500;
}

/* Slide 11: value legitimacy */

.value-legitimacy__inner {
  gap: clamp(26px, 3.5vh, 48px);
}

.value-legitimacy__header {
  max-width: 1240px;
}

.value-legitimacy__header h1 {
  max-width: 13ch;
  font-size: clamp(60px, 6vw, 102px);
}

.value-legitimacy__body {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(46px, 6vw, 98px);
  align-items: start;
}

.value-evidence {
  padding-right: clamp(24px, 3vw, 48px);
  border-right: 1px solid var(--hairline-light);
}

.value-evidence__label,
.value-test__head > p,
.value-test__principle > p {
  margin: 0;
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.value-evidence__metric {
  display: block;
  margin-top: 18px;
  color: var(--gold-dark);
  font-family: var(--display);
  font-size: clamp(106px, 10vw, 170px);
  font-weight: 500;
  line-height: 0.72;
  letter-spacing: -0.065em;
}

.value-evidence h2 {
  max-width: 17ch;
  margin: 23px 0 0;
  font-family: var(--display);
  font-size: clamp(26px, 2.3vw, 39px);
  font-weight: 500;
  line-height: 1.02;
}

.value-evidence__sample {
  margin: 20px 0 0;
  color: var(--charcoal);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.value-evidence__caveat {
  max-width: 540px;
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--hairline-light);
  color: var(--charcoal-muted);
  font-size: 10px;
  line-height: 1.55;
}

.value-test__head {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  align-items: baseline;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hairline-light);
}

.value-test__head h2 {
  max-width: 20ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 2.5vw, 43px);
  font-weight: 500;
  line-height: 1;
}

.value-currencies {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.value-currencies li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
  padding: 13px 0;
  border-bottom: 1px solid var(--hairline-light);
}

.value-currencies li:nth-child(odd) {
  padding-right: 24px;
}

.value-currencies li:nth-child(even) {
  padding-left: 24px;
  border-left: 1px solid var(--hairline-light);
}

.value-currencies span {
  margin: 0;
  color: var(--gold-dark);
}

.value-currencies strong {
  font-family: var(--display);
  font-size: clamp(20px, 1.7vw, 29px);
  font-weight: 500;
  line-height: 1;
}

.value-test__principle {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding-top: 18px;
}

.value-test__principle blockquote {
  max-width: 720px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 2.5vw, 42px);
  font-style: italic;
  line-height: 1.06;
}

@media (prefers-reduced-motion: no-preference) {
  body[data-slide-index="8"] .operating-model__header,
  body[data-slide-index="9"] .moment-allocation__header,
  body[data-slide-index="10"] .blueprint__header,
  body[data-slide-index="11"] .value-legitimacy__header {
    animation: deck-fade-rise 440ms cubic-bezier(.2,.75,.2,1) 40ms both;
  }

  body[data-slide-index="8"] .operating-floor {
    animation: deck-fade-rise 420ms cubic-bezier(.2,.75,.2,1) 130ms both;
  }

  body[data-slide-index="8"] .weak-link {
    animation: deck-fade-left 480ms cubic-bezier(.2,.75,.2,1) 220ms both;
  }

  body[data-slide-index="8"] .operating-dimensions__head {
    animation: deck-fade-right 440ms cubic-bezier(.2,.75,.2,1) 230ms both;
  }

  body[data-slide-index="8"] .dimension-grid li,
  body[data-slide-index="10"] .blueprint-steps li,
  body[data-slide-index="11"] .value-currencies li {
    animation: deck-fade-rise 320ms cubic-bezier(.2,.75,.2,1) both;
  }

  body[data-slide-index="8"] .dimension-grid li:nth-child(1),
  body[data-slide-index="10"] .blueprint-steps li:nth-child(1),
  body[data-slide-index="11"] .value-currencies li:nth-child(1) { animation-delay: 300ms; }
  body[data-slide-index="8"] .dimension-grid li:nth-child(2),
  body[data-slide-index="10"] .blueprint-steps li:nth-child(2),
  body[data-slide-index="11"] .value-currencies li:nth-child(2) { animation-delay: 335ms; }
  body[data-slide-index="8"] .dimension-grid li:nth-child(3),
  body[data-slide-index="10"] .blueprint-steps li:nth-child(3),
  body[data-slide-index="11"] .value-currencies li:nth-child(3) { animation-delay: 370ms; }
  body[data-slide-index="8"] .dimension-grid li:nth-child(4),
  body[data-slide-index="10"] .blueprint-steps li:nth-child(4),
  body[data-slide-index="11"] .value-currencies li:nth-child(4) { animation-delay: 405ms; }
  body[data-slide-index="8"] .dimension-grid li:nth-child(5),
  body[data-slide-index="10"] .blueprint-steps li:nth-child(5),
  body[data-slide-index="11"] .value-currencies li:nth-child(5) { animation-delay: 440ms; }
  body[data-slide-index="8"] .dimension-grid li:nth-child(6),
  body[data-slide-index="10"] .blueprint-steps li:nth-child(6),
  body[data-slide-index="11"] .value-currencies li:nth-child(6) { animation-delay: 475ms; }
  body[data-slide-index="8"] .dimension-grid li:nth-child(7),
  body[data-slide-index="10"] .blueprint-steps li:nth-child(7),
  body[data-slide-index="11"] .value-currencies li:nth-child(7) { animation-delay: 510ms; }
  body[data-slide-index="8"] .dimension-grid li:nth-child(8),
  body[data-slide-index="10"] .blueprint-steps li:nth-child(8),
  body[data-slide-index="11"] .value-currencies li:nth-child(8) { animation-delay: 545ms; }

  body[data-slide-index="9"] .moment-sequence article {
    animation: deck-fade-left 360ms cubic-bezier(.2,.75,.2,1) both;
  }

  body[data-slide-index="9"] .moment-sequence article:nth-child(1) { animation-delay: 150ms; }
  body[data-slide-index="9"] .moment-sequence article:nth-child(2) { animation-delay: 215ms; }
  body[data-slide-index="9"] .moment-sequence article:nth-child(3) { animation-delay: 280ms; }
  body[data-slide-index="9"] .moment-sequence article:nth-child(4) { animation-delay: 345ms; }

  body[data-slide-index="9"] .restraint-panel {
    animation: deck-fade-right 500ms cubic-bezier(.2,.75,.2,1) 250ms both;
  }

  body[data-slide-index="9"] .moment-allocation__principle {
    animation: deck-fade-rise 420ms cubic-bezier(.2,.75,.2,1) 430ms both;
  }

  body[data-slide-index="10"] .blueprint-promise {
    animation: deck-fade-left 460ms cubic-bezier(.2,.75,.2,1) 150ms both;
  }

  body[data-slide-index="10"] .blueprint-system__head {
    animation: deck-fade-right 440ms cubic-bezier(.2,.75,.2,1) 190ms both;
  }

  body[data-slide-index="10"] .advocacy {
    animation: deck-fade-rise 440ms cubic-bezier(.2,.75,.2,1) 570ms both;
  }

  body[data-slide-index="11"] .value-evidence {
    animation: deck-fade-left 500ms cubic-bezier(.2,.75,.2,1) 150ms both;
  }

  body[data-slide-index="11"] .value-test__head {
    animation: deck-fade-right 440ms cubic-bezier(.2,.75,.2,1) 200ms both;
  }

  body[data-slide-index="11"] .value-test__principle {
    animation: deck-fade-rise 420ms cubic-bezier(.2,.75,.2,1) 590ms both;
  }

  body[data-slide-index="8"] .source-note,
  body[data-slide-index="9"] .source-note,
  body[data-slide-index="10"] .source-note,
  body[data-slide-index="11"] .source-note {
    animation: deck-fade-rise 320ms ease 640ms both;
  }
}

@media (max-width: 1100px) {
  .operating-model__body,
  .moment-allocation__body,
  .value-legitimacy__body {
    grid-template-columns: 1fr;
  }

  .weak-link,
  .value-evidence {
    padding-right: 0;
    padding-bottom: 28px;
    padding-left: 0;
    border-right: 0;
    border-bottom: 1px solid var(--hairline-dark);
    border-left: 0;
  }

  .moment-allocation .restraint-panel {
    min-height: 0;
  }

  .blueprint-shell,
  .advocacy {
    grid-template-columns: 1fr;
  }

  .blueprint-promise,
  .advocacy__head {
    border-right: 1px solid var(--hairline-dark);
  }

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

@media (max-width: 900px) {
  .operating-floor,
  .operating-dimensions__head,
  .moment-allocation__principle,
  .blueprint-system__head,
  .value-test__head,
  .value-test__principle {
    grid-template-columns: 1fr;
  }

  .dimension-grid,
  .blueprint-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blueprint-steps li:nth-child(4n) {
    border-right: 1px solid var(--hairline-dark);
  }

  .blueprint-steps li:nth-child(2n) {
    border-right: 0;
  }

  .blueprint-steps li:nth-child(n + 5) {
    border-bottom: 1px solid var(--hairline-dark);
  }

  .blueprint-steps li:nth-child(n + 7) {
    border-bottom: 0;
  }

  .advocacy__routes {
    grid-template-columns: 1fr;
  }

  .advocacy__routes article {
    border-right: 1px solid var(--hairline-dark);
  }

  .moment-sequence article {
    grid-template-columns: 42px minmax(180px, 0.7fr) minmax(0, 1.3fr);
  }
}

@media (max-width: 620px) {
  .operating-model__header h1,
  .moment-allocation__header h1,
  .blueprint__header h1,
  .value-legitimacy__header h1 {
    font-size: clamp(44px, 13vw, 66px);
  }

  .operating-floor {
    gap: 12px;
  }

  .dimension-grid,
  .blueprint-steps,
  .value-currencies {
    grid-template-columns: 1fr;
  }

  .dimension-grid li,
  .blueprint-steps li {
    min-height: 0;
  }

  .blueprint-steps li,
  .blueprint-steps li:nth-child(2n),
  .blueprint-steps li:nth-child(4n),
  .blueprint-steps li:nth-child(n + 7) {
    border-right: 0;
    border-bottom: 1px solid var(--hairline-dark);
  }

  .blueprint-steps li:last-child {
    border-bottom: 0;
  }

  .moment-sequence article {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 8px 14px;
  }

  .moment-sequence article p {
    grid-column: 2;
  }

  .moment-allocation__principle {
    gap: 14px;
  }

  .restraint-panel {
    padding: 24px;
  }

  .value-evidence {
    border-bottom-color: var(--hairline-light);
  }

  .value-currencies li,
  .value-currencies li:nth-child(odd),
  .value-currencies li:nth-child(even) {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 12px 0;
    border-left: 0;
  }

  .value-test__head,
  .value-test__principle {
    gap: 12px;
  }
}

/* Executive-density correction for Slides 08–11 after rendered viewport QA. */
.operating-model__inner,
.moment-allocation__inner,
.blueprint__inner,
.value-legitimacy__inner {
  padding-top: 34px;
  padding-bottom: 42px;
}

.operating-model__inner,
.moment-allocation__inner,
.blueprint__inner {
  gap: 16px;
}

.value-legitimacy__inner {
  gap: 22px;
}

.operating-model__header h1 {
  max-width: 22ch;
  font-size: clamp(46px, 3.9vw, 66px);
  line-height: 0.92;
}

.moment-allocation__header h1 {
  max-width: 22ch;
  font-size: clamp(48px, 4.1vw, 70px);
  line-height: 0.92;
}

.blueprint__header h1 {
  max-width: 22ch;
  font-size: clamp(46px, 3.8vw, 64px);
  line-height: 0.92;
}

.value-legitimacy__header h1 {
  max-width: 16ch;
  font-size: clamp(56px, 5vw, 84px);
  line-height: 0.9;
}

.operating-model__header .slide__lede,
.blueprint__header .slide__lede,
.moment-allocation__lede,
.value-legitimacy__lede {
  margin-top: 12px;
  font-size: clamp(13px, 0.95vw, 16px);
  line-height: 1.48;
}

.operating-floor {
  padding: 10px 0;
}

.operating-floor h2 {
  font-size: clamp(23px, 1.8vw, 30px);
}

.operating-floor__items {
  font-size: 11px;
  line-height: 1.5;
}

.operating-model__body {
  grid-template-columns: minmax(300px, 0.66fr) minmax(0, 1.34fr);
  gap: clamp(28px, 4vw, 62px);
}

.weak-link {
  padding-left: 26px;
}

.weak-link h2 {
  max-width: 16ch;
  font-size: clamp(30px, 2.4vw, 40px);
}

.weak-link > p:not(.weak-link__label) {
  margin-top: 11px;
  font-size: 10.5px;
  line-height: 1.5;
}

.weak-link blockquote {
  max-width: 22ch;
  margin-top: 13px;
  font-size: clamp(22px, 1.8vw, 29px);
  line-height: 1.03;
}

.weak-link small {
  margin-top: 11px;
  padding-top: 10px;
  font-size: 8.5px;
  line-height: 1.45;
}

.operating-dimensions__head {
  margin-bottom: 9px;
}

.operating-dimensions__head h2 {
  font-size: clamp(23px, 1.75vw, 30px);
}

.dimension-grid li {
  min-height: 92px;
  padding: 11px 12px;
}

.dimension-grid span,
.blueprint-steps span,
.value-currencies span {
  margin-bottom: 7px;
}

.dimension-grid strong {
  font-size: clamp(17px, 1.25vw, 21px);
}

.dimension-grid small {
  margin-top: 5px;
  font-size: 8px;
  line-height: 1.4;
}

.moment-sequence article {
  padding: 10px 0;
}

.moment-sequence h2 {
  font-size: clamp(20px, 1.55vw, 27px);
}

.moment-sequence p {
  font-size: 9.5px;
  line-height: 1.48;
}

.restraint-panel {
  padding: 24px 28px;
}

.restraint-panel h2 {
  font-size: clamp(27px, 2.1vw, 36px);
}

.restraint-tests {
  margin-top: 15px;
}

.restraint-tests div {
  padding: 6px 0;
}

.protected-attention {
  margin-top: 14px;
}

.moment-allocation__principle {
  padding-top: 11px;
}

.moment-allocation__principle blockquote {
  font-size: clamp(21px, 1.7vw, 29px);
}

.blueprint-promise {
  padding: 20px 24px;
}

.blueprint-promise h2 {
  font-size: clamp(29px, 2.3vw, 39px);
}

.blueprint-promise > p:not(.blueprint-promise__label) {
  margin-top: 11px;
  font-size: 9.5px;
  line-height: 1.48;
}

.blueprint-promise__role {
  margin-top: 15px;
  padding-top: 10px;
}

.blueprint-system__head {
  padding: 10px 13px;
}

.blueprint-system__head h2 {
  font-size: clamp(21px, 1.6vw, 27px);
}

.blueprint-steps li {
  min-height: 92px;
  padding: 10px 11px;
}

.blueprint-steps strong {
  font-size: clamp(16px, 1.15vw, 20px);
}

.blueprint-steps small {
  margin-top: 5px;
  font-size: 7.8px;
  line-height: 1.4;
}

.advocacy__head,
.advocacy__routes article {
  padding: 10px 13px;
}

.advocacy__head h2 {
  font-size: clamp(19px, 1.45vw, 25px);
}

.advocacy__routes p {
  margin-top: 6px;
  font-size: 8px;
}

.advocacy__principle {
  padding: 7px 13px;
  font-size: 8px;
}

.value-legitimacy__body {
  gap: clamp(36px, 5vw, 78px);
}

.value-evidence__metric {
  margin-top: 13px;
  font-size: clamp(96px, 8.5vw, 145px);
}

.value-evidence h2 {
  margin-top: 16px;
  font-size: clamp(24px, 2vw, 34px);
}

.value-evidence__sample {
  margin-top: 14px;
}

.value-evidence__caveat {
  margin-top: 10px;
  padding-top: 10px;
  font-size: 9px;
}

.value-test__head {
  padding-bottom: 11px;
}

.value-test__head h2 {
  font-size: clamp(25px, 2vw, 34px);
}

.value-currencies li {
  padding-top: 10px;
  padding-bottom: 10px;
}

.value-currencies strong {
  font-size: clamp(19px, 1.45vw, 25px);
}

.value-test__principle {
  padding-top: 12px;
}

.value-test__principle blockquote {
  font-size: clamp(25px, 2vw, 34px);
}

@media (max-width: 1100px) {
  .operating-model__body,
  .moment-allocation__body,
  .value-legitimacy__body {
    grid-template-columns: 1fr;
  }

  .weak-link,
  .value-evidence {
    padding-right: 0;
    padding-bottom: 24px;
    padding-left: 0;
    border-right: 0;
    border-bottom: 1px solid var(--hairline-light);
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .operating-model__inner,
  .moment-allocation__inner,
  .blueprint__inner,
  .value-legitimacy__inner {
    padding-top: 38px;
    padding-bottom: 118px;
  }

  .operating-model__header h1,
  .moment-allocation__header h1,
  .blueprint__header h1,
  .value-legitimacy__header h1 {
    font-size: clamp(44px, 13vw, 66px);
    line-height: 0.94;
  }

  .weak-link {
    padding-left: 0;
  }
}
