/* GRiT Academy static site V4
   Visual direction: premium executive education, charcoal / white / restrained orange.
*/

:root {
  --black: #101112;
  --charcoal: #141719;
  --navy: #10213a;
  --white: #ffffff;
  --warm: #f7f4ee;
  --warm-2: #fbfaf7;
  --muted: #60656d;
  --muted-dark: #c4c0b9;
  --line: #e5dfd6;
  --line-dark: rgba(255,255,255,0.16);
  --orange: #c47a22;
  --orange-bright: #e48022;
  --max: 1180px;
  --radius: 18px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --shadow-soft: 0 24px 60px rgba(20, 23, 25, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--warm-2);
  color: var(--charcoal);
  font-family: var(--sans);
  line-height: 1.55;
}

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

a { color: inherit; text-decoration: none; }

p { margin: 0 0 1rem; }

h1, h2, h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

h1, h2 {
  font-family: var(--serif);
  font-weight: 650;
}

h1 {
  font-size: clamp(3.8rem, 8vw, 7.5rem);
  max-width: 820px;
}

h2 {
  font-size: clamp(2.3rem, 5vw, 4.7rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 680;
}

.container {
  width: min(var(--max), calc(100% - 44px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--white);
  color: var(--black);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  z-index: 999;
}

.skip-link:focus { left: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(16,17,18,0.92);
  backdrop-filter: blur(16px);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 150px;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.brand-logo,
.footer-logo {
  max-height: 42px;
  width: auto;
}

.brand-text { color: var(--white); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.92rem;
}

.site-nav a { color: rgba(255,255,255,0.82); }
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--white); }

.nav-cta {
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  padding: 0.65rem 1rem;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,0.24);
  background: transparent;
  color: var(--white);
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
}

.section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.section-dark {
  background: radial-gradient(circle at 50% 0%, #1d2528 0%, var(--black) 54%, #0d0e0f 100%);
  color: var(--white);
}

.section-light {
  background: var(--warm-2);
  color: var(--charcoal);
}

.section-warm {
  background: var(--warm);
  color: var(--charcoal);
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  position: relative;
  padding: clamp(4.2rem, 8vw, 7rem) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2.4rem, 6vw, 6rem);
  align-items: center;
}

.hero-copy { position: relative; z-index: 2; }

.hero-lede {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  color: rgba(255,255,255,0.9);
  margin-top: 1.4rem;
  max-width: 620px;
}

.hero-body {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 620px;
  margin-top: 1rem;
}

.hero-image-wrap {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  min-height: 520px;
  background: #222;
  box-shadow: 0 32px 90px rgba(0,0,0,0.34);
  border: 1px solid rgba(255,255,255,0.12);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  width: 42px;
  height: 8px;
  border: 1px solid rgba(255,255,255,0.48);
  border-radius: 999px;
  transform: translateX(-50%);
}

