@charset "UTF-8";
/* collection-site-v2.css */
:root {
  --cb-navy: #262756;
  --cb-navy-deep: #17183d;
  --cb-koi: #e36645;
  --cb-koi-dark: #b3442b;
  --cb-koi-light: #f29a80;
  --cb-ivory: #f8f7f3;
  --cb-cream: #eee9df;
  --cb-paper: #ffffff;
  --cb-ink: #27272f;
  --cb-muted: #686873;
  --cb-grey: #8a8a8a;
  --cb-line: #ddd9d0;
  --cb-on-dark: #fdfcf8;
  --cb-shadow: 0 28px 70px rgba(38, 39, 86, 0.14);
  --cb-shadow-small: 0 14px 36px rgba(38, 39, 86, 0.1);
  --cb-radius: 24px;
  --cb-shell: 1180px;
  --cb-header-height: 84px;
  --cb-serif: "Playfair Display", Georgia, serif;
  --cb-sans: Inter, "Avenir Next", Aptos, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--cb-header-height) + 24px);
}

body {
  margin: 0;
  color: var(--cb-ink);
  background: var(--cb-paper);
  font-family: var(--cb-sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--cb-koi);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 11px 16px;
  color: var(--cb-on-dark);
  background: var(--cb-navy-deep);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-170%);
}

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

.shell {
  width: min(calc(100% - 48px), var(--cb-shell));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 48px), 820px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--cb-header-height);
  border-bottom: 1px solid rgba(38, 39, 86, 0.12);
  background: rgba(248, 247, 243, 0.98);
}

.site-header[data-scrolled="true"] {
  box-shadow: 0 10px 35px rgba(38, 39, 86, 0.12);
}

.header-shell {
  display: flex;
  min-height: var(--cb-header-height);
  align-items: center;
  gap: 30px;
}

.wordmark {
  display: inline-grid;
  flex: 0 0 auto;
  gap: 1px;
  color: var(--cb-navy);
  line-height: 1.05;
  text-decoration: none;
}

.wordmark strong {
  font-family: var(--cb-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.wordmark span {
  color: var(--cb-koi-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  min-width: 0;
  margin-left: auto;
  align-items: center;
  gap: 4px;
}

.nav-link {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--cb-navy);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link[aria-current="page"] {
  color: var(--cb-koi-dark);
  background: rgba(227, 102, 69, 0.08);
}

.header-cta {
  display: inline-flex;
  min-height: 48px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 2px solid var(--cb-koi-dark);
  border-radius: 999px;
  color: var(--cb-paper);
  background: var(--cb-koi-dark);
  font-size: 13px;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--cb-koi-dark);
  background: transparent;
  transform: translateY(-1px);
}

.menu-button,
.drawer-close {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(38, 39, 86, 0.18);
  border-radius: 12px;
  color: var(--cb-navy);
  background: var(--cb-paper);
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  position: absolute;
  left: 0;
}

.menu-icon::before { top: -7px; }
.menu-icon::after { top: 7px; }

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1001;
  border: 0;
  background: rgba(23, 24, 61, 0.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.mobile-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 1002;
  display: none;
  width: min(88vw, 390px);
  flex-direction: column;
  background: var(--cb-ivory);
  box-shadow: -20px 0 60px rgba(23, 24, 61, 0.25);
}

.site-header[data-menu-open="true"] .drawer-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.site-header[data-menu-open="true"] .mobile-drawer {
  display: flex;
}

.drawer-top {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--cb-line);
}

.drawer-close {
  display: grid;
  font-size: 29px;
  line-height: 1;
}

.mobile-nav {
  display: grid;
  gap: 5px;
  padding: 22px 16px;
}

.mobile-nav .nav-link {
  min-height: 54px;
  padding: 0 16px;
  font-size: 16px;
}

.drawer-action {
  margin-top: auto;
  padding: 20px;
  border-top: 1px solid var(--cb-line);
}

.drawer-action .header-cta {
  width: 100%;
  min-height: 54px;
}

.section {
  padding: 96px 0;
}

.section-light { background: var(--cb-paper); }
.section-tinted { background: var(--cb-ivory); }
.section.section--before-artwork-system { padding-bottom: clamp(80px, 6vw, 96px); }
.section.section--artwork-system { padding-top: clamp(80px, 6vw, 96px); }
.section-dark {
  color: var(--cb-on-dark);
  background: var(--cb-navy);
}

.section-editorial {
  border-top: 1px solid var(--cb-line);
  border-bottom: 1px solid var(--cb-line);
  background: var(--cb-ivory);
}

.section-koi {
  color: var(--cb-on-dark);
  background: var(--cb-koi-dark);
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--cb-koi-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.section-dark .section-label,
.section-koi .eyebrow,
.section-koi .section-label {
  color: var(--cb-koi-light);
}

.faq-section .section-label,
.site-footer .section-label {
  color: var(--cb-koi-light);
}

.sl-hero-headline,
.display-heading,
.section-heading,
.card-heading,
h1,
h2,
h3 {
  color: var(--cb-navy);
  font-family: var(--cb-serif);
  text-wrap: balance;
}

.section-dark .sl-hero-headline,
.section-dark .display-heading,
.section-dark .section-heading,
.section-dark .card-heading,
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-koi .sl-hero-headline,
.section-koi .display-heading,
.section-koi .section-heading,
.section-koi .card-heading,
.section-koi h1,
.section-koi h2,
.section-koi h3 {
  color: var(--cb-on-dark);
}

.sl-hero-headline {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 6.2vw, 78px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.display-heading {
  margin: 0;
  font-size: clamp(44px, 6vw, 72px);
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.section-heading {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 54px);
  letter-spacing: -0.035em;
  line-height: 1.07;
}

.card-heading {
  margin: 0;
  font-size: clamp(23px, 2.6vw, 31px);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero-body,
.lead {
  max-width: 63ch;
  color: var(--cb-muted);
  font-size: 19px;
}

.section-dark .hero-body,
.section-dark .lead,
.section-koi .hero-body,
.section-koi .lead {
  color: rgba(253, 252, 248, 0.8);
}

.hero-body {
  margin: 26px 0 0;
}

.lead {
  margin: 22px 0 0;
}

.muted { color: var(--cb-muted); }
.section-dark .muted,
.section-koi .muted { color: rgba(253, 252, 248, 0.72); }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 32px;
}

.centered-actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 21px;
  border: 2px solid var(--cb-koi-dark);
  border-radius: 999px;
  color: var(--cb-paper);
  background: var(--cb-koi-dark);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  color: var(--cb-koi-dark);
  background: transparent;
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--cb-navy);
  border-color: var(--cb-navy);
  background: transparent;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--cb-paper);
  background: var(--cb-navy);
}

.section-dark .button-secondary,
.section-koi .button-secondary {
  color: var(--cb-on-dark);
  border-color: rgba(253, 252, 248, 0.7);
}

.section-dark .button-secondary:hover,
.section-dark .button-secondary:focus-visible,
.section-koi .button-secondary:hover,
.section-koi .button-secondary:focus-visible {
  color: var(--cb-navy);
  background: var(--cb-on-dark);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cb-koi-dark);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.section-dark .text-link,
.section-koi .text-link {
  color: var(--cb-koi-light);
}

.text-link::after { content: "→"; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 112px;
}

.hero::before,
.hero::after {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 70px;
  align-items: center;
}

.hero-copy { min-width: 0; }

.hero-art {
  position: relative;
  min-height: 490px;
}

.editorial-card {
  position: absolute;
  overflow: hidden;
  border-radius: 16px;
  background: var(--cb-ivory);
  box-shadow: 0 28px 65px rgba(10, 11, 42, 0.34);
}

.editorial-card--back {
  width: 68%;
  height: 72%;
  right: 4%;
  top: 4%;
  background: var(--cb-koi);
  transform: rotate(8deg);
}

.editorial-card--middle {
  width: 78%;
  height: 78%;
  right: 13%;
  top: 11%;
  background: var(--cb-cream);
  transform: rotate(-5deg);
}

.editorial-card--front {
  display: flex;
  width: 76%;
  min-height: 78%;
  right: 7%;
  bottom: 2%;
  flex-direction: column;
  justify-content: space-between;
  padding: 35px;
  color: var(--cb-navy);
  background: var(--cb-ivory);
  transform: rotate(1deg);
}

