:root {
  color-scheme: light;
  --ink: #111416;
  --muted: #5b6469;
  --paper: #f6f3ec;
  --paper-strong: #fffaf0;
  --line: rgba(17, 20, 22, 0.14);
  --ember: #e8422f;
  --teal: #315f73;
  --lime: #b8d7e6;
  --charcoal: #151719;
  --soft-charcoal: #262b2d;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(17, 20, 22, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(246, 243, 236, 0.94);
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(17, 20, 22, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.82;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  padding: 12px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: currentColor;
}

.nav-toggle span + span {
  margin-top: 8px;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
  padding-bottom: clamp(34px, 6vh, 76px);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: 62% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 11, 12, 0.95) 0%, rgba(9, 11, 12, 0.75) 34%, rgba(9, 11, 12, 0.18) 76%),
    linear-gradient(0deg, rgba(9, 11, 12, 0.45), rgba(9, 11, 12, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 82px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--lime);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--teal);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 650px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 7.2vw, 6.7rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.heading-link {
  color: var(--ember);
  text-decoration: none;
}

.heading-link:hover,
.heading-link:focus-visible {
  color: var(--teal);
}

.hero-copy {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.04rem, 2vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 13px 20px;
  font-weight: 850;
  line-height: 1.1;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--ember);
  color: var(--white);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button.full {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  width: min(820px, 100%);
  margin: 40px 0 0;
}

.hero-stats div {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  min-width: 0;
  padding-top: 18px;
}

.hero-stats dt {
  font-size: 1.12rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.intro-band {
  background: #e9edf0;
}

.section-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(34px, 5vw, 58px) 0;
}

.intro-kicker {
  border-left: 4px solid var(--ember);
  padding-left: 18px;
}

.intro-kicker span {
  display: block;
  color: var(--ember);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 950;
  line-height: 0.95;
}

.intro-kicker small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.intro-copy {
  display: grid;
  gap: 18px;
}

.intro-copy p {
  max-width: 860px;
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 800;
}

.text-link {
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.inline-emphasis {
  color: var(--ember);
  font-weight: 950;
}

.inline-emphasis:hover,
.inline-emphasis:focus-visible {
  color: var(--teal);
}

.section {
  padding: clamp(72px, 10vw, 130px) 0;
}

#programme {
  padding: clamp(54px, 7vw, 88px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

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

.copy-stack p:last-child {
  margin-bottom: 0;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 52px;
}

.pillar-card,
.programme-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  padding: 24px;
  color: inherit;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.pillar-card:hover,
.pillar-card:focus-within,
.programme-card:hover,
.programme-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(232, 66, 47, 0.28);
  box-shadow: 0 18px 42px rgba(17, 20, 22, 0.13);
}

.pillar-number {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--ember);
  font-weight: 950;
}

.pillar-card p,
.programme-card p,
.programme-card li {
  color: var(--muted);
}

.pillar-card.accent {
  background: var(--soft-charcoal);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.08);
}

.pillar-card.accent p {
  color: rgba(255, 255, 255, 0.76);
}

.tonal {
  background: #e9edf0;
}

.section-heading {
  margin-bottom: 38px;
}

.programme-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.programme-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
}

.programme-card.featured {
  background: var(--soft-charcoal);
  color: var(--white);
  box-shadow: 0 18px 54px rgba(17, 20, 22, 0.14);
}

.programme-card.featured p,
.programme-card.featured li {
  color: rgba(255, 255, 255, 0.76);
}

.tag {
  width: fit-content;
  border: 1px solid currentColor;
  padding: 4px 9px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.programme-card ul {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding-left: 18px;
}

.programme-cta {
  display: grid;
  justify-items: center;
  gap: 14px;
  justify-content: center;
  margin-top: 34px;
  text-align: center;
}

.programme-cta p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.programme-button {
  min-height: 52px;
  padding: 15px 24px;
  border-radius: 8px;
  background: var(--ember);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(232, 66, 47, 0.18);
}

.programme-button:hover,
.programme-button:focus-visible {
  transform: translateY(-3px);
  background: #d83a28;
  box-shadow: 0 16px 34px rgba(232, 66, 47, 0.26);
}

.metrics {
  background: var(--paper-strong);
}

.result-list {
  display: grid;
  gap: 16px;
}

.result-list div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  cursor: default;
  outline: none;
}

