:root {
  --forest: #1f4d3a;
  --forest-deep: #083d2e;
  --forest-ink: #0e3026;
  --sage: #a7bfa8;
  --moss: #d7e4d6;
  --sand: #f4efe6;
  --paper: #fffdf8;
  --charcoal: #2b2f31;
  --stone: #606f72;
  --amber: #d9683a;
  --copper: #b5632d;
  --line: rgba(31, 77, 58, 0.16);
  --shadow: 0 18px 48px rgba(31, 77, 58, 0.12);
  --shadow-soft: 0 10px 28px rgba(31, 77, 58, 0.08);
  --font-heading: "DM Sans", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 92% 16%, rgba(217, 104, 58, 0.14), transparent 18rem),
    radial-gradient(circle at 10% 38%, rgba(167, 191, 168, 0.22), transparent 24rem),
    var(--sand);
  color: var(--forest-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.skip-link {
  position: absolute;
  left: 18px;
  top: 12px;
  z-index: 20;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--forest);
  color: white;
  padding: 10px 14px;
  transition: transform 180ms ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.section-shell {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: var(--container);
  min-height: 72px;
  margin: 14px auto 0;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(31, 77, 58, 0.12);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--forest-ink);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 36px;
  overflow: hidden;
  border-radius: 11px;
  background: var(--forest-deep);
}

.brand-mark img {
  width: 72px;
  height: 44px;
  object-fit: cover;
  object-position: center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 36px);
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--amber);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.login-link {
  color: var(--forest-ink);
  font-size: 13px;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 13px 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--forest);
  color: white;
  box-shadow: 0 10px 24px rgba(31, 77, 58, 0.2);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--forest-deep);
  box-shadow: 0 13px 28px rgba(31, 77, 58, 0.24);
}

.btn-secondary {
  border-color: rgba(31, 77, 58, 0.45);
  background: rgba(255, 253, 248, 0.8);
  color: var(--forest);
}

.btn-accent {
  background: var(--amber);
  color: white;
  box-shadow: 0 10px 24px rgba(217, 104, 58, 0.24);
}

.btn-small {
  min-height: 42px;
  padding: 12px 16px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  color: var(--forest);
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  inset: 92px 20px auto;
  z-index: 9;
  display: none;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(31, 77, 58, 0.14);
  border-radius: 22px;
  background: var(--paper);
  padding: 20px;
  box-shadow: var(--shadow);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a:not(.btn) {
  border-bottom: 1px solid var(--line);
  padding: 12px 4px;
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.76fr);
  align-items: center;
  min-height: 640px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(31, 77, 58, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(90deg, var(--paper) 0%, rgba(255, 253, 248, 0.92) 54%, rgba(244, 239, 230, 0.64) 100%),
    var(--paper);
  box-shadow: var(--shadow-soft);
}

.hero-copy {
  padding: clamp(34px, 5vw, 56px);
}

.section-kicker,
.mini-label {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1,
.section-copy h2,
.section-heading h2,
.campaign h2,
.employer-section h2,
.vtct-section h2 {
  margin: 0;
  color: var(--forest-ink);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.04;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(40px, 4.2vw, 54px);
}

.hero-copy p:not(.section-kicker) {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--charcoal);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 430px;
  padding: 28px;
}

.hero-art::before {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(217, 104, 58, 0.12);
  content: "";
  right: -90px;
  top: 72px;
}

.hero-art img {
  position: relative;
  width: min(380px, 100%);
  border-radius: 24px;
  mix-blend-mode: multiply;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: -1px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--shadow-soft);
}

.proof-strip article {
  display: flex;
  gap: 14px;
  min-height: 112px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.proof-strip article:last-child {
  border-right: 0;
}

.icon-wrap,
.value-grid span,
.pillar-list span,
.socials span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(31, 77, 58, 0.18);
  border-radius: 50%;
  background: var(--moss);
  color: var(--forest);
}

.icon-wrap svg,
.value-grid svg,
.pillar-list svg,
.socials svg {
  width: 19px;
  height: 19px;
  stroke-width: 1.8;
}

.proof-strip h2,
.value-grid h3,
.program-card h3,
.route-card h3,
.contact-card h3,
.footer-links h2 {
  margin: 0;
  color: var(--forest-ink);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
}

.proof-strip h2 {
  font-size: 15px;
}