.eyebrow {
  color: var(--orange-bright);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-intro {
  max-width: 920px;
  margin-bottom: 3rem;
}

.section-intro.centred {
  text-align: center;
  margin-inline: auto;
}

.section-intro p:not(.eyebrow) {
  max-width: 780px;
  margin: 1.2rem auto 0;
  font-size: 1.1rem;
  color: var(--muted);
}

.section-dark .section-intro p:not(.eyebrow),
.dark-centred p:not(.eyebrow) {
  color: var(--muted-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0.8rem 1.3rem;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover { transform: translateY(-1px); }

.button-primary {
  background: linear-gradient(135deg, var(--orange), #a8691f);
  color: var(--white);
}

.button-secondary-dark {
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
}

.text-link {
  color: var(--orange-bright);
  font-weight: 700;
}

.priority-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.priority-card {
  min-height: 370px;
  border-radius: 18px;
  background: radial-gradient(circle at 50% 0%, #20292c 0%, #111719 58%, #0b0d0e 100%);
  color: var(--white);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.priority-card h3 {
  font-family: var(--serif);
  margin-top: 1.7rem;
  max-width: 260px;
}

.priority-card h3::after {
  content: "";
  display: block;
  width: 46px;
  height: 2px;
  background: var(--orange-bright);
  margin: 1.3rem auto;
}

.priority-card p {
  color: rgba(255,255,255,0.83);
  font-size: 1rem;
}

.priority-symbol {
  width: 140px;
  height: 74px;
  position: relative;
}

.priority-one::before {
  content: "";
  position: absolute;
  inset: 34px 8px auto;
  height: 2px;
  background: linear-gradient(90deg,#fff 0%,#fff 70%, var(--orange-bright) 100%);
}

.priority-one::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 25px;
  width: 20px;
  height: 20px;
  border: 5px solid var(--orange-bright);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(228,128,34,0.7);
}

.priority-two::before {
  content: "";
  position: absolute;
  inset: 8px 26px;
  background:
    radial-gradient(circle at 50% 50%, var(--orange-bright) 0 7px, transparent 8px),
    radial-gradient(circle at 12% 30%, #c8c8c8 0 6px, transparent 7px),
    radial-gradient(circle at 82% 18%, #c8c8c8 0 6px, transparent 7px),
    radial-gradient(circle at 74% 76%, #c8c8c8 0 5px, transparent 6px),
    radial-gradient(circle at 28% 78%, #c8c8c8 0 5px, transparent 6px);
  opacity: 0.9;
}

.priority-three::before,
.priority-three::after {
  content: "";
  position: absolute;
  top: 20px;
  width: 48px;
  height: 58px;
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: 50% 50% 45% 45%;
}

.priority-three::before { left: 18px; }
.priority-three::after { right: 18px; }

.priority-four::before {
  content: "";
  position: absolute;
  inset: 12px 8px;
  background:
    linear-gradient(90deg, transparent 0 10%, rgba(255,255,255,0.28) 10% 11%, transparent 11% 30%, rgba(255,255,255,0.28) 30% 31%, transparent 31% 50%, var(--orange-bright) 50% 52%, transparent 52% 70%, rgba(255,255,255,0.28) 70% 71%, transparent 71% 90%, rgba(255,255,255,0.28) 90% 91%, transparent 91%),
    radial-gradient(ellipse at center, rgba(228,128,34,0.32), transparent 55%);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.image-card {
  position: relative;
  min-height: 300px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: end;
  isolation: isolate;
  box-shadow: var(--shadow-soft);
  background: #111;
}

.image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
  z-index: -2;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.78) 100%);
  z-index: -1;
}

.image-card:hover img { transform: scale(1.035); }

.image-card span {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.05;
  padding: 1.2rem;
  text-shadow: 0 2px 18px rgba(0,0,0,0.55);
}

.wide-visual {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: var(--white);
}

.wide-visual img { width: 100%; }

.section-cta {
  margin-top: 2rem;
}

.centred-cta { text-align: center; }

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.4rem, 6vw, 5rem);
  align-items: center;
}

.split-grid p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-dark .split-grid p {
  color: var(--muted-dark);
}

.ai-preview h2 {
  max-width: 720px;
}

.editorial-image {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  box-shadow: 0 28px 70px rgba(0,0,0,0.32);
}

.editorial-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.contexts-section {
  padding-top: clamp(4rem, 8vw, 7rem);
}

.contexts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.contexts-grid article {
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  padding: 1.3rem;
  min-height: 220px;
}

.contexts-grid h3 {
  font-family: var(--serif);
  color: var(--white);
}

.contexts-grid h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--orange-bright);
  margin: 1rem 0;
}

.contexts-grid p {
  color: var(--muted-dark);
  margin: 0;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.insight-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem;
  min-height: 250px;
  box-shadow: 0 18px 45px rgba(20,23,25,0.06);
}

.insight-card h3 {
  font-family: var(--serif);
  font-size: 2rem;
}

.insight-card p {
  color: var(--muted);
  margin-top: 1.2rem;
}

.insight-card a {
  color: var(--orange-bright);
  font-weight: 800;
}

.contact-section {
  border-top: 1px solid var(--line-dark);
}

.contact-form {
  background: var(--white);
  color: var(--charcoal);
  border-radius: 24px;
  padding: clamp(1.2rem, 3vw, 2rem);
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font: inherit;
  background: var(--warm);
  color: var(--charcoal);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(228,128,34,0.3);
  border-color: var(--orange-bright);
}

.form-note {
  color: var(--muted) !important;
  font-size: 0.82rem !important;
  margin: 0;
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 3.5rem 0 1.4rem;
  border-top: 1px solid var(--line-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.6fr;
  gap: 2rem;
  align-items: start;
}

.site-footer p {
  color: var(--muted-dark);
  max-width: 360px;
  margin-top: 1rem;
}

.footer-nav {
  display: grid;
  gap: 0.6rem;
}

.footer-nav a { color: rgba(255,255,255,0.74); }
.footer-nav a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  margin-top: 2.5rem;
  padding-top: 1rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
}

.page-hero {
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.page-hero p {
  max-width: 760px;
  color: var(--muted-dark);
  font-size: 1.18rem;
  margin-top: 1.3rem;
}

.placeholder-list { display: grid; gap: 1rem; }

.placeholder-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem;
  background: var(--white);
}

@media (max-width: 1080px) {
  .priority-grid,
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contexts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-nav {
    gap: 0.85rem;
    font-size: 0.84rem;
  }
}

@media (max-width: 820px) {
  .container { width: min(100% - 32px, var(--max)); }

  .menu-toggle { display: inline-flex; }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    background: var(--black);
    border-bottom: 1px solid var(--line-dark);
    padding: 1.2rem 20px 2rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .site-nav.is-open { display: flex; }

  .site-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav-cta {
    text-align: center;
    border: 1px solid var(--orange-bright) !important;
    margin-top: 0.5rem;
  }

  .hero { min-height: auto; }

  .hero-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .hero-image-wrap,
  .hero-image-wrap img {
    min-height: 320px;
  }

  .priority-grid,
  .work-grid,
  .contexts-grid,
  .insight-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .priority-card {
    min-height: 280px;
  }

  .image-card {
    min-height: 260px;
  }

  .editorial-image img {
    height: 340px;
  }
}


/* V5 homepage refinements */

/* Hero: calmer, full-width editorial treatment */
.hero {
  min-height: auto;
  padding: clamp(4.5rem, 7vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem);
}

.hero-stack {
  display: grid;
  gap: clamp(2rem, 4vw, 3.2rem);
}

.hero-stack .hero-copy {
  max-width: 1120px;
}

.hero-stack h1 {
  font-size: clamp(3.1rem, 6vw, 5.4rem);
  max-width: 1100px;
}

.hero-stack .hero-lede {
  max-width: 860px;
}

.hero-stack .hero-body {
  max-width: 850px;
}

.hero-landscape {
  width: 100%;
  min-height: auto;
  aspect-ratio: 16 / 7;
  border-radius: 26px;
}

.hero-landscape img {
  width: 100%;
  height: 100%;
  min-height: auto;
  object-fit: cover;
  object-position: center;
}

/* Section headline scale correction */
.section-intro.centred h2 {
  max-width: 980px;
  margin-inline: auto;
  font-size: clamp(2.35rem, 4.2vw, 4.2rem);
}

#navigating .section-intro.centred h2 {
  max-width: 920px;
  font-size: clamp(2.2rem, 3.6vw, 3.7rem);
}

/* Priority cards: premium symbolic grammar */
.priority-card {
  position: relative;
  overflow: hidden;
  justify-content: flex-start;
  padding-top: 2.2rem;
}

.priority-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background:
    radial-gradient(circle at 85% 20%, rgba(228,128,34,0.22), transparent 28%),
    repeating-linear-gradient(135deg, transparent 0 16px, rgba(255,255,255,0.10) 17px, transparent 18px);
  pointer-events: none;
}

.priority-card > * {
  position: relative;
  z-index: 1;
}

.priority-visual {
  width: 100%;
  max-width: 230px;
  height: 118px;
  margin: 0 auto 0.6rem;
  position: relative;
}

.progress-labels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.25rem;
  color: rgba(255,255,255,0.68);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.progress-line {
  position: relative;
  height: 2px;
  background: rgba(255,255,255,0.74);
  margin: 0 8px;
}

.progress-line i {
  position: absolute;
  top: 50%;
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255,255,255,0.9);
  background: #151a1d;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.progress-line i:nth-child(1) { left: 0%; }
.progress-line i:nth-child(2) { left: 33.33%; }
.progress-line i:nth-child(3) { left: 66.66%; }
.progress-line i:nth-child(4) {
  left: 100%;
  width: 23px;
  height: 23px;
  border-color: var(--orange-bright);
  box-shadow: 0 0 0 6px rgba(228,128,34,0.14), 0 0 28px rgba(228,128,34,0.75);
}

.ai-signal-visual span,
.system-visual span {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
}

.ai-signal-visual::before,
.system-visual::before {
  content: "";
  position: absolute;
  inset: 16px 20px 26px;
  background:
    linear-gradient(28deg, transparent 49%, rgba(255,255,255,0.38) 50%, transparent 51%),
    linear-gradient(155deg, transparent 49%, rgba(255,255,255,0.24) 50%, transparent 51%),
    linear-gradient(90deg, transparent 49%, rgba(255,255,255,0.18) 50%, transparent 51%);
  opacity: 0.9;
}

.ai-signal-visual span:nth-child(1) { left: 44%; top: 48%; background: var(--orange-bright); box-shadow: 0 0 28px rgba(228,128,34,0.78); }
.ai-signal-visual span:nth-child(2) { left: 22%; top: 22%; }
.ai-signal-visual span:nth-child(3) { right: 18%; top: 16%; }
.ai-signal-visual span:nth-child(4) { left: 18%; bottom: 18%; }
.ai-signal-visual span:nth-child(5) { right: 27%; bottom: 14%; }
.ai-signal-visual span:nth-child(6) { left: 53%; top: 12%; width: 9px; height: 9px; opacity: 0.55; }

.system-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  width: 20px;
  height: 20px;
  background: var(--orange-bright);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 28px rgba(228,128,34,0.74);
}

.system-visual span:nth-child(1) { left: 10%; top: 18%; }
.system-visual span:nth-child(2) { right: 12%; top: 18%; }
.system-visual span:nth-child(3) { left: 18%; bottom: 16%; }
.system-visual span:nth-child(4) { right: 18%; bottom: 16%; }
.system-visual span:nth-child(5) { left: 50%; top: 45%; opacity: 0; }

.coaching-visual span {
  position: absolute;
  top: 24px;
  width: 62px;
  height: 74px;
  border: 2px solid rgba(255,255,255,0.82);
  border-radius: 50% 50% 42% 42%;
}

.coaching-visual span:nth-child(1) { left: 38px; }
.coaching-visual span:nth-child(2) { right: 38px; }

.coaching-visual i {
  position: absolute;
  left: 50%;
  top: 54px;
  width: 80px;
  height: 44px;
  border-top: 2px solid var(--orange-bright);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 -10px 24px rgba(228,128,34,0.18);
}

/* Journey construct visual */
.journey-construct-visual {
  background: #fff;
}

@media (max-width: 820px) {
  .hero-stack h1 {
    font-size: clamp(2.8rem, 13vw, 4.6rem);
  }

  .hero-landscape {
    aspect-ratio: 4 / 3;
  }

  .priority-visual {
    max-width: 250px;
  }
}


/* V6 refinements: header, priority cards, recreated journey composition */

/* Header without permanent CTA */
.site-nav {
  gap: 1.35rem;
}

.site-nav .nav-cta {
  display: none;
}

/* More refined priority card system */
.priority-grid {
  gap: 1.25rem;
}

.priority-card {
  min-height: 430px;
  padding: 1.9rem 1.55rem 1.65rem;
  justify-content: flex-start;
  background:
    radial-gradient(circle at 75% 15%, rgba(196,122,34,0.14), transparent 26%),
    linear-gradient(145deg, #182022 0%, #101314 72%, #090b0c 100%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 28px 70px rgba(9, 11, 12, 0.22);
}

.priority-card::before {
  opacity: 0.07;
  background:
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(255,255,255,0.12) 19px, transparent 20px),
    radial-gradient(circle at 50% 22%, rgba(255,255,255,0.18), transparent 26%);
}

.priority-card h3 {
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  line-height: 1.08;
  margin-top: 0.85rem;
}

.priority-card p {
  font-size: 1rem;
  line-height: 1.55;
  max-width: 275px;
  margin-inline: auto;
}

.priority-visual {
  max-width: 260px;
  height: 132px;
  margin-bottom: 0.2rem;
}

/* Leadership Development visual */
.progress-labels {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  gap: 0.55rem;
  margin-bottom: 2.2rem;
  color: rgba(255,255,255,0.72);
}

.progress-line {
  height: 1.5px;
  margin-inline: 10px;
  background: linear-gradient(90deg, rgba(255,255,255,0.74), rgba(255,255,255,0.48));
}

.progress-line::after {
  content: "";
  position: absolute;
  left: 74%;
  top: 50%;
  width: 26%;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(228,128,34,0.4), rgba(228,128,34,0.98));
  transform: translateY(-50%);
}

