

/* Below 760px every other pst436 family drops its gutter to a flat 20px
   (`.site-header{top:0;padding:24px 20px}`). The homepage tracks the same
   step here so one token governs the left edge at every viewport. */
@media (max-width: 760px) {
  :root { --page-gutter: 20px; }
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--ink);
  color: var(--ivory);
  overflow-x: hidden;
  max-width: 100%;
}

html { text-size-adjust: 100%; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--grot);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }

/* ---------- Emmy announcement ---------- */

.announcement {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.1vw, 16px);
  padding: 8px 14px;
  background: rgba(89, 69, 50, 0.98);
  color: #fffaf0;
  font-family: var(--grot);
  font-size: 13px;
  line-height: 1.38;
  letter-spacing: 0.025em;
  text-align: center;
  text-wrap: balance;
  box-shadow: 0 1px 0 rgba(255,255,255,0.12);
}

.announcement-copy {
  flex: 0 1 720px;
  width: min(720px, calc(100vw - 150px));
  max-width: 720px;
}

.announcement-mark {
  flex: 0 0 auto;
  width: auto;
  height: 64px;
  object-fit: contain;
}

.announcement-mark--right {
  transform: scaleX(-1);
}

/* ---------- Header ---------- */

.site-header {
  position: absolute;
  top: 92px;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--page-gutter);
  pointer-events: none;
}

.site-header > * { pointer-events: auto; }

.brand {
  display: block;
  width: clamp(132px, 12.5vw, 188px);
  line-height: 0;
}

.brand-mark {
  width: 100%;
  height: auto;
  display: block;
  opacity: 1;
  filter: drop-shadow(0 1px 6px rgba(0,0,0,0.35));
}

@media (min-width: 900px) {
  .announcement {
    min-height: 64px;
    padding: 6px 30px;
    font-size: 14px;
  }
  .announcement-mark { height: 52px; }
  .site-header {
    top: 64px;
  }
}

@media (min-width: 1200px) {
  .announcement { min-height: 54px; }
  .announcement-mark { height: 44px; }
  .site-header { top: 54px; }
}

@media (max-width: 479.98px) {
  .announcement {
    gap: 8px;
    padding-inline: 8px;
    font-size: 11.5px;
    line-height: 1.3;
  }
  .announcement-copy {
    flex-basis: calc(100vw - 100px);
    width: calc(100vw - 100px);
    max-width: calc(100vw - 100px);
    min-width: 0;
  }
  .announcement-mark { height: 58px; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
  z-index: 1;
}

/* Layered scrim preserves the landscape while grounding the bottom copy stack. */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 640px 520px at 20% 48%,
      rgba(20, 17, 13, 0.68) 0%,
      rgba(20, 17, 13, 0.44) 40%,
      rgba(20, 17, 13, 0.14) 66%,
      rgba(20, 17, 13, 0) 78%);
}

.hero-content {
  position: absolute;
  z-index: 3;
  left: var(--page-gutter);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(340px, 42vw, 460px);
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.9vh, 22px);
  color: var(--ivory);
}

.headline {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ivory);
  margin: 0;
  font-size: var(--display-size);
  line-height: 1.17;
  letter-spacing: -0.005em;
  max-width: 22ch;
  text-wrap: balance;
}

.subheadline {
  font-family: var(--grot);
  font-weight: 400;
  color: var(--ivory);
  margin: 0;
  font-size: var(--reading-size);
  line-height: 1.4;
  max-width: 40ch;
  letter-spacing: 0.005em;
}

.cta {
  align-self: flex-start;
  margin-top: 2px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
}

.hero-proof-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: var(--ivory);
  font-family: var(--grot);
  font-size: var(--utility-size);
  font-weight: 500;
  letter-spacing: 0.09em;
  text-decoration: underline;
  text-decoration-color: rgba(237, 226, 202, 0.48);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.hero-proof-link:hover {
  color: #fff;
  text-decoration-color: currentColor;
}

.hero-proof-link:focus-visible {
  outline: 2px solid var(--tally-hi);
  outline-offset: 4px;
}

/* ---------- Desktop refinements ---------- */

@media (min-width: 900px) {
  /* Bottom-left placement follows the live SBF hero's spatial logic:
     one normal edge margin, never a mid-frame floating block. */
  .hero-content {
    top: auto;
    transform: none;
    bottom: clamp(44px, 6vh, 68px);
    left: var(--page-gutter);
    right: var(--page-gutter);
    width: auto;
    gap: clamp(11px, 1.4vh, 15px);
  }
  .headline {
    font-size: var(--display-size);
    line-height: 1.08;
    max-width: none;
  }
  .subheadline {
    max-width: none;
    text-shadow: 0 2px 12px rgba(0,0,0,0.72);
  }
  .hero-scrim {
    background:
      linear-gradient(180deg,
        rgba(14, 12, 9, 0) 0%,
        rgba(14, 12, 9, 0.05) 42%,
        rgba(14, 12, 9, 0.48) 66%,
        rgba(14, 12, 9, 0.82) 100%),
      radial-gradient(ellipse 760px 560px at 22% 82%,
        rgba(20, 17, 13, 0.72) 0%,
        rgba(20, 17, 13, 0.46) 42%,
        rgba(20, 17, 13, 0.16) 66%,
        rgba(20, 17, 13, 0) 78%);
  }
}

@media (min-width: 1200px) {
  .headline {
    font-size: clamp(56px, 4.75vw, 68px);
    max-width: 42ch;
    white-space: normal;
  }
  .hero-content { bottom: clamp(52px, 6.5vh, 76px); }
}

/* ---------- Mobile refinements ---------- */
/* Narrow/mobile follows the live SBF hero's governing behavior: one
   complete, full-viewport image plane with navigation, promise, support,
   and CTA all visible before the fold. The landscape is cropped rather
   than converted into a short strip above a large empty ink field. */

