/* ===========================================================================
   Strategy website — page-level layout v2.
   =========================================================================== */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--fg-1);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}
img { display: block; max-width: 100%; }
a:focus-visible {
  outline: 3px solid var(--gsc-yellow);
  outline-offset: 2px;
}

.shell { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 720px) { .shell { padding: 0 24px; } }

/* ---------- Header ------------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--rule);
}
.site-header__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 14px 0;
}
.site-header__logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; border: 0;
}
.site-header__logo-mark {
  background: var(--gsc-navy-deep);
  border-radius: 10px; padding: 6px;
  width: 44px; height: 44px;
  display: grid; place-items: center; flex-shrink: 0;
}
.site-header__logo-mark img { width: 32px; height: auto; }
.site-header__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gsc-navy); line-height: 1.2;
}
.site-header__title small {
  display: block; font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; color: var(--gsc-magenta); margin-top: 2px;
}
.site-nav { display: flex; gap: 6px; align-items: center; }
.site-nav a {
  font-family: var(--font-display); font-weight: 700;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gsc-navy); padding: 8px 12px; border-radius: 999px;
  border: 0; text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}
.site-nav a:hover { background: var(--surface); color: var(--gsc-magenta); }
.site-nav a[aria-current="page"] { color: var(--gsc-magenta); background: rgba(173,34,128,0.08); }
.site-nav a.home-link {
  color: var(--fg-2);
  border-right: 1px solid var(--rule);
  border-radius: 0;
  padding-right: 14px;
  margin-right: 4px;
}
.site-nav a.home-link:hover { background: transparent; color: var(--gsc-navy); }
@media (max-width: 800px) { .site-nav a:not(.cta):not(.home-link) { display: none; } }

/* ---------- Landing hero (left text, right logo card) ----------------- */
.hero {
  position: relative;
  background: var(--gsc-navy-deep);
  color: white;
  overflow: hidden;
  min-height: 600px;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 35%;
  opacity: 0.55;
}
.hero__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(14,42,74,0.30) 0%,
    rgba(14,42,74,0.65) 60%,
    rgba(14,42,74,0.92) 100%);
}
.hero__inner {
  position: relative;
  padding-block: 100px 96px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; padding-block: 64px 56px; }
}
.hero__url {
  font-family: var(--font-body);
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.hero__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 84px; line-height: 0.92; letter-spacing: 0.005em;
  text-transform: uppercase; color: white;
  margin: 22px 0 18px; text-wrap: balance;
}
@media (max-width: 980px) { .hero__title { font-size: 56px; } }
@media (max-width: 560px) { .hero__title { font-size: 44px; } }
.hero__years {
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px; letter-spacing: 0.18em;
  color: var(--gsc-yellow); text-transform: uppercase;
}
.hero__sub {
  margin-top: 22px; max-width: 56ch;
  font-family: var(--font-body); font-size: 17px; line-height: 1.55;
  color: rgba(255,255,255,0.85);
}
.hero__logo-card {
  width: 320px; max-width: 100%;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 36px 28px;
  display: grid; place-items: center; gap: 18px;
  text-align: center;
}
.hero__logo-card img.mark { width: 240px; }
.hero__logo-card .url-pill {
  display: inline-block;
  font-family: var(--font-display); font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gsc-yellow);
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid rgba(249,217,3,0.4);
}

/* ---------- Section nav cards (4 priority entries) -------------------- */
.section { padding: 96px 0; }
.section--cream { background: var(--paper-warm); }
.section--surface { background: var(--surface); }
.section--navy { background: var(--gsc-navy-deep); color: white; }
.section--navy .eyebrow { color: var(--gsc-yellow); }
.section--navy h2, .section--navy h3 { color: white; }
.section h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 44px; line-height: 1.05; text-transform: uppercase;
  letter-spacing: 0.01em; color: var(--gsc-navy);
  margin: 10px 0 20px; text-wrap: balance;
}
.section--navy h2 { color: white; }
.eyebrow {
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gsc-magenta);
}
.lede {
  font-family: var(--font-body); font-size: 19px; line-height: 1.55;
  color: var(--fg-1); max-width: 64ch;
}

.section-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
  margin-top: 40px;
}
@media (max-width: 720px) { .section-grid { grid-template-columns: 1fr; } }

.section-grid--five {
  grid-template-columns: repeat(3, 1fr);
}
.section-grid--five > a:nth-child(5) {
  grid-column: span 1;
}
@media (max-width: 980px) {
  .section-grid--five { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .section-grid--five { grid-template-columns: 1fr; }
}
.section-card {
  display: block; text-decoration: none; border: 0;
  background: white;
  border-radius: 20px;
  padding: 34px 32px 30px;
  box-shadow: 0 4px 14px rgba(31,63,102,0.10);
  border-top: 8px solid var(--card-color);
  transition: transform 220ms ease, box-shadow 220ms ease;
  position: relative; overflow: hidden;
  color: inherit;
}
.section-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(31,63,102,0.16);
}
.section-card__num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--card-color);
}
.section-card__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 28px; line-height: 1.05;
  text-transform: uppercase; letter-spacing: 0.01em;
  color: var(--gsc-navy);
  margin: 10px 0 14px;
}
.section-card__sub {
  font-family: var(--font-body); font-size: 15px; line-height: 1.55;
  color: var(--fg-2);
  min-height: 5.5em;
}
.section-card__cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--card-color);
}
.section-card__cta .arrow { transition: transform 200ms ease; }
.section-card:hover .section-card__cta .arrow { transform: translateX(6px); }