.progress-line i {
  width: 14px;
  height: 14px;
  border-width: 1.5px;
  background: #121719;
  z-index: 2;
}

.progress-line i:nth-child(4) {
  width: 25px;
  height: 25px;
  border-width: 3px;
  background: #121719;
  box-shadow: 0 0 0 12px rgba(228,128,34,0.10), 0 0 32px rgba(228,128,34,0.72);
}

/* AI visual as signal field */
.ai-signal-visual {
  background:
    radial-gradient(circle at 50% 52%, rgba(228,128,34,0.12), transparent 36%),
    radial-gradient(circle at 50% 52%, rgba(255,255,255,0.05) 1px, transparent 1.5px);
  background-size: auto, 16px 16px;
}

.ai-signal-visual::before {
  inset: 18px 26px 30px;
  background:
    linear-gradient(25deg, transparent 49%, rgba(255,255,255,0.22) 50%, transparent 51%),
    linear-gradient(155deg, transparent 49%, rgba(255,255,255,0.22) 50%, transparent 51%),
    linear-gradient(90deg, transparent 49%, rgba(255,255,255,0.15) 50%, transparent 51%);
}

.ai-signal-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 54%;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(228,128,34,0.45);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ai-signal-visual span {
  width: 11px;
  height: 11px;
  background: rgba(255,255,255,0.62);
}

.ai-signal-visual span:nth-child(1) {
  width: 18px;
  height: 18px;
  left: 46%;
  top: 47%;
  background: var(--orange-bright);
}

/* Organisation Development visual as organic system */
.system-visual {
  background:
    radial-gradient(circle at 50% 48%, rgba(228,128,34,0.13), transparent 32%),
    radial-gradient(circle at 18% 32%, rgba(255,255,255,0.08), transparent 16%),
    radial-gradient(circle at 84% 28%, rgba(255,255,255,0.06), transparent 18%);
}

.system-visual::before {
  inset: 16px 30px 28px;
  background:
    linear-gradient(28deg, transparent 49%, rgba(255,255,255,0.30) 50%, transparent 51%),
    linear-gradient(150deg, transparent 49%, rgba(255,255,255,0.25) 50%, transparent 51%),
    linear-gradient(90deg, transparent 49%, rgba(255,255,255,0.14) 50%, transparent 51%),
    linear-gradient(60deg, transparent 49%, rgba(255,255,255,0.12) 50%, transparent 51%);
}

.system-visual span {
  width: 13px;
  height: 13px;
}

.system-visual::after {
  width: 24px;
  height: 24px;
}

/* Coaching visual: more like dialogue arcs */
.coaching-visual {
  background: radial-gradient(circle at 50% 50%, rgba(228,128,34,0.12), transparent 34%);
}

.coaching-visual span {
  top: 18px;
  width: 62px;
  height: 78px;
  border-width: 2px;
  border-color: rgba(255,255,255,0.78);
  background:
    radial-gradient(circle at 52% 34%, transparent 0 24px, rgba(255,255,255,0.04) 25px, transparent 26px);
}

.coaching-visual span:nth-child(1) {
  left: 34px;
  border-right-color: rgba(255,255,255,0.26);
}

.coaching-visual span:nth-child(2) {
  right: 34px;
  border-left-color: rgba(255,255,255,0.26);
}

.coaching-visual i {
  top: 54px;
  width: 94px;
  height: 40px;
  border-top: 2px solid var(--orange-bright);
  opacity: 0.95;
}

/* Recreated leadership journey composition diagram */
.journey-composition {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.98)),
    radial-gradient(circle at 50% 0%, rgba(196,122,34,0.10), transparent 28%);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(1.3rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.journey-composition::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 34%;
  height: 1px;
  background: var(--line);
}

.journey-side-note {
  position: absolute;
  left: clamp(1rem, 2vw, 2rem);
  top: 50%;
  width: 160px;
  transform: translateY(-36%);
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.1rem;
  box-shadow: 0 16px 40px rgba(20,23,25,0.06);
  z-index: 4;
}

.journey-side-note p {
  font-size: 0.93rem;
  color: var(--charcoal);
  margin: 0 0 1rem;
}

.journey-side-note p:last-child {
  margin-bottom: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.woven-mark {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  background:
    linear-gradient(45deg, transparent 45%, var(--orange) 46% 48%, transparent 49%),
    linear-gradient(-45deg, transparent 45%, var(--orange) 46% 48%, transparent 49%),
    linear-gradient(135deg, transparent 45%, var(--orange) 46% 48%, transparent 49%),
    linear-gradient(-135deg, transparent 45%, var(--orange) 46% 48%, transparent 49%);
  opacity: 0.9;
}

.journey-map {
  position: relative;
  padding-top: 1rem;
}

.journey-centre {
  position: relative;
  z-index: 3;
  width: 150px;
  height: 150px;
  margin: 0 auto 5.2rem;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 28%, #243852, #10213a 70%);
  color: var(--white);
  display: grid;
  place-items: center;
  text-align: center;
  border: 8px solid rgba(196,122,34,0.24);
  box-shadow:
    0 0 0 10px rgba(196,122,34,0.09),
    0 22px 60px rgba(16,33,58,0.24);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.centre-icon {
  position: absolute;
  top: 23px;
  color: var(--orange-bright);
  font-size: 1.65rem;
  line-height: 1;
}

.journey-centre strong {
  display: block;
  padding-top: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.25;
}

.journey-centre::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -62px;
  width: 1px;
  height: 62px;
  background: linear-gradient(var(--orange), transparent);
}

.journey-modules {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  padding-left: 190px;
}

.journey-modules::before {
  content: "";
  position: absolute;
  left: calc(190px + 10%);
  right: 10%;
  top: -44px;
  height: 64px;
  border-top: 1px solid rgba(196,122,34,0.55);
  border-radius: 50% 50% 0 0;
  pointer-events: none;
}

.journey-module {
  position: relative;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 3rem 1rem 1.1rem;
  min-height: 310px;
  text-align: center;
  box-shadow: 0 16px 42px rgba(20,23,25,0.07);
}

.journey-module::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -45px;
  width: 1px;
  height: 45px;
  background: linear-gradient(rgba(196,122,34,0.72), rgba(196,122,34,0.05));
}