@media (max-width: 899.98px) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    isolation: isolate;
    overflow: hidden;
    background: var(--ink);
  }
  .hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: 50% 55%;
    z-index: 1;
  }
  .hero-scrim {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
      linear-gradient(180deg,
        rgba(14, 12, 9, 0.08) 0%,
        rgba(14, 12, 9, 0.10) 30%,
        rgba(14, 12, 9, 0.48) 56%,
        rgba(14, 12, 9, 0.88) 100%),
      radial-gradient(ellipse 520px 430px at 18% 78%,
        rgba(20, 17, 13, 0.58) 0%,
        rgba(20, 17, 13, 0.32) 54%,
        rgba(20, 17, 13, 0) 80%);
  }
  .hero-content {
    position: absolute;
    left: var(--page-gutter);
    right: var(--page-gutter);
    top: auto;
    bottom: clamp(36px, 5.2svh, 48px);
    transform: none;
    width: auto;
    max-width: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(11px, 1.8svh, 15px);
    z-index: 3;
  }
  .headline {
    font-size: clamp(30px, 8.3vw, 42px);
    line-height: 1.08;
    max-width: 14ch;
  }
  .subheadline {
    max-width: 37ch;
    color: var(--ivory);
    font-size: clamp(15px, 4vw, 18px);
    line-height: 1.42;
    text-shadow: 0 2px 12px rgba(0,0,0,0.82);
  }
  .cta {
    align-self: flex-start;
    justify-content: flex-start;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 479.98px) and (max-height: 740px) {
  .site-header { padding-top: 12px; }
  .hero-content { bottom: 24px; gap: 9px; }
  .headline { font-size: clamp(27px, 7.7vw, 32px); }
  .subheadline { font-size: 14px; line-height: 1.36; }
}

/* ---------- Junk drawer navigation ---------- */

/* ---------- Section 02: the decision gap ---------- */

.decision-gap {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 11% 92%, rgba(193, 68, 47, 0.12), transparent 28%),
    linear-gradient(112deg, #f0e7d4 0%, #e7dac1 58%, #dfcfb2 100%);
  color: var(--ink);
}

.decision-gap::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: clamp(-180px, -13vw, -84px);
  right: clamp(-180px, -9vw, -96px);
  width: clamp(430px, 49vw, 760px);
  aspect-ratio: 1;
  border: clamp(56px, 7vw, 106px) solid rgba(20, 17, 13, 0.055);
  border-radius: 50%;
}

.decision-gap-inner {
  width: min(100%, 1600px);
  margin: 0 auto;
  padding: clamp(68px, 8vh, 96px) var(--page-gutter) clamp(68px, 8vh, 92px);
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(300px, 0.62fr);
  grid-template-rows: auto;
  column-gap: clamp(52px, 7vw, 112px);
  align-items: start;
}

.decision-gap-heading {
  grid-column: 1;
  grid-row: 1;
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: var(--display-size);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.042em;
  text-wrap: balance;
}

.decision-gap-body-wrap {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  position: relative;
  margin-top: clamp(12px, 1.8vw, 28px);
  padding-top: 24px;
}

.decision-gap-body-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 74px;
  height: 7px;
  background: var(--tally);
}

.decision-gap-body {
  max-width: 470px;
  margin: 0;
  font-family: var(--grot);
  font-size: var(--reading-size);
  line-height: 1.46;
  letter-spacing: -0.012em;
  text-wrap: pretty;
}

.decision-gap-stake {
  color: var(--tally);
  font-style: italic;
}

@media (max-width: 899.98px) {
  .decision-gap {
    min-height: auto;
  }

  .decision-gap::before {
    top: -90px;
    right: -235px;
    width: 500px;
    border-width: 64px;
  }

  .decision-gap-inner {
    min-height: auto;
    padding: 70px var(--page-gutter) 64px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 42px;
  }

  .decision-gap-heading {
    max-width: 12ch;
    font-size: clamp(40px, 11.7vw, 54px);
    line-height: 0.99;
    letter-spacing: -0.042em;
    text-wrap: wrap;
  }

  .decision-gap-body-wrap {
    width: min(100%, 470px);
    margin-left: auto;
    margin-top: 0;
    padding-top: 21px;
  }

  .decision-gap-body-wrap::before {
    width: 58px;
    height: 6px;
  }

  .decision-gap-body {
    font-size: clamp(18px, 5vw, 21px);
    line-height: 1.44;
  }
}

/* ---------- Section 03: the moment will not wait ---------- */

.moment-stakes {
  background: var(--ink);
  color: var(--ivory);
}

.moment-stakes-inner {
  width: min(100%, 1600px);
  margin: 0 auto;
  padding: clamp(80px, 10vh, 96px) var(--page-gutter) clamp(72px, 9vh, 88px);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  column-gap: clamp(72px, 9vw, 148px);
  align-items: center;
}

.moment-stakes-copy-column {
  min-width: 0;
}

.moment-stakes-eyebrow {
  margin: 0 0 16px;
  font-family: var(--grot);
  font-size: var(--micro-size);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tally);
}

.moment-stakes-rule {
  display: block;
  width: 32px;
  height: 1px;
  margin: 0 0 28px;
  background: var(--tally);
}

.moment-stakes-heading {
  max-width: 15ch;
  margin: 0 0 40px;
  font-family: var(--serif);
  font-size: var(--display-size);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.032em;
  text-wrap: balance;
}

.moment-stakes-copy {
  max-width: 54ch;
  font-family: var(--grot);
  font-size: var(--reading-size);
  line-height: 1.58;
  color: rgba(237, 226, 202, 0.88);
}

.moment-stakes-copy p {
  margin: 0;
}

.moment-stakes-copy p + p {
  margin-top: 1.4em;
}

.moment-evidence {
  align-self: center;
  padding: clamp(30px, 3.6vw, 48px) 0 clamp(24px, 3vw, 42px) clamp(34px, 4.6vw, 70px);
  border-left: 1px solid rgba(193, 68, 47, 0.62);
}

.moment-evidence-kicker {
  margin: 0 0 30px;
  font-size: var(--micro-size);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tally);
}

.decision-moments {
  list-style: none;
  margin: 0;
  padding: 0;
}

.decision-moment {
  position: relative;
  padding: 0 0 18px 28px;
}

.decision-moment + .decision-moment {
  padding-top: 18px;
  border-top: 1px solid rgba(237, 226, 202, 0.11);
}

.decision-moment::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--tally);
  transform: rotate(45deg);
}

.decision-moment + .decision-moment::before {
  top: 26px;
}

.decision-moment-title {
  display: block;
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: clamp(20px, 1.7vw, 25px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--ivory);
}

.decision-moment-copy {
  display: block;
  max-width: 46ch;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.48;
  color: var(--ivory-mute);
}

@media (min-width: 900px) and (max-width: 1199.98px) {
  .moment-stakes-inner {
    width: min(100%, 1600px);
    padding-top: 80px;
    padding-bottom: 72px;
  }
}

