:root {
  --crimson: #b71935;
  --crimson-dark: #7f1026;
  --crimson-soft: #fae9ec;
  --orange: #f29d16;
  --orange-soft: #fff0d5;
  --ink: #25181c;
  --muted: #72666a;
  --white: #ffffff;
  --paper: #fffcf9;
  --soft: #faf6f2;
  --line: #eadfd9;
  --dark: #28141a;
  --green: #26756e;
  --shadow-sm: 0 12px 36px rgba(59, 25, 34, .08);
  --shadow-lg: 0 28px 70px rgba(67, 31, 40, .16);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 36px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button, a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

h1, h2, h3, h4 {
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.13;
  letter-spacing: -.035em;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 11px 18px;
  border-radius: 10px;
  color: var(--white);
  background: var(--crimson);
  transition: transform .2s ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  border-color: rgba(183, 25, 53, .08);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 10px 35px rgba(53, 21, 30, .07);
}

.header-inner {
  height: 84px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 158px;
  height: auto;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-nav a {
  position: relative;
  padding-block: 30px;
  color: #55494d;
  font-weight: 600;
  font-size: 14px;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 22px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--orange), var(--crimson));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.desktop-nav a:hover, .desktop-nav a.is-active {
  color: var(--crimson);
}

.desktop-nav a:hover::after, .desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid var(--crimson);
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(120deg, var(--crimson), #d32c38 65%, #da4f29);
  box-shadow: 0 12px 24px rgba(183, 25, 53, .18);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(183, 25, 53, .26);
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-small {
  min-height: 44px;
  padding: 11px 19px;
  font-size: 13px;
}

.button-ghost {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, .68);
  box-shadow: none;
}

.button-ghost:hover {
  color: var(--crimson);
  border-color: rgba(183, 25, 53, .3);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.button-dark {
  border-color: var(--dark);
  background: var(--dark);
  box-shadow: 0 12px 24px rgba(40, 20, 26, .16);
}

.button-white {
  color: var(--crimson-dark);
  border-color: var(--white);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(60, 6, 20, .16);
}

.menu-toggle, .mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 780px;
  padding: 148px 0 92px;
  background:
    radial-gradient(circle at 8% 8%, rgba(242, 157, 22, .12), transparent 27%),
    radial-gradient(circle at 91% 20%, rgba(183, 25, 53, .09), transparent 30%),
    linear-gradient(180deg, #fffdfb 0%, #fff9f5 100%);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: .55;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(1px);
}

.hero-orb-one {
  width: 18px;
  height: 18px;
  top: 210px;
  left: 5vw;
  border: 5px solid var(--orange);
  opacity: .6;
}

.hero-orb-two {
  width: 190px;
  height: 190px;
  right: -110px;
  bottom: 90px;
  border: 34px solid rgba(242, 157, 22, .1);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: clamp(54px, 7vw, 100px);
}

.eyebrow {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--crimson);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 26px;
  height: 2px;
  background: var(--orange);
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(48px, 5.15vw, 76px);
  font-weight: 800;
}

.hero h1 em {
  position: relative;
  color: var(--crimson);
  font-style: normal;
  white-space: nowrap;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 8px;
  border-radius: 50%;
  border-top: 3px solid var(--orange);
  transform: rotate(-1deg);
}

.hero-copy > p {
  max-width: 590px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.68;
}

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

.hero-proof {
  margin-top: 48px;
  padding-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  border-top: 1px solid var(--line);
}

.hero-proof div {
  display: flex;
  flex-direction: column;
}

.hero-proof strong {
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 20px;
  letter-spacing: -.03em;
}

.hero-proof span {
  color: var(--muted);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  min-height: 570px;
}

.hero-image-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 510px);
  height: 530px;
  border-radius: 34px 34px 94px 34px;
  background: #e9ded3;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-image-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity .35s ease, transform .7s ease;
}

.hero-image-wrap:hover > img {
  transform: scale(1.025);
}

.hero-image-wrap > img.is-changing {
  opacity: .2;
}

.hero-image-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(31, 12, 17, .35));
  pointer-events: none;
}

.hero-mini-image {
  position: absolute;
  left: -48px;
  bottom: 0;
  width: 210px;
  height: 164px;
  padding: 8px;
  border-radius: 25px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 50px rgba(49, 23, 30, .22);
  transform: rotate(-3deg);
  overflow: hidden;
}

.hero-mini-image img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.hero-floating-card {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 18px;
  color: var(--white);
  background: rgba(45, 20, 27, .66);
  backdrop-filter: blur(12px);
}

.floating-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--dark);
  background: var(--orange);
}

.floating-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-floating-card span, .hero-floating-card strong {
  display: block;
}

.hero-floating-card span {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, .7);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero-floating-card strong {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
}

.hero-dots {
  position: absolute;
  right: 14px;
  bottom: -4px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #d6c8c1;
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

.hero-dots button.is-active {
  width: 28px;
  background: var(--crimson);
}

.trust-strip {
  position: relative;
  z-index: 3;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, .82);
}

.principle-row {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 5vw, 76px);
}