.module-icon {
  position: absolute;
  left: 50%;
  top: -31px;
  transform: translateX(-50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 16px 35px rgba(20,23,25,0.16);
}

.diagnostics .module-icon { background: #174068; }
.programmes .module-icon { background: #2f744d; }
.coaching .module-icon { background: #564799; }
.experiences .module-icon { background: #b8622f; }
.reflection .module-icon { background: #1e8f96; }

.journey-module h3 {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.98rem;
  color: var(--navy);
}

.programmes h3 { color: #2f744d; }
.coaching h3 { color: #564799; }
.experiences h3 { color: #b8622f; }
.reflection h3 { color: #1e8f96; }

.journey-module p {
  color: var(--charcoal);
  font-size: 0.92rem;
  margin: 0.75rem 0 1rem;
}

.journey-module ul {
  list-style: none;
  margin: 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.6rem;
  text-align: left;
}

.journey-module li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.88rem;
  color: var(--charcoal);
}

.journey-module li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

.journey-bottom-callout {
  margin-top: 2rem;
  margin-left: 190px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: linear-gradient(90deg, #fff, rgba(247,244,238,0.9));
}

.journey-bottom-callout strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.journey-bottom-callout p {
  color: var(--muted);
  margin: 0.25rem 0 0;
}

@media (max-width: 1080px) {
  .journey-side-note {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: auto;
    margin-bottom: 2rem;
  }

  .journey-modules {
    padding-left: 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1rem;
  }

  .journey-modules::before {
    display: none;
  }

  .journey-bottom-callout {
    margin-left: 0;
  }
}

@media (max-width: 820px) {
  .priority-card {
    min-height: 390px;
  }

  .progress-labels {
    font-size: 0.55rem;
  }

  .journey-composition::before {
    display: none;
  }

  .journey-centre {
    margin-bottom: 4rem;
  }

  .journey-modules {
    grid-template-columns: 1fr;
  }

  .journey-bottom-callout {
    flex-direction: column;
    align-items: stretch;
  }
}


/* V7: use fixed rendered journey diagram asset to preserve visual quality */
.journey-composition-asset {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.99));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(1rem, 2vw, 1.4rem);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.journey-diagram-only {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}

.journey-diagram-only img {
  width: 100%;
  height: auto;
  display: block;
}

.journey-bottom-callout.centred-callout {
  width: min(920px, calc(100% - 2rem));
  margin: 1.5rem auto 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.1rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: linear-gradient(90deg, #fff, rgba(247,244,238,0.9));
}

.journey-bottom-callout.centred-callout strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.journey-bottom-callout.centred-callout p {
  color: var(--muted);
  margin: 0.25rem 0 0;
}

@media (max-width: 820px) {
  .journey-bottom-callout.centred-callout {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
}


/* V8: use cropped fixed assets for four priority cards */
.priority-image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.priority-image-card {
  margin: 0;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #101314;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(20, 23, 25, 0.12);
}

.priority-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hide older live-card styling where images are used */
.priority-image-grid .priority-card,
.priority-image-grid .priority-visual {
  display: none;
}

.programmes-construct-section {
  padding-top: clamp(4rem, 8vw, 7rem);
}

.programmes-to-journeys-visual {
  background: #fff;
}

.programmes-to-journeys-visual img {
  width: 100%;
  height: auto;
}

.programmes-choice-row {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 1080px) {
  .priority-image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .priority-image-grid {
    grid-template-columns: 1fr;
  }
}


/* V9: remove repeated headline from Programmes-to-Journeys visual and fix CTA wrapping */
.programmes-to-journeys-visual {
  padding: clamp(0.75rem, 1.4vw, 1rem);
}

.programmes-to-journeys-visual img {
  border-radius: 18px;
}

/* Widen and centralise Leadership Journey callout */
.journey-bottom-callout.centred-callout,
.journey-bottom-callout {
  width: min(1120px, calc(100% - 1rem)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: grid !important;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.journey-bottom-callout .button,
.journey-bottom-callout.centred-callout .button {
  white-space: nowrap;
  min-width: 260px;
}

/* Keep programme section CTA buttons from awkward wrapping */
.programmes-choice-row .button {
  white-space: nowrap;
  min-width: 220px;
}

@media (max-width: 820px) {
  .journey-bottom-callout.centred-callout,
  .journey-bottom-callout {
    grid-template-columns: 1fr !important;
  }

  .journey-bottom-callout .button,
  .journey-bottom-callout.centred-callout .button,
  .programmes-choice-row .button {
    width: 100%;
    min-width: 0;
  }
}


/* V10 logo refinements */
.brand {
  min-width: 190px;
}

.brand-logo {
  max-height: 42px;
  width: auto;
  object-fit: contain;
}

.footer-logo {
  max-height: 58px;
  width: auto;
  object-fit: contain;
}

/* Keep uploaded badge logo legible in the dark header */
.site-header .brand-logo {
  filter: none;
}

@media (max-width: 820px) {
  .brand {
    min-width: 150px;
  }

  .brand-logo {
    max-height: 36px;
    max-width: 170px;
  }
}


/* V11: enlarged logo and Typeform embed */
.header-inner {
  min-height: 92px;
}

.brand {
  min-width: 285px;
}

.brand-logo {
  max-height: 64px !important;
  max-width: 280px;
  width: auto;
  object-fit: contain;
}

.footer-logo {
  max-height: 86px !important;
  max-width: 340px;
  width: auto;
  object-fit: contain;
}

.typeform-panel {
  background: var(--white);
  color: var(--charcoal);
  border-radius: 24px;
  padding: clamp(0.7rem, 1.5vw, 1rem);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0,0,0,0.14);
}

.typeform-panel iframe {
  width: 100%;
  min-height: 640px;
  border: 0;
  border-radius: 18px;
  background: var(--white);
}

.typeform-panel .form-note {
  margin: 0.75rem 0 0;
  color: var(--muted) !important;
  font-size: 0.88rem !important;
}

.typeform-panel .form-note a {
  color: var(--orange-bright);
  font-weight: 700;
}

.typeform-panel-light {
  box-shadow: 0 18px 45px rgba(20,23,25,0.08);
}

@media (max-width: 1080px) {
  .brand {
    min-width: 230px;
  }

  .brand-logo {
    max-height: 58px !important;
    max-width: 230px;
  }

  .site-nav {
    gap: 0.85rem;
  }
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 82px;
  }

  .brand {
    min-width: 190px;
  }

  .brand-logo {
    max-height: 48px !important;
    max-width: 190px;
  }

  .typeform-panel iframe {
    min-height: 660px;
  }
}


/* V12: native GRiT contact form replacing Typeform embed */
.grit-native-form {
  background:
    radial-gradient(circle at 95% 0%, rgba(228,128,34,0.10), transparent 32%),
    var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0,0,0,0.14);
}

.grit-native-form label {
  color: var(--charcoal);
}

.field-help {
  display: block;
  margin-top: -0.15rem;
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-weight: 450;
  font-size: 0.88rem;
  line-height: 1.35;
}

.grit-native-form textarea {
  resize: vertical;
}

.grit-native-form .button {
  width: fit-content;
  min-width: 150px;
}

@media (max-width: 820px) {
  .grit-native-form .button {
    width: 100%;
  }
}


/* V13 dropdown enquiry form refinement */
.grit-native-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font: inherit;
  background: var(--warm);
  color: var(--charcoal);
  appearance: auto;
}

.grit-native-form select:focus {
  outline: 2px solid rgba(228,128,34,0.3);
  border-color: var(--orange-bright);
}

.other-field[hidden] {
  display: none !important;
}


/* V14 Leadership Journeys page */

.journey-hero {
  padding: clamp(4.8rem, 8vw, 7rem) 0;
}

.journey-hero h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  max-width: 860px;
}

.journey-hero .button {
  margin-top: 1.2rem;
}

.journey-hero-image img {
  height: 560px;
  object-fit: cover;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.pathway-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: 18px;
  padding: 1.5rem;
  background:
    radial-gradient(circle at 90% 0%, rgba(228,128,34,0.12), transparent 34%),
    linear-gradient(145deg, #182022 0%, #101314 72%, #090b0c 100%);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--white);
  box-shadow: 0 24px 60px rgba(20,23,25,0.12);
}

.pathway-card::after {
  content: "";
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  top: 84px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.24), var(--orange-bright), rgba(255,255,255,0.08));
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 240ms ease;
}

.pathway-card:hover::after {
  transform: scaleX(1);
}

.pathway-card span {
  color: var(--orange-bright);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  font-weight: 800;
}

.pathway-card h3 {
  font-family: var(--serif);
  margin-top: 2.4rem;
}

.pathway-card p {
  color: rgba(255,255,255,0.78);
  margin-top: 1rem;
}

.method-pathway {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.method-pathway article {
  position: relative;
  padding: 1.5rem;
  min-height: 210px;
  border-right: 1px solid var(--line);
}

.method-pathway article:last-child {
  border-right: none;
}

.method-pathway article::after {
  content: "↓";
  position: absolute;
  right: -0.55rem;
  top: 50%;
  color: var(--orange-bright);
  font-size: 1.4rem;
  transform: translateY(-50%) rotate(-90deg);
  z-index: 2;
}

.method-pathway article:last-child::after {
  display: none;
}

.method-pathway span {
  display: block;
  font-family: var(--serif);
  color: var(--navy);
  font-size: 1.6rem;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.method-pathway p {
  color: var(--muted);
  margin: 0;
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.theme-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem;
  min-height: 220px;
  box-shadow: 0 18px 45px rgba(20,23,25,0.06);
}

.theme-grid h3 {
  font-family: var(--serif);
  color: var(--navy);
}

.theme-grid h3::after {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  background: var(--orange-bright);
  margin: 1rem 0;
}

.theme-grid p {
  color: var(--muted);
}

.learning-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.learning-card {
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  overflow: hidden;
}

.learning-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.learning-card h3 {
  font-family: var(--serif);
  padding: 1.1rem 1.1rem 0;
}

.learning-card p {
  color: var(--muted-dark);
  padding: 0 1.1rem 1.2rem;
}

/* Pending homepage/contact form footprint reduction */
.compact-contact .grit-native-form,
.contact-section .grit-native-form {
  padding: clamp(1rem, 2vw, 1.45rem);
  gap: 0.75rem;
}

.compact-contact .grit-native-form input,
.compact-contact .grit-native-form select,
.compact-contact .grit-native-form textarea,
.contact-section .grit-native-form input,
.contact-section .grit-native-form select,
.contact-section .grit-native-form textarea {
  padding: 0.72rem 0.85rem;
}

.compact-contact .grit-native-form textarea,
.contact-section .grit-native-form textarea {
  min-height: 96px;
}

.compact-contact .field-help,
.contact-section .field-help {
  font-size: 0.82rem;
}

@media (max-width: 1080px) {
  .pathway-grid,
  .learning-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .method-pathway,
  .theme-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .method-pathway article {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 820px) {
  .journey-hero-image img {
    height: 340px;
  }

  .pathway-grid,
  .method-pathway,
  .theme-grid,
  .learning-grid {
    grid-template-columns: 1fr;
  }

  .method-pathway article {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .method-pathway article::after {
    right: auto;
    left: 1.5rem;
    top: auto;
    bottom: -0.7rem;
    transform: none;
  }
}


/* V15 Programmes page */

.programme-hero {
  padding: clamp(4.8rem, 8vw, 7rem) 0;
}

.programme-hero h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  max-width: 860px;
}

.programme-hero .button {
  margin-top: 1.2rem;
}

.programme-hero-image img {
  height: 560px;
  object-fit: cover;
}

.featured-programmes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.featured-programmes-grid article {
  background:
    radial-gradient(circle at 85% 0%, rgba(228,128,34,0.12), transparent 32%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem;
  min-height: 300px;
  box-shadow: 0 18px 45px rgba(20,23,25,0.06);
}

.featured-programmes-grid span {
  display: inline-flex;
  color: var(--orange-bright);
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  margin-bottom: 1.4rem;
}

.featured-programmes-grid h3 {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 1.55rem;
}

.featured-programmes-grid h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  background: var(--orange-bright);
  margin: 1rem 0;
}

.featured-programmes-grid p {
  color: var(--muted);
}

.programme-accordion {
  display: grid;
  gap: 1rem;
  max-width: 980px;
  margin-inline: auto;
}

.programme-accordion details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(20,23,25,0.05);
  overflow: hidden;
}

.programme-accordion summary {
  cursor: pointer;
  padding: 1.3rem 1.5rem;
  font-family: var(--serif);
  font-size: 1.65rem;
  color: var(--navy);
  list-style: none;
}

.programme-accordion summary::-webkit-details-marker {
  display: none;
}

.programme-accordion summary::after {
  content: "+";
  float: right;
  color: var(--orange-bright);
  font-family: var(--sans);
  font-weight: 800;
}

.programme-accordion details[open] summary::after {
  content: "–";
}

.programme-accordion div {
  border-top: 1px solid var(--line);
  padding: 1rem 1.5rem 1.4rem;
}

.programme-accordion ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  display: grid;
  gap: 0.55rem;
}

.programme-mode-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.programme-mode-grid article {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 260px;
  display: flex;
  align-items: end;
  background: #111;
  box-shadow: var(--shadow-soft);
}

.programme-mode-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 300ms ease;
}

.programme-mode-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.78) 100%);
  z-index: 1;
}

.programme-mode-grid article:hover img {
  transform: scale(1.04);
}

.programme-mode-grid h3 {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.55rem;
  padding: 1.1rem;
}

@media (max-width: 1180px) {
  .featured-programmes-grid,
  .programme-mode-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .programme-hero-image img {
    height: 340px;
  }

  .featured-programmes-grid,
  .programme-mode-grid {
    grid-template-columns: 1fr;
  }

  .featured-programmes-grid article {
    min-height: auto;
  }

  .programme-mode-grid article {
    min-height: 240px;
  }
}


/* V16 Leadership & AI page + pending hero headline reductions */

/* Reduce oversized hero headlines on Leadership Journeys and Programmes */
.journey-hero h1,
.programme-hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 4.05rem) !important;
  max-width: 820px;
}

/* Leadership & AI page */
.ai-hero {
  padding: clamp(4.8rem, 8vw, 7rem) 0;
}

.ai-hero h1 {
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  max-width: 900px;
}

.ai-hero .button {
  margin-top: 1.2rem;
}

.ai-hero-image img {
  height: 560px;
  object-fit: cover;
}

.judgement-progression {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  position: relative;
}

.judgement-progression article {
  background:
    radial-gradient(circle at 50% 0%, rgba(228,128,34,0.12), transparent 34%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.5rem;
  min-height: 240px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(20,23,25,0.06);
}

.judgement-progression article::before {
  content: "◎";
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 1rem;
  color: var(--orange-bright);
  border: 1px solid rgba(228,128,34,0.4);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(228,128,34,0.12);
}

.judgement-progression span {
  display: block;
  color: var(--orange-bright);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  font-size: 0.78rem;
  margin-bottom: 0.65rem;
}

.judgement-progression strong {
  display: block;
  font-family: var(--serif);
  color: var(--navy);
  font-size: 1.8rem;
  line-height: 1.05;
}

.judgement-progression p {
  color: var(--muted);
  margin-top: 1rem;
}

.human-edge-map {
  position: relative;
  min-height: 640px;
  max-width: 1050px;
  margin: 0 auto;
  border: 1px solid var(--line-dark);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 50%, rgba(228,128,34,0.18), transparent 30%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.04) 1px, transparent 1.5px);
  background-size: auto, 18px 18px;
  overflow: hidden;
}

.human-edge-map::before {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 50%;
}

.human-edge-centre {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 180px;
  height: 180px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 28%, #243852, #10213a 70%);
  color: var(--white);
  display: grid;
  place-items: center;
  text-align: center;
  border: 8px solid rgba(228,128,34,0.22);
  box-shadow: 0 0 0 12px rgba(228,128,34,0.08), 0 24px 70px rgba(0,0,0,0.25);
  z-index: 2;
}

.human-edge-centre span {
  position: absolute;
  top: 30px;
  color: var(--orange-bright);
  font-size: 1.8rem;
}

.human-edge-centre strong {
  padding-top: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1rem;
}

.edge-capability {
  position: absolute;
  width: 265px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 18px;
  padding: 1.1rem;
  transition: transform 180ms ease, border-color 180ms ease;
}

.edge-capability:hover {
  transform: translateY(-3px);
  border-color: rgba(228,128,34,0.55);
}

.edge-capability h3 {
  font-family: var(--serif);
  color: var(--white);
  font-size: 1.45rem;
}

.edge-capability h3::after {
  content: "";
  display: block;
  width: 38px;
  height: 2px;
  background: var(--orange-bright);
  margin: 0.8rem 0;
}

.edge-capability p {
  color: var(--muted-dark);
  margin: 0;
  font-size: 0.95rem;
}

.cap-one { left: 8%; top: 10%; }
.cap-two { right: 8%; top: 10%; }
.cap-three { left: 6%; bottom: 12%; }
.cap-four { right: 6%; bottom: 12%; }
.cap-five { left: 50%; bottom: 3.5%; transform: translateX(-50%); }
.cap-five:hover { transform: translateX(-50%) translateY(-3px); }

.implication-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.implication-grid article,
.ai-experience-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem;
  min-height: 240px;
  box-shadow: 0 18px 45px rgba(20,23,25,0.06);
}