.proof-strip p {
  margin: 5px 0 0;
  color: var(--stone);
  font-size: 13px;
  line-height: 1.5;
}

.split-section {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 44px;
  align-items: stretch;
  padding: 94px 0 70px;
}

.dark-panel {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(167, 191, 168, 0.16), transparent 24rem),
    linear-gradient(180deg, var(--forest-deep), #073427);
  color: white;
  padding: clamp(28px, 4vw, 46px);
  box-shadow: var(--shadow);
}

.dark-panel::after {
  position: absolute;
  right: -42px;
  bottom: -24px;
  width: 78%;
  height: 60%;
  opacity: 0.22;
  background:
    linear-gradient(120deg, transparent 18%, rgba(244, 239, 230, 0.7) 18% 19%, transparent 19%),
    linear-gradient(152deg, transparent 30%, rgba(244, 239, 230, 0.75) 30% 31%, transparent 31%),
    linear-gradient(68deg, transparent 46%, rgba(244, 239, 230, 0.65) 46% 47%, transparent 47%);
  content: "";
  transform: rotate(-10deg);
}

.panel-logo {
  width: 148px;
  height: 94px;
  margin: 0 0 120px;
  object-fit: cover;
  border-radius: 18px;
}

.dark-panel h2 {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin: 0;
  color: white;
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
}

.dark-panel p:not(.mini-label) {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin: 18px 0 0;
  color: rgba(255, 253, 248, 0.9);
  font-size: 17px;
}

.dark-panel .mini-label {
  position: relative;
  z-index: 1;
  color: var(--sand);
}

.pillar-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.pillar-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 253, 248, 0.94);
  font-weight: 700;
}

.pillar-list span {
  background: rgba(255, 253, 248, 0.08);
  color: var(--sand);
  border-color: rgba(255, 253, 248, 0.28);
}

.section-copy {
  align-self: center;
}

.section-copy h2,
.section-heading h2,
.campaign h2,
.employer-section h2,
.vtct-section h2 {
  font-size: clamp(34px, 4.5vw, 56px);
}

.section-copy > p:not(.section-kicker),
.section-heading > p,
.campaign p,
.employer-section p,
.vtct-section p {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--stone);
  font-size: 18px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.value-grid article {
  min-height: 176px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.88);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.value-grid h3 {
  margin-top: 18px;
  font-size: 18px;
}

.value-grid p {
  margin: 8px 0 0;
  color: var(--stone);
  font-size: 14px;
}

.campaign {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 34px;
  align-items: center;
  overflow: hidden;
  min-height: 280px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 78% 18%, rgba(217, 104, 58, 0.12), transparent 14rem),
    linear-gradient(135deg, #0a3a2c 0%, #0d4c38 70%, #073427 100%);
  padding: clamp(28px, 5vw, 54px);
  color: var(--sand);
  box-shadow: var(--shadow);
}

.campaign h2 {
  max-width: 620px;
  color: white;
}

.campaign p {
  max-width: 520px;
  color: rgba(255, 253, 248, 0.82);
}

.campaign img {
  justify-self: end;
  width: min(520px, 100%);
  border-radius: 18px;
  opacity: 0.78;
  mix-blend-mode: screen;
}

.campaign .btn {
  margin-top: 26px;
}

.courses-section,
.programmes-section,
.programmes-cards,
.employer-section,
.vtct-section {
  padding-block: 88px 0;
}

.section-heading {
  display: grid;
  justify-items: start;
  gap: 0;
  margin-bottom: 34px;
}

.compact-heading {
  margin-bottom: 24px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.filter,
.tag,
.badge,
.lot-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.filter {
  border: 1px solid rgba(31, 77, 58, 0.16);
  background: rgba(255, 253, 248, 0.75);
  color: var(--forest);
  cursor: pointer;
}

.filter.active,
.filter:hover,
.filter:focus-visible {
  background: var(--forest);
  color: white;
}

.course-table-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: var(--shadow-soft);
}

.course-table {
  width: 100%;
  border-collapse: collapse;
}