/* ---------- Ask AI box ------------------------------------------------ */
.ai-box {
  background: white;
  border-radius: 22px;
  padding: 36px 36px 30px;
  box-shadow: 0 18px 40px rgba(31,63,102,0.10);
  border: 1px solid var(--rule);
  margin-top: 36px;
}
.ai-box__field {
  display: flex; align-items: center; gap: 12px;
  background: var(--paper-warm);
  border: 2px solid var(--rule);
  border-radius: 999px;
  padding: 8px 8px 8px 22px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.ai-box__field:focus-within {
  border-color: var(--gsc-magenta);
  box-shadow: 0 0 0 4px rgba(173,34,128,0.10);
}
.ai-box__field input {
  flex: 1; border: 0; background: transparent;
  font-family: var(--font-body); font-size: 17px;
  color: var(--gsc-navy); outline: none; min-width: 0;
}
.ai-box__field input::placeholder { color: var(--fg-3); }

/* Microphone button — slots between the input and the Ask button */
.mic-btn {
  appearance: none;
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--rule);
  color: var(--gsc-navy);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease,
              border-color 160ms ease, transform 160ms ease,
              box-shadow 160ms ease;
}
.mic-btn:hover {
  border-color: var(--gsc-magenta);
  color: var(--gsc-magenta);
  background: white;
  transform: translateY(-1px);
}
.mic-btn:focus-visible {
  outline: 3px solid var(--gsc-yellow);
  outline-offset: 2px;
}
.mic-btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }
.mic-btn.is-listening,
.mic-btn.is-listening:hover {
  background: var(--gsc-red);
  border-color: var(--gsc-red);
  color: white;
  animation: mic-pulse 1.2s ease-in-out infinite;
}
@keyframes mic-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,32,38,0.35); }
  50%      { box-shadow: 0 0 0 8px rgba(200,32,38,0.00); }
}
@media (prefers-reduced-motion: reduce) {
  .mic-btn.is-listening { animation: none; }
  .mic-btn:hover { transform: none; }
}
.mic-btn__error {
  display: block;
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gsc-red);
  font-style: italic;
}
.ai-box__btn {
  appearance: none; border: 0;
  background: var(--gsc-magenta); color: white;
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 160ms ease;
  white-space: nowrap;
}
.ai-box__btn:hover { background: #8E1B69; }
.ai-box__btn:disabled { background: var(--gsc-magenta-lt); cursor: progress; }
.ai-box__prompts {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 18px;
}
.ai-box__prompt {
  appearance: none; border: 1px solid var(--rule);
  background: transparent;
  font-family: var(--font-body); font-size: 13px;
  color: var(--gsc-navy);
  padding: 7px 14px; border-radius: 999px;
  cursor: pointer;
  transition: all 160ms ease;
}
.ai-box__prompt:hover {
  background: var(--gsc-yellow);
  border-color: var(--gsc-yellow);
  color: var(--gsc-navy);
}
.ai-box__answer {
  margin-top: 22px;
  background: var(--paper-warm);
  border-left: 4px solid var(--gsc-teal);
  border-radius: 12px;
  padding: 20px 22px;
  font-family: var(--font-body); font-size: 16px; line-height: 1.6;
  color: var(--gsc-navy);
  white-space: pre-wrap;
}
.ai-box__loading {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--fg-2); font-size: 14px; font-style: italic;
}
.ai-box__loading::after {
  content: ""; width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid var(--rule);
  border-top-color: var(--gsc-magenta);
  animation: spin 800ms linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Visual Roadmap (uses actual page 53 image) ----------------- */
.roadmap-section {
  background: #F0F4F0;
  padding-bottom: 72px;
  /* Leave space for the sticky header when scrolled-to via #roadmap. */
  scroll-margin-top: 80px;
}
.roadmap-section .eyebrow { color: var(--gsc-magenta); }
.roadmap-section h2 { color: var(--gsc-navy); }

.roadmap-figure {
  position: relative;
  margin: 40px auto 0;
  max-width: 920px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(31,63,102,0.18);
  background: white;
  aspect-ratio: 1600 / 2311;
}
.roadmap-figure__img {
  width: 100%; height: 100%; display: block; object-fit: cover;
}
.sr {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.roadmap-hot {
  position: absolute;
  transform: translate(-50%, -50%);
  border: 0;
  padding: 0;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  height: 0;
  display: grid; place-items: center;
}
.roadmap-hot__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 5px solid transparent;
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  box-sizing: border-box;
}
.roadmap-hot:hover .roadmap-hot__ring,
.roadmap-hot:focus-visible .roadmap-hot__ring {
  border-color: var(--gsc-magenta);
  transform: scale(1.08);
  box-shadow: 0 0 0 4px rgba(173,33,128,0.18);
  outline: none;
}
.roadmap-hot.is-active .roadmap-hot__ring {
  border-color: var(--gsc-magenta);
  box-shadow: 0 0 0 6px rgba(173,33,128,0.22);
}

/* Clickable overlays over the "Our Strategic Priorities" box -------------- */
.roadmap-prio {
  position: absolute;
  left: 5.5%;
  width: 31%;
  display: block;
  border-radius: 10px;
  border: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.roadmap-prio:hover,
.roadmap-prio:focus-visible {
  border-color: var(--gsc-magenta);
  background: rgba(173,33,128,0.10);
  box-shadow: 0 0 0 4px rgba(173,33,128,0.14);
  outline: none;
}

/* ---------- Roadmap details (below the image) ------------------------ */
.roadmap-details {
  background: white;
  border-radius: 22px;
  padding: 32px 36px;
  margin-top: 32px;
  box-shadow: 0 8px 24px rgba(31,63,102,0.10);
  border: 1px solid var(--rule);
}
.roadmap-details__head {
  border-bottom: 1px solid var(--rule);
  padding-bottom: 22px; margin-bottom: 22px;
}
.roadmap-details__head .yr {
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gsc-magenta);
}
.roadmap-details__head .ti {
  font-family: var(--font-display); font-weight: 700;
  font-size: 28px; text-transform: uppercase; letter-spacing: 0.01em;
  color: var(--gsc-navy);
  margin: 6px 0 8px;
}
.roadmap-details__head p {
  font-family: var(--font-body); font-size: 15px; line-height: 1.55;
  color: var(--fg-2); margin: 0 0 18px; max-width: 64ch;
}
.roadmap-details__yearpicker {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 8px;
}
.roadmap-details__yearpicker .pick {
  appearance: none;
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  text-align: center;
  font-family: var(--font-display);
  transition: all 160ms ease;
}
.roadmap-details__yearpicker .pick strong {
  display: block;
  font-weight: 700; font-size: 12px;
  color: var(--gsc-navy);
}
.roadmap-details__yearpicker .pick span {
  display: block;
  font-size: 10px; letter-spacing: 0.06em;
  color: var(--fg-2);
  margin-top: 2px;
}
.roadmap-details__yearpicker .pick.is-active {
  background: var(--gsc-yellow);
  border-color: var(--gsc-yellow);
}
.roadmap-details__yearpicker .pick:hover {
  border-color: var(--gsc-magenta);
  color: var(--gsc-magenta);
}

.roadmap-details__empty {
  font-family: var(--font-body); color: var(--fg-2); padding: 20px 0;
}
.roadmap-details__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.roadmap-details__group h5 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--p-color);
  display: flex; align-items: center; gap: 8px;
  margin: 0 0 10px;
}
.roadmap-details__group .dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--p-color);
}
.roadmap-details__task {
  display: block; text-decoration: none; border: 0;
  background: var(--paper-warm);
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 6px;
  font-family: var(--font-body); font-size: 14px; line-height: 1.5;
  color: var(--gsc-navy);
  border-left: 4px solid var(--p-color);
  transition: transform 160ms ease, box-shadow 160ms ease;
  cursor: pointer;
}
.roadmap-details__task:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 14px rgba(31,63,102,0.10);
}
.roadmap-details__task .meta {
  display: block;
  font-family: var(--font-display); font-weight: 700;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--p-color);
  margin-bottom: 4px;
}
.roadmap-details__group .dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--p-color);
}
.roadmap-details__task {
  display: block; text-decoration: none; border: 0;
  background: var(--paper-warm);
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 6px;
  font-family: var(--font-body); font-size: 14px; line-height: 1.5;
  color: var(--gsc-navy);
  border-left: 4px solid var(--p-color);
  transition: transform 160ms ease, box-shadow 160ms ease;
  cursor: pointer;
}
.roadmap-details__task:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 14px rgba(31,63,102,0.10);
}
.roadmap-details__task .meta {
  display: block;
  font-family: var(--font-display); font-weight: 700;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--p-color);
  margin-bottom: 4px;
}
.roadmap-details__task {
  display: block; text-decoration: none; border: 0;
  background: var(--paper-warm);
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 6px;
  font-family: var(--font-body); font-size: 14px; line-height: 1.5;
  color: var(--gsc-navy);
  border-left: 4px solid var(--p-color);
  transition: transform 160ms ease, box-shadow 160ms ease;
  cursor: pointer;
}
.roadmap-details__task:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 14px rgba(31,63,102,0.10);
}
.roadmap-details__task .meta {
  display: block;
  font-family: var(--font-display); font-weight: 700;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--p-color);
  margin-bottom: 4px;
}