.result-list strong {
  color: var(--ember);
  font-size: 1.5rem;
}

.result-list span {
  color: var(--muted);
}

.result-list p {
  grid-column: 2;
  max-height: 0;
  margin: -10px 0 0;
  overflow: hidden;
  color: var(--muted);
  opacity: 0;
  transition:
    max-height 220ms ease,
    opacity 180ms ease,
    margin 180ms ease;
}

.result-list div:hover p,
.result-list div:focus-within p,
.result-list div:focus p {
  max-height: 120px;
  margin-top: -4px;
  opacity: 1;
}

.proof-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
  margin-top: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f0eadf;
  padding: clamp(22px, 4vw, 34px);
}

.proof-panel h3 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.proof-copy p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.proof-slider {
  position: relative;
  display: grid;
  align-items: center;
}

.proof-window {
  overflow: hidden;
}

.proof-track {
  display: flex;
  gap: 14px;
  transition: transform 220ms ease;
}

.proof-slide {
  flex: 0 0 calc((100% - 14px) / 2);
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 20, 22, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(32, 78, 74, 0.18), rgba(232, 66, 47, 0.12)),
    rgba(255, 255, 255, 0.55);
  color: rgba(17, 20, 22, 0.56);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(17, 20, 22, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: inherit;
  font-size: 1.1rem;
  font-weight: 900;
  cursor: pointer;
  opacity: 0;
  backdrop-filter: blur(8px);
  transform: translateY(-50%);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    opacity 160ms ease;
}

.proof-arrow:first-child {
  left: 10px;
}

.proof-arrow:last-child {
  right: 10px;
}

.proof-slider:hover .proof-arrow,
.proof-slider:focus-within .proof-arrow {
  opacity: 0.82;
}

.proof-arrow:hover,
.proof-arrow:focus-visible {
  opacity: 1;
  transform: translateY(-50%) scale(1.04);
  border-color: rgba(232, 66, 47, 0.42);
  background: rgba(255, 255, 255, 0.9);
}

.application {
  background: var(--charcoal);
  color: var(--white);
}

.application-page {
  background: var(--paper-strong);
}

.content-page {
  background: var(--paper-strong);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.content-page main {
  flex: 1;
}

.application-standalone {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: clamp(104px, 12vw, 150px) 0 clamp(44px, 7vw, 84px);
}

.application-standalone h1 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.8vw, 4.8rem);
  line-height: 1;
}

.application-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: stretch;
}

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

.application-intro {
  display: flex;
  flex-direction: column;
}

.application-photo-slot {
  width: min(100%, 520px);
  margin-top: clamp(26px, 4vw, 42px);
  flex: 1;
  min-height: 280px;
  border: 1px solid rgba(17, 20, 22, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(32, 78, 74, 0.2), rgba(232, 66, 47, 0.12)),
    var(--paper);
  box-shadow: 0 18px 54px rgba(17, 20, 22, 0.12);
  overflow: hidden;
}

.application-photo-slot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.application-page .application {
  background: var(--paper-strong);
  color: var(--ink);
}

.application-page .eyebrow {
  color: var(--teal);
}

.application-form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 32px);
  background: var(--soft-charcoal);
  box-shadow: 0 18px 54px rgba(17, 20, 22, 0.14);
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 800;
}

.application-form [hidden] {
  display: none;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

.privacy-consent {
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.45;
}

.privacy-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--ember);
}

.privacy-consent a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--lime);
  font-weight: 800;
}

.kaizen-page {
  padding: clamp(112px, 12vw, 160px) 0 clamp(72px, 10vw, 130px);
}