.editorial-card--front span {
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.editorial-card--front strong {
  max-width: 10ch;
  font-family: var(--cb-serif);
  font-size: clamp(34px, 4vw, 55px);
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.editorial-card--front em {
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
}

.accent-shape {
  position: absolute;
  width: 120px;
  height: 120px;
  right: 14px;
  top: 25%;
  border-radius: 50%;
  background: var(--cb-koi);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 70px;
  align-items: start;
}

.section-intro > :last-child > :first-child { margin-top: 0; }

.challenge-grid,
.route-grid,
.feature-grid,
.video-grid,
.faq-grid,
.legal-grid,
.humour-grid {
  display: grid;
  gap: 20px;
  margin-top: 44px;
}

.challenge-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.route-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.video-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.faq-grid { grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr); }
.legal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.humour-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.challenge-card,
.route-card,
.feature-card,
.faq-card,
.legal-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--cb-line);
  border-radius: 18px;
  background: var(--cb-paper);
  box-shadow: var(--cb-shadow-small);
}

.challenge-card {
  color: var(--cb-navy);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease;
}

.challenge-card:hover,
.challenge-card:focus-visible {
  border-color: var(--cb-koi);
  transform: translateY(-4px);
}

.challenge-card blockquote {
  margin: 0;
  font-family: var(--cb-serif);
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.24;
}

.challenge-card span,
.route-card span,
.feature-card span {
  margin-top: auto;
  padding-top: 24px;
  color: var(--cb-koi-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.split-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  overflow: hidden;
  border-radius: var(--cb-radius);
  background: var(--cb-paper);
  box-shadow: var(--cb-shadow);
}

.split-card-media {
  min-height: 520px;
  background: var(--cb-cream);
}

.split-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 6vw, 72px);
}

.check-list,
.plain-list,
.number-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cb-koi-dark);
  content: "✓";
  font-weight: 900;
}

.plain-list {
  display: grid;
  gap: 10px;
}

.plain-list li {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--cb-line);
}

.number-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  counter-reset: cb-step;
}

.number-list li {
  position: relative;
  min-height: 54px;
  padding: 3px 0 0 52px;
  counter-increment: cb-step;
}

.number-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--cb-on-dark);
  background: var(--cb-koi);
  content: counter(cb-step, decimal-leading-zero);
  font-size: 11px;
  font-weight: 850;
}

.quote-band {
  padding: 68px 0;
  text-align: center;
}

.quote-band blockquote {
  max-width: 980px;
  margin: 0 auto;
  color: var(--cb-on-dark);
  font-family: var(--cb-serif);
  font-size: clamp(34px, 4.5vw, 58px);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.quote-band cite {
  display: block;
  margin-top: 20px;
  color: rgba(253, 252, 248, 0.74);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-band--photographic {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 9vw, 120px) 0;
  border-block: 1px solid rgba(253, 252, 248, 0.08);
  background: var(--cb-navy);
}

.quote-band--photographic::before {
  position: absolute;
  inset: 0;
  background: url("/assets/leadership/editorial-boardroom-background.webp") center 58% / cover no-repeat;
  content: "";
  filter: grayscale(1) contrast(1.12);
  opacity: 0.08;
}

.quote-band--photographic .shell {
  position: relative;
  z-index: 1;
}

.quote-band--photographic .button-secondary {
  color: var(--cb-on-dark);
  border-color: rgba(253, 252, 248, 0.7);
}

.quote-band--photographic .button-secondary:hover,
.quote-band--photographic .button-secondary:focus-visible {
  color: var(--cb-navy);
  background: var(--cb-paper);
}

.quote-band--editorial {
  text-align: left;
}

.quote-band--editorial .shell {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  column-gap: 38px;
}

.quote-band--editorial .shell::before {
  grid-row: 1 / span 3;
  color: var(--cb-koi-dark);
  content: "CB / 01";
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.quote-band--editorial blockquote,
.quote-band--editorial .quote-band-statement {
  grid-column: 2;
  max-width: 900px;
  margin: 0;
  color: var(--cb-navy);
  font-family: var(--cb-serif);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.quote-band--editorial cite,
.quote-band--editorial .cta-row {
  grid-column: 2;
}

.quote-band--editorial cite {
  color: var(--cb-koi-dark);
}

.quote-band--editorial .button-secondary {
  color: var(--cb-navy);
  border-color: var(--cb-navy);
}

.quote-band--editorial .button-secondary:hover,
.quote-band--editorial .button-secondary:focus-visible {
  color: var(--cb-paper);
  background: var(--cb-navy);
}

.feature-quote {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 112px) 0;
}

.feature-quote::before {
  position: absolute;
  z-index: 1;
  width: 420px;
  height: 420px;
  right: -230px;
  bottom: -270px;
  border: 1px solid rgba(243, 108, 58, 0.34);
  border-radius: 50%;
  content: "";
}

.feature-quote::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: url("/assets/leadership/editorial-boardroom-background.webp") center 58% / cover no-repeat;
  content: "";
  filter: grayscale(1) contrast(1.12);
  opacity: 0.08;
}

.feature-quote-grid {
  position: relative;
  z-index: 2;
  display: block;
}

.feature-quote-copy {
  position: relative;
  width: min(100%, 1040px);
  padding: 24px 0 0;
}

.feature-quote-copy::before {
  position: absolute;
  top: -42px;
  left: -4px;
  color: var(--cb-koi);
  content: "“";
  font-family: var(--cb-serif);
  font-size: 112px;
  line-height: 1;
  opacity: 0.9;
}

.feature-quote blockquote {
  position: relative;
  margin: 0;
  color: var(--cb-on-dark);
  font-family: var(--cb-serif);
  font-size: clamp(38px, 5vw, 66px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.feature-quote cite {
  display: block;
  margin-top: 28px;
  color: rgba(253, 252, 248, 0.74);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.editorial-note {
  padding-top: 18px;
  border-top: 3px solid var(--cb-koi);
}

.editorial-note span {
  color: var(--cb-muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.editorial-note blockquote {
  margin: 22px 0 0;
  color: var(--cb-navy);
  font-family: var(--cb-serif);
  font-size: clamp(25px, 3vw, 36px);
  letter-spacing: -0.025em;
  line-height: 1.16;
}

.artwork-figure {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.artwork-figure picture,
.artwork-figure img {
  display: block;
  width: 100%;
}

.artwork-figure img {
  height: auto;
  border: 1px solid rgba(38, 39, 86, 0.11);
}

.artwork-figure figcaption {
  display: flex;
  gap: 12px 22px;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 15px;
  color: var(--cb-muted);
  font-size: 12px;
  letter-spacing: 0.025em;
}

.artwork-figure figcaption strong {
  color: var(--cb-navy);
  font-family: var(--cb-serif);
  font-size: 18px;
  letter-spacing: -0.01em;
}

.artwork-editorial--watch .artwork-figure figcaption {
  color: rgba(248, 247, 243, 0.72);
}

.artwork-editorial--watch .artwork-figure figcaption strong {
  color: var(--cb-ivory);
  flex: 0 0 auto;
  white-space: nowrap;
}

.artwork-editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(42px, 6vw, 84px);
  align-items: center;
}

.artwork-editorial-copy .section-heading {
  margin-bottom: 24px;
}

.artwork-editorial .artwork-figure {
  width: 100%;
}

.artwork-editorial--system {
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(30px, 4vw, 44px);
  margin-bottom: clamp(52px, 6vw, 76px);
  align-items: center;
}

.artwork-editorial--system .artwork-editorial-copy {
  width: min(100%, 820px);
  margin-inline: auto;
  text-align: center;
}

.artwork-editorial--system .artwork-figure {
  width: min(100%, 820px);
  margin-inline: auto;
  padding-bottom: clamp(28px, 4vw, 42px);
  border-bottom: 1px solid rgba(38, 39, 86, 0.16);
}

.artwork-editorial--system .artwork-figure figcaption strong {
  flex: 0 0 auto;
  white-space: nowrap;
}

.artwork-editorial--watch {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 400px);
  gap: clamp(56px, 7vw, 88px);
}

.section--artwork-watch {
  padding-block: clamp(84px, 8vw, 112px);
}

.section--artwork-about {
  padding-block: clamp(104px, 10vw, 148px);
}

.two-column.artwork-editorial--about {
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(56px, 7vw, 92px);
}

.artwork-editorial--about .artwork-figure {
  width: 100%;
}

.artwork-figure--transition img {
  border-color: rgba(248, 247, 243, 0.18);
}

.artwork-figure--inline {
  width: 100%;
}

.artwork-figure--inline img {
  background: var(--cb-paper);
}

.artwork-figure--inline figcaption {
  display: grid;
  gap: 5px;
  justify-content: start;
}

.video-still-figure {
  position: relative;
  margin: 0;
  padding: 0 0 24px 24px;
}

.video-still-figure::before {
  position: absolute;
  inset: 28px 24px 0 0;
  border: 1px solid rgba(253, 252, 248, 0.28);
  content: "";
}

.video-still-figure a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 28px 65px rgba(10, 11, 42, 0.28);
}

.video-still-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-still-figure figcaption {
  position: relative;
  max-width: 42ch;
  margin: 16px 0 0;
  color: rgba(253, 252, 248, 0.72);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.video-thumbnail-collage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-self: center;
  padding: 10px;
  border: 1px solid rgba(253, 252, 248, 0.16);
  border-radius: var(--cb-radius);
  background: rgba(10, 11, 42, 0.34);
  box-shadow: 0 28px 65px rgba(10, 11, 42, 0.28);
}

.video-thumbnail-collage a {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: var(--cb-navy-deep);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.video-thumbnail-collage a:hover,
.video-thumbnail-collage a:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(10, 11, 42, 0.32);
}

.video-thumbnail-collage img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-card {
  overflow: hidden;
  border-radius: 18px;
  color: var(--cb-ink);
  background: var(--cb-paper);
  box-shadow: var(--cb-shadow-small);
  text-decoration: none;
  transition: transform 160ms ease;
}

.video-card:hover,
.video-card:focus-visible { transform: translateY(-4px); }

.video-card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--cb-navy-deep);
}

.video-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-mark {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: var(--cb-paper);
  background: var(--cb-koi);
  box-shadow: 0 12px 30px rgba(23, 24, 61, 0.26);
  transform: translate(-50%, -50%);
}

.play-mark::before {
  margin-left: 4px;
  content: "▶";
  font-size: 20px;
}

.video-card-copy { padding: 24px; }
.video-card-copy p { margin: 10px 0 0; color: var(--cb-muted); font-size: 14px; }

.theme-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.theme-chip {
  padding: 9px 13px;
  border: 1px solid rgba(253, 252, 248, 0.24);
  border-radius: 999px;
  color: var(--cb-on-dark);
  background: rgba(253, 252, 248, 0.08);
  font-size: 12px;
  font-weight: 800;
}

.image-panel {
  overflow: hidden;
  border-radius: var(--cb-radius);
  background: var(--cb-cream);
  box-shadow: var(--cb-shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: center;
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.problem-list li {
  padding: 17px 18px;
  border-left: 4px solid var(--cb-koi);
  background: rgba(253, 252, 248, 0.08);
}

.buy-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 38px;
  align-items: center;
  padding: 46px;
  border-radius: var(--cb-radius);
  color: var(--cb-ink);
  background: var(--cb-paper);
  box-shadow: var(--cb-shadow);
}

.price {
  display: block;
  color: var(--cb-navy);
  font-family: var(--cb-serif);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
}

.price-note {
  display: block;
  margin-top: 8px;
  color: var(--cb-muted);
  font-size: 14px;
}

.launch-note {
  max-width: 760px;
  margin: 22px 0 0;
  padding: 15px 17px;
  border-left: 4px solid var(--cb-koi);
  color: var(--cb-navy-deep);
  background: var(--cb-ivory);
  font-size: 14px;
}

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

.faq-section {
  position: relative;
  overflow: hidden;
  color: var(--cb-on-dark);
  background: var(--cb-navy);
}

.faq-section::after {
  position: absolute;
  width: 360px;
  height: 360px;
  right: -190px;
  bottom: -240px;
  border: 1px solid rgba(227, 102, 69, 0.3);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.faq-section .faq-grid {
  position: relative;
  z-index: 1;
  align-items: start;
  margin-top: 0;
}

.faq-section .section-heading {
  max-width: 520px;
  color: var(--cb-on-dark);
}

.faq-section .faq-intro-copy {
  max-width: 460px;
  color: rgba(253, 252, 248, 0.76);
}

.faq-list details {
  border: 1px solid var(--cb-line);
  border-radius: 14px;
  background: var(--cb-paper);
}

.faq-section .faq-list details {
  border-color: rgba(253, 252, 248, 0.16);
  background: var(--cb-paper);
  box-shadow: 0 14px 34px rgba(8, 10, 38, 0.16);
}

.faq-list summary {
  position: relative;
  list-style: none;
  padding: 21px 54px 21px 22px;
  color: var(--cb-navy);
  font-weight: 850;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  color: var(--cb-koi-dark);
  content: "+";
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "\2212";
}

.faq-list summary:focus-visible {
  border-radius: 12px;
  outline: 3px solid rgba(227, 102, 69, 0.42);
  outline-offset: 3px;
}

.faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--cb-muted);
}

.faq-list details p a {
  color: var(--cb-koi-dark);
  font-weight: 750;
}

.home-humour-feature {
  background: var(--cb-ivory);
}

.home-humour-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.home-humour-media {
  position: relative;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--cb-line);
  border-radius: 24px;
  background: var(--cb-paper);
  box-shadow: var(--cb-shadow);
  transform: rotate(-1.25deg);
}

.home-humour-media::before {
  position: absolute;
  z-index: -1;
  inset: 18px -18px -18px 18px;
  border-radius: 24px;
  background: var(--cb-navy);
  content: "";
}

.home-humour-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 14px;
}