/* ---------- Section pages: page hero with photo + colour band ---------- */
.page-hero {
  background: var(--page-color, var(--gsc-magenta));
  color: white;
  padding: 0;
  border: 0;
  position: relative;
  overflow: hidden;
}
.page-hero__photo {
  height: 360px;
  background-image: var(--page-photo);
  background-size: cover;
  background-position: center;
  background-color: var(--page-color);
  position: relative;
}
.page-hero__photo::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 80px;
  background: linear-gradient(180deg, transparent 0%, var(--page-color) 100%);
}
.page-hero__band {
  background: var(--page-color, var(--gsc-magenta));
  padding: 32px 0 56px;
  color: white;
}
.page-hero__num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 96px; line-height: 1; color: rgba(255,255,255,0.92);
  letter-spacing: 0;
}
.page-hero__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 56px; line-height: 1; text-transform: uppercase;
  color: white; margin: 8px 0 0; letter-spacing: 0.01em;
}
@media (max-width: 720px) {
  .page-hero__photo { height: 240px; }
  .page-hero__num { font-size: 64px; }
  .page-hero__title { font-size: 36px; }
}

/* ---------- Generic content blocks (section pages) ------------------- */
.content { max-width: 880px; margin: 0 auto; }
.content h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 36px; line-height: 1.05;
  text-transform: uppercase; letter-spacing: 0.01em;
  color: var(--gsc-navy);
  margin: 64px 0 18px;
  padding-top: 12px;
  border-top: 4px solid var(--page-color, var(--gsc-magenta));
}
.content h2:first-of-type { margin-top: 0; }
.content h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--gsc-navy);
  margin: 36px 0 14px;
}
.content h4 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gsc-magenta);
  margin: 18px 0 6px;
}
.content p {
  font-family: var(--font-body); font-size: 17px; line-height: 1.7;
  color: var(--gsc-navy); margin: 0 0 16px;
}
.content .lede {
  font-family: var(--font-display); font-weight: 700;
  font-size: 24px; line-height: 1.3; color: var(--gsc-navy);
  margin: 0 0 18px;
}
.content .vision-box {
  background: var(--gsc-navy-deep);
  color: white;
  padding: 36px 36px;
  border-radius: 18px;
  margin: 28px 0;
}
.content .vision-box p {
  font-family: var(--font-display); font-weight: 700;
  font-size: 26px; line-height: 1.2; color: white;
  text-transform: uppercase; letter-spacing: 0.01em;
  text-wrap: balance;
  margin: 0;
}
.content-photo {
  margin: 32px 0 36px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(31,63,102,0.14);
}
.content-photo img { width: 100%; height: auto; display: block; }
.content-photo figcaption {
  font-family: var(--font-display); font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-3);
  padding: 12px 18px;
  background: var(--paper-warm);
}
.content ul { padding-left: 22px; font-size: 17px; line-height: 1.65; color: var(--gsc-navy); }
.content ul li { margin-bottom: 10px; }
.content .caption {
  font-family: var(--font-display); font-weight: 700;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-3); margin: 0 0 8px;
}
.content .subhead {
  font-family: var(--font-display); font-weight: 700;
  font-size: 16px; letter-spacing: 0.04em;
  color: var(--gsc-navy);
  margin: 14px 0 6px;
}
.content .implication {
  background: var(--paper-warm);
  border-left: 4px solid var(--gsc-teal);
  padding: 14px 18px;
  border-radius: 8px;
  font-family: var(--font-body); font-size: 15px; line-height: 1.5;
  color: var(--gsc-navy);
  margin: 14px 0 24px;
}
.content .implication::before {
  content: "Strategic implication "; font-weight: 700; color: var(--gsc-teal);
  letter-spacing: 0.08em; text-transform: uppercase; font-size: 11px;
  display: block; margin-bottom: 4px;
}
.content .byline {
  font-family: var(--font-display); font-weight: 700;
  font-size: 16px; letter-spacing: 0.04em;
  color: var(--gsc-navy); margin-bottom: 18px;
}
.content .byline small {
  display: block; font-family: var(--font-body); font-size: 13px;
  color: var(--fg-2); font-weight: 400; letter-spacing: 0; margin-top: 2px;
}
.content .signature {
  font-family: var(--font-script); font-size: 56px; line-height: 1;
  color: var(--gsc-navy-ink); margin: 18px 0;
}
.content .plan-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
  margin: 18px 0 32px;
}
@media (max-width: 720px) { .content .plan-grid { grid-template-columns: 1fr; } }
.content .plan-grid > div {
  background: var(--paper-warm); border-left: 4px solid var(--gsc-teal);
  padding: 16px 18px; border-radius: 10px;
}
.content .plan-grid h5 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 14px; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--gsc-navy); margin: 0 0 6px;
}
.content .plan-grid p {
  font-size: 13px; line-height: 1.5; margin: 0; color: var(--fg-2);
}
.content .service-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  margin: 18px 0 32px;
}
@media (max-width: 720px) { .content .service-grid { grid-template-columns: 1fr 1fr; } }
.content .service-grid > div {
  color: white;
  padding: 26px 18px; border-radius: 14px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 18px; text-transform: none; letter-spacing: 0;
  line-height: 1.2;
  display: flex; align-items: center; justify-content: center;
  text-align: center; min-height: 110px;
  background: var(--gsc-teal);
}