.implication-grid h3,
.ai-experience-grid h3 {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 1.55rem;
}

.implication-grid h3::after,
.ai-experience-grid h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--orange-bright);
  margin: 1rem 0;
}

.implication-grid p,
.ai-experience-grid p {
  color: var(--muted);
}

.ai-experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.ai-journey-note {
  margin: 2rem auto 0;
  width: min(900px, 100%);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 18px 45px rgba(20,23,25,0.06);
}

.ai-journey-note p {
  color: var(--charcoal);
  margin: 0;
  font-weight: 650;
}

.ai-journey-note .button {
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .implication-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ai-experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .human-edge-map {
    min-height: auto;
    display: grid;
    gap: 1rem;
    padding: 1.2rem;
  }

  .human-edge-centre,
  .edge-capability {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    width: auto;
  }

  .human-edge-centre {
    margin: 0 auto 1rem;
  }

  .cap-five:hover,
  .edge-capability:hover {
    transform: translateY(-3px);
  }
}

@media (max-width: 820px) {
  .ai-hero-image img {
    height: 340px;
  }

  .judgement-progression,
  .implication-grid,
  .ai-experience-grid {
    grid-template-columns: 1fr;
  }

  .ai-journey-note {
    flex-direction: column;
    align-items: stretch;
  }
}