.home-humour-copy {
  max-width: 640px;
}

.home-humour-copy .section-heading {
  max-width: 620px;
}

.home-humour-note {
  margin-top: 30px;
  padding: 22px 24px;
  border-left: 4px solid var(--cb-koi);
  color: var(--cb-navy);
  background: var(--cb-paper);
  font-family: var(--cb-serif);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 650;
  line-height: 1.22;
}

.faq-list details ul {
  margin: 0;
  padding: 0 40px 22px;
  color: var(--cb-muted);
}

.humour-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--cb-line);
  border-radius: 18px;
  background: var(--cb-paper);
  box-shadow: var(--cb-shadow-small);
  color: var(--cb-ink);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease;
}

.humour-card:hover,
.humour-card:focus-visible {
  border-color: var(--cb-koi);
  transform: translateY(-4px);
}

.humour-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.humour-card div { padding: 23px; }
.humour-card p { margin: 10px 0 0; color: var(--cb-muted); font-size: 14px; }

.humour-card-action {
  display: inline-block;
  margin-top: 18px;
  color: var(--cb-koi-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 250px) minmax(0, 1fr);
  gap: 68px;
  align-items: start;
}

.article-nav {
  position: sticky;
  top: calc(var(--cb-header-height) + 28px);
  padding: 24px;
  border: 1px solid var(--cb-line);
  border-radius: 16px;
  background: var(--cb-ivory);
}

.article-nav p {
  margin: 0 0 12px;
  color: var(--cb-navy);
  font-weight: 850;
}

.article-nav ol,
.article-nav ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 19px;
}

.article-nav a {
  color: var(--cb-muted);
  font-size: 14px;
}

.article-content {
  min-width: 0;
}

.article-content section {
  padding: 0 0 42px;
  border-bottom: 1px solid var(--cb-line);
  margin-bottom: 42px;
}

.article-content section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 0;
}

.article-content h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 3.5vw, 40px);
}

.article-content p,
.article-content li { color: var(--cb-muted); }

.article-content a { color: var(--cb-koi-dark); }

.site-footer {
  color: var(--cb-on-dark);
  background: var(--cb-navy);
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid rgba(253, 252, 248, 0.16);
}

.footer-cta p { margin: 0; }

.footer-cta-copy {
  max-width: 760px;
  color: var(--cb-on-dark);
  font-family: var(--cb-serif);
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(140px, 1fr));
  gap: 46px 34px;
  padding: 58px 0 48px;
}

.footer-brand .wordmark { color: var(--cb-on-dark); }
.footer-brand .wordmark span { color: var(--cb-koi-light); }

.footer-description {
  max-width: 34ch;
  margin: 20px 0 0;
  color: rgba(253, 252, 248, 0.72);
  font-size: 14px;
}