.principle-row span {
  color: #76666a;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.principle-row i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

.section {
  padding: 110px 0;
}

.section-soft {
  background: var(--soft);
}

.section-kicker {
  margin-bottom: 16px;
  color: var(--crimson);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.section h2 {
  margin-bottom: 22px;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 800;
}

.section-lead {
  color: #4d4145;
  font-size: 18px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(65px, 8vw, 120px);
}

.about-visual {
  position: relative;
  min-height: 600px;
}

.about-image-main {
  width: 84%;
  height: 540px;
  border-radius: 32px 32px 84px 32px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.about-image-main img, .about-image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 240px;
  height: 180px;
  padding: 8px;
  border-radius: 25px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.about-image-small img {
  border-radius: 18px;
}

.experience-stamp {
  position: absolute;
  top: 45px;
  right: -8px;
  width: 138px;
  height: 138px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 50%;
  color: var(--white);
  background: var(--crimson);
  box-shadow: 0 16px 34px rgba(183, 25, 53, .25);
  text-align: center;
}

.experience-stamp::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px dashed rgba(255, 255, 255, .55);
  border-radius: inherit;
}

.experience-stamp strong {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 34px;
  line-height: 1;
}

.experience-stamp span {
  max-width: 88px;
  margin-top: 6px;
  color: rgba(255, 255, 255, .8);
  font-size: 10px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.about-copy > p:not(.section-kicker) {
  color: var(--muted);
}

.about-copy > p strong {
  color: var(--ink);
}

.about-checks {
  margin: 30px 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 26px;
}

.about-checks > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-checks span {
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--crimson);
  background: var(--crimson-soft);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.about-checks p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.about-checks strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--crimson);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.text-link span {
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.values-section {
  background: var(--white);
}

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

.section-heading.centered {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered > p:last-child, .section-heading.split-heading > p {
  color: var(--muted);
  font-size: 17px;
}

.section-heading.compact {
  margin-bottom: 42px;
}

.section-heading.compact h2 {
  font-size: clamp(32px, 3.7vw, 48px);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.value-card {
  position: relative;
  min-height: 340px;
  padding: 34px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fffefd;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.value-card::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -65px;
  width: 150px;
  height: 150px;
  border: 28px solid var(--orange-soft);
  border-radius: 50%;
  transition: transform .35s ease;
}

.value-card:hover {
  border-color: rgba(183, 25, 53, .18);
  box-shadow: var(--shadow-sm);
  transform: translateY(-7px);
}

.value-card:hover::after {
  transform: scale(1.12);
}

.value-number {
  position: absolute;
  top: 27px;
  right: 28px;
  color: #c9bfc1;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.value-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--crimson);
  background: var(--crimson-soft);
}

.value-icon svg {
  width: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card:nth-child(even) .value-icon {
  color: #ad6500;
  background: var(--orange-soft);
}

.value-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.value-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.15fr .65fr;
  align-items: end;
  gap: 70px;
}

.split-heading h2, .split-heading > p {
  margin-bottom: 0;
}

.program-filter {
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.program-filter button {
  padding: 10px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.program-filter button:hover, .program-filter button.is-active {
  color: var(--white);
  border-color: var(--crimson);
  background: var(--crimson);
}

.program-category-group + .program-category-group {
  margin-top: 62px;
}

.program-category-group.is-hidden {
  display: none;
}

.program-category-heading {
  margin-bottom: 22px;
  padding-bottom: 16px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--line);
}

.program-category-heading h3 {
  margin: 0;
  font-size: clamp(23px, 2.6vw, 32px);
}

.program-category-heading p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.program-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(58, 29, 37, .045);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

.program-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-sm);
}

.program-card.is-hidden {
  display: none;
}

.program-image {
  position: relative;
  height: 210px;
  display: block;
  background: #ebdfd9;
  overflow: hidden;
}

.program-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(27, 11, 15, .28));
  pointer-events: none;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

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

.program-image > span {
  position: absolute;
  z-index: 1;
  left: 16px;
  top: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--crimson-dark);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(7px);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.program-body {
  min-height: 215px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.program-body > p {
  margin-bottom: 8px;
  color: var(--crimson);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.program-body h3 {
  margin-bottom: 24px;
  font-size: 20px;
  line-height: 1.35;
}

.program-meta {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}

.program-meta > span {
  padding-left: 17px;
  position: relative;
  color: var(--muted);
  font-size: 12px;
}

.program-meta > span::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 2px solid var(--orange);
  border-radius: 50% 50% 50% 0;
  transform: translateY(-65%) rotate(-45deg);
}

.program-meta a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--crimson);
  background: var(--crimson-soft);
  font-weight: 700;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.program-meta a:hover {
  color: var(--white);
  background: var(--crimson);
  transform: rotate(45deg);
}

.section-action {
  margin-top: 42px;
  text-align: center;
}

.why-section {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.why-copy > p:not(.section-kicker) {
  color: var(--muted);
}

.why-list {
  margin-top: 34px;
}

.why-list > div {
  padding: 21px 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  border-top: 1px solid var(--line);
}

.why-list > div:last-child {
  border-bottom: 1px solid var(--line);
}

.why-list span {
  color: var(--orange);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.why-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.why-list strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
}

.why-visual {
  position: relative;
  min-height: 600px;
}

.why-visual > img {
  width: 100%;
  height: 600px;
  border-radius: 38px 38px 38px 108px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.impact-card {
  position: absolute;
  left: -58px;
  bottom: 35px;
  width: 260px;
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 22px;
  background: rgba(255, 255, 255, .91);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.impact-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--crimson);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.impact-card strong {
  display: block;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.4;
}

.impact-chip {
  position: absolute;
  top: 34px;
  right: -30px;
  padding: 11px 15px 11px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--crimson);
  box-shadow: 0 14px 32px rgba(183, 25, 53, .26);
  font-size: 12px;
  font-weight: 700;
}

.impact-chip span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--crimson);
  background: var(--white);
}

.testimonials-section {
  padding-top: 30px;
  color: var(--white);
  background: var(--white);
}

.testimonials-shell {
  position: relative;
  min-height: 570px;
  padding: 76px 78px;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: center;
  gap: 90px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 95% 0%, rgba(242, 157, 22, .2), transparent 30%),
    linear-gradient(135deg, #32151e 0%, #581428 52%, #7f1328 100%);
  box-shadow: 0 30px 70px rgba(60, 15, 29, .2);
  overflow: hidden;
}

.testimonials-shell::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  left: -150px;
  bottom: -155px;
  border: 48px solid rgba(255, 255, 255, .04);
  border-radius: 50%;
}

.light-kicker {
  color: #ffc561;
}

.testimonial-intro h2 {
  color: var(--white);
  font-size: clamp(36px, 3.7vw, 49px);
}

.testimonial-intro > p:last-of-type {
  color: rgba(255, 255, 255, .64);
}

.testimonial-controls {
  margin-top: 34px;
  display: flex;
  gap: 10px;
}

.slider-button {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .23);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.slider-button:hover {
  border-color: var(--orange);
  background: var(--orange);
  transform: translateY(-2px);
}

.testimonial-stage {
  position: relative;
  min-height: 330px;
  padding: 54px 50px 34px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 28px;
  background: rgba(255, 255, 255, .075);
  backdrop-filter: blur(12px);
}

.quote-mark {
  position: absolute;
  top: 12px;
  right: 32px;
  color: rgba(255, 197, 97, .35);
  font-family: Georgia, serif;
  font-size: 110px;
  line-height: 1;
}

.testimonial-slide {
  display: none;
  opacity: 0;
  transform: translateY(8px);
}

.testimonial-slide.is-active {
  display: block;
  animation: testimonial-in .45s ease forwards;
}

.testimonial-slide blockquote {
  position: relative;
  z-index: 1;
  margin: 0 0 38px;
  color: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(20px, 2.2vw, 27px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -.025em;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 13px;
}

.testimonial-person > span {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--dark);
  background: var(--orange);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.testimonial-person p {
  margin: 0;
  color: rgba(255, 255, 255, .6);
  font-size: 12px;
  line-height: 1.5;
}

.testimonial-person strong {
  display: block;
  color: var(--white);
  font-size: 14px;
}

.testimonial-progress {
  position: absolute;
  left: 50px;
  right: 50px;
  bottom: 25px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.testimonial-progress span {
  height: 2px;
  border-radius: 3px;
  background: rgba(255, 255, 255, .17);
}

.testimonial-progress span.is-active {
  background: var(--orange);
}

@keyframes testimonial-in {
  to { opacity: 1; transform: translateY(0); }
}

.clients-section {
  padding-top: 95px;
  background: var(--white);
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.client-grid > div {
  height: 132px;
  padding: 25px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fffefd;
}

.client-grid img {
  width: auto;
  max-width: 130px;
  max-height: 64px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .58;
  transition: filter .3s ease, opacity .3s ease, transform .3s ease;
}

.client-grid > div:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.04);
}

.cta-wrap {
  padding: 0 0 40px;
  background: var(--white);
}

.cta-panel {
  position: relative;
  min-height: 350px;
  padding: 62px 70px;
  display: grid;
  grid-template-columns: 1.1fr .55fr;
  align-items: center;
  gap: 80px;
  border-radius: 36px;
  color: var(--white);
  background: linear-gradient(118deg, var(--crimson-dark), var(--crimson) 54%, #d44b29 125%);
  box-shadow: 0 28px 55px rgba(126, 15, 37, .19);
  overflow: hidden;
}

.cta-panel > *:not(.cta-rings) {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  margin-bottom: 14px;
  color: var(--white);
}

.cta-panel p:not(.section-kicker) {
  max-width: 670px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 17px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.cta-actions > a:last-child {
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.cta-rings {
  position: absolute;
  width: 350px;
  height: 350px;
  right: -115px;
  top: -138px;
  border: 52px solid rgba(255, 255, 255, .065);
  border-radius: 50%;
}

.cta-rings::after {
  content: "";
  position: absolute;
  inset: 45px;
  border: 2px solid rgba(255, 255, 255, .07);
  border-radius: 50%;
}

.gallery-section {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 230px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: #e7dcd5;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease, filter .4s ease;
}

.gallery-item::after {
  content: "↗";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: rgba(35, 20, 24, .65);
  backdrop-filter: blur(8px);
  transform: scale(.8);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
}

.gallery-item span {
  position: absolute;
  z-index: 1;
  left: 20px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(40, 20, 26, .7);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
  filter: saturate(1.07);
}

.gallery-item:hover::after, .gallery-item:hover span {
  opacity: 1;
  transform: none;
}

.faq-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-heading > p:not(.section-kicker) {
  color: var(--muted);
}

.faq-heading .text-link {
  margin-top: 18px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.faq-item button i {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(39, 20, 25, .06);
}

.faq-item button i::before, .faq-item button i::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 13px;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--crimson);
  transition: transform .25s ease;
}

.faq-item button i::after {
  transform: rotate(90deg);
}

.faq-item.is-open button i::after {
  transform: rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}

.faq-answer > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  overflow: hidden;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer > p {
  padding-bottom: 25px;
}

.site-footer {
  color: #d9cdd0;
  background: #211318;
}

.footer-main {
  padding: 76px 0 58px;
  display: grid;
  grid-template-columns: 1.35fr .65fr .8fr 1fr;
  gap: 60px;
}

.footer-logo {
  margin-bottom: 20px;
  padding: 9px 12px;
  border-radius: 11px;
  background: var(--white);
}

.footer-logo img {
  width: 142px;
  mix-blend-mode: normal;
}

.footer-brand > p {
  max-width: 300px;
  color: #9f9296;
  font-size: 13px;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  color: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.social-links a:hover {
  color: var(--dark);
  border-color: var(--orange);
  background: var(--orange);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-column h3 {
  margin-bottom: 9px;
  color: var(--white);
  font-size: 13px;
  letter-spacing: .04em;
}

.footer-column > a {
  color: #9f9296;
  font-size: 13px;
  transition: color .2s ease, transform .2s ease;
}

.footer-column > a:hover {
  color: var(--orange);
  transform: translateX(3px);
}

.footer-contact > a, .footer-contact > p {
  margin: 0 0 7px;
  color: #d9cdd0;
  line-height: 1.5;
}

.footer-contact span {
  display: block;
  margin-bottom: 2px;
  color: #74696c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom p {
  margin: 0;
  color: #74696c;
  font-size: 11px;
}

.whatsapp-button {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 4px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: #24b965;
  box-shadow: 0 14px 28px rgba(22, 112, 61, .24);
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-button:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 34px rgba(22, 112, 61, .3);
}

.whatsapp-button svg {
  width: 26px;
  fill: currentColor;
}

.lightbox {
  position: fixed;
  width: min(1100px, calc(100% - 40px));
  max-width: none;
  height: min(780px, calc(100% - 40px));
  max-height: none;
  padding: 56px 70px 32px;
  border: 0;
  border-radius: 24px;
  color: var(--white);
  background: #180f12;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .4);
  overflow: visible;
}

.lightbox::backdrop {
  background: rgba(25, 12, 17, .78);
  backdrop-filter: blur(10px);
}

.lightbox figure {
  width: 100%;
  height: 100%;
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 14px;
}

.lightbox img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: contain;
}

.lightbox figcaption {
  color: #cbbfc2;
  font-size: 13px;
  text-align: center;
}

.lightbox-close, .lightbox-nav {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
}

.lightbox-close {
  width: 38px;
  height: 38px;
  top: 13px;
  right: 14px;
  font-size: 26px;
  line-height: 1;
}

.lightbox-nav {
  width: 46px;
  height: 46px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev { left: 13px; }
.lightbox-next { right: 13px; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .75, .3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay, .reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .22s; }
.reveal-delay-3 { transition-delay: .32s; }

/* Individual pages */
.page-hero {
  position: relative;
  min-height: 680px;
  padding: 154px 0 84px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 9% 18%, rgba(242, 157, 22, .13), transparent 25%),
    radial-gradient(circle at 93% 12%, rgba(183, 25, 53, .1), transparent 31%),
    linear-gradient(180deg, #fffdfb, #fff8f4);
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183, 25, 53, .2), transparent);
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
}

.breadcrumb {
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  color: #9a888e;
  font-size: 12px;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--crimson);
}

.breadcrumb i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
}

.page-hero h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(48px, 5.2vw, 72px);
  font-weight: 800;
}

.page-hero h1 em {
  color: var(--crimson);
  font-style: normal;
}

.page-lead {
  max-width: 620px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-hero-media {
  position: relative;
  min-height: 470px;
}

.page-hero-media > img {
  width: 100%;
  height: 470px;
  border-radius: 32px 32px 92px 32px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.page-hero-media.contain-media {
  display: grid;
  place-items: center;
  padding: 35px;
  border-radius: 32px 32px 92px 32px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.page-hero-media.contain-media > img {
  width: 100%;
  height: 400px;
  border-radius: 18px;
  object-fit: contain;
  box-shadow: none;
}

.page-hero-badge {
  position: absolute;
  left: -34px;
  bottom: 28px;
  max-width: 245px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 20px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.page-hero-badge span, .page-hero-badge strong {
  display: block;
}

.page-hero-badge span {
  margin-bottom: 5px;
  color: var(--crimson);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.page-hero-badge strong {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
}

.page-section {
  padding: 105px 0;
  background: var(--white);
}

.page-section.section-soft {
  background: var(--soft);
}

.page-section h2 {
  margin-bottom: 22px;
  font-size: clamp(35px, 4vw, 52px);
  font-weight: 800;
}

.page-section h3 {
  font-weight: 800;
}

.page-section p {
  color: var(--muted);
}

.page-section .section-kicker {
  color: var(--crimson);
}

.content-split {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: start;
  gap: clamp(65px, 9vw, 130px);
}

.content-split.reverse {
  grid-template-columns: 1.12fr .88fr;
}

.content-split.centered-split {
  align-items: center;
}

.content-image {
  position: relative;
}

.content-image > img {
  width: 100%;
  min-height: 510px;
  max-height: 620px;
  border-radius: 30px 30px 76px 30px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.content-image.image-contain {
  min-height: 520px;
  padding: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 30px 30px 76px 30px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.content-image.image-contain > img {
  min-height: 0;
  max-height: 450px;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
}

.prose-copy > p:not(.section-kicker) {
  font-size: 17px;
}

.prose-copy .text-link {
  margin-top: 12px;
}

.mini-feature-list {
  margin: 34px 0;
  display: grid;
  gap: 4px;
}

.mini-feature {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  border-top: 1px solid var(--line);
}

.mini-feature:last-child {
  border-bottom: 1px solid var(--line);
}

.mini-feature > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--crimson);
  background: var(--crimson-soft);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.mini-feature p {
  margin: 0;
  font-size: 14px !important;
}

.mini-feature strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
}

.metric-band {
  padding: 0;
  color: var(--white);
  background: var(--dark);
}

.metric-row {
  min-height: 190px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metric-item {
  padding: 42px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.metric-item:first-child {
  border-left: 1px solid rgba(255, 255, 255, .1);
}

.metric-item strong {
  color: var(--orange);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 32px;
  line-height: 1.2;
}

.metric-item span {
  margin-top: 8px;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.mission-grid, .delivery-grid, .benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mission-card, .delivery-card, .benefit-card {
  position: relative;
  min-height: 315px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

.mission-card:hover, .delivery-card:hover, .benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-sm);
}

.mission-card > span, .delivery-card > span, .benefit-card > span {
  width: 48px;
  height: 48px;
  margin-bottom: 55px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--crimson);
  background: var(--crimson-soft);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.mission-card:nth-child(2) > span, .delivery-card:nth-child(2) > span, .benefit-card:nth-child(even) > span {
  color: #9a5a00;
  background: var(--orange-soft);
}

.mission-card h3, .delivery-card h3, .benefit-card h3 {
  margin-bottom: 12px;
  font-size: 23px;
}

.mission-card p, .delivery-card p, .benefit-card p {
  margin: 0;
  font-size: 14px;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 3%;
  right: 3%;
  top: 14px;
  height: 1px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  padding-top: 48px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 8px;
  left: 0;
  width: 13px;
  height: 13px;
  border: 4px solid var(--soft);
  border-radius: 50%;
  background: var(--crimson);
  box-shadow: 0 0 0 1px var(--crimson);
}

.timeline-item time {
  display: block;
  margin-bottom: 9px;
  color: var(--crimson);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.timeline-item h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.timeline-item p {
  margin: 0;
  font-size: 13px;
}

.delivery-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
}

.delivery-card .text-link {
  margin-top: auto;
}

.delivery-card.featured {
  color: var(--white);
  border-color: var(--crimson);
  background: linear-gradient(145deg, var(--crimson-dark), var(--crimson));
  box-shadow: 0 20px 44px rgba(126, 16, 38, .2);
}

.delivery-card.featured h3, .delivery-card.featured .text-link {
  color: var(--white);
}

.delivery-card.featured p {
  color: rgba(255, 255, 255, .69);
}

.delivery-card.featured > span {
  color: var(--dark);
  background: var(--orange);
}

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

.process-step {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
}

.process-step > span {
  display: block;
  margin-bottom: 38px;
  color: var(--orange);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.process-step h3 {
  margin-bottom: 9px;
  font-size: 17px;
}

.process-step p {
  margin: 0;
  font-size: 13px;
}

.course-toolbar {
  margin-bottom: 38px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(58, 29, 37, .04);
}

.course-search {
  position: relative;
  width: min(100%, 380px);
}

.course-search::before {
  content: "⌕";
  position: absolute;
  left: 16px;
  top: 50%;
  color: var(--crimson);
  font-size: 22px;
  transform: translateY(-52%);
}

.course-search input {
  width: 100%;
  height: 46px;
  padding: 10px 16px 10px 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  outline: 0;
  background: var(--soft);
  font-size: 13px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.course-search input:focus {
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px rgba(183, 25, 53, .09);
}

.course-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.course-filter button {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--white);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.course-filter button:hover, .course-filter button.is-active {
  color: var(--white);
  border-color: var(--crimson);
  background: var(--crimson);
}

.course-category-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.course-category-card {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 8px 26px rgba(58, 29, 37, .035);
}

.course-category-card.is-hidden, .course-list li.is-hidden {
  display: none;
}

.course-category-heading {
  margin-bottom: 22px;
  padding-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.course-category-heading > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 13px;
}

.course-category-heading span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--crimson);
  background: var(--crimson-soft);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.course-category-heading h2 {
  min-width: 0;
  margin: 0;
  font-size: 20px;
  overflow-wrap: anywhere;
}

.course-category-heading small {
  color: #a39498;
  font-size: 11px;
}

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

.course-list li {
  padding: 12px 0 12px 22px;
  position: relative;
  border-bottom: 1px solid #f1e8e3;
  color: #514549;
  font-size: 14px;
}

.course-list li:last-child {
  border-bottom: 0;
}

.course-list li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 20px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px var(--orange-soft);
}

.course-empty {
  display: none;
  padding: 50px 20px;
  border: 1px dashed var(--line);
  border-radius: 20px;
  color: var(--muted);
  text-align: center;
}

.course-empty.is-visible {
  display: block;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.method-step {
  min-height: 300px;
  padding: 30px 25px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.method-step > span {
  width: 48px;
  height: 48px;
  margin-bottom: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--crimson);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 9px 20px rgba(183, 25, 53, .17);
}

.method-step h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.method-step p {
  margin: 0;
  font-size: 13px;
}

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

.benefit-card {
  min-height: 245px;
}

.benefit-card > span {
  margin-bottom: 35px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  min-height: 330px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 8px 25px rgba(58, 29, 37, .035);
}

.review-card::before {
  content: "“";
  margin-bottom: 14px;
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 70px;
  line-height: .7;
}

.review-card blockquote {
  margin: 0 0 30px;
  color: #44373b;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: -.02em;
}

.review-card footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.review-card footer strong {
  display: block;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 290px;
  gap: 18px;
}

.gallery-page-grid .gallery-item:nth-child(1),
.gallery-page-grid .gallery-item:nth-child(7) {
  grid-column: span 2;
}

.gallery-page-grid .gallery-item:nth-child(2),
.gallery-page-grid .gallery-item:nth-child(6) {
  grid-row: span 2;
}

.page-cta-section {
  padding: 0 0 100px;
  background: var(--white);
}

.page-cta-section.soft-before {
  padding-top: 100px;
  background: var(--soft);
}

.page-cta-section .cta-panel {
  min-height: 320px;
}

.course-meta {
  margin-top: 34px;
  padding-top: 25px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  border-top: 1px solid var(--line);
}

.course-meta div {
  display: flex;
  flex-direction: column;
}

.course-meta span {
  margin-bottom: 4px;
  color: #a08f94;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.course-meta strong {
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.4;
}

.course-poster-media > img {
  object-position: center;
}

.course-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: clamp(55px, 8vw, 110px);
}

.detail-main > section {
  margin-bottom: 68px;
}

.detail-main > section:last-child {
  margin-bottom: 0;
}

.detail-main h2 {
  margin-bottom: 20px;
  font-size: clamp(30px, 3.4vw, 43px);
}

.detail-main > section > p {
  font-size: 17px;
}

.outcome-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.outcome-card {
  min-height: 125px;
  padding: 20px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: start;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
}

.outcome-card > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--crimson);
  background: var(--crimson-soft);
  font-size: 12px;
  font-weight: 800;
}

.outcome-card p {
  margin: 2px 0 0;
  color: #4c4044;
  font-size: 14px;
  line-height: 1.55;
}

.outline-list {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.outline-item {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.outline-item > span {
  color: var(--orange);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.outline-item h3 {
  margin-bottom: 7px;
  font-size: 17px;
}

.outline-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.audience-tags {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.audience-tags span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #564a4e;
  background: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.detail-sidebar {
  position: sticky;
  top: 115px;
}

.enquiry-card {
  padding: 30px;
  border-radius: 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(242, 157, 22, .2), transparent 35%),
    linear-gradient(145deg, #341720, #78142a);
  box-shadow: 0 24px 55px rgba(64, 18, 31, .18);
}

.enquiry-card .section-kicker {
  color: #ffc561;
}

.enquiry-card h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 26px;
}

.enquiry-card > p {
  color: rgba(255, 255, 255, .64);
  font-size: 13px;
}

.course-facts {
  margin: 25px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.course-facts li {
  padding: 14px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  color: rgba(255, 255, 255, .55);
  font-size: 11px;
}

.course-facts strong {
  color: var(--white);
  font-size: 12px;
  text-align: right;
}

.enquiry-card .button {
  width: 100%;
}

.course-actions {
  display: grid;
  gap: 10px;
}

.course-actions .button-outline-white {
  color: var(--white);
  border-color: rgba(255, 255, 255, .42);
  background: transparent;
  box-shadow: none;
}

.course-actions .button-outline-white:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .1);
}

.enquiry-card > a:last-child {
  margin-top: 15px;
  display: block;
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.lead-modal {
  width: min(720px, calc(100% - 32px));
  max-height: min(90dvh, 860px);
  padding: 0;
  border: 0;
  border-radius: 24px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 30px 90px rgba(50, 15, 25, .28);
  overflow: auto;
}

.lead-modal::backdrop {
  background: rgba(31, 15, 20, .7);
  backdrop-filter: blur(7px);
}

.lead-modal-shell {
  padding: 34px;
}

.lead-modal-head {
  margin-bottom: 26px;
  padding-bottom: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.lead-modal-head h2 {
  margin: 4px 0 7px;
  font-size: clamp(25px, 4vw, 34px);
}

.lead-modal-head p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.lead-modal-close {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  font-size: 22px;
  cursor: pointer;
}

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

.lead-field {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.lead-field.span-2 {
  grid-column: 1 / -1;
}

.lead-field label {
  color: #4d3f44;
  font-size: 12px;
  font-weight: 800;
}

.lead-field input,
.lead-field select,
.lead-field textarea {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #dfd2d5;
  border-radius: 11px;
  color: var(--ink);
  background: #fffdfc;
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.lead-field textarea {
  min-height: 92px;
  resize: vertical;
}

.lead-field input:focus,
.lead-field select:focus,
.lead-field textarea:focus {
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px rgba(183, 25, 53, .1);
}

.lead-form-footer {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.lead-form-footer p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.lead-form-status {
  margin-top: 14px;
  color: var(--crimson-dark);
  font-size: 12px;
  font-weight: 700;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.related-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.related-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.related-card div {
  padding: 20px;
}

.related-card span {
  display: block;
  margin-bottom: 7px;
  color: var(--crimson);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.related-card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
}

.mobile-menu a.is-active {
  color: var(--crimson);
}

@media (max-width: 1100px) {
  .desktop-nav { gap: 20px; }
  .desktop-nav a { font-size: 13px; }
  .header-cta { display: none; }
  .hero-grid { gap: 45px; }
  .hero-visual { min-height: 530px; }
  .hero-image-wrap { height: 500px; }
  .hero-mini-image { left: -20px; width: 185px; height: 145px; }
  .about-grid { gap: 70px; }
  .about-image-main { width: 88%; }
  .value-card { padding: 30px 22px; }
  .program-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-chip { right: -10px; }
  .testimonials-shell { padding: 65px 54px; gap: 55px; }
  .footer-main { gap: 38px; }
}

@media (max-width: 880px) {
  .desktop-nav { display: none; }
  .header-inner { height: 76px; }
  .menu-toggle {
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
    cursor: pointer;
  }
  .menu-toggle span {
    width: 19px;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
    transition: transform .25s ease, opacity .25s ease;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    inset: 76px 0 auto;
    height: calc(100dvh - 76px);
    display: block;
    padding: 26px 24px;
    border-top: 1px solid var(--line);
    background: #fffcf9;
    backdrop-filter: blur(18px);
    transform: translateX(102%);
    transition: transform .3s cubic-bezier(.2, .75, .3, 1);
  }
  .mobile-menu.is-open { transform: none; }
  .mobile-menu nav { display: flex; flex-direction: column; }
  .mobile-menu nav > a:not(.button) { padding: 14px 4px; border-bottom: 1px solid var(--line); font-family: "Manrope", Arial, sans-serif; font-size: 20px; font-weight: 700; }
  .mobile-menu .button { margin-top: 24px; }
  .hero { min-height: 0; padding: 126px 0 70px; }
  .hero-grid, .about-grid, .why-grid, .faq-grid { grid-template-columns: 1fr; }
  .hero h1 { max-width: 760px; }
  .hero-copy > p { max-width: 680px; }
  .hero-visual { width: min(100%, 630px); min-height: 600px; margin-inline: auto; }
  .hero-image-wrap { width: 92%; height: 560px; }
  .hero-mini-image { left: 0; }
  .about-grid { gap: 70px; }
  .about-visual { width: min(100%, 620px); margin-inline: auto; }
  .about-copy { max-width: 680px; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .split-heading { grid-template-columns: 1fr; gap: 15px; }
  .split-heading > p { max-width: 650px; }
  .why-grid { gap: 60px; }
  .why-copy { max-width: 680px; }
  .why-visual { width: min(100%, 650px); margin-inline: auto; }
  .testimonials-shell { min-height: 0; grid-template-columns: 1fr; }
  .testimonial-intro { max-width: 600px; }
  .testimonial-stage { min-height: 310px; }
  .client-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-panel { grid-template-columns: 1fr; gap: 35px; }
  .cta-actions { flex-direction: row; align-items: center; flex-wrap: wrap; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-wide { grid-column: span 1; }
  .faq-heading { position: static; max-width: 680px; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .brand img { width: 140px; }
  .section { padding: 78px 0; }
  .hero { padding: 115px 0 55px; }
  .hero h1 { font-size: clamp(42px, 12.5vw, 59px); }
  .hero-copy > p { font-size: 17px; }
  .hero-actions { align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-proof { gap: 10px; }
  .hero-proof strong { font-size: 17px; }
  .hero-proof span { max-width: 80px; line-height: 1.35; }
  .hero-visual { min-height: 470px; margin-top: 10px; }
  .hero-image-wrap { width: calc(100% - 12px); height: 430px; border-radius: 27px 27px 66px 27px; }
  .hero-mini-image { width: 145px; height: 115px; bottom: -5px; }
  .hero-floating-card { left: 18px; right: 18px; bottom: 18px; padding: 12px; }
  .hero-floating-card strong { font-size: 12px; }
  .hero-dots { right: 0; }
  .principle-row { min-height: 70px; justify-content: space-between; gap: 8px; }
  .principle-row span { font-size: 9px; }
  .principle-row i { width: 3px; height: 3px; }
  .section h2 { font-size: clamp(33px, 9.5vw, 44px); }
  .about-visual { min-height: 460px; }
  .about-image-main { width: 92%; height: 420px; }
  .about-image-small { width: 165px; height: 125px; }
  .experience-stamp { top: 27px; right: 0; width: 112px; height: 112px; }
  .experience-stamp strong { font-size: 27px; }
  .experience-stamp span { font-size: 8px; }
  .about-checks { grid-template-columns: 1fr; gap: 15px; }
  .value-grid, .program-grid { grid-template-columns: 1fr; }
  .program-category-heading { align-items: flex-start; flex-direction: column; gap: 7px; }
  .program-category-heading p { text-align: left; }
  .value-card { min-height: 280px; }
  .value-icon { margin-bottom: 38px; }
  .program-image { height: auto; aspect-ratio: 16 / 9; }
  .program-body { min-height: 190px; }
  .why-visual { min-height: 455px; }
  .why-visual > img { height: 455px; border-radius: 28px 28px 28px 72px; }
  .impact-card { left: 15px; bottom: -26px; width: 235px; }
  .impact-chip { top: 18px; right: 12px; font-size: 10px; }
  .testimonials-section { padding-top: 10px; }
  .testimonials-shell { width: 100%; padding: 58px 24px; border-radius: 0; gap: 35px; }
  .testimonial-stage { min-height: 355px; padding: 50px 25px 40px; }
  .testimonial-slide blockquote { font-size: 19px; }
  .quote-mark { right: 17px; }
  .testimonial-progress { left: 25px; right: 25px; }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .client-grid > div { height: 105px; padding: 20px; }
  .client-grid img { max-width: 105px; max-height: 50px; }
  .cta-wrap { padding-top: 0; }
  .cta-wrap .container { width: 100%; }
  .cta-panel { min-height: 410px; padding: 52px 24px; border-radius: 0; }
  .cta-actions { align-items: flex-start; flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 245px; }
  .gallery-tall { grid-row: span 1; }
  .gallery-item span, .gallery-item::after { opacity: 1; transform: none; }
  .faq-item button span { font-size: 15px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 42px 25px; }
  .footer-brand, .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { padding-block: 20px; flex-direction: column; align-items: flex-start; justify-content: center; }
  .whatsapp-button { width: 50px; height: 50px; right: 14px; bottom: 14px; }
  .lightbox { width: calc(100% - 16px); height: calc(100% - 24px); padding: 60px 15px 32px; border-radius: 18px; }
  .lightbox-nav { top: auto; bottom: 12px; transform: none; }
  .lightbox-prev { left: 15px; }
  .lightbox-next { right: 15px; }
  .lightbox figcaption { padding-inline: 50px; }
}

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

@media (max-width: 880px) {
  .page-hero { padding-top: 126px; }
  .page-hero-grid, .content-split, .content-split.reverse { grid-template-columns: 1fr; }
  .page-hero-copy { max-width: 720px; }
  .page-hero-media { width: min(100%, 680px); min-height: 500px; }
  .page-hero-media > img { height: 500px; }
  .page-hero-media.contain-media > img { height: 420px; }
  .content-split { gap: 60px; }
  .content-image { width: min(100%, 680px); }
  .metric-row { grid-template-columns: repeat(2, 1fr); }
  .metric-item:nth-child(2) { border-right: 0; }
  .metric-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, .1); }
  .mission-grid, .delivery-grid { grid-template-columns: repeat(2, 1fr); }
  .delivery-card:last-child { grid-column: 1 / -1; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .programme-process { grid-template-columns: repeat(2, 1fr); }
  .course-toolbar { align-items: stretch; flex-direction: column; }
  .course-search { width: 100%; }
  .course-filter { justify-content: flex-start; }
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }
  .course-detail-layout { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
  .enquiry-card { max-width: 650px; }
  .gallery-page-grid .gallery-item:nth-child(1), .gallery-page-grid .gallery-item:nth-child(7) { grid-column: span 1; }
}

@media (max-width: 620px) {
  .page-hero { min-height: 0; padding: 116px 0 68px; }
  .page-hero h1 { font-size: clamp(42px, 12vw, 56px); }
  .page-lead { font-size: 17px; }
  .page-hero-actions .button { width: 100%; }
  .page-hero-media { min-height: 365px; }
  .page-hero-media > img { height: 365px; border-radius: 25px 25px 62px 25px; }
  .page-hero-media.contain-media { min-height: 365px; padding: 20px; }
  .page-hero-media.contain-media > img { height: 325px; }
  .page-hero-badge { left: 14px; bottom: -22px; padding: 15px 17px; }
  .page-section { padding: 76px 0; }
  .page-section h2 { font-size: clamp(32px, 9.5vw, 43px); }
  .content-image > img { min-height: 380px; }
  .content-image.image-contain { min-height: 390px; padding: 20px; }
  .metric-row { grid-template-columns: repeat(2, 1fr); }
  .metric-item { min-height: 135px; padding: 25px 17px; }
  .metric-item strong { font-size: 23px; }
  .metric-item span { font-size: 9px; }
  .mission-grid, .delivery-grid, .benefit-grid, .course-category-grid, .method-grid, .reviews-grid { grid-template-columns: 1fr; }
  .delivery-card:last-child { grid-column: auto; }
  .mission-card, .delivery-card { min-height: 290px; }
  .mission-card > span, .delivery-card > span { margin-bottom: 38px; }
  .timeline { grid-template-columns: 1fr; }
  .timeline-item { padding: 15px 0 15px 35px; }
  .timeline-item::before { top: 19px; }
  .programme-process { grid-template-columns: 1fr; }
  .process-step { min-height: 220px; }
  .course-toolbar { padding: 15px; }
  .course-filter { gap: 6px; }
  .course-filter button { padding: 8px 11px; }
  .course-category-card { padding: 23px 20px; }
  .course-category-heading { align-items: flex-start; }
  .course-category-heading { flex-direction: column; }
  .course-category-heading > div { width: 100%; }
  .method-step { min-height: 255px; }
  .method-step > span { margin-bottom: 38px; }
  .review-card { min-height: 300px; }
  .gallery-page-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; }
  .course-meta { grid-template-columns: 1fr 1fr; }
  .outcome-grid, .related-grid { grid-template-columns: 1fr; }
  .outcome-card { min-height: 0; }
  .detail-main > section { margin-bottom: 55px; }
  .lead-modal { width: calc(100% - 18px); max-height: 94dvh; border-radius: 18px; }
  .lead-modal-shell { padding: 24px 20px; }
  .lead-modal-head { gap: 12px; }
  .lead-form-grid { grid-template-columns: 1fr; }
  .lead-field.span-2 { grid-column: auto; }
  .lead-form-footer { align-items: stretch; flex-direction: column; }
  .lead-form-footer .button { width: 100%; }
  .gallery-page-grid .gallery-item:nth-child(2), .gallery-page-grid .gallery-item:nth-child(6) { grid-row: span 1; }
  .page-cta-section { padding-bottom: 0; }
  .page-cta-section .container { width: 100%; }
  .page-cta-section .cta-panel { border-radius: 0; }
}

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