/* V17 About page + refinements */

.journey-hero h1,
.programme-hero h1,
.ai-hero h1,
.about-hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 4.05rem) !important;
  max-width: 840px;
}

.ai-experience-grid {
  grid-template-columns: repeat(3, 1fr);
}

.about-hero {
  padding: clamp(4.8rem, 8vw, 7rem) 0;
}

.about-portrait {
  margin: 0;
}

.portrait-placeholder {
  min-height: 520px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
    radial-gradient(circle at 50% 30%, rgba(228,128,34,0.16), transparent 30%),
    linear-gradient(145deg, #232323, #101112);
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow: 0 32px 90px rgba(0,0,0,0.30);
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.portrait-placeholder::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
}

.portrait-placeholder span {
  color: var(--orange-bright);
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: -0.04em;
  position: relative;
}

.portrait-placeholder p {
  color: rgba(255,255,255,0.72);
  position: absolute;
  bottom: 2rem;
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.about-statement {
  max-width: 940px;
}

.about-statement h2 {
  max-width: 900px;
}

.about-statement p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  max-width: 820px;
}

.grit-principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.grit-principles-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.35rem;
  min-height: 260px;
  box-shadow: 0 18px 45px rgba(20,23,25,0.06);
}

.grit-principles-grid span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-weight: 800;
  margin-bottom: 1.2rem;
  box-shadow: 0 0 0 8px rgba(196,122,34,0.08);
}

.grit-principles-grid h3 {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 1.55rem;
}

.grit-principles-grid h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  background: var(--orange-bright);
  margin: 1rem 0;
}

.grit-principles-grid p {
  color: var(--muted);
}

.grit-cycle {
  margin: clamp(2.2rem, 5vw, 4rem) auto 1rem;
  width: min(760px, 100%);
  min-height: 420px;
  position: relative;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 50%, rgba(228,128,34,0.13), transparent 34%),
    var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.grit-cycle::before {
  content: "";
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(16,33,58,0.12);
  border-radius: 50%;
}

.grit-cycle-centre {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 28%, #243852, #10213a 70%);
  color: var(--white);
  display: grid;
  place-items: center;
  text-align: center;
  border: 8px solid rgba(196,122,34,0.20);
  box-shadow: 0 0 0 12px rgba(196,122,34,0.07), 0 24px 60px rgba(16,33,58,0.20);
}

.grit-cycle-centre strong {
  font-family: var(--serif);
  font-size: 2.1rem;
}

.grit-cycle-centre span {
  position: absolute;
  bottom: 28px;
  color: var(--orange-bright);
}

.cycle-node {
  position: absolute;
  background: var(--warm);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.8rem 1.1rem;
  color: var(--navy);
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(20,23,25,0.08);
}

.experience { left: 13%; top: 28%; }
.reflection { right: 13%; top: 28%; }
.challenge { left: 18%; bottom: 24%; }
.growth { right: 20%; bottom: 24%; }

.cycle-support {
  text-align: center;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 680px;
  margin: 0 auto;
}

.practitioner-copy {
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  padding: clamp(1.3rem, 3vw, 2rem);
}

.practitioner-copy p {
  color: var(--muted-dark);
  font-size: 1.08rem;
}

.evidence-section p {
  color: var(--muted);
  font-size: 1.08rem;
}

.evidence-visual {
  min-height: 360px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 50%, rgba(196,122,34,0.10), transparent 32%),
    var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: grid;
  place-items: center;
  padding: 2rem;
}

.evidence-row {
  display: grid;
  grid-template-columns: auto 120px auto;
  gap: 1rem;
  align-items: center;
}

.evidence-row span,
.impact-node span {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.65rem;
}

.evidence-row i {
  height: 2px;
  background: linear-gradient(90deg, var(--orange-bright), rgba(16,33,58,0.35));
  position: relative;
}

.evidence-row i::before,
.evidence-row i::after,
.impact-node i {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 3px solid var(--orange-bright);
  background: var(--white);
  box-shadow: 0 0 24px rgba(228,128,34,0.24);
}

.evidence-row i::before {
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
}

.evidence-row i::after {
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
}

.impact-node {
  margin-top: 3rem;
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  position: relative;
}

.impact-node::before {
  content: "";
  position: absolute;
  top: -3rem;
  width: 2px;
  height: 2.5rem;
  background: linear-gradient(var(--orange-bright), rgba(16,33,58,0.35));
}

.about-cta {
  margin-top: 4rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(1.3rem, 3vw, 2rem);
  background: linear-gradient(90deg, #fff, rgba(247,244,238,0.9));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-soft);
}

.about-cta h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.about-cta p {
  color: var(--muted);
  max-width: 720px;
}

.about-cta .button {
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .grit-principles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ai-experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .portrait-placeholder {
    min-height: 340px;
  }

  .grit-principles-grid,
  .ai-experience-grid {
    grid-template-columns: 1fr;
  }

  .grit-cycle {
    min-height: 520px;
  }

  .experience,
  .reflection,
  .challenge,
  .growth {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .experience { top: 8%; }
  .reflection { top: 25%; }
  .challenge { bottom: 25%; }
  .growth { bottom: 8%; }

  .evidence-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .evidence-row i {
    width: 120px;
    justify-self: center;
  }

  .about-cta {
    flex-direction: column;
    align-items: stretch;
  }
}


/* V18 Insights page, About visual, and stronger site-wide headline hierarchy */

/* Main hero headlines: consistent landing-page scale */
.hero h1,
.journey-hero h1,
.programme-hero h1,
.ai-hero h1,
.about-hero h1,
.insights-hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 4.05rem) !important;
  max-width: 900px;
}

/* Subsection headlines: visibly subordinate to page heroes */
.section-intro h2,
.about-statement h2,
.practitioner-section h2,
.evidence-section h2,
.spotlight-essay h2,
.insights-coming-soon h2 {
  font-size: clamp(2rem, 3vw, 3.1rem) !important;
  line-height: 1.05;
}

.section-intro.centred h2 {
  font-size: clamp(2rem, 3vw, 3.1rem) !important;
}

/* Card headlines remain smaller */
.theme-grid h3,
.featured-programmes-grid h3,
.implication-grid h3,
.ai-experience-grid h3,
.editorial-card h3 {
  font-size: clamp(1.35rem, 1.8vw, 1.7rem) !important;
}

/* About visual replaces placeholder */
.about-leader-visual {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow: 0 32px 90px rgba(0,0,0,0.30);
  background: #111;
}