/* ---------- Stat groups (Section 02) --------------------------------- */
.stat-group { margin: 28px 0 36px; }
.stat-group__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 30px; text-align: center;
  text-transform: none; letter-spacing: 0;
  color: var(--sg-tile);
  margin-bottom: 14px;
}
.stat-group__panel {
  background: var(--sg-bg);
  border-radius: 10px;
  padding: 22px 22px 18px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px 22px;
  align-items: start;
}
@media (max-width: 720px) { .stat-group__panel { grid-template-columns: 1fr; gap: 14px; } }
.stat-group__service {
  font-family: var(--font-body); font-size: 15px; line-height: 1.35;
  color: var(--gsc-navy);
  font-weight: 600;
  align-self: start;
  padding-top: 16px;
}
.stat-group__tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}
.stat-group__tiles .stat-tile {
  background: var(--sg-tile);
  color: white;
  padding: 16px 16px 18px;
  border-radius: 10px;
  display: flex; flex-direction: column; gap: 4px;
  min-height: 110px;
}
.stat-group__tiles .stat-tile .v {
  font-family: var(--font-display); font-weight: 700;
  font-size: 38px; line-height: 1;
}
.stat-group__tiles .stat-tile .l {
  font-family: var(--font-display); font-weight: 700;
  font-size: 14px; line-height: 1.35;
  margin-top: 6px;
}
.stat-group__tiles .stat-tile__sub {
  margin: 8px 0 0; padding-left: 16px;
  font-family: var(--font-body); font-weight: 400;
  font-size: 13px; line-height: 1.4;
  color: white;
}
.stat-group__tiles .stat-tile .src {
  font-family: var(--font-body); font-size: 11px;
  margin-top: 8px; opacity: 0.85; font-weight: 400;
}
.stat-group__narrative {
  grid-column: 2;
}
.stat-group__narrative p {
  font-family: var(--font-body); font-size: 14px; line-height: 1.5;
  color: var(--gsc-navy); margin: 6px 0;
}
.stat-group__footnote {
  grid-column: 2;
  font-family: var(--font-body); font-size: 12px;
  color: var(--gsc-navy); opacity: 0.75; text-align: right;
  font-style: italic;
}
.stat-group__implication {
  margin-top: 12px;
  font-family: var(--font-body); font-size: 14px; line-height: 1.5;
  color: var(--gsc-navy);
}
.stat-group__implication strong {
  color: var(--sg-tile);
  font-family: var(--font-display); font-weight: 700;
  letter-spacing: 0;
}
.stat-group--rl  { --sg-bg: var(--stats-rl-bg);  --sg-tile: var(--stats-rl-tile);  }
.stat-group--rac { --sg-bg: var(--stats-rac-bg); --sg-tile: var(--stats-rac-tile); }
.stat-group--hcc { --sg-bg: var(--stats-hcc-bg); --sg-tile: var(--stats-hcc-tile); }
.stat-group--dac { --sg-bg: var(--stats-dac-bg); --sg-tile: var(--stats-dac-tile); }
.stat-group--se  { --sg-bg: var(--stats-se-bg);  --sg-tile: var(--stats-se-tile);  }
.stat-group--okr { --sg-bg: var(--stats-okr-bg); --sg-tile: var(--stats-okr-tile); }