@media (max-width: 899.98px) {
  .moment-stakes-inner {
    width: auto;
    padding: 64px var(--page-gutter) 56px;
    display: block;
  }

  .moment-stakes-rule {
    width: 28px;
  }

  .moment-stakes-heading {
    max-width: 14ch;
    margin-bottom: 28px;
    font-size: clamp(36px, 10.2vw, 46px);
    line-height: 1.14;
  }

  .moment-stakes-copy {
    max-width: 38ch;
    font-size: clamp(17px, 4.8vw, 19px);
    line-height: 1.55;
  }

  .moment-evidence {
    margin-top: 48px;
    padding: 30px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(193, 68, 47, 0.62);
  }

  .decision-moment-title {
    font-size: 22px;
  }

  .decision-moment-copy {
    font-size: 15px;
  }
}

/* ---------- Section 04: the guide ---------- */

.guide {
  background:
    radial-gradient(circle at 84% 24%, rgba(193, 68, 47, 0.08), transparent 28%),
    linear-gradient(155deg, #f2e9d7 0%, #eadfc9 56%, #e1d1b3 100%);
  color: var(--ink);
}

.guide-inner {
  width: min(100%, 1600px);
  margin: 0 auto;
  padding: clamp(92px, 12vh, 128px) var(--page-gutter) clamp(88px, 11vh, 120px);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.68fr);
  column-gap: clamp(72px, 9vw, 142px);
  row-gap: clamp(58px, 7vh, 82px);
  align-items: start;
  justify-items: center;
}

.guide-copy-column {
  min-width: 0;
  grid-column: 1;
}

.guide-introduction {
  max-width: 680px;
  text-align: left;
}

.guide-eyebrow {
  margin: 0 0 14px;
  font-size: var(--micro-size);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}

.guide-rule {
  display: block;
  width: 32px;
  height: 1px;
  margin: 0 0 28px;
  background: var(--tally);
}

.guide-heading {
  max-width: 15ch;
  margin: 0 0 clamp(34px, 4vh, 46px);
  font-family: var(--serif);
  font-size: clamp(44px, 4.15vw, 62px);
  font-weight: 400;
  line-height: 1.11;
  letter-spacing: -0.027em;
  text-wrap: balance;
}

.guide-copy {
  max-width: 56ch;
  text-align: left;
  font-size: var(--reading-size);
  line-height: 1.62;
  color: rgba(20, 17, 13, 0.88);
}

.guide-copy p { margin: 0; }
.guide-copy p + p { margin-top: 1.35em; }

.listening-portrait {
  grid-column: 2;
  grid-row: 1;
  width: min(100%, 500px);
  margin: 0;
  justify-self: end;
}

.listening-portrait img {
  display: block;
  width: 100%;
  height: auto;
}

.listening-portrait figcaption {
  margin-top: 16px;
  font-size: var(--micro-size);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tally);
}

.guide-research {
  grid-column: 1 / -1;
  width: min(100%, 1180px);
  margin-top: 0;
  padding-top: clamp(30px, 4vh, 44px);
  border-top: 1px solid rgba(193, 68, 47, 0.46);
  text-align: center;
}

.guide-research-kicker {
  margin: 0 0 18px;
  font-size: var(--micro-size);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tally);
}

.guide-research-bridge {
  max-width: 48ch;
  margin: 0 auto 30px;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 29px);
  line-height: 1.38;
  color: var(--ink);
}

.guide-research-cadence {
  list-style: none;
  margin: 0 auto 28px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px clamp(18px, 2.8vw, 42px);
}

.guide-research-cadence li {
  position: relative;
  font-family: var(--serif);
  font-size: clamp(25px, 2.6vw, 38px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.018em;
  color: var(--ink);
}

.guide-research-cadence li + li::before {
  content: "·";
  position: absolute;
  left: calc(clamp(18px, 2.8vw, 42px) / -2 - 4px);
  color: var(--tally);
}

.guide-research-insight {
  max-width: 38ch;
  margin: 0 auto 18px;
  font-family: var(--serif);
  font-size: clamp(19px, 1.6vw, 23px);
  line-height: 1.35;
  color: var(--ink);
}

.guide-research-source {
  max-width: 68ch;
  margin: 0 auto;
  font-size: 11px;
  line-height: 1.55;
  color: rgba(20, 17, 13, 0.58);
}

.guide-research-source a {
  border-bottom: 1px solid rgba(20, 17, 13, 0.28);
}

.guide-evidence {
  grid-column: 1 / -1;
  padding: clamp(34px, 4vh, 46px) 0 0;
  border-top: 1px solid rgba(193, 68, 47, 0.55);
}

.guide-evidence-kicker {
  margin: 0 0 32px;
  font-size: var(--micro-size);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tally);
}

.engagement-movement {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: clamp(24px, 3vw, 44px);
}

.engagement-movement li {
  position: relative;
  padding: 14px 0;
  padding-left: 24px;
  border-top: 1px solid rgba(20, 17, 13, 0.15);
  border-bottom: 0;
}

.engagement-movement li:first-child,
.engagement-movement li:nth-child(2) { padding-top: 14px; }

.engagement-movement li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 7px;
  height: 7px;
  background: var(--tally);
  transform: rotate(45deg);
}

.engagement-movement li:first-child::before { top: 24px; }

.engagement-word {
  font-family: var(--serif);
  font-size: clamp(24px, 2.25vw, 34px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--ink);
}

.guide-evidence-insight {
  max-width: 38ch;
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.3;
}

.guide-evidence-source {
  max-width: 48ch;
  margin: 0;
  font-size: 10px;
  line-height: 1.55;
  color: rgba(20, 17, 13, 0.62);
}

.guide-evidence-source a { border-bottom: 1px solid rgba(20, 17, 13, 0.25); }

@media (max-width: 899.98px) {
  .guide-inner {
    padding: 66px var(--page-gutter) 60px;
    display: block;
  }

  .guide-copy-column { display: block; }

  .guide-introduction { text-align: center; }

  .guide-rule {
    width: 28px;
    margin-left: auto;
    margin-right: auto;
  }

  .guide-heading {
    max-width: 16ch;
    font-size: clamp(32px, 8.8vw, 39px);
    line-height: 1.08;
    margin-bottom: 34px;
    margin-left: auto;
    margin-right: auto;
  }

  .guide-copy {
    max-width: none;
    font-size: 16px;
    line-height: 1.58;
    text-align: left;
  }

  .listening-portrait {
    width: min(100%, 430px);
    margin: 48px auto 0;
  }

  .guide-research {
    margin-top: 44px;
    padding-top: 28px;
  }

  .guide-research-cadence {
    display: block;
    margin-bottom: 28px;
  }

  .guide-research-cadence li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(20, 17, 13, 0.13);
    font-size: 27px;
  }

  .guide-research-cadence li + li::before { display: none; }

  .guide-research-insight {
    font-size: 19px;
  }

  .guide-research-source {
    font-size: 10px;
  }

  .guide-evidence {
    margin-top: 52px;
    padding: 30px 0 0;
    border-top: 1px solid rgba(193, 68, 47, 0.55);
  }

  .engagement-movement { margin-bottom: 28px; }

  .engagement-movement {
    display: block;
  }

  .engagement-movement li {
    padding: 12px 0;
    padding-left: 24px;
  }

  .engagement-movement li::before { top: 21px; }
  .engagement-movement li:first-child::before { top: 7px; }

  .engagement-word { font-size: 26px; }
  .guide-evidence-insight { font-size: 19px; }
}