.about-leader-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  filter: grayscale(0.35) saturate(0.8) contrast(1.04) brightness(0.82);
  display: block;
}

/* Insights page */
.insights-hero {
  padding: clamp(4.8rem, 8vw, 7rem) 0;
}

.insights-hero .hero-lede {
  max-width: 760px;
}

.insights-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.editorial-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.35rem;
  min-height: 290px;
  box-shadow: 0 18px 45px rgba(20,23,25,0.06);
  overflow: hidden;
}

.editorial-card span {
  display: inline-block;
  color: var(--orange-bright);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  font-size: 0.74rem;
  margin-bottom: 1.1rem;
}

.editorial-card h3 {
  font-family: var(--serif);
  color: var(--navy);
}

.editorial-card h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  background: var(--orange-bright);
  margin: 1rem 0;
}

.editorial-card p {
  color: var(--muted);
}

.editorial-card a {
  position: absolute;
  left: 1.35rem;
  bottom: 1.25rem;
  color: var(--orange-bright);
  font-weight: 800;
  text-decoration: none;
}

.editorial-dark {
  background:
    radial-gradient(circle at 85% 0%, rgba(228,128,34,0.12), transparent 34%),
    linear-gradient(145deg, #182022 0%, #101314 72%, #090b0c 100%);
  border-color: rgba(255,255,255,0.12);
}

.editorial-dark h3,
.editorial-dark p {
  color: var(--white);
}

.editorial-image-card {
  padding: 0;
  background: #111;
  color: var(--white);
}

.editorial-image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: grayscale(0.25) contrast(1.05);
}

.editorial-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.82));
}

.editorial-image-card div {
  position: relative;
  z-index: 2;
  padding: 1.35rem;
  min-height: 290px;
}

.editorial-image-card h3,
.editorial-image-card p {
  color: var(--white);
}

.spotlight-essay h2 {
  max-width: 780px;
}

.spotlight-essay p {
  color: var(--muted-dark);
  font-size: 1.1rem;
  max-width: 720px;
}

.insights-coming-soon {
  max-width: 860px;
}

.insights-coming-soon p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

@media (max-width: 1080px) {
  .insights-featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-leader-visual img {
    height: 440px;
  }
}

@media (max-width: 820px) {
  .insights-featured-grid {
    grid-template-columns: 1fr;
  }

  .about-leader-visual img {
    height: 340px;
  }
}


/* V19: approved About visual + Insights six-card layout */
.about-leader-visual img {
  filter: grayscale(0.15) saturate(0.85) contrast(1.04) brightness(0.82);
  object-position: center;
}

/* Intentional card colour logic: dark = stronger point of view, white/warm = explanatory or coming soon */
.insights-featured-grid {
  grid-template-columns: repeat(3, 1fr);
}

.coming-soon-card {
  background:
    radial-gradient(circle at 90% 0%, rgba(228,128,34,0.10), transparent 34%),
    linear-gradient(180deg, #fff, rgba(247,244,238,0.92));
}

.coming-soon-card span {
  color: var(--orange);
}

.coming-soon-card a {
  color: var(--navy);
}

@media (max-width: 1080px) {
  .insights-featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .insights-featured-grid {
    grid-template-columns: 1fr;
  }
}


/* V20 Insight article pages */

.no-link-card a {
  display: none !important;
}

.article-hero {
  padding: clamp(4.8rem, 8vw, 7rem) 0 clamp(3.5rem, 6vw, 5rem);
}

.article-hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 4.05rem) !important;
  max-width: 980px;
}

.article-hero .hero-lede {
  max-width: 820px;
}

.article-page {
  padding-top: clamp(3rem, 5vw, 4.5rem);
}

.article-shell {
  max-width: 920px;
}

.article-section {
  padding: 0 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.article-section h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.45rem) !important;
  color: var(--navy);
  margin-bottom: 1rem;
}

.article-section p {
  color: var(--charcoal);
  font-size: 1.08rem;
  line-height: 1.72;
  max-width: 820px;
}

.article-section ul {
  display: grid;
  gap: 0.75rem;
  padding-left: 1.2rem;
  color: var(--charcoal);
  font-size: 1.05rem;
  line-height: 1.6;
}

.article-visual {
  margin: 0 0 clamp(2rem, 4vw, 3rem);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: #050505;
}

.article-visual img {
  width: 100%;
  display: block;
  height: auto;
}

.article-visual-dark {
  background: #000;
}

.article-implication-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.4rem;
}

.article-implication-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: 0 16px 40px rgba(20,23,25,0.05);
}

.article-implication-grid h3 {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 1.35rem;
}

.article-implication-grid h3::after {
  content: "";
  display: block;
  width: 38px;
  height: 2px;
  background: var(--orange-bright);
  margin: 0.85rem 0;
}

.article-implication-grid p {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--muted);
}

.reflection-questions {
  background:
    radial-gradient(circle at 90% 0%, rgba(228,128,34,0.08), transparent 34%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--shadow-soft);
}

.related-perspectives ul {
  list-style: none;
  padding: 0;
}

.related-perspectives li {
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
}

.related-perspectives a {
  color: var(--navy);
  font-weight: 750;
  text-decoration: none;
}

.related-perspectives a:hover {
  color: var(--orange-bright);
}

.article-cta {
  background:
    linear-gradient(135deg, #111719, #0b0d0e);
  color: var(--white);
  border-radius: 24px;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.article-cta p {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  line-height: 1.08;
  max-width: 650px;
  margin: 0;
}

.article-cta .button {
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .article-implication-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .article-cta {
    flex-direction: column;
    align-items: stretch;
  }
}


/* V21 Contact page */

.contact-hero {
  padding: clamp(4.8rem, 8vw, 7rem) 0 clamp(3.5rem, 6vw, 5rem);
}

.contact-hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 4.05rem) !important;
  max-width: 900px;
}

.contact-hero .hero-lede {
  max-width: 860px;
}

.contact-page-section {
  padding-top: clamp(3rem, 6vw, 5rem);
}

.contact-page-grid {
  align-items: start;
}

.contact-guidance {
  max-width: 680px;
}

.contact-guidance h2 {
  font-size: clamp(2rem, 3vw, 3.1rem) !important;
}

.contact-guidance > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 620px;
}

.contact-guidance-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.contact-guidance-list article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  box-shadow: 0 16px 40px rgba(20,23,25,0.05);
}

.contact-guidance-list span {
  display: inline-block;
  color: var(--orange-bright);
  font-weight: 850;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  margin-bottom: 0.4rem;
}

.contact-guidance-list h3 {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 1.35rem;
  margin-bottom: 0.3rem;
}

.contact-guidance-list p {
  color: var(--muted);
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
}

.contact-page-form {
  position: sticky;
  top: 110px;
}

.contact-bottom-note {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.contact-bottom-note .container {
  max-width: 920px;
}

.contact-bottom-note h2 {
  font-size: clamp(2rem, 3vw, 3.1rem) !important;
}

.contact-bottom-note p:not(.eyebrow) {
  color: var(--muted-dark);
  font-size: 1.14rem;
  max-width: 780px;
}

@media (max-width: 1080px) {
  .contact-page-form {
    position: static;
  }
}

@media (max-width: 820px) {
  .contact-guidance-list article {
    padding: 1rem;
  }
}


/* V25: expandable diagram viewer for complex visuals */

.expandable-diagram {
  position: relative;
  cursor: zoom-in;
}

.expandable-diagram:focus {
  outline: 3px solid rgba(228, 128, 34, 0.45);
  outline-offset: 4px;
}

.diagram-expand-cue {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  border: 1px solid rgba(255,255,255,0.72);
  background: rgba(17, 17, 17, 0.78);
  color: #fff;
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 35px rgba(0,0,0,0.22);
  backdrop-filter: blur(8px);
}

.diagram-expand-cue:hover {
  background: rgba(228, 128, 34, 0.92);
}

.diagram-lightbox[hidden] {
  display: none;
}

.diagram-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.diagram-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.84);
}

.diagram-lightbox-panel {
  position: absolute;
  inset: clamp(0.8rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  background: #f7f4ee;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.45);
}

.diagram-lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #111;
  color: #fff;
  padding: 0.85rem 1rem;
  font-weight: 800;
}