.course-table th,
.course-table td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.course-table th {
  background: rgba(215, 228, 214, 0.55);
  color: var(--forest);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.course-table td:first-child {
  color: var(--forest-ink);
  font-weight: 800;
}

.course-table tr:last-child td {
  border-bottom: 0;
}

.course-table tr.hidden {
  display: none;
}

.tag-forest {
  background: rgba(31, 77, 58, 0.1);
  color: var(--forest);
}

.tag-sage {
  background: rgba(167, 191, 168, 0.34);
  color: var(--forest);
}

.tag-moss {
  background: rgba(215, 228, 214, 0.8);
  color: var(--forest);
}

.tag-copper {
  background: rgba(217, 104, 58, 0.14);
  color: #8f3f1f;
}

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

.route-card {
  position: relative;
  overflow: hidden;
  min-height: 305px;
  border: 1px solid rgba(31, 77, 58, 0.15);
  border-radius: 18px;
  background: var(--paper);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.route-card::before {
  position: absolute;
  inset: auto 20px 20px auto;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(167, 191, 168, 0.22);
  content: "";
}

.route-card::after {
  position: absolute;
  top: 68px;
  right: 30px;
  width: 96px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  opacity: 0.42;
  transform: rotate(-35deg);
}

.route-card h3,
.route-card ul {
  position: relative;
  z-index: 1;
}

.route-card h3 {
  margin-top: 18px;
  max-width: 310px;
  font-size: 25px;
}

.route-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--charcoal);
}

.route-card li {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 9px;
  font-size: 14px;
  line-height: 1.45;
}

.route-card li::before {
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.lot-label,
.badge {
  border: 1px solid rgba(31, 77, 58, 0.14);
  background: rgba(255, 253, 248, 0.86);
  color: var(--forest);
}

.route-creative {
  color: var(--amber);
}

.route-ai {
  color: var(--forest);
  background: linear-gradient(180deg, rgba(215, 228, 214, 0.64), var(--paper));
}

.route-tech {
  color: #376f59;
}

.route-digital {
  color: var(--sage);
}

.route-logistics {
  color: var(--copper);
}

.route-leadership {
  color: var(--amber);
  background: linear-gradient(180deg, rgba(217, 104, 58, 0.1), var(--paper));
}

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

.program-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.card-art {
  position: relative;
  height: 150px;
  background: var(--moss);
}

.card-art::before,
.card-art::after {
  position: absolute;
  content: "";
}

.card-art-leaf {
  background:
    linear-gradient(150deg, rgba(255, 253, 248, 0.08), transparent),
    var(--forest);
}

.card-art-leaf::before {
  inset: 28px 60px 30px auto;
  width: 68px;
  height: 92px;
  border-left: 2px solid rgba(244, 239, 230, 0.7);
  border-radius: 50%;
  transform: rotate(-20deg);
}

.card-art-arch {
  background: linear-gradient(135deg, var(--sand), rgba(215, 228, 214, 0.95));
}

.card-art-arch::before {
  right: 72px;
  bottom: 0;
  width: 86px;
  height: 116px;
  border-radius: 60px 60px 0 0;
  background: var(--forest);
}

.card-art-arch::after {
  right: 91px;
  bottom: 0;
  width: 48px;
  height: 78px;
  border-radius: 40px 40px 0 0;
  background: var(--sand);
}

.card-art-steps {
  background:
    linear-gradient(135deg, rgba(255, 159, 28, 0.14), transparent 48%),
    var(--forest-deep);
}

.card-art-steps::before {
  right: 54px;
  bottom: 36px;
  width: 140px;
  height: 90px;
  border-right: 2px solid rgba(255, 159, 28, 0.75);
  border-bottom: 2px solid rgba(255, 159, 28, 0.75);
}

.program-card .badge,
.program-card h3,
.program-card p,
.program-card .rating,
.program-card a {
  margin-left: 22px;
  margin-right: 22px;
}

.program-card .badge {
  margin-top: 18px;
}

.badge-amber {
  background: rgba(217, 104, 58, 0.12);
  color: #8f3f1f;
}

.program-card h3 {
  margin-top: 16px;
  font-size: 23px;
}

.program-card p {
  margin-top: 10px;
  color: var(--stone);
  font-size: 14px;
}

.rating {
  color: var(--amber);
  font-weight: 800;
}

.program-card a {
  display: inline-flex;
  margin-top: 18px;
  margin-bottom: 24px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 900;
}

.program-card a::after {
  content: "->";
  margin-left: 8px;
}

.employer-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.55fr);
  gap: 42px;
  align-items: start;
}

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

.employer-benefits span {
  min-height: 76px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.78);
  padding: 18px;
  color: var(--forest);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.contact-card {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  padding: 24px;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  font-size: 26px;
}

.contact-card label {
  display: grid;
  gap: 6px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
}