.content .consult-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px; margin: 18px 0 28px;
}
.content .consult-grid > div {
  background: white; border: 1px solid var(--rule);
  border-radius: 14px; padding: 16px 18px;
  display: flex; align-items: center; gap: 14px;
}
.content .consult-grid .c {
  font-family: var(--font-display); font-weight: 700;
  font-size: 26px; line-height: 1;
  color: white;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.content .consult-grid .t {
  font-family: var(--font-display); font-weight: 700;
  font-size: 16px; color: var(--gsc-navy);
  letter-spacing: 0;
}
.content .consult-grid .n {
  font-family: var(--font-body); font-size: 13px; line-height: 1.4;
  color: var(--fg-2);
  margin-top: 2px;
}

.participant-profile {
  background: var(--stats-rl-bg);
  border-radius: 14px;
  padding: 18px 22px;
  margin: 18px 0;
  max-width: 360px;
}
.participant-profile p {
  margin: 4px 0; font-size: 15px;
  color: var(--gsc-navy);
  font-family: var(--font-body);
}
.participant-profile .head {
  font-family: var(--font-display); font-weight: 700;
  font-size: 18px; letter-spacing: 0;
  margin-bottom: 6px;
}

.boxed-note {
  background: #E3EDF7;
  border-radius: 12px;
  padding: 16px 20px;
  margin: 14px 0;
}
.boxed-note h5 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 15px; color: var(--gsc-navy);
  margin: 0 0 6px;
  letter-spacing: 0;
}
.boxed-note p {
  font-family: var(--font-body); font-size: 14px; line-height: 1.5;
  color: var(--gsc-navy); margin: 0;
}

.content-diagram {
  margin: 28px 0 36px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(31,63,102,0.08);
  background: white;
  padding: 22px;
  border: 1px solid var(--rule);
}
.content-diagram img { width: 100%; height: auto; display: block; }
.content-diagram figcaption {
  font-family: var(--font-display); font-weight: 700;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-3);
  margin-top: 12px;
  text-align: center;
}

.delivery-diagram {
  margin: 32px auto;
  max-width: 320px;
  border-radius: 14px;
  overflow: hidden;
  background: white;
  padding: 24px;
  border: 1px solid var(--rule);
  box-shadow: 0 8px 24px rgba(31,63,102,0.08);
}
.delivery-diagram img { width: 100%; height: auto; display: block; }