/* ---------- Section 05: the plan ---------- */

.plan {
  position: relative;
  overflow: hidden;
  background: #c1442f;
  color: var(--ivory);
}

.plan::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 88% 10%, rgba(237, 226, 202, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(20, 17, 13, 0.08), transparent 48%);
}

.plan-inner {
  position: relative;
  width: min(100%, 1600px);
  margin: 0 auto;
  padding: clamp(92px, 12vh, 132px) var(--page-gutter) clamp(88px, 11vh, 124px);
}

.plan-introduction {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.62fr);
  column-gap: clamp(64px, 8vw, 132px);
  align-items: start;
}

.plan-eyebrow {
  margin: 0 0 16px;
  font-size: var(--micro-size);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(237, 226, 202, 0.78);
}

.plan-rule {
  display: block;
  width: 32px;
  height: 1px;
  margin: 0 0 28px;
  background: var(--ivory);
}

.plan-heading {
  max-width: 18ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 4.6vw, 68px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.plan-promise {
  max-width: 43ch;
  margin: clamp(54px, 7vh, 76px) 0 8px;
  font-size: var(--reading-size);
  line-height: 1.58;
  color: rgba(237, 226, 202, 0.86);
}

.plan-steps {
  list-style: none;
  margin: clamp(70px, 9vh, 98px) 0 0;
  padding: 0;
  border-top: 1px solid rgba(237, 226, 202, 0.38);
}

.plan-step {
  display: grid;
  grid-template-columns: 126px minmax(280px, 0.74fr) minmax(0, 1fr);
  column-gap: clamp(28px, 4vw, 64px);
  align-items: baseline;
  padding: clamp(28px, 4vh, 42px) 0;
  border-bottom: 1px solid rgba(237, 226, 202, 0.28);
}

.plan-number {
  font-size: var(--micro-size);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(237, 226, 202, 0.72);
}

.plan-step-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.plan-step-copy {
  max-width: 54ch;
  margin: 0;
  font-size: var(--reading-size);
  line-height: 1.58;
  color: rgba(237, 226, 202, 0.84);
}

.plan-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-top: clamp(52px, 7vh, 76px);
}

.plan-action-copy {
  max-width: 54ch;
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(237, 226, 202, 0.8);
}

.plan-cta {
  flex: 0 0 auto;
}

@media (max-width: 899.98px) {
  .plan-inner { padding: 68px var(--page-gutter) 64px; }

  .plan-introduction { display: block; }

  .plan-heading {
    max-width: 15ch;
    font-size: clamp(34px, 9.4vw, 42px);
  }

  .plan-promise {
    margin-top: 30px;
    font-size: 16px;
  }

  .plan-steps { margin-top: 52px; }

  .plan-step {
    display: block;
    padding: 28px 0;
  }

  .plan-number {
    display: block;
    margin-bottom: 12px;
    font-size: 10px;
  }

  .plan-step-title {
    font-size: 28px;
  }

  .plan-step-copy {
    margin-top: 14px;
    font-size: 15px;
  }

  .plan-action {
    display: block;
    margin-top: 44px;
  }

  .plan-cta {
    margin-top: 24px;
  }
}