.diagram-lightbox-close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.diagram-lightbox-scroll {
  flex: 1;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: clamp(0.8rem, 2vw, 1.5rem);
  display: grid;
  place-items: start center;
}

.diagram-lightbox-scroll img {
  display: block;
  width: max(1100px, 100%);
  max-width: none;
  height: auto;
  border-radius: 16px;
  background: #fff;
}

body.diagram-lightbox-open {
  overflow: hidden;
}

@media (max-width: 820px) {
  .diagram-expand-cue {
    right: 0.75rem;
    bottom: 0.75rem;
    font-size: 0.78rem;
    padding: 0.5rem 0.75rem;
  }

  .diagram-lightbox-panel {
    inset: 0.5rem;
    border-radius: 18px;
  }

  .diagram-lightbox-scroll {
    justify-content: start;
    place-items: start;
  }

  .diagram-lightbox-scroll img {
    width: 1180px;
  }
}


/* V26: white editorial visuals for Innovation article */
.article-visual-light {
  background: #fff !important;
  border: 1px solid rgba(18, 24, 28, 0.12);
  box-shadow: 0 18px 55px rgba(20,23,25,0.08);
}

.article-visual-light img {
  background: #fff;
}

.article-visual-light .diagram-expand-cue {
  background: rgba(17, 17, 17, 0.74);
}

.article-visual-light .diagram-expand-cue:hover {
  background: rgba(228, 128, 34, 0.92);
}

/* Keep article diagrams comfortable on mobile before expansion */
@media (max-width: 820px) {
  .article-visual-light {
    border-radius: 18px;
  }

  .article-visual-light img {
    width: 100%;
    max-width: none;
  }
}


/* V28: FAQ sections for AI and human readability */
.faq-section {
  border-top: 1px solid rgba(18, 24, 28, 0.08);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.faq-grid article {
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(18,24,28,0.10);
  border-radius: 22px;
  padding: 1.35rem;
  box-shadow: 0 18px 50px rgba(18,24,28,0.06);
}

.faq-grid h3 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

.faq-grid p {
  margin: 0;
  color: rgba(18,24,28,0.72);
}

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}


/* V28: article in-brief boxes */
.article-brief {
  margin: 2rem 0;
  padding: 1.25rem 1.35rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(18,24,28,0.10);
  box-shadow: 0 18px 50px rgba(18,24,28,0.06);
}

.article-brief h2 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
}

.article-brief ul {
  margin: 0;
  padding-left: 1.2rem;
}

.article-brief li {
  margin: 0.35rem 0;
}


/* V29: improve contrast for article In brief boxes */
.article-brief {
  background: rgba(18, 24, 28, 0.94) !important;
  border: 1px solid rgba(228, 128, 34, 0.28) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.28) !important;
  color: #ffffff !important;
}

.article-brief h2 {
  color: #ffffff !important;
}

.article-brief ul,
.article-brief li {
  color: rgba(255,255,255,0.88) !important;
}

.article-brief li::marker {
  color: #e48022;
}

@media (max-width: 820px) {
  .article-brief {
    border-radius: 18px;
  }
}


/* V30: Insights visual system */
.insights-featured-grid .editorial-image-card {
  position: relative;
  display: flex;
  min-height: 420px;
  overflow: hidden;
  padding: 0;
  background: #111;
  color: #fff;
}

.insights-featured-grid .editorial-image-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  filter: saturate(0.95) contrast(1.04);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.insights-featured-grid .editorial-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,8,9,0.14) 0%, rgba(6,8,9,0.42) 46%, rgba(6,8,9,0.88) 100%);
  pointer-events: none;
}

.insights-featured-grid .editorial-image-card > div {
  position: relative;
  z-index: 1;
  align-self: flex-end;
  width: 100%;
  padding: 1.6rem;
}

.insights-featured-grid .editorial-image-card:hover > img {
  transform: scale(1.055);
  filter: saturate(1.02) contrast(1.08);
}

.insights-featured-grid .editorial-image-card span,
.insights-featured-grid .editorial-image-card a {
  color: #e48022;
}

.insights-featured-grid .editorial-image-card h3,
.insights-featured-grid .editorial-image-card p {
  color: #fff;
}

.insights-featured-grid .editorial-image-card p {
  color: rgba(255,255,255,0.86);
}

.article-hero-visual {
  margin: 2rem 0;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 24px 80px rgba(0,0,0,0.22);
  background: #111;
}

.article-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}

/* V30: mobile card-height correction */
@media (max-width: 820px) {
  .card,
  .priority-card,
  .theme-card,
  .journey-card,
  .context-card,
  .implication-card,
  .programme-card,
  .modality-card,
  .feature-card,
  .pathway-step,
  .learning-card,
  .service-card,
  .editorial-card,
  .faq-grid article {
    min-height: auto !important;
    height: auto !important;
  }

  .card,
  .priority-card,
  .theme-card,
  .journey-card,
  .context-card,
  .implication-card,
  .programme-card,
  .modality-card,
  .feature-card,
  .pathway-step,
  .learning-card,
  .service-card,
  .editorial-card {
    padding-top: 1.55rem;
    padding-bottom: 1.55rem;
  }

  .insights-featured-grid .editorial-image-card {
    min-height: 360px !important;
    padding: 0 !important;
  }

  .insights-featured-grid .editorial-image-card > div {
    padding: 1.35rem;
  }

  .article-hero-visual {
    margin: 1.5rem 0;
    border-radius: 20px;
  }
}


/* V31: stronger mobile-only card height correction */
@media (max-width: 820px) {
  /* Catch all card-like structures not covered in V30 */
  [class*="card"],
  [class*="Card"],
  [class*="tile"],
  [class*="Tile"],
  [class*="step"],
  [class*="Step"] {
    min-height: 0 !important;
    height: auto !important;
  }

  /* Common page-specific grids should not stretch children on mobile */
  .implications-grid,
  .journey-themes-grid,
  .themes-grid,
  .signature-themes-grid,
  .context-grid,
  .pathway-grid,
  .programme-grid,
  .programmes-grid,
  .cards-grid,
  .feature-grid,
  .features-grid,
  .modality-grid,
  .learning-grid {
    align-items: stretch;
  }

  .implications-grid > *,
  .journey-themes-grid > *,
  .themes-grid > *,
  .signature-themes-grid > *,
  .context-grid > *,
  .pathway-grid > *,
  .programme-grid > *,
  .programmes-grid > *,
  .cards-grid > *,
  .feature-grid > *,
  .features-grid > *,
  .modality-grid > *,
  .learning-grid > * {
    min-height: 0 !important;
    height: auto !important;
  }

  /* Reduce excessive mobile padding on the affected article/card blocks */
  .implication-card,
  .theme-card,
  .journey-theme-card,
  .signature-theme-card,
  .programme-theme-card,
  .context-card,
  .pathway-card,
  .feature-card,
  .programme-card,
  .modality-card,
  .learning-card {
    padding: 1.35rem 1.35rem !important;
  }

  .implication-card p,
  .theme-card p,
  .journey-theme-card p,
  .signature-theme-card p,
  .programme-theme-card p,
  .context-card p,
  .pathway-card p,
  .feature-card p,
  .programme-card p,
  .modality-card p,
  .learning-card p {
    margin-bottom: 0 !important;
  }

  /* If any fixed min-height is applied directly to sections containing cards, neutralise it on mobile */
  .leadership-implications [class*="card"],
  .signature-journey-themes [class*="card"],
  .journey-themes [class*="card"],
  .theme-section [class*="card"] {
    min-height: 0 !important;
    height: auto !important;
  }
}


/* V32: targeted mobile fix for actual theme and implication article cards */
@media (max-width: 820px) {
  .implication-grid article,
  .theme-grid article {
    min-height: 0 !important;
    height: auto !important;
    padding: 1.35rem 1.35rem !important;
  }

  .implication-grid,
  .theme-grid {
    align-items: start !important;
  }

  .implication-grid article p,
  .theme-grid article p {
    margin-bottom: 0 !important;
  }
}