/* ---------- Delivery flow chevron diagram (page 54 recreation) -------- */
.delivery-flow {
  max-width: 560px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.delivery-flow__step {
  background: var(--c);
  color: white;
  position: relative;
  padding: 28px 36px;
  /* Pointed bottom edge + matching V-notch top edge so consecutive
     chevrons interlock just like the printed Strategy diagram. */
  clip-path: polygon(
    0% 0%,
    50% 18%,
    100% 0%,
    100% 82%,
    50% 100%,
    0% 82%
  );
  margin-bottom: -52px;
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.delivery-flow__step:last-child { margin-bottom: 0; }
.delivery-flow__label {
  font-family: var(--font-display); font-weight: 700;
  font-size: 34px;
  color: white;
  line-height: 1.1;
  letter-spacing: 0;
  text-align: center;
  text-wrap: balance;
  max-width: 360px;
  margin: 0 auto;
}
@media (max-width: 560px) {
  .delivery-flow__step { padding: 22px 24px; min-height: 140px; margin-bottom: -42px; }
  .delivery-flow__label { font-size: 26px; max-width: 240px; }
}
.content .person-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 14px; margin: 18px 0 22px;
}
.content .person-grid > div {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-align: center;
}
.content .person-grid img { width: 56px; height: auto; }
.content .person-grid .lbl {
  font-family: var(--font-display); font-weight: 700;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gsc-navy);
  line-height: 1.2;
}
.content .quote-card {
  background: white; border-radius: 14px;
  padding: 26px 28px; border-left: 6px solid var(--qc, var(--gsc-magenta));
  box-shadow: 0 4px 14px rgba(31,63,102,0.10);
  margin: 18px 0 28px;
}
.content .quote-card p {
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px; line-height: 1.3; color: var(--gsc-navy);
  margin: 0 0 12px;
}
.content .quote-card cite {
  font-family: var(--font-body); font-style: normal;
  font-size: 13px; font-weight: 600; color: var(--fg-2);
  letter-spacing: 0.04em;
}

.content .delivery-pillars {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 28px;
}
.content .delivery-pillars span {
  background: var(--gsc-yellow); color: var(--gsc-navy);
  padding: 12px 18px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase;
}
.content .delivery-pillars span:nth-child(2) { background: var(--gsc-green); color: white; }
.content .delivery-pillars span:nth-child(3) { background: var(--gsc-teal); color: white; }
.content .delivery-pillars span:nth-child(4) { background: var(--gsc-orange); color: white; }
.content .delivery-pillars span:nth-child(5) { background: var(--gsc-magenta); color: white; }

.content .role-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
  margin: 18px 0 28px;
}
@media (max-width: 720px) { .content .role-grid { grid-template-columns: 1fr; } }
.content .role-card {
  background: white; border-radius: 16px;
  padding: 24px 22px;
  border-top: 6px solid var(--rc);
  box-shadow: 0 4px 14px rgba(31,63,102,0.10);
}
.content .role-card h5 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rc); margin: 0 0 4px;
}
.content .role-card h6 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 18px; text-transform: uppercase; letter-spacing: 0.01em;
  color: var(--gsc-navy); margin: 0 0 10px;
}
.content .role-card p { font-size: 14px; line-height: 1.55; margin: 0; }
.content .references {
  list-style: decimal; padding-left: 22px;
  font-family: var(--font-body); font-size: 13px; line-height: 1.55;
  color: var(--fg-2);
}
.content .references li { margin-bottom: 8px; }

/* ---------- Strategic Priorities page -------------------------------- */
.priority-section {
  padding: 80px 0;
  border-top: 8px solid var(--p-color);
  background: white;
}
.priority-section:nth-child(even) { background: var(--paper-warm); }
.priority-section__head {
  text-align: center;
  margin-bottom: 36px;
}
.priority-section__icon {
  width: 140px; height: 140px;
  margin: 0 auto 20px;
}
.priority-section__num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--p-color);
}
.priority-section__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 48px; text-transform: uppercase; letter-spacing: 0.01em;
  color: var(--gsc-navy); margin: 12px auto 12px; max-width: 18ch;
  line-height: 1.05;
}
.priority-section__sub {
  font-family: var(--font-display); font-weight: 700;
  font-size: 18px; color: var(--p-color);
  max-width: 56ch; margin: 0 auto;
}
.priority-section__supporting {
  display: flex; justify-content: center; gap: 22px;
  margin: 22px auto 0;
}
.priority-section__supporting img {
  width: 56px; height: 56px;
  opacity: 0.85;
}
.priority-section__photo {
  max-width: 920px; margin: 0 auto 28px;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 18px 40px rgba(31,63,102,0.18);
  aspect-ratio: 16/9;
}
.priority-section__photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.priority-section__intro {
  max-width: 760px; margin: 0 auto 36px;
}
.priority-section__intro p {
  font-family: var(--font-body); font-size: 17px; line-height: 1.7;
  color: var(--gsc-navy); margin: 0 0 14px;
}
.priority-section__align {
  max-width: 760px; margin: 0 auto 36px;
  background: white; border: 1px solid var(--rule);
  border-radius: 14px; padding: 22px 24px;
  font-family: var(--font-body); font-size: 14px; line-height: 1.55;
  color: var(--gsc-navy);
}
.priority-section__align h4 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--p-color); margin: 0 0 6px;
}
.priority-section__align h4 + p { margin-bottom: 14px; }