.kaizen-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) minmax(320px, 1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.kaizen-aside {
  position: sticky;
  top: 110px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: var(--soft-charcoal);
  box-shadow: 0 18px 54px rgba(17, 20, 22, 0.14);
  padding: clamp(22px, 4vw, 32px);
}

.kaizen-aside .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.kaizen-aside span {
  display: block;
  margin-bottom: 16px;
  color: var(--ember);
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  font-weight: 950;
  line-height: 0.9;
}

.kaizen-aside p:last-child {
  margin: 0;
  color: var(--white);
  font-weight: 900;
}

.kaizen-article {
  max-width: 820px;
}

.kaizen-article h1 {
  margin-bottom: 30px;
  color: var(--ink);
  font-size: clamp(2.5rem, 6vw, 5.8rem);
  line-height: 0.94;
}

.kaizen-article p {
  color: var(--muted);
  font-size: clamp(1.04rem, 1.6vw, 1.22rem);
}

.kaizen-principles {
  margin: 42px 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: var(--soft-charcoal);
  color: var(--white);
  box-shadow: 0 18px 54px rgba(17, 20, 22, 0.14);
  padding: clamp(22px, 4vw, 34px);
}

.kaizen-principles h2 {
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.kaizen-principles ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 20px;
}

.kaizen-principles li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

.about-page {
  padding: clamp(112px, 12vw, 160px) 0 clamp(72px, 10vw, 130px);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.54fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.about-intro h1 {
  max-width: 740px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: 1;
}

.animated-title {
  perspective: 1100px;
  transform-style: preserve-3d;
}

.animated-title .title-line {
  display: block;
  transform-style: preserve-3d;
}

.animated-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateZ(760px) scale(3.05);
  transform-origin: center;
  will-change: transform, opacity;
  animation: titleWordIn 820ms cubic-bezier(0.08, 0.9, 0.16, 1) forwards;
  animation-delay: calc(var(--word-index) * 500ms);
}

@keyframes titleWordIn {
  to {
    opacity: 1;
    transform: translateZ(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .animated-title .word {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.about-intro p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.about-story {
  display: grid;
  gap: 18px;
}

.about-story p {
  margin-bottom: 0;
}

.about-proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 30px 0;
}

.about-proof-list div {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.about-proof-list strong {
  display: block;
  color: var(--ember);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.05;
}

.about-proof-list span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 800;
}

.about-cta-copy {
  font-weight: 800;
}

.about-intro .button {
  margin-top: 18px;
}

.about-photo {
  margin: 0;
}

.about-photo-placeholder {
  display: grid;
  min-height: clamp(420px, 58vw, 640px);
  align-content: end;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(38, 43, 45, 0.16), rgba(38, 43, 45, 0.88)),
    var(--soft-charcoal);
  color: var(--white);
  box-shadow: 0 18px 54px rgba(17, 20, 22, 0.14);
  padding: clamp(24px, 4vw, 34px);
}

.about-photo-placeholder span {
  display: block;
  margin-bottom: 16px;
  color: var(--ember);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 950;
  line-height: 0.95;
}

.about-photo-placeholder p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.about-photo img {
  width: 100%;
  min-height: clamp(420px, 58vw, 640px);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 54px rgba(17, 20, 22, 0.14);
}

.about-photo figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.legal-page {
  padding: clamp(112px, 12vw, 160px) 0 clamp(72px, 10vw, 130px);
}

.legal-content {
  max-width: 760px;
}

.legal-content h1 {
  margin-bottom: 36px;
  color: var(--ink);
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  line-height: 0.94;
}

.legal-content h2 {
  margin: 34px 0 12px;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  line-height: 1.08;
}

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

.site-footer {
  background: #0d0f10;
  color: rgba(255, 255, 255, 0.76);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0;
}

.footer-inner a {
  color: var(--lime);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (max-width: 880px) {
  .nav-toggle {
    display: grid;
    place-content: center;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper-strong);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 18px;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: 92svh;
  }

  .hero-media {
    object-position: 67% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(9, 11, 12, 0.96) 0%, rgba(9, 11, 12, 0.78) 56%, rgba(9, 11, 12, 0.24) 100%),
      linear-gradient(0deg, rgba(9, 11, 12, 0.55), rgba(9, 11, 12, 0.12));
  }

  .hero-stats,
  .pillars,
  .programme-grid,
  .split,
  .proof-panel,
  .kaizen-layout,
  .about-layout,
  .application-grid,
  .form-row,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .kaizen-aside {
    position: static;
  }

  .intro-grid {
    gap: 16px;
  }

  .pillars {
    margin-top: 36px;
  }

  .programme-card {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    font-size: 0.9rem;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
  }

  .hero-actions {
    display: grid;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .about-proof-list {
    grid-template-columns: 1fr;
  }

  .result-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .result-list p {
    grid-column: 1;
    margin-top: 0;
  }

  .footer-inner {
    flex-direction: column;
  }
}