.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%;
  border: 1px solid rgba(31, 77, 58, 0.18);
  border-radius: 10px;
  background: rgba(244, 239, 230, 0.52);
  padding: 12px 13px;
  color: var(--forest-ink);
  outline: none;
}

.contact-card input:focus,
.contact-card select:focus,
.contact-card textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(31, 77, 58, 0.12);
}

.form-note {
  margin: 0;
  color: var(--stone);
  font-size: 13px;
}

.form-note.success {
  border: 1px solid rgba(31, 77, 58, 0.16);
  border-radius: 12px;
  background: rgba(215, 228, 214, 0.75);
  padding: 12px;
  color: var(--forest);
  font-weight: 800;
}

.vtct-section {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.large-icon {
  width: 64px;
  height: 64px;
}

.large-icon svg {
  width: 29px;
  height: 29px;
}

.site-footer {
  width: var(--container);
  margin: 92px auto 24px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 96% 60%, rgba(167, 191, 168, 0.12), transparent 20rem),
    linear-gradient(135deg, var(--forest-deep), #063025);
  color: rgba(255, 253, 248, 0.88);
  padding: clamp(28px, 5vw, 52px);
  box-shadow: var(--shadow);
}

.brand-inverse {
  color: white;
}

.footer-brand {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.5fr);
  gap: 42px;
  align-items: start;
}

.footer-brand p {
  max-width: 350px;
  margin: 18px 0 0;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.socials span {
  background: transparent;
  color: var(--sand);
  border-color: rgba(255, 253, 248, 0.28);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.footer-links div {
  display: grid;
  gap: 10px;
}

.footer-links h2 {
  color: white;
  font-size: 16px;
}

.footer-links a {
  color: rgba(255, 253, 248, 0.78);
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 253, 248, 0.16);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

@media (max-width: 1040px) {
  :root {
    --container: min(920px, calc(100vw - 32px));
  }

  .desktop-nav,
  .login-link {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero,
  .split-section,
  .campaign,
  .employer-section,
  .footer-brand {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-art {
    min-height: 380px;
    padding-top: 0;
  }

  .proof-strip,
  .route-board,
  .program-card-grid,
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-strip article:nth-child(2) {
    border-right: 0;
  }

  .proof-strip article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  :root {
    --container: calc(100vw - 24px);
  }

  .site-header {
    top: 8px;
    min-height: 64px;
    margin-top: 8px;
    border-radius: 15px;
  }

  .brand {
    font-size: 18px;
  }

  .brand-mark {
    width: 38px;
    height: 32px;
  }

  .header-actions .btn {
    display: none;
  }

  .hero-copy {
    padding: 30px 22px;
  }

  .hero h1 {
    font-size: clamp(36px, 12vw, 48px);
  }

  .hero-copy p:not(.section-kicker),
  .section-copy > p:not(.section-kicker),
  .section-heading > p,
  .campaign p,
  .employer-section p,
  .vtct-section p {
    font-size: 16px;
  }

  .hero-art {
    min-height: 280px;
    padding: 0 18px 24px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .proof-strip,
  .route-board,
  .program-card-grid,
  .footer-links,
  .value-grid,
  .employer-benefits {
    grid-template-columns: 1fr;
  }

  .proof-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip article:last-child {
    border-bottom: 0;
  }

  .split-section,
  .courses-section,
  .programmes-section,
  .programmes-cards,
  .employer-section,
  .vtct-section {
    padding-top: 64px;
  }

  .dark-panel {
    min-height: 520px;
  }

  .panel-logo {
    margin-bottom: 68px;
  }

  .campaign img {
    justify-self: start;
  }

  .course-table,
  .course-table thead,
  .course-table tbody,
  .course-table tr,
  .course-table th,
  .course-table td {
    display: block;
  }

  .course-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .course-table tr {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .course-table td {
    border: 0;
    padding: 6px 0;
  }

  .course-table td::before {
    display: block;
    color: var(--stone);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .course-table td:nth-child(1)::before {
    content: "Course";
  }

  .course-table td:nth-child(2)::before {
    content: "Area";
  }

  .course-table td:nth-child(3)::before {
    content: "Level / Type";
  }

  .course-table td:nth-child(4)::before {
    content: "Best for";
  }

  .vtct-section {
    grid-template-columns: 1fr;
  }

  .site-footer {
    margin-top: 64px;
  }

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

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