.action-group {
  max-width: 920px; margin: 0 auto 28px;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--rule);
  box-shadow: 0 4px 14px rgba(31,63,102,0.08);
  overflow: hidden;
  scroll-margin-top: 100px;
}
.action-group__head {
  background: var(--p-color); color: white;
  padding: 18px 24px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 18px; line-height: 1.25; text-transform: uppercase;
  letter-spacing: 0.01em;
}
.action-group__head .lbl {
  display: block;
  font-size: 10px; letter-spacing: 0.22em; opacity: 0.85;
  margin-bottom: 6px;
}
.action-group__table-head {
  display: grid; grid-template-columns: 1fr 130px 110px;
  gap: 18px;
  padding: 12px 24px;
  background: rgba(0, 0, 0, 0.04);
  border-top: 1px solid var(--rule);
  font-family: var(--font-display); font-weight: 700;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--p-color);
}
@media (max-width: 720px) { .action-group__table-head { display: none; } }
.action-group__task {
  display: grid; grid-template-columns: 1fr 130px 110px;
  gap: 18px; padding: 16px 24px;
  border-top: 1px solid var(--rule);
  align-items: start;
  scroll-margin-top: 100px;
  transition: background 200ms ease;
}
.action-group__task:hover { background: var(--paper-warm); }
.action-group__task.highlight { background: rgba(249,217,3,0.18); }
@media (max-width: 720px) {
  .action-group__task { grid-template-columns: 1fr; gap: 6px; }
  .action-group__task .col::before {
    content: attr(data-label);
    display: block;
    font-family: var(--font-display); font-weight: 700;
    font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--fg-3); margin-top: 4px;
  }
}
.action-group__task .col {
  font-family: var(--font-body); font-size: 14px; line-height: 1.55;
  color: var(--gsc-navy);
}
.action-group__task .time {
  font-family: var(--font-display); font-weight: 700;
  font-size: 12px; letter-spacing: 0.04em;
  color: var(--fg-2);
}
.cost-pill {
  display: inline-block;
  font-family: var(--font-display); font-weight: 700;
  font-size: 11px; letter-spacing: 0.06em;
  color: white;
  padding: 4px 10px; border-radius: 999px;
  background: var(--gsc-fg-3, var(--fg-3));
  white-space: nowrap;
}
.cost-pill.none { background: var(--fg-3); }
.cost-pill.c1 { background: var(--gsc-green); }
.cost-pill.c2 { background: var(--gsc-teal); }
.cost-pill.c3 { background: var(--gsc-orange); }
.cost-pill.c4 { background: var(--gsc-red-orange); }
.cost-pill.c5 { background: var(--gsc-magenta); }
.action-group__funding {
  background: var(--paper-warm);
  border-top: 1px solid var(--rule);
  padding: 14px 24px;
  font-family: var(--font-body); font-size: 13px;
  color: var(--fg-2);
}
.action-group__funding strong {
  display: block;
  font-family: var(--font-display); font-weight: 700;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--p-color); margin-bottom: 4px;
}
.action-group__funding ul { margin: 0; padding-left: 18px; line-height: 1.55; }

.cost-key {
  max-width: 920px; margin: 24px auto 0;
  font-family: var(--font-body); font-size: 12px; color: var(--fg-3);
  text-align: center;
}

/* ---------- Strategy / PDF reader page -------------------------------- */
.pdf-picker {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin: 32px 0;
}
@media (max-width: 720px) { .pdf-picker { grid-template-columns: 1fr; } }
.pdf-picker__btn {
  appearance: none;
  background: white;
  border: 2px solid var(--rule);
  border-radius: 16px;
  padding: 20px 22px;
  cursor: pointer;
  text-align: left;
  display: flex; flex-direction: column; gap: 4px;
  transition: all 200ms ease;
}
.pdf-picker__btn:hover {
  border-color: var(--gsc-magenta);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(31,63,102,0.10);
}
.pdf-picker__btn.is-active {
  border-color: var(--gsc-yellow);
  background: var(--gsc-yellow);
}
.pdf-picker__btn .lbl {
  font-family: var(--font-display); font-weight: 700;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gsc-magenta);
}
.pdf-picker__btn.is-active .lbl { color: var(--gsc-navy); }
.pdf-picker__btn .ti {
  font-family: var(--font-display); font-weight: 700;
  font-size: 16px; color: var(--gsc-navy); margin-top: 4px;
}
.pdf-picker__btn .su {
  font-family: var(--font-body); font-size: 13px; line-height: 1.4;
  color: var(--fg-2);
  margin-top: 4px;
}
.pdf-picker__btn.is-active .su { color: var(--gsc-navy); opacity: 0.85; }