/* ---------- Guide authority chapter ---------- */
.authority-bridge {
  background: #0e0c09;
  color: var(--ivory);
  border-top: 1px solid rgba(237,226,202,0.12);
  border-bottom: 1px solid rgba(237,226,202,0.12);
}
.authority-inner {
  width: min(100%,1600px);
  margin: 0 auto;
  padding: clamp(88px,11vh,126px) var(--page-gutter) clamp(82px,10vh,116px);
}
.authority-kicker {
  margin: 0 0 30px;
  font-size: var(--micro-size);
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.45;
  text-transform: uppercase;
  color: rgba(237,226,202,0.62);
}
.authority-main {
  display: grid;
  grid-template-columns: minmax(300px,0.55fr) minmax(0,1.18fr) minmax(300px,0.66fr);
  min-height: 510px;
  border-top: 1px solid rgba(237,226,202,0.26);
  border-bottom: 1px solid rgba(237,226,202,0.26);
}
.authority-emmy-figure,
.authority-recognition,
.authority-broadcast {
  margin: 0;
  padding: clamp(42px,6vw,78px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.authority-emmy-figure { align-items: center; flex-direction: row; justify-content: center; padding-inline: clamp(16px,2vw,28px); }
.authority-emmy-statue {
  display: block;
  flex: 0 0 auto;
  height: clamp(128px,10vw,160px);
  aspect-ratio: 140/218;
  background: var(--ivory);
  -webkit-mask: url('../images/pst-emmy-statue.png') center/contain no-repeat;
  mask: url('../images/pst-emmy-statue.png') center/contain no-repeat;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.42));
}
.authority-emmy-statue+.authority-emmy-statue { margin-left: -14px; }
.authority-recognition { border-left: 1px solid rgba(237,226,202,0.18); }
.authority-broadcast {
  align-items: center;
  text-align: center;
  border-left: 1px solid rgba(237,226,202,0.18);
}
.authority-label {
  margin: 0 0 20px;
  font-size: var(--micro-size);
  font-weight: 650;
  letter-spacing: 0.2em;
  line-height: 1.45;
  text-transform: uppercase;
  color: #dc7657;
}
.authority-statement {
  max-width: 15ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px,4.3vw,66px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.authority-category {
  margin: 28px 0 0;
  font-size: var(--utility-size);
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(237,226,202,0.86);
}
.authority-attribution {
  max-width: 46ch;
  margin: 28px 0 0;
  font-size: var(--reading-size);
  line-height: 1.55;
  color: rgba(237,226,202,0.76);
}
.authority-attribution em,.authority-follow em,.authority-public em { color: var(--ivory); font-weight:600; }
.authority-follow {
  margin: 12px 0 0;
  font-size: var(--reading-size);
  line-height: 1.55;
  color: rgba(237,226,202,0.68);
}
.authority-broadcast-mark {
  display: block;
  width: min(100%,270px);
  margin: 0;
}
.authority-broadcast-mark .pbs-logo { display: block; width: 100%; height: auto; }
.authority-broadcast-mark .pbs-logo-primary { fill: var(--ivory); }
.authority-broadcast-mark .pbs-logo-negative { fill: #0e0c09; }
.authority-broadcast .authority-label { margin-top: 34px; margin-bottom: 14px; }
.authority-public {
  max-width: 29ch;
  margin: 0;
  font-size: var(--reading-size);
  line-height: 1.55;
  color: rgba(237,226,202,0.7);
}

.authority-speech{margin:clamp(54px,7vh,76px) 0 0}
.authority-speech-intro{display:flex;align-items:flex-end;justify-content:space-between;gap:28px;margin:0 0 24px}
.authority-speech-intro h3{margin:0;font-family:var(--serif);font-size:clamp(34px,4.2vw,60px);font-weight:400;line-height:1.05;letter-spacing:-.03em;color:var(--ivory)}
.authority-speech-intro span{font-size:var(--micro-size);font-weight:650;line-height:1.45;letter-spacing:.18em;text-transform:uppercase;color:#dc7657}
.authority-speech-stage{position:relative;width:100%;aspect-ratio:16/9;overflow:hidden;background:#080706}
.authority-speech-play{position:absolute;inset:0;width:100%;height:100%;display:block;border:0;padding:0;background:transparent;cursor:pointer}
.authority-speech-poster{width:100%;height:100%;display:block;object-fit:cover}
.authority-speech-play-icon{position:absolute;left:50%;top:50%;width:82px;height:82px;border:3px solid rgba(255,250,240,.94);border-radius:50%;background:rgba(8,7,6,.5);transform:translate(-50%,-50%)}
.authority-speech-play-icon::after{content:"";position:absolute;left:32px;top:23px;border-top:17px solid transparent;border-bottom:17px solid transparent;border-left:25px solid var(--ivory)}
.authority-speech-stage iframe{position:absolute;inset:0;width:100%;height:100%;border:0}
.authority-speech-selector{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-top:16px}
.authority-speech-tab{min-width:0;padding:16px 14px;border:0;border-top:1px solid rgba(237,226,202,.28);background:transparent;color:rgba(237,226,202,.64);font-size:11px;font-weight:700;line-height:1.35;letter-spacing:.08em;text-align:left;text-transform:uppercase;cursor:pointer}
.authority-speech-tab.is-active{border-top-color:#dc7657;color:var(--ivory)}
.authority-speech-tab:hover{color:#dc7657}
.authority-speech-tab:focus-visible,.authority-speech-play:focus-visible{outline:2px solid #dc7657;outline-offset:3px}
@media(max-width:699.98px){.authority-speech-intro{display:block}.authority-speech-intro span{display:block;margin-top:14px}.authority-speech-selector{display:flex;overflow-x:auto;overflow-y:hidden;scroll-snap-type:x mandatory;padding-bottom:6px}.authority-speech-tab{flex:0 0 190px;scroll-snap-align:start}.authority-speech-play-icon{width:68px;height:68px}.authority-speech-play-icon::after{left:27px;top:19px;border-top-width:14px;border-bottom-width:14px;border-left-width:21px}}

.authority-record {
  display: grid;
  grid-template-columns: minmax(260px,0.72fr) minmax(0,1.28fr);
  gap: clamp(44px,7vw,104px);
  align-items: end;
  padding-top: clamp(54px,7vh,76px);
}
.authority-record-title { margin: 0; font: inherit; }
.authority-record-title em {
  display: block;
  margin-top: 10px;
  font-family: var(--serif);
  font-size: clamp(28px,3vw,42px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--ivory);
}
.authority-ledger {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  border-top: 1px solid rgba(237,226,202,0.2);
  border-bottom: 1px solid rgba(237,226,202,0.2);
}
.authority-ledger div {
  min-height: 138px;
  padding: 24px clamp(18px,2.4vw,32px);
  display: grid;
  align-content: center;
}
.authority-ledger div + div { border-left: 1px solid rgba(237,226,202,0.18); }
.authority-ledger span {
  font-family: var(--serif);
  font-size: clamp(42px,4.4vw,62px);
  line-height: 0.9;
  color: var(--ivory);
}
.authority-ledger strong {
  margin-top: 13px;
  font-size: var(--micro-size);
  font-weight: 650;
  letter-spacing: 0.16em;
  line-height: 1.45;
  text-transform: uppercase;
  color: #dc7657;
}
.authority-close {
  max-width: 64ch;
  margin: clamp(42px,6vh,62px) 0 0 auto;
  font-family: var(--serif);
  font-size: clamp(22px,2vw,30px);
  line-height: 1.38;
  color: rgba(237,226,202,0.8);
}
@media (max-width: 1099.98px) {
  .authority-main { grid-template-columns: 220px minmax(0,1fr); min-height: 0; }
  .authority-broadcast {
    grid-column: 1 / -1;
    min-height: 300px;
    border-top: 1px solid rgba(237,226,202,0.18);
    border-left: 0;
  }
}
@media (max-width: 699.98px) {
  .authority-inner { padding: 68px var(--page-gutter) 72px; }
  .authority-kicker { max-width: 28ch; margin-bottom: 24px; }
  .authority-main { display: block; }
  .authority-emmy-figure { min-height: 330px; padding: 48px 24px; }
  .authority-emmy-statue { height: 145px; }
  .authority-recognition,
  .authority-broadcast { border-left: 0; border-top: 1px solid rgba(237,226,202,0.18); padding: 48px 0; }
  .authority-statement { max-width: 14ch; font-size: 38px; }
  .authority-follow,.authority-public { font-size: 16px; }
  .authority-record { display: block; padding-top: 52px; }
  .authority-ledger { margin-top: 32px; display: block; }
  .authority-ledger div { min-height: 110px; grid-template-columns: 70px 1fr; align-items: center; align-content: initial; padding: 20px 12px; }
  .authority-ledger div + div { border-left: 0; border-top: 1px solid rgba(237,226,202,0.18); }
  .authority-ledger strong { margin-top: 0; }
  .authority-close { margin-top: 42px; font-size: 22px; }
}

/* ---------- Section 06: success / transfer ---------- */
.success {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(145deg, #f3ead8 0%, #eadcc3 52%, #dfceb0 100%);
  color: var(--ink);
}
.success::before,
.success::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  border: 1px solid rgba(193,68,47,0.17);
  pointer-events: none;
}
.success::before {
  width: min(92vw, 1280px);
  aspect-ratio: 1;
  left: 50%;
  top: 42%;
  transform: translate(-50%,-50%);
  box-shadow: 0 0 0 90px rgba(193,68,47,0.045), 0 0 0 180px rgba(193,68,47,0.028);
}
.success::after {
  width: min(48vw, 650px);
  aspect-ratio: 1;
  right: -12%;
  bottom: -38%;
  border-color: rgba(20,17,13,0.1);
}
.success-inner {
  width: min(100%,1600px);
  margin: 0 auto;
  padding: clamp(104px,14vh,154px) var(--page-gutter) clamp(110px,15vh,168px);
}
.success-intro {
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
}
.success-eyebrow {
  margin: 0 0 16px;
  font-size: var(--micro-size);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tally);
}
.success-rule {
  display: block;
  width: 32px;
  height: 1px;
  margin: 0 auto 30px;
  background: var(--tally);
}
.success-heading {
  max-width: 25ch;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(48px,5.6vw,80px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.038em;
  text-wrap: balance;
}
.success-opening {
  max-width: 52ch;
  margin: clamp(38px,5vh,58px) auto 0;
  font-size: var(--reading-size);
  line-height: 1.62;
  color: rgba(20,17,13,0.78);
}
.transfer-field {
  position: relative;
  width: min(100%,1240px);
  min-height: 360px;
  margin: clamp(70px,10vh,106px) auto 0;
}
.transfer-spine {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(var(--tally),rgba(193,68,47,0.12));
}
.transfer-point {
  position: absolute;
  width: min(37%,420px);
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(23px,2.3vw,34px);
  line-height: 1.22;
  letter-spacing: -0.018em;
}
.transfer-point::before {
  content: "";
  position: absolute;
  top: 0.7em;
  height: 1px;
  width: clamp(42px,7vw,110px);
  background: rgba(193,68,47,0.48);
}
.transfer-point--one { left: 0; top: 8px; text-align: right; }
.transfer-point--one::before { left: calc(100% + 24px); }
.transfer-point--two { right: 0; top: 128px; }
.transfer-point--two::before { right: calc(100% + 24px); }
.transfer-point--three { left: 8%; bottom: 6px; text-align: right; }
.transfer-point--three::before { left: calc(100% + 24px); }
.success-transfer {
  max-width: 58ch;
  margin: clamp(62px,8vh,88px) auto 0;
  text-align: center;
  font-size: clamp(17px,1.35vw,20px);
  line-height: 1.62;
  color: rgba(20,17,13,0.76);
}

/* ---------- Section 07: bounded case + film ---------- */
.case-study {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg,#17130f 0%,#0f0d0a 100%);
  color: var(--ivory);
}
.case-inner {
  width: min(100%,1600px);
  margin: 0 auto;
  padding: clamp(96px,12vh,136px) var(--page-gutter) clamp(96px,12vh,140px);
}
.case-header {
  display: grid;
  grid-template-columns: minmax(0,0.72fr) minmax(380px,1.28fr);
  column-gap: clamp(64px,9vw,148px);
  align-items: end;
}
.case-eyebrow {
  margin: 0 0 18px;
  font-size: var(--micro-size);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tally-hi);
}
.case-title {
  max-width: 14ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(50px,5vw,74px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.035em;
}
.case-lead {
  max-width: 54ch;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(193,68,47,0.58);
  font-size: var(--reading-size);
  line-height: 1.62;
  color: rgba(237,226,202,0.84);
}
.case-finding {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: clamp(40px,7vw,112px);
  margin: clamp(66px,9vh,98px) 0 clamp(58px,8vh,88px);
  padding-top: clamp(32px,4vh,46px);
  border-top: 1px solid rgba(237,226,202,0.13);
}
.case-finding-label {
  margin: 0;
  font-size: var(--micro-size);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}
.case-finding-copy {
  max-width: 58ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(25px,2.7vw,40px);
  line-height: 1.26;
  color: var(--ivory);
}
.case-process { margin:clamp(66px,9vh,98px) 0 clamp(58px,8vh,88px); padding-top:clamp(32px,4vh,46px); border-top:1px solid rgba(237,226,202,.13); }
.case-process-heading { margin:0; font-family:var(--serif); font-size:clamp(34px,4vw,56px); font-weight:400; line-height:1.08; color:var(--ivory); }
.case-process-steps { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:0; margin:clamp(34px,5vh,52px) 0 0; padding:0; list-style:none; border-top:1px solid rgba(193,68,47,.58); border-bottom:1px solid rgba(237,226,202,.13); }
.case-process-step { min-width:0; padding:clamp(26px,3.5vw,42px); border-right:1px solid rgba(237,226,202,.13); }
.case-process-step:last-child { border-right:0; }
.case-process-number { display:block; margin-bottom:18px; font-size:var(--micro-size); font-weight:650; line-height:1.45; letter-spacing:.19em; text-transform:uppercase; color:#dc7657; }
.case-process-title { margin:0; font-family:var(--serif); font-size:clamp(25px,2.3vw,34px); font-weight:400; line-height:1.14; color:var(--ivory); }
.case-process-copy { margin:18px 0 0; font-size:clamp(15px,1.15vw,18px); line-height:1.62; color:var(--ivory-mute); }
.case-outcome-label { margin:0 0 22px; font-size:var(--micro-size); font-weight:650; line-height:1.45; letter-spacing:.19em; text-transform:uppercase; color:#dc7657; }
.film-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #080706;
  box-shadow: 0 24px 80px rgba(0,0,0,0.42);
}
.film-stage img,
.film-stage iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.film-stage img { object-fit: cover; }
.film-stage iframe { background: #000; }
.film-play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg,transparent 56%,rgba(8,7,6,0.58));
}
.film-play-core {
  display: grid;
  place-items: center;
  width: clamp(76px,8vw,112px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 50%;
  background: rgba(14,12,9,0.42);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: transform 180ms ease, background 180ms ease;
}
.film-play-core::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid #fff;
}
.film-play:hover .film-play-core,
.film-play:focus-visible .film-play-core { transform: scale(1.06); background: rgba(193,68,47,0.84); }
.film-play:focus-visible { outline: 2px solid var(--ivory); outline-offset: -6px; }
.film-label {
  position: absolute;
  z-index: 3;
  left: clamp(18px,2.4vw,36px);
  top: clamp(16px,2.2vw,30px);
  padding: 9px 12px;
  background: rgba(14,12,9,0.7);
  border: 1px solid rgba(255,255,255,0.16);
  font-size: var(--micro-size);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  pointer-events: none;
}

.film-selector { display:grid; grid-template-columns:minmax(0,1fr) minmax(440px,.92fr); gap:clamp(48px,8vw,128px); align-items:end; padding:clamp(34px,5vw,58px) 0 0; }
.film-kind,.film-nav-status { margin:0; font-size:var(--micro-size); font-weight:650; line-height:1.45; letter-spacing:.19em; text-transform:uppercase; color:#dc7657; }
.film-selection-title { margin:13px 0 0; font-family:var(--serif); font-size:clamp(30px,3.6vw,52px); font-weight:400; line-height:1.08; color:var(--ivory); }
.film-selection-note { margin:16px 0 0; font-size:var(--utility-size); line-height:1.55; color:var(--ivory-mute); }
.film-navigation { min-width:0; }
.film-nav-status { color:var(--ivory-dim); }
.film-options { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:28px; margin-top:22px; }
.film-option { min-width:0; padding:18px 0 14px; display:flex; justify-content:space-between; gap:18px; border:0; border-top:1px solid rgba(237,226,202,.24); background:transparent; color:rgba(237,226,202,.6); font:inherit; text-align:left; cursor:pointer; transition:border-color 160ms ease,color 160ms ease; }
.film-option span { font-size:var(--utility-size); font-weight:600; line-height:1.4; }
.film-option strong { font-size:var(--micro-size); font-weight:600; letter-spacing:.08em; line-height:1.6; }
.film-option:hover,.film-option.is-active { color:var(--ivory); border-color:#dc7657; }
.film-option:focus-visible { outline:2px solid var(--ivory); outline-offset:5px; }
@media (max-width:899.98px) { .film-selector { grid-template-columns:1fr; gap:38px; } }
@media (max-width:559.98px) { .film-options { grid-template-columns:1fr; gap:12px; } .film-option { padding:15px 0 12px; } }

.case-public-life {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(340px,0.9fr);
  gap: clamp(54px,8vw,128px);
  margin-top: clamp(52px,7vh,78px);
  align-items: start;
}
.case-public-heading {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(30px,3vw,44px);
  font-weight: 400;
  line-height: 1.15;
}
.case-public-copy {
  max-width: 52ch;
  margin: 0;
  font-size: clamp(16px,1.25vw,19px);
  line-height: 1.6;
  color: var(--ivory-mute);
}
.case-receipts {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(193,68,47,0.6);
}
.case-receipts li {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(237,226,202,0.12);
  font-size: clamp(13px,1vw,15px);
  line-height: 1.45;
  color: var(--ivory-mute);
}
.case-receipts strong { color: var(--ivory); font-weight: 500; }
.case-source {
  margin: 28px 0 0;
  font-size: 10px;
  line-height: 1.55;
  color: rgba(237,226,202,0.42);
}

/* ---------- Final close + footer ---------- */
.final-close {
  position: relative;
  overflow: hidden;
  background: #594532;
  color: #fffaf0;
}
.final-close::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%,rgba(237,226,202,0.13),transparent 44%);
  pointer-events: none;
}
.final-close-inner {
  position: relative;
  width: min(100%,1600px);
  margin: 0 auto;
  padding: clamp(106px,14vh,154px) var(--page-gutter) clamp(112px,15vh,166px);
  text-align: center;
}
.final-eyebrow {
  margin: 0 0 22px;
  font-size: var(--micro-size);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,250,240,0.68);
}
.final-heading {
  max-width: 21ch;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(48px,5.4vw,76px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.final-support {
  max-width: 54ch;
  margin: clamp(30px,4vh,44px) auto 0;
  font-size: var(--reading-size);
  line-height: 1.58;
  color: rgba(255,250,240,0.78);
}
.final-cta {
  margin-top: clamp(38px,5vh,54px);
}
.site-footer {
  min-height: 327px;
  padding: 65px 0 0;
  border-top: 1px solid rgba(237,226,202,.16);
  background: #0b0a09;
  color: var(--ivory);
  font-family: var(--grot);
}
.footer-grid {
  display: grid;
  width: 80%;
  max-width: 1080px;
  margin: 0 auto;
  grid-template-columns: minmax(180px,1fr) minmax(0,1.25fr);
  gap: clamp(54px,8vw,120px);
  align-items: start;
}
.foot-brand-link { display: inline-block; vertical-align: top; line-height: 0; }
.foot-brand-link:focus-visible { outline: var(--pst-focus-width) solid var(--pst-focus-color-dark); outline-offset: var(--pst-focus-offset); }
.foot-brand-mark { display: block; width: 180px; height: auto; }
.footer-navigation { min-width: 0; }
.footer-menu-columns { display: grid; grid-template-columns: repeat(2,minmax(145px,1fr)); gap: clamp(30px,5vw,72px); align-items: start; }
.foot-col h2 {
  margin: 0 0 24px;
  font-family: var(--grot);
  font-size: var(--pst-type-eyebrow);
  font-weight: var(--pst-weight-semibold);
  line-height: var(--pst-leading-utility);
  letter-spacing: var(--pst-tracking-eyebrow);
  text-transform: uppercase;
  color: rgba(237,226,202,.64);
}
.foot-col ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.foot-col a {
  display: inline;
  color: rgba(237,226,202,.94);
  font-family: var(--grot);
  font-size: clamp(15px,1.18vw,17px);
  font-weight: var(--pst-weight-regular);
  line-height: 1.65;
  letter-spacing: .01em;
  text-decoration: none;
  transition: color var(--pst-motion-fast) ease;
}
.foot-col a:hover,.foot-col a:focus-visible { color: var(--tally-hi); outline: none; }
.foot-base {
  width: 80%;
  max-width: 1080px;
  min-height: 66px;
  margin: 0 auto;
  padding: 22px 0 28px;
  color: rgba(237,226,202,.64);
  font-family: var(--grot);
  font-size: var(--pst-type-interface);
  line-height: 1.5;
  letter-spacing: .04em;
}


@media (max-width: 899.98px) {
  .guide-inner { padding-bottom: 54px; }
  .success-inner { padding: 76px var(--page-gutter) 86px; }
  .success-heading { font-size: clamp(38px,10.3vw,48px); }
  .success-opening { font-size: 17px; }
  .transfer-field { min-height: 0; margin-top: 58px; }
  .transfer-spine { left: 5px; }
  .transfer-point { position: relative; left: auto!important; right: auto!important; top: auto!important; bottom: auto!important; width: auto; padding: 0 0 34px 34px; text-align: left!important; font-size: 25px; }
  .transfer-point::before { left: 0!important; right: auto!important; top: 0.58em; width: 12px; }
  .success-transfer { margin-top: 16px; text-align: left; }
  .case-inner { padding: 72px var(--page-gutter) 80px; }
  .case-header,.case-finding,.case-public-life { display: block; }
  .case-title { font-size: clamp(42px,11vw,54px); }
  .case-lead { margin-top: 38px; font-size: 17px; }
  .case-finding { margin: 52px 0; padding-top: 26px; }
  .case-finding-copy { margin-top: 20px; font-size: 27px; }
  .case-process { margin:52px 0; padding-top:26px; }
  .case-process-steps { grid-template-columns:1fr; }
  .case-process-step { padding:28px 0; border-right:0; border-bottom:1px solid rgba(237,226,202,.13); }
  .case-process-step:last-child { border-bottom:0; }
  .film-stage { width: calc(100% + 52px); margin-left: -26px; }
  .film-label { font-size: 9px; }
  .case-public-life { margin-top: 44px; }
  .case-receipts { margin-top: 38px; }
  .final-close-inner { padding: 78px var(--page-gutter) 88px; }
  .final-heading { font-size: clamp(40px,10.8vw,50px); }
  .final-support { font-size: 17px; }

  .site-footer { padding-top: 56px; }
  .footer-grid { width: auto; margin-right: 20px; margin-left: 20px; grid-template-columns: 1fr; gap: 42px; }
  .foot-brand-mark { width: 150px; }
  .footer-menu-columns { grid-template-columns: 1fr; gap: 52px; }
  .foot-base { width: auto; margin: 44px 20px 0; }
}

@media (prefers-reduced-motion: reduce) {
  .film-play-core { transition: none; }
}

/* ---------- Shared semantic type-role bindings ---------- */
.headline {
  font-family: var(--pst-font-display);
  font-size: var(--pst-type-display-hero);
  font-weight: var(--pst-weight-regular);
  line-height: 1.08;
  letter-spacing: -.005em;
}
.decision-gap-heading,
.moment-stakes-heading,
.plan-heading,
.final-heading {
  font-family: var(--pst-font-display);
  font-size: var(--pst-type-display-lg);
  font-weight: var(--pst-weight-regular);
  line-height: var(--pst-leading-display);
  letter-spacing: var(--pst-tracking-display);
}
.guide-heading,
.authority-statement {
  font-family: var(--pst-font-display);
  font-size: var(--pst-type-display-md);
  font-weight: var(--pst-weight-regular);
  line-height: var(--pst-leading-display);
  letter-spacing: var(--pst-tracking-display);
}
.success-heading {
  font-family: var(--pst-font-display);
  font-size: var(--pst-type-display-xl);
  font-weight: var(--pst-weight-regular);
  line-height: 1.04;
  letter-spacing: var(--pst-tracking-display-tight);
}
.case-title {
  font-family: var(--pst-font-display);
  font-size: var(--pst-type-heading-lg);
  font-weight: var(--pst-weight-regular);
  line-height: 1.03;
  letter-spacing: -.035em;
}
.plan-step-title,
.case-public-heading,
.authority-record-title em {
  font-family: var(--pst-font-display);
  font-size: var(--pst-type-heading-sm);
  font-weight: var(--pst-weight-regular);
  line-height: var(--pst-leading-heading);
  letter-spacing: var(--pst-tracking-heading);
}
.film-selection-title,
.footer-name {
  font-family: var(--pst-font-display);
  font-size: var(--pst-type-heading-md);
  font-weight: var(--pst-weight-regular);
  line-height: 1.08;
  letter-spacing: var(--pst-tracking-heading);
}
.case-finding-copy {
  font-family: var(--pst-font-display);
  font-size: var(--pst-type-statement);
  line-height: var(--pst-leading-statement);
}
.transfer-point {
  font-family: var(--pst-font-display);
  font-size: var(--pst-type-statement-sm);
  line-height: 1.22;
  letter-spacing: var(--pst-tracking-heading);
}
.authority-close {
  font-family: var(--pst-font-display);
  font-size: var(--pst-type-pullquote);
  line-height: 1.38;
}
.decision-gap-body,
.plan-promise,
.case-lead {
  font-family: var(--pst-font-body);
  font-size: var(--pst-type-body-lead);
  font-weight: var(--pst-weight-regular);
  line-height: var(--pst-leading-reading);
  letter-spacing: var(--pst-tracking-body);
}
.moment-stakes-copy,
.authority-attribution,
.authority-follow,
.authority-public,
.success-opening,
.success-transfer,
.case-public-copy,
.final-support {
  font-family: var(--pst-font-body);
  font-size: var(--pst-type-body);
  font-weight: var(--pst-weight-regular);
  line-height: var(--pst-leading-reading);
  letter-spacing: var(--pst-tracking-body);
}
.plan-step-copy {
  font-family: var(--pst-font-body);
  font-size: var(--pst-type-body-compact);
  font-weight: var(--pst-weight-regular);
  line-height: var(--pst-leading-reading);
  letter-spacing: var(--pst-tracking-body);
}
.moment-stakes-eyebrow,
.moment-evidence-kicker,
.guide-eyebrow,
.authority-kicker,
.authority-label,
.plan-eyebrow,
.success-eyebrow,
.case-eyebrow,
.case-finding-label,
.film-kind,
.film-nav-status,
.final-eyebrow,
.drawer-heading {
  font-family: var(--pst-font-body);
  font-size: var(--pst-type-eyebrow);
  font-weight: var(--pst-weight-semibold);
  line-height: var(--pst-leading-utility);
  letter-spacing: var(--pst-tracking-eyebrow);
  text-transform: uppercase;
}
.plan-action-copy {
  font-family: var(--pst-font-body);
  font-size: var(--pst-type-interface);
  line-height: 1.55;
}
.film-selection-note {
  font-family: var(--pst-font-body);
  font-size: var(--pst-type-utility);
  line-height: 1.55;
}
.case-source {
  font-family: var(--pst-font-body);
  font-size: var(--pst-type-source);
  line-height: 1.55;
}