.footer-title {
  margin: 0 0 16px;
  color: var(--cb-on-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a,
.footer-email,
.footer-bottom a {
  color: rgba(253, 252, 248, 0.72);
  font-size: 14px;
  text-decoration: none;
}

.footer-email {
  overflow-wrap: anywhere;
}

main:focus {
  outline: none;
}

.anonymous-quote-note {
  margin-top: 20px;
  padding: 20px 22px;
  border-left: 4px solid var(--cb-koi-dark);
  border-radius: 0 12px 12px 0;
  background: rgba(253, 252, 248, 0.78);
}

.anonymous-quote-note h3,
.anonymous-quote-note p {
  margin: 0;
}

.anonymous-quote-note h3 {
  font-size: 18px;
}

.anonymous-quote-note p {
  margin-top: 9px;
  color: var(--cb-muted);
  font-size: 14px;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-email:hover,
.footer-email:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--cb-on-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-spokes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 26px;
  padding: 28px 0;
  border-top: 1px solid rgba(253, 252, 248, 0.16);
  border-bottom: 1px solid rgba(253, 252, 248, 0.16);
}

.footer-spokes a {
  color: rgba(253, 252, 248, 0.72);
  font-size: 13px;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  gap: 22px 36px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 28px;
  color: rgba(253, 252, 248, 0.6);
  font-size: 12px;
}

.footer-legal,
.site-credit {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
}

.site-credit { flex-wrap: nowrap; }
.site-credit img { width: 108px; height: auto; }

@media (max-width: 1080px) {
  .desktop-nav,
  .header-shell > .header-cta { display: none; }
  .menu-button { display: grid; margin-left: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { min-height: 420px; width: min(100%, 520px); margin-inline: auto; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .artwork-editorial--watch { grid-template-columns: minmax(0, 1fr) minmax(320px, 360px); gap: 48px; }
  .two-column.artwork-editorial--about { grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr); gap: 48px; }
  .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  :root { --cb-header-height: 74px; }
  .section { padding: 76px 0; }
  .feature-quote { padding: 76px 0; }
  .hero { padding: 84px 0 88px; }
  .section-intro,
  .two-column,
  .faq-grid,
  .article-shell { grid-template-columns: 1fr; gap: 38px; }
  .home-humour-grid { grid-template-columns: 1fr; gap: 50px; }
  .home-humour-media { width: min(calc(100% - 18px), 520px); margin-inline: auto; }
  .editorial-note-grid { grid-template-columns: 1fr; gap: 30px; }
  .artwork-editorial,
  .artwork-editorial--system,
  .artwork-editorial--watch { grid-template-columns: 1fr; }
  .two-column.artwork-editorial--about { grid-template-columns: 1fr; }
  .artwork-editorial--collection .artwork-figure { width: min(100%, 680px); margin-left: 0; }
  .artwork-editorial--system .artwork-figure { width: min(100%, 680px); }
  .artwork-editorial--watch .artwork-figure { width: min(100%, 320px); margin-inline: auto; }
  .artwork-editorial--about .artwork-figure { width: min(100%, 680px); margin-inline: auto; }
  .mobile-media-first > .image-panel,
  .mobile-media-first > .artwork-figure { order: -1; }
  .article-nav { position: static; }
  .challenge-grid,
  .route-grid,
  .video-grid,
  .humour-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split-card { grid-template-columns: 1fr; }
  .split-card-media { min-height: 360px; }
  .buy-box { grid-template-columns: 1fr; }
  .footer-cta { grid-template-columns: 1fr; }
  .footer-spokes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 580px) {
  .shell,
  .narrow { width: min(calc(100% - 32px), var(--cb-shell)); }
  .header-shell { gap: 14px; }
  .wordmark strong { font-size: 19px; }
  .wordmark span { font-size: 8px; }
  .sl-hero-headline { font-size: clamp(39px, 13vw, 57px); }
  .hero-art { min-height: 340px; }
  .editorial-card--front { padding: 24px; }
  .challenge-grid,
  .route-grid,
  .feature-grid,
  .video-grid,
  .humour-grid,
  .legal-grid,
  .number-list,
  .problem-list { grid-template-columns: 1fr; }
  .feature-quote-copy { padding: 24px 0 0; }
  .artwork-editorial { gap: 34px; }
  .artwork-figure figcaption {
    display: grid;
    gap: 5px;
    justify-content: start;
  }
  .quote-band--editorial .shell { grid-template-columns: 1fr; }
  .quote-band--editorial .shell::before {
    grid-row: auto;
    margin-bottom: 18px;
    writing-mode: horizontal-tb;
  }
  .quote-band--editorial blockquote,
  .quote-band--editorial .quote-band-statement,
  .quote-band--editorial cite,
  .quote-band--editorial .cta-row { grid-column: 1; }
  .split-card-media { min-height: 280px; }
  .split-card-copy { padding: 34px 24px; }
  .buy-box { padding: 30px 24px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-spokes { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .site-credit {
    width: 100%;
    flex-direction: column;
    gap: 9px;
    justify-content: center;
    text-align: center;
  }
  .site-credit > span { font-size: 13px; }
  .site-credit img { width: min(100%, 168px); }
  .cta-row,
  .cta-row .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* collection-reading-contrast-v1.css */
:root {
  --cb-muted: #41414a;
}


/* client-voices-v1.css */
.client-voice {
  margin-top: clamp(38px, 5vw, 62px);
  padding-top: 22px;
  border-top: 1px solid rgba(38, 39, 86, 0.24);
}

.client-voice blockquote {
  position: relative;
  max-width: 880px;
  margin: 0;
  color: var(--cb-navy);
  font-family: var(--cb-serif);
  font-size: clamp(24px, 2.2vw, 32px);
  letter-spacing: -0.025em;
  line-height: 1.22;
}

.client-voice blockquote::before {
  position: absolute;
  top: -0.24em;
  left: -0.48em;
  color: var(--cb-koi);
  content: "“";
  font-family: var(--cb-serif);
  font-size: 1.65em;
  line-height: 1;
  opacity: 0.9;
}

.client-voice-attribution {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  width: 100%;
  max-width: 880px;
  margin-top: 18px;
  color: var(--cb-muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.client-voice-stars {
  display: inline-flex;
  gap: 2px;
  color: #d6a62c;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 1;
}

.client-voice--compact {
  margin-top: 34px;
  padding-top: 18px;
}

.client-voice--compact blockquote {
  padding-left: 22px;
  font-size: clamp(20px, 1.8vw, 25px);
  letter-spacing: -0.02em;
  line-height: 1.28;
}

.client-voice--compact blockquote::before {
  left: -0.08em;
}

.client-voice--on-dark {
  border-top-color: rgba(253, 252, 248, 0.26);
}

.client-voice--on-dark blockquote {
  color: var(--cb-on-dark);
}

.client-voice--on-dark .client-voice-attribution {
  color: rgba(253, 252, 248, 0.64);
}

.split-card-copy .client-voice {
  margin-top: 34px;
}

.buy-box .client-voice {
  max-width: 410px;
}

@media (max-width: 820px) {
  .client-voice blockquote {
    padding-left: 22px;
  }

  .client-voice blockquote::before {
    left: -0.08em;
  }

}

@media (max-width: 580px) {
  .client-voice-attribution {
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
    text-align: center;
  }

  .client-voice blockquote {
    margin-inline: auto;
    padding: 36px 8px 0;
    font-size: 24px;
    text-align: center;
  }

  .client-voice blockquote::before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .client-voice--compact blockquote {
    font-size: 21px;
  }
}


/* authority-page-v10.css */
/* Authority Page template: optically centred Executive Reader with a mobile guide dock. */
.authority-page {
  --authority-copy: 680px;
  --authority-wide: 1220px;
  --authority-ink: #313b4e;
  --authority-muted: #72798a;
  --authority-line: rgba(38, 39, 86, .14);
  --authority-paper: #fff;
  --authority-blush: #fff3ee;
}

::selection { background: var(--cb-koi); color: #fff; }
.authority-page a:focus-visible, .authority-page summary:focus-visible { outline: 3px solid var(--cb-koi); outline-offset: 4px; }
.authority-progress { position: fixed; top: var(--cb-header-height, 84px); left: 0; z-index: 999; width: 100%; height: 3px; pointer-events: none; }
.authority-progress span { display: block; width: 0; height: 100%; background: var(--cb-koi); transform-origin: left center; }
.authority-shell { width: min(100% - 48px, var(--authority-wide)); margin-inline: auto; }

.authority-hero { position: relative; overflow: hidden; padding: clamp(42px, 5vw, 68px) 0 clamp(38px, 4.5vw, 60px); background: var(--cb-ivory); }
.authority-hero__inner { display: grid; grid-template-columns: minmax(0, 1.22fr) minmax(360px, .78fr); gap: clamp(42px, 5vw, 68px); align-items: start; }
.authority-hero__copy, .decision-brief { min-width: 0; }
.authority-crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 0 0 26px; color: #667287; font-size: 13px; }
.authority-crumbs a { color: inherit; text-decoration-color: rgba(227, 102, 69, .55); text-underline-offset: 4px; }
.authority-crumbs span[aria-hidden] { color: #a7afbb; }
.authority-hero__eyebrow { margin: 0 0 15px; color: var(--cb-koi-dark); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.authority-hero h1 { max-width: 13ch; margin: 0; color: var(--cb-navy); font-family: var(--cb-serif); font-size: clamp(46px, 5vw, 70px); font-weight: 700; letter-spacing: -.032em; line-height: .98; text-wrap: balance; }
.authority-answer { max-width: 700px; margin-top: 25px; padding-top: 18px; border-top: 1px solid rgba(227, 102, 69, .55); }
.authority-answer__label { position: absolute; overflow: hidden; width: 1px; height: 1px; margin: -1px; padding: 0; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.authority-answer p { margin: 0; color: var(--cb-navy); font-family: var(--cb-serif); font-size: clamp(19px, 1.7vw, 25px); font-weight: 600; line-height: 1.45; }
.authority-byline { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px; margin-top: 18px; color: #667287; font-size: 13px; }
.authority-byline__who { color: var(--cb-navy); font-weight: 700; }
.authority-byline__who a { color: inherit; text-decoration-color: var(--cb-koi); text-underline-offset: 4px; }
.authority-byline__meta { white-space: nowrap; }
.authority-share { display: inline-flex; align-items: center; justify-content: center; gap: 7px; min-height: 44px; margin: -10px 0 -10px auto; padding: 8px 2px; border: 0; border-bottom: 1px solid var(--cb-koi); background: transparent; color: var(--cb-navy); font: inherit; font-size: 13px; font-weight: 700; cursor: pointer; }
.authority-share svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.authority-share:hover, .authority-share:focus-visible { color: var(--cb-koi-dark); border-bottom-width: 2px; }

.decision-brief { padding: clamp(28px, 3vw, 36px); background: var(--cb-navy); color: #fff; box-shadow: 0 22px 52px rgba(38, 39, 86, .17); }
.decision-brief__label { margin: 0; color: rgba(253, 252, 248, .68); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.decision-brief ol { display: grid; gap: 0; margin: 20px 0 0; padding: 0; list-style: none; }
.decision-brief li { display: grid; grid-template-columns: 32px minmax(0, 1fr); gap: 12px; align-items: start; padding: 11px 0; border-top: 1px solid rgba(253, 252, 248, .18); color: #fff; font-family: var(--cb-serif); font-size: clamp(16px, 1.35vw, 19px); font-weight: 600; line-height: 1.35; }
.decision-brief li b { padding-top: 3px; color: var(--cb-koi-light); font-family: var(--cb-sans); font-size: 10px; letter-spacing: .08em; }
.decision-brief__outcome { margin-top: 8px; padding: 14px 15px !important; border-top: 0 !important; background: var(--cb-koi); }
.decision-brief__outcome b { color: #fff; }
.decision-brief > a { display: inline-flex; margin-top: 20px; color: #fff; font-size: 13px; font-weight: 800; text-decoration-color: var(--cb-koi); text-underline-offset: 5px; }

.authority-layout { display: grid; grid-template-columns: 250px minmax(0, 780px); gap: 72px; align-items: start; width: min(100% - 48px, 1102px); padding: 30px 0 clamp(76px, 8vw, 104px); border-top: 1px solid var(--authority-line); }
.authority-reader-rail { position: sticky; top: calc(var(--cb-header-height, 84px) + 26px); min-width: 0; padding-top: 22px; }
.authority-contents { min-width: 0; }
.authority-contents > summary { display: block; margin: 0 0 12px; color: var(--cb-navy); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; cursor: default; list-style: none; }
.authority-contents > summary::-webkit-details-marker { display: none; }
.authority-contents > summary::marker { display: none; content: ""; }
.authority-toc ol { margin: 0; padding: 0; border-bottom: 1px solid var(--authority-line); list-style: none; }
.authority-toc li { margin: 0; }
.authority-toc a { display: grid; grid-template-columns: 25px minmax(0, 1fr); gap: 8px; padding: 8px 0; border-top: 1px solid var(--authority-line); color: #647084; font-size: 12px; line-height: 1.38; text-decoration: none; }
.authority-toc a b { color: var(--cb-koi-dark); font-size: 10px; letter-spacing: .08em; }
.authority-toc a[aria-current="true"] { color: var(--cb-navy); font-weight: 800; }

.authority-article { min-width: 0; counter-reset: management-play; border-top: 4px solid var(--cb-navy); background: var(--authority-paper); box-shadow: 0 22px 60px rgba(38, 39, 86, .09); }
.authority-article p, .authority-article li { color: var(--authority-ink); font-size: 17px; line-height: 1.68; }
.authority-article p { margin: 0 0 1em; }
.authority-play-section > p, .authority-play-section > ol, .authority-play-section > ul:not(.q-bank) { max-width: 68ch; }
.authority-article h2 { margin: 0 0 24px; color: var(--cb-navy); font-family: var(--cb-serif); font-size: clamp(36px, 4vw, 50px); font-weight: 700; letter-spacing: -.025em; line-height: 1.04; scroll-margin-top: calc(var(--cb-header-height, 84px) + 28px); text-wrap: balance; }
.authority-article h3 { margin: 32px 0 12px; color: var(--cb-navy); font-family: var(--cb-serif); font-size: clamp(25px, 2.6vw, 32px); font-weight: 700; letter-spacing: -.018em; line-height: 1.12; scroll-margin-top: calc(var(--cb-header-height, 84px) + 28px); text-wrap: balance; }
.authority-play-section { width: auto; margin: 0; padding: 44px 38px; border-top: 1px solid var(--authority-line); }
.authority-play-section:not(.authority-play-opening) { counter-increment: management-play; }
.authority-play-section:not(.authority-play-opening) > h2::before { display: block; margin-bottom: 12px; color: var(--cb-koi-dark); font-family: var(--cb-sans); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; content: "Management play " counter(management-play, decimal-leading-zero); }
.authority-play-opening { padding-top: 28px; border-top: 0; }
.authority-play-opening .is-lead { margin-bottom: 1.3em; color: var(--cb-navy); font-family: var(--cb-serif); font-size: clamp(21px, 2vw, 25px); font-weight: 600; letter-spacing: -.01em; line-height: 1.48; }
.authority-article p.is-cue { margin: 28px 0 8px; color: var(--cb-navy); font-weight: 700; }
.authority-article blockquote { margin: 1.45em 0 1.55em; padding: 22px 24px; border-top: 1px solid var(--cb-koi); background: var(--authority-blush); color: var(--cb-navy); font-family: var(--cb-serif); font-size: clamp(21px, 2vw, 26px); font-weight: 600; line-height: 1.4; }
.authority-article blockquote.is-pull, .authority-article blockquote.is-anchor { margin: 34px 0; padding: 28px; border-left: 0; background: var(--cb-navy); color: #fff; font-size: clamp(25px, 2.8vw, 34px); letter-spacing: -.018em; line-height: 1.25; text-align: left; }
.authority-article ul.q-bank { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 24px 0 34px; padding: 0; border: 1px solid var(--authority-line); background: #fff; list-style: none; }
.authority-article ul.q-bank li { position: relative; margin: 0; padding: 18px 18px 18px 38px; border-right: 1px solid var(--authority-line); border-bottom: 1px solid var(--authority-line); color: var(--cb-navy); font-size: 15px; font-weight: 700; line-height: 1.42; }
.authority-article ul.q-bank li:nth-child(2n) { border-right: 0; }
.authority-article ul.q-bank li::before { position: absolute; top: 24px; left: 19px; width: 7px; height: 7px; border: 2px solid var(--cb-koi); border-radius: 50%; content: ""; }
.authority-play-closing { padding-bottom: 52px; }
.authority-related-guides { margin: 0; padding: 28px 38px 30px; border-top: 1px solid var(--authority-line); background: #f8f6f1; }
.authority-related-guides > span { display: block; margin-bottom: 12px; color: var(--cb-koi-dark); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.authority-related-guides ul { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; margin: 0; padding: 0; list-style: none; }
.authority-related-guides li { padding: 0 16px; border-left: 1px solid var(--authority-line); font-size: 14px; line-height: 1.45; }
.authority-related-guides li:first-child { padding-left: 0; border-left: 0; }
.authority-related-guides a { color: var(--cb-navy); font-weight: 700; text-decoration-color: var(--cb-koi); text-underline-offset: 4px; }

.authority-practice-note { min-width: 0; margin-top: 24px; padding-top: 22px; border-top: 2px solid var(--cb-koi); }
.authority-practice-note > span { display: block; margin-bottom: 15px; color: var(--cb-koi-dark); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.authority-practice-note blockquote { margin: 0 0 18px; color: var(--cb-navy); font-family: var(--cb-serif); font-size: 24px; font-style: italic; font-weight: 600; letter-spacing: -.015em; line-height: 1.3; }
.authority-practice-note p { margin: 0; color: var(--authority-muted); font-size: 13px; line-height: 1.55; }

.authority-related { border-top: 1px solid var(--authority-line); background: var(--cb-ivory); }
.authority-related__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.authority-related a { display: flex; flex-direction: column; gap: 8px; min-height: 148px; padding: 36px clamp(24px, 4vw, 54px); color: var(--cb-navy); text-decoration: none; }
.authority-related a + a { border-left: 1px solid var(--authority-line); text-align: right; }
.authority-related span { color: var(--cb-koi-dark); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.authority-related b { font-family: var(--cb-serif); font-size: clamp(22px, 2.5vw, 30px); line-height: 1.2; }
.authority-related a:hover b, .authority-related a:focus-visible b { text-decoration: underline; text-decoration-color: var(--cb-koi); text-underline-offset: 5px; }

.authority-next { padding-block: clamp(70px, 8vw, 112px); background: var(--cb-navy); }
.authority-next__grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: 24px; align-items: start; }
.next-card { padding: clamp(30px, 3.6vw, 48px); background: #fff; box-shadow: var(--cb-shadow-small); }
.next-card .section-label, .media-kicker { display: block; margin: 0 0 12px; color: var(--cb-koi-dark); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.next-card h2 { margin: 0 0 16px; color: var(--cb-navy); font-family: var(--cb-serif); font-size: clamp(28px, 2.8vw, 38px); line-height: 1.1; }
.next-card p { margin: 0 0 16px; color: var(--authority-ink); font-size: 17px; line-height: 1.65; }
.next-card a { color: var(--cb-koi-dark); text-underline-offset: 4px; }
.next-tools, .media-links { margin: 20px 0 24px; padding: 0; border-top: 1px solid var(--authority-line); list-style: none; }
.next-tools li, .media-links li { padding: 13px 0; border-bottom: 1px solid var(--authority-line); color: var(--cb-navy); }
.authority-cta { display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; background: var(--cb-koi-dark); color: #fff !important; font-size: 14px; font-weight: 800; text-decoration: none; }
.authority-cta::after { content: "\2192"; }
.authority-about { padding-block: clamp(58px, 7vw, 94px); background: var(--cb-navy-deep); color: var(--cb-on-dark); }
.authority-about__grid { display: grid; grid-template-columns: minmax(300px, 420px) minmax(0, 1fr); gap: clamp(34px, 5vw, 68px); align-items: center; }
.authority-about figure { overflow: hidden; margin: 0; background: rgba(255, 255, 255, .08); }
.authority-about img { width: 100%; aspect-ratio: 16 / 9; height: auto; object-fit: cover; }
.authority-about .section-label { display: block; margin-bottom: 14px; color: var(--cb-koi); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.authority-about h2 { margin: 0 0 18px; color: #fff; font-family: var(--cb-serif); font-size: clamp(30px, 3.2vw, 44px); line-height: 1.08; }
.authority-about p { margin: 0 0 14px; color: rgba(253, 252, 248, .82); font-size: 17px; line-height: 1.68; }
.authority-about a { color: #fff; text-decoration-color: var(--cb-koi); text-underline-offset: 4px; }

@media (min-width: 1150px) {
  .authority-layout { transform: translateX(max(-104px, calc((1150px - 100vw) / 2))); }
}

@media (max-width: 1120px) {
  .authority-layout { grid-template-columns: 220px minmax(0, 1fr); gap: 56px; width: min(100% - 48px, 1024px); }
}

@media (max-width: 980px) {
  .authority-page { padding-bottom: calc(60px + env(safe-area-inset-bottom)); }
  .authority-hero__inner { grid-template-columns: 1fr; }
  .authority-hero h1 { max-width: 16ch; }
  .decision-brief { max-width: 680px; }
  .authority-layout { display: block; max-width: 760px; padding-top: 18px; }
  .authority-reader-rail { position: static; margin-bottom: 18px; padding-top: 0; }
  .authority-contents { position: fixed; right: auto; bottom: 0; left: 50%; z-index: 1000; width: min(100%, 760px); max-height: min(72vh, 640px); margin: 0; padding: 0; transform: translateX(-50%); border: 1px solid var(--authority-line); border-bottom: 0; background: #fff; box-shadow: 0 -18px 42px rgba(38, 39, 86, .14); }
  .authority-contents[open] { display: flex; flex-direction: column-reverse; }
  .authority-contents > summary { display: flex; flex: 0 0 auto; justify-content: space-between; min-height: 60px; margin: 0; padding: 16px 18px calc(16px + env(safe-area-inset-bottom)); background: #fff; cursor: pointer; }
  .authority-contents > summary::after { color: var(--cb-koi-dark); font-size: 17px; content: "+"; }
  .authority-contents[open] > summary::after { content: "\2212"; }
  .authority-toc { min-height: 0; overflow-y: auto; overscroll-behavior: contain; background: #fff; }
  .authority-contents[open] .authority-toc { max-height: calc(min(72vh, 640px) - 60px - env(safe-area-inset-bottom)); }
  .authority-toc ol { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 0 18px 14px; border-bottom: 0; }
  .authority-toc a { padding-right: 14px; }
  .authority-practice-note { position: static; display: block; margin: 24px 0 0; padding: 24px; background: var(--cb-ivory); }
  .authority-practice-note blockquote { max-width: 26ch; }
  .authority-practice-note p { display: none; }
  .authority-next__grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .authority-shell { width: min(100% - clamp(36px, 10vw, 48px), var(--authority-wide)); }
  .authority-hero { padding: 28px 0 24px; }
  .authority-crumbs { margin-bottom: 22px; font-size: 12px; }
  .authority-hero__eyebrow { margin-bottom: 12px; }
  .authority-hero h1 { max-width: none; font-size: clamp(40px, 12vw, 50px); }
  .authority-answer { margin-top: 20px; padding-top: 15px; }
  .authority-answer p { font-size: 19px; }
  .authority-byline__meta { white-space: normal; }
  .authority-share { margin-left: 0; }
  .decision-brief { padding: 23px 20px; }
  .decision-brief ol { margin-top: 16px; }
  .decision-brief li { grid-template-columns: 28px minmax(0, 1fr); gap: 8px; padding: 9px 0; font-size: 15px; }
  .decision-brief__outcome { padding: 12px !important; }
  .authority-layout { padding-bottom: 68px; }
  .authority-toc ol { grid-template-columns: 1fr; }
  .authority-toc a { min-height: 44px; padding-right: 0; font-size: 14px; }
  .authority-play-section { padding: 36px 22px; }
  .authority-play-opening { padding-top: 26px; }
  .authority-article p, .authority-article li { font-size: 18px; line-height: 1.72; }
  .authority-article h2 { font-size: clamp(33px, 10vw, 43px); }
  .authority-article h3 { font-size: clamp(25px, 7.5vw, 32px); }
  .authority-article ul.q-bank { grid-template-columns: 1fr; }
  .authority-article ul.q-bank li { border-right: 0; font-size: 16px; }
  .authority-article blockquote.is-pull, .authority-article blockquote.is-anchor { padding: 24px 20px; }
  .authority-practice-note { padding: 22px 20px; }
  .authority-related-guides { padding: 24px 22px; }
  .authority-related-guides ul { grid-template-columns: 1fr; }
  .authority-related-guides li { padding: 11px 0; border-top: 1px solid var(--authority-line); border-left: 0; font-size: 16px; }
  .authority-related__grid, .authority-about__grid { grid-template-columns: 1fr; }
  .authority-related a + a { border-top: 1px solid var(--authority-line); border-left: 0; }
  .authority-about figure { width: 100%; max-width: 520px; }
}

@media print {
  .authority-progress, .authority-reader-rail, .authority-related { display: none !important; }
  .authority-layout { display: block; }
  .authority-article { border-top: 0; box-shadow: none; }
  .authority-play-section { break-inside: avoid; padding-block: 30px; }
}

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


/* authority-decision-tool-v2.css */
/* Decision Tool guide treatment: navy statement hero, banded rhythm, the plays read
   end to end, and a floating guide index that carries progress and navigation. */
.authority-page--decision-tool {
  --dt-ink: #313b4e;
  --dt-muted: #72798a;
  --dt-line: rgba(38, 39, 86, .14);
  /* The reading column stays centred on the page and narrows on smaller desktops so
     the floating index keeps its own margin instead of crowding the text. */
  --dt-column-max: clamp(720px, 55vw, 880px);
  --dt-column: min(100%, var(--dt-column-max));
  /* Margin between the page edge and the centred column, then the index sized to sit
     centred inside it. Equal space either side means it can never crowd the text. */
  --dt-rail: calc((100vw - var(--dt-column-max)) / 2);
  --dt-guide-width: min(248px, calc(var(--dt-rail) - 84px));
}

/* Hero becomes a full-bleed navy statement. */
.authority-page--decision-tool .authority-hero {
  padding: clamp(44px, 5vw, 68px) 0 clamp(50px, 5.4vw, 76px);
  background: var(--cb-navy);
  color: #fff;
}
.authority-page--decision-tool .authority-hero::before,
.authority-page--decision-tool .authority-hero::after {
  position: absolute;
  border: 1px solid rgba(242, 154, 128, .13);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}
.authority-page--decision-tool .authority-hero::before { top: 60px; right: -60px; width: 380px; height: 380px; }
.authority-page--decision-tool .authority-hero::after { top: -150px; right: -170px; width: 560px; height: 560px; border-color: rgba(242, 154, 128, .17); }
.authority-page--decision-tool .authority-hero__inner { position: relative; z-index: 1; }
.authority-page--decision-tool .authority-crumbs { color: rgba(253, 252, 248, .6); }
.authority-page--decision-tool .authority-crumbs a { text-decoration-color: rgba(227, 102, 69, .7); }
.authority-page--decision-tool .authority-crumbs span[aria-hidden] { color: rgba(253, 252, 248, .34); }
.authority-page--decision-tool .authority-hero h1 { max-width: 15ch; color: #fff; }
.authority-page--decision-tool .authority-answer { margin-top: 28px; padding-top: 22px; border-top-color: rgba(242, 154, 128, .42); }
.authority-page--decision-tool .authority-answer p { max-width: 50ch; color: var(--cb-koi-light); font-style: italic; }
.authority-page--decision-tool .authority-byline { margin-top: 28px; color: rgba(253, 252, 248, .62); }
.authority-page--decision-tool .authority-byline__who,
.authority-page--decision-tool .authority-byline__who a { color: #fff; }
.authority-page--decision-tool .authority-byline__dot { color: rgba(253, 252, 248, .32); }
.authority-page--decision-tool .authority-share { border-color: rgba(253, 252, 248, .3); color: #fff; }
.authority-page--decision-tool .authority-share:hover { background: rgba(253, 252, 248, .08); border-color: var(--cb-koi-light); color: #fff; }

.dt-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.dt-btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 24px; background: var(--cb-koi); color: #fff; font-size: 14.5px; font-weight: 800; text-decoration: none; }
.dt-btn::after { content: "\2192"; }
.dt-btn:hover { background: var(--cb-koi-dark); }
.dt-btn--ghost { background: transparent; border: 1px solid rgba(253, 252, 248, .32); }
.dt-btn--ghost::after { content: "\2193"; }
.dt-btn--ghost:hover { background: rgba(253, 252, 248, .07); border-color: var(--cb-koi-light); }

/* The hero brief panel inverts to ivory so it reads against the navy, and every
   line is a jump into the play it names. */
.authority-page--decision-tool .decision-brief { padding: clamp(26px, 3vw, 34px) clamp(24px, 3vw, 34px); background: var(--cb-ivory); color: var(--cb-navy); box-shadow: 0 26px 60px rgba(10, 11, 40, .34); }
.authority-page--decision-tool .decision-brief__label { color: var(--cb-navy); }
.authority-page--decision-tool .decision-brief__title { margin: 6px 0 4px; color: var(--cb-navy); font-family: var(--cb-serif); font-size: 24px; font-weight: 700; letter-spacing: -.018em; line-height: 1.16; }
.authority-page--decision-tool .decision-brief__hint { margin: 0 0 18px; color: var(--dt-muted); font-size: 13.5px; }
.authority-page--decision-tool .decision-brief ol { margin-top: 0; }
.authority-page--decision-tool .decision-brief li { display: block; padding: 0; border-top-color: rgba(38, 39, 86, .14); color: var(--cb-navy); font-family: var(--cb-sans); font-size: 15.5px; font-weight: 600; line-height: 1.35; }
.authority-page--decision-tool .decision-brief li > a { display: grid; grid-template-columns: 30px minmax(0, 1fr); gap: 12px; align-items: start; padding: 11px 0; color: inherit; font: inherit; text-decoration: none; }
.authority-page--decision-tool .decision-brief li > a:hover span { text-decoration: underline; text-decoration-color: var(--cb-koi); text-underline-offset: 4px; }
.authority-page--decision-tool .decision-brief li b { padding-top: 2px; color: var(--cb-koi-dark); }
.authority-page--decision-tool .decision-brief__outcome { background: var(--cb-koi); color: #fff !important; }
.authority-page--decision-tool .decision-brief__outcome > a { padding: 3px 0; }
.authority-page--decision-tool .decision-brief__outcome b { color: #fff; }
.authority-page--decision-tool .decision-brief > a { margin-top: 18px; color: var(--cb-navy); }

/* Banded page rhythm replaces the single reading column. */
.dt-band { padding-block: clamp(52px, 6vw, 82px); }
.dt-band--paper { background: var(--cb-paper); }
.dt-band--ivory { background: var(--cb-ivory); border-block: 1px solid var(--dt-line); }
.dt-shell { width: min(100% - 48px, 1180px); margin-inline: auto; }
.dt-lede { max-width: 58ch; margin: 0 auto clamp(34px, 4vw, 48px); text-align: center; }
.dt-lede h2 { margin: 0 0 14px; color: var(--cb-navy); font-family: var(--cb-serif); font-size: clamp(30px, 3.2vw, 42px); font-weight: 700; letter-spacing: -.025em; line-height: 1.08; text-wrap: balance; }
.dt-lede p { margin: 0; color: var(--dt-muted); font-size: 17.5px; line-height: 1.65; }

/* Opening prose with the drop cap. */
.dt-opening { width: min(100%, 700px); margin-inline: auto; }
.dt-opening p { margin: 0 0 1.05em; color: var(--dt-ink); font-size: 18px; line-height: 1.7; }
.dt-opening p:last-child { margin-bottom: 0; }
.dt-opening .is-lead { margin-bottom: 1.05em; color: var(--cb-navy); font-family: var(--cb-serif); font-size: clamp(23px, 2.2vw, 29px); font-weight: 600; letter-spacing: -.016em; line-height: 1.42; }
.dt-opening .is-lead::first-letter { float: left; margin: 8px 12px 0 0; color: var(--cb-koi); font-family: var(--cb-serif); font-size: 76px; font-weight: 700; line-height: .72; }

/* The plays read straight through on one paper column. */
.dt-plays { width: var(--dt-column); margin-inline: auto; background: var(--cb-paper); box-shadow: 0 22px 54px rgba(38, 39, 86, .09); }
.authority-page--decision-tool .authority-article { border-top: 0; background: none; box-shadow: none; }
.authority-page--decision-tool .authority-play-section { width: auto; margin: 0; padding: clamp(34px, 3.6vw, 46px) clamp(26px, 3.4vw, 52px); border-top: 1px solid var(--dt-line); }
.authority-page--decision-tool .authority-article > .authority-play-section:first-child { border-top: 0; }
.authority-page--decision-tool .authority-article h2 { margin: 0 0 20px; font-size: clamp(26px, 2.9vw, 35px); letter-spacing: -.022em; line-height: 1.1; }
.authority-page--decision-tool .authority-play-section > h2::before { margin-bottom: 10px; font-size: 10px; letter-spacing: .15em; }
.authority-page--decision-tool .authority-article h3 { margin: 30px 0 10px; font-size: clamp(20px, 2vw, 24px); letter-spacing: -.014em; line-height: 1.2; }
/* collection-site-v2.css already offsets anchors by the sticky header, so the extra
   per-heading margin would land a play a quarter of the way down the viewport. */
.authority-page--decision-tool .authority-article h2,
.authority-page--decision-tool .authority-article h3 { scroll-margin-top: 8px; }
.authority-page--decision-tool .authority-article p { margin: 0 0 1em; max-width: 62ch; color: var(--dt-ink); font-size: 17px; line-height: 1.7; }
.authority-page--decision-tool .authority-play-section > p:last-child { margin-bottom: 0; }

/* Spoken lines get their own voice instead of another loose paragraph. */
.authority-page--decision-tool .authority-article p.is-said { margin: 1.15em 0; padding-left: 20px; max-width: 46ch; border-left: 2px solid var(--cb-koi); color: var(--cb-navy); font-family: var(--cb-serif); font-size: clamp(19px, 1.8vw, 21px); font-weight: 600; font-style: italic; line-height: 1.4; }

.authority-page--decision-tool .authority-article ul.q-bank { grid-template-columns: 1fr 1fr; margin: 22px 0 28px; border: 0; border-top: 1px solid var(--dt-line); border-left: 1px solid var(--dt-line); background: none; }
.authority-page--decision-tool .authority-article ul.q-bank li { padding: 16px 18px 16px 36px; border-right: 1px solid var(--dt-line); border-bottom: 1px solid var(--dt-line); background: var(--cb-ivory); font-size: 15px; }
.authority-page--decision-tool .authority-article ul.q-bank li:nth-child(2n) { border-right: 1px solid var(--dt-line); }
.authority-page--decision-tool .authority-article ul.q-bank li::before { top: 22px; left: 17px; }
.authority-page--decision-tool .authority-article blockquote.is-pull,
.authority-page--decision-tool .authority-article blockquote.is-anchor { margin: 30px 0; padding: 26px; font-size: clamp(22px, 2.4vw, 28px); }

/* Related guidance sits under the plays rather than inside one. */
.dt-related { width: var(--dt-column); margin: clamp(30px, 3.4vw, 44px) auto 0; }
.authority-page--decision-tool .authority-related-guides { margin: 0; }

/* The Put it into practice band. */
.authority-page--decision-tool .authority-next { padding-block: clamp(58px, 6.4vw, 92px); }
.authority-page--decision-tool .authority-next__grid { grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr); gap: clamp(34px, 4.4vw, 60px); align-items: start; }
.authority-page--decision-tool .next-card--practice { padding: 0; background: none; box-shadow: none; }
.authority-page--decision-tool .next-card--practice .section-label { color: var(--cb-koi-light); }
.authority-page--decision-tool .next-card--practice h2 { color: #fff; font-size: clamp(29px, 3.1vw, 40px); letter-spacing: -.024em; }
.authority-page--decision-tool .next-card--practice > p { max-width: 50ch; color: rgba(253, 252, 248, .82); }
.authority-page--decision-tool .next-card--practice .next-tools { display: none; }
.authority-page--decision-tool .next-card--practice .authority-cta { background: var(--cb-koi); }
.authority-page--decision-tool .next-card--practice .authority-cta:hover { background: var(--cb-koi-dark); }
.dt-tool-list { margin: 0; padding: 0; border-top: 1px solid rgba(253, 252, 248, .2); list-style: none; }
.dt-tool-list__label { margin: 0 0 12px; color: var(--cb-koi-light); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.dt-tool-list li { display: grid; grid-template-columns: 84px minmax(0, 1fr); gap: 12px; padding: 13px 0; border-bottom: 1px solid rgba(253, 252, 248, .13); color: #fff; font-size: 15.5px; }
.dt-tool-list li b { color: var(--cb-koi-light); font-size: 12px; font-weight: 600; letter-spacing: .06em; }

.authority-page--decision-tool .authority-next__aside { display: grid; gap: 20px; }
.authority-page--decision-tool .authority-next__aside .next-card { padding: 28px 30px; }
.authority-page--decision-tool .authority-next__aside .next-card h2 { font-size: 24px; }

/* Floating guide index: reading progress, the section you are in, and a jump to
   any play without scrolling back to the top. */
.dt-guide {
  position: fixed;
  top: 50%;
  left: calc((var(--dt-rail) - var(--dt-guide-width)) / 2);
  z-index: 40;
  width: var(--dt-guide-width);
  max-height: min(620px, calc(100vh - 168px));
  padding: 13px 15px 7px;
  overflow: hidden auto;
  visibility: hidden;
  background: var(--cb-paper);
  border: 1px solid var(--dt-line);
  box-shadow: 0 16px 40px rgba(38, 39, 86, .16);
  opacity: 0;
  transform: translate(-10px, -50%);
  transition: opacity .3s ease, transform .3s cubic-bezier(.2, .8, .2, 1), visibility .3s;
  overscroll-behavior: contain;
  scrollbar-width: thin;
}
.dt-guide[data-visible="true"] { visibility: visible; opacity: 1; transform: translate(0, -50%); }
.dt-guide__head { display: flex; align-items: center; gap: 12px; margin: 0 0 10px; padding: 0 2px; }
.dt-guide__ring { display: grid; flex: none; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: conic-gradient(var(--cb-koi) var(--dt-read, 0%), var(--cb-cream) 0); }
.dt-guide__ring span { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--cb-paper); color: var(--cb-navy); font-size: 9px; font-weight: 700; font-variant-numeric: tabular-nums; }
.dt-guide__now { min-width: 0; }
.dt-guide__kicker { display: block; color: var(--cb-koi-dark); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.dt-guide__where { display: -webkit-box; margin-top: 4px; overflow: hidden; color: var(--cb-navy); font-size: 13px; font-weight: 600; line-height: 1.24; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.dt-guide__list { margin: 0; padding: 0; border-top: 1px solid var(--dt-line); list-style: none; counter-reset: none; }
.dt-guide__list li { margin: 0; }
.dt-guide__list a {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 8px;
  padding: 8px 6px 8px 8px;
  border-left: 2px solid transparent;
  color: var(--dt-muted);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}
.dt-guide__list a b { color: var(--dt-muted); font-size: 9.5px; font-weight: 700; letter-spacing: .07em; line-height: 1.55; font-variant-numeric: tabular-nums; }
.dt-guide__list a:hover { background: rgba(38, 39, 86, .04); color: var(--cb-navy); }
.dt-guide__list a:hover b { color: var(--cb-koi-dark); }
.dt-guide__list a[aria-current] { border-left-color: var(--cb-koi); background: rgba(242, 154, 128, .1); color: var(--cb-navy); }
.dt-guide__list a[aria-current] b { color: var(--cb-koi-dark); }
.dt-guide__list a:focus-visible { outline: 2px solid var(--cb-koi); outline-offset: -2px; }
/* A longer sequence tightens its rows so the whole guide still fits on screen. */
.dt-guide__list:has(li:nth-child(10)) a { grid-template-columns: 17px minmax(0, 1fr); gap: 6px; padding: 5px 4px 5px 7px; font-size: 11.5px; line-height: 1.24; }

@media (max-width: 1400px) {
  .dt-guide__list a { font-size: 12px; }
}

/* Below this the outer margin cannot hold a readable panel, so the hero Decision
   Brief carries the same jump links instead. */
@media (max-width: 1239px) {
  .dt-guide { display: none; }
}

@media (max-width: 980px) {
  .authority-page--decision-tool .authority-hero::before,
  .authority-page--decision-tool .authority-hero::after { display: none; }
  .authority-page--decision-tool .authority-next__grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .dt-shell { width: min(100% - clamp(36px, 10vw, 48px), 1180px); }
  .authority-page--decision-tool .authority-hero { padding: 32px 0 44px; }
  .authority-page--decision-tool .authority-hero h1 { max-width: none; }
  .dt-actions { flex-direction: column; align-items: stretch; margin-top: 26px; }
  .dt-btn { justify-content: center; }
  .dt-band { padding-block: 46px; }
  .dt-opening p { font-size: 17.5px; }
  .authority-page--decision-tool .authority-play-section { padding: 30px 20px; }
  .authority-page--decision-tool .authority-article h2 { font-size: clamp(25px, 7.4vw, 31px); }
  .authority-page--decision-tool .authority-article p { font-size: 17.5px; }
  .authority-page--decision-tool .authority-article ul.q-bank { grid-template-columns: 1fr; }
  .authority-page--decision-tool .authority-article ul.q-bank li { border-right: 0; }
  .authority-page--decision-tool .authority-article ul.q-bank li:nth-child(2n) { border-right: 0; }
  .dt-tool-list li { grid-template-columns: 1fr; gap: 2px; }
}

@media print {
  .dt-guide { display: none !important; }
  .dt-plays { box-shadow: none; }
}