.pdf-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  background: var(--gsc-navy);
  color: white;
  padding: 14px 22px;
  border-radius: 12px 12px 0 0;
  margin-top: 24px;
  flex-wrap: wrap;
}
.pdf-toolbar strong {
  font-family: var(--font-display); font-weight: 700;
  font-size: 14px; letter-spacing: 0.04em;
  display: block;
}
.pdf-toolbar__meta {
  font-family: var(--font-body); font-size: 12px;
  color: rgba(255,255,255,0.7);
}
.pdf-toolbar__actions { display: flex; gap: 8px; }
.pdf-toolbar__action {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: white;
  padding: 8px 14px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
  transition: all 160ms ease;
}
.pdf-toolbar__action:hover {
  background: white; color: var(--gsc-navy); border-color: white;
}
.pdf-toolbar__action--primary {
  background: var(--gsc-yellow);
  color: var(--gsc-navy);
  border-color: var(--gsc-yellow);
}
.pdf-toolbar__action--primary:hover { background: #F5C518; border-color: #F5C518; color: var(--gsc-navy); }

.pdf-viewer {
  background: var(--paper-warm);
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  border: 1px solid var(--rule);
  border-top: 0;
}
.pdf-viewer iframe {
  width: 100%;
  height: 80vh;
  min-height: 600px;
  border: 0;
  display: block;
}
.pdf-disclaimer {
  font-family: var(--font-body); font-size: 13px;
  color: var(--fg-3);
  margin: 16px 0 0;
  text-align: center;
}
.pdf-disclaimer strong { color: var(--gsc-navy); font-weight: 600; }
/* ---------- Listen / Stop accessibility button ----------------------- */
.speak-btn {
  display: inline-flex; align-items: center; gap: 8px;
  appearance: none;
  background: var(--paper-warm);
  color: var(--gsc-navy);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 7px 14px 7px 12px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease,
              border-color 160ms ease, transform 160ms ease,
              box-shadow 160ms ease;
  white-space: nowrap;
  vertical-align: middle;
}
.speak-btn:hover {
  border-color: var(--gsc-magenta);
  color: var(--gsc-magenta);
  background: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(31,63,102,0.10);
}
.speak-btn:active { transform: translateY(0); box-shadow: none; }
.speak-btn:focus-visible {
  outline: 3px solid var(--gsc-yellow);
  outline-offset: 2px;
}
.speak-btn.is-speaking,
.speak-btn.is-speaking:hover {
  background: var(--gsc-magenta);
  border-color: var(--gsc-magenta);
  color: white;
  box-shadow: 0 4px 14px rgba(173,34,128,0.25);
}
.speak-btn.is-speaking .speak-btn__icon {
  animation: speak-pulse 1.4s ease-in-out infinite;
}
@keyframes speak-pulse {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%      { transform: scale(1.15); opacity: 0.78; }
}
@media (prefers-reduced-motion: reduce) {
  .speak-btn.is-speaking .speak-btn__icon { animation: none; }
  .speak-btn:hover { transform: none; }
}
.speak-btn__icon { flex-shrink: 0; display: block; }
@media (max-width: 560px) {
  .speak-btn { padding: 7px 10px; }
  .speak-btn__label { display: none; }
}
.speak-btn--on-dark,
.hero .speak-btn,
.section--navy .speak-btn {
  background: rgba(255,255,255,0.10);
  color: white;
  border-color: rgba(255,255,255,0.25);
}
.speak-btn--on-dark:hover,
.hero .speak-btn:hover,
.section--navy .speak-btn:hover {
  background: white; color: var(--gsc-navy); border-color: white;
}
.hero .speak-btn.is-speaking,
.section--navy .speak-btn.is-speaking {
  background: var(--gsc-yellow);
  color: var(--gsc-navy);
  border-color: var(--gsc-yellow);
}

/* Row wrapper around content h2 that holds an h2 + listen button side by
   side. Inherits the colour rail that .content h2 used to draw on its
   own top border. */
.content .content-h2-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin: 64px 0 18px;
  padding-top: 12px;
  border-top: 4px solid var(--page-color, var(--gsc-magenta));
}
.content .content-h2-row:first-of-type { margin-top: 0; }
.content .content-h2-row h2 {
  margin: 0;
  padding-top: 0;
  border-top: 0;
  flex: 1;
}
@media (max-width: 560px) {
  .content .content-h2-row { flex-wrap: wrap; gap: 10px; }
}

/* Same idea for the section eyebrow + heading + listen button row used
   on the landing page (white / cream / navy sections). */
.section__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; margin-bottom: 8px;
}
.section__head > div:first-child { flex: 1; min-width: 0; }
.section__head h2 { margin: 10px 0 6px; }
@media (max-width: 560px) {
  .section__head { flex-wrap: wrap; }
}

/* Listen button placed inside a Priority section header (Strategic
   Priorities page). Centered under the priority sub-heading. */
.priority-section__listen { margin: 18px auto 0; text-align: center; }

/* Listen button placed inside the dark hero (landing page + page heroes
   on strategy.html / inner pages). Sits below the title. */
.hero__listen { margin-top: 24px; }

/* ---------- Footer --------------------------------------------------- */
.site-footer {
  background: var(--gsc-navy-ink);
  color: rgba(255,255,255,0.78);
  padding: 64px 0 40px;
}
.site-footer__row {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 900px) { .site-footer__row { grid-template-columns: 1fr; gap: 28px; } }
.site-footer h4 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gsc-yellow); margin: 0 0 14px;
}
.site-footer a {
  color: white; font-size: 14px; border: 0; text-decoration: none;
  display: block; padding: 4px 0;
}
.site-footer a:hover { color: var(--gsc-yellow); }
.site-footer__mark img { width: 160px; }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 48px; padding-top: 24px;
  display: flex; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.04em;
}
@media (max-width: 720px) { .site-footer__bottom { flex-direction: column; gap: 8px; } }
