:root {
  --navy: #061a3a;
  --navy-2: #0a2858;
  --ink: #07111f;
  --text: #1c2b3f;
  --muted: #5f6f84;
  --line: #dce5ef;
  --paper: #ffffff;
  --mist: #f4f8fb;
  --cyan: #03a8d8;
  --cyan-soft: #d9f4f8;
  --royal: #2359d7;
  --gold: #c99314;
  --green-soft: #e7f4ee;
  --shadow: 0 22px 70px rgba(6, 26, 58, 0.13);
  --max: 1180px;
  --font-editorial: "Playfair Display", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 20px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: 6px;
}

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

.site-header-wrapper {
  position: fixed;
  z-index: 900;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: none;
  transition: box-shadow 220ms ease;
}

.site-header-wrapper.has-scrolled {
  box-shadow: 0 12px 36px rgba(6, 26, 58, 0.12);
}

.site-header {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(220, 229, 239, 0.72);
  backdrop-filter: blur(18px);
  transition: padding 220ms ease;
}

.site-header.has-scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* ── Announcement Bar ── */
.announcement-bar {
  position: relative;
  z-index: 1;
  background: #050e1a; /* Sophisticated deep dark background */
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-inline: 20px;
}

.announcement-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 350ms ease, transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.announcement-container.fade-out {
  opacity: 0;
  transform: translateY(-4px); /* Calm vertical exit movement */
}

.announcement-text {
  color: #f4f8fb;
}

.announcement-subtext {
  color: rgba(244, 248, 251, 0.65);
  text-transform: none; /* Subtext preserves normal sentence case */
  font-weight: 500;
}

.announcement-cta {
  color: var(--gold);
  font-weight: 700;
  margin-left: 10px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, color 180ms ease;
  white-space: nowrap;
}

.announcement-cta:hover {
  border-bottom-color: var(--gold);
  color: #fce07e;
}

@media (max-width: 768px) {
  .announcement-subtext {
    display: none !important; /* Hide subtext on mobile to maintain single-line layout stability */
  }
  .announcement-bar {
    font-size: 0.72rem;
    height: 34px;
  }
  .primary-nav {
    top: 106px;
  }
}

.brand {
  display: block;
  width: 238px;
  min-width: 180px;
}

.brand img {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.primary-nav > a,
.header-action,
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 11px;
  border-radius: 8px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.primary-nav > a:hover,
.primary-nav > a.is-active {
  background: var(--cyan-soft);
  color: var(--navy);
}

.nav-dropdown-trigger {
  background: none;
  border: none;
  gap: 5px;
  cursor: pointer;
}

.nav-dropdown-trigger:hover,
.nav-dropdown.is-open .nav-dropdown-trigger {
  background: var(--cyan-soft);
  color: var(--navy);
}

.nav-dropdown-trigger.has-active-child {
  background: var(--cyan-soft);
  color: var(--navy);
  position: relative;
}

.nav-dropdown-trigger.has-active-child::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: var(--cyan);
  border-radius: 1px;
}

.dropdown-chevron {
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.nav-dropdown.is-open .dropdown-chevron {
  transform: rotate(180deg);
}

/* ── Dropdown container ── */
.nav-dropdown {
  position: relative;
}

/* ── Dropdown menu panel ── */
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 280px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 2px;
  box-shadow:
    0 20px 50px rgba(6, 26, 58, 0.14),
    0 8px 20px rgba(6, 26, 58, 0.06);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 220ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 220ms cubic-bezier(0.4, 0, 0.2, 1),
    visibility 220ms;
  z-index: 950;
}

/* Subtle top notch arrow */
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: white;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: 2px 0 0 0;
}

/* Invisible bridge to prevent hover gap */
.nav-dropdown-menu::after {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* ── Menu items ── */
.nav-dropdown-menu a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  border-radius: 8px;
  transition: background 160ms ease;
  text-decoration: none;
  color: inherit;
}

.nav-dropdown-menu a:hover {
  background: var(--mist);
}

.nav-dropdown-menu a.is-active {
  background: var(--cyan-soft);
}

.dropdown-item-title {
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--navy);
  line-height: 1.3;
}

.dropdown-item-desc {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4;
}

.header-action {
  justify-content: center;
  color: white;
  background: var(--navy);
  padding-inline: 18px;
}

.header-action:hover {
  background: var(--royal);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
}

.page[hidden] {
  display: none;
}

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

.hero {
  position: relative;
  min-height: 86svh;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
  padding: 166px 0 72px;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 13, 27, 0.62);
  z-index: -1;
}

.hero-content {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
  color: white;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.06;
}

.hero h1,
.page-hero h1 {
  color: white;
}

.hero h1 {
  font-size: inherit;
  max-width: 100%;
}

.hero-copy {
  margin: 20px 0 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.24rem;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--cyan);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(3, 168, 216, 0.28);
}

.btn.primary:hover {
  background: #2fc2e8;
}

.btn.secondary {
  color: white;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.38);
}

.btn.btn-whatsapp {
  color: white;
  background: #25d366;
  border-color: #20ba5a;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
  font-weight: 700;
  text-decoration: none;
}

.btn.btn-whatsapp:hover {
  background: #20ba5a;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

.btn.btn-whatsapp svg {
  margin-right: 4px;
}

.btn.tertiary {
  color: var(--navy);
  background: white;
  border-color: var(--line);
  box-shadow: 0 16px 34px rgba(6, 26, 58, 0.1);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 38px 0 0;
  padding: 0;
  max-width: 760px;
}

.hero-facts div {
  border-left: 2px solid var(--gold);
  padding: 5px 24px 5px 14px;
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 2px 0 0;
  color: white;
  font-weight: 900;
  font-size: 1.06rem;
}

.section {
  padding: 88px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading h2,
.section-intro h2,
.split-copy h2,
.process-list h2,
.contact-info h2 {
  font-size: 2.55rem;
}

.section-heading p:not(.eyebrow),
.section-intro p,
.split-copy p,
.process-list p,
.contact-info p {
  color: var(--muted);
  font-size: 1.04rem;
}

.two-column,
.media-split,
.admissions-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 48px;
}

.two-column.aligned,
.media-split,
.admissions-grid,
.contact-grid {
  align-items: start;
}

.institution-band {
  background: var(--mist);
  padding-top: 24px;
}

.principle-grid,
.featured-grid,
.impact-grid,
.leadership-grid,
.values-grid,
.three-grid,
.statement-grid,
.resource-grid,
.insight-grid {
  display: grid;
  gap: 16px;
}

.principle-grid {
  grid-template-columns: 1fr 1fr;
}

.principle-grid article,
.feature-item,
.course-card,
.impact-card,
.statement,
.value,
.resource-card,
.insight,
.programme-card,
.journey-step,
.charter-panel,
.executive-panel,
.form-card,
.faq-list details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(6, 26, 58, 0.06);
}

.principle-grid article,
.feature-item,
.impact-card,
.statement,
.value,
.resource-card,
.insight,
.journey-step,
.charter-panel,
.executive-panel,
.form-card,
.faq-list details {
  padding: 24px;
}

.principle-grid h3,
.feature-item h3,
.impact-card h3,
.value h3,
.resource-card h3,
.insight h3,
.journey-step h3,
.charter-panel h3,
.executive-panel h3 {
  font-size: 1.18rem;
}

.principle-grid p,
.feature-item p,
.impact-card p,
.value p,
.resource-card p,
.insight span,
.journey-step p,
.charter-panel p,
.executive-panel p {
  color: var(--muted);
}

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

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

.feature-number {
  display: inline-flex;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 12px;
}

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

.profession-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.profession-grid button,
.filter-bar button {
  min-height: 40px;
  border: 1px solid rgba(6, 26, 58, 0.18);
  background: white;
  color: var(--navy);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 800;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.profession-grid button:hover,
.profession-grid button.is-active,
.filter-bar button:hover,
.filter-bar button.is-active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
  transform: translateY(-1px);
}

.recommendation {
  background: var(--ink);
  color: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.recommendation h3 {
  color: white;
  font-size: 1.75rem;
}

.recommendation p {
  color: rgba(255, 255, 255, 0.78);
}

.recommendation ul {
  padding-left: 20px;
  margin: 18px 0 0;
}

.recommendation li + li {
  margin-top: 8px;
}

.journey-section {
  background: var(--ink);
}

.journey-section h2 {
  color: white;
}

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

.journey-step {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: none;
}

.journey-step span {
  color: var(--cyan);
  font-weight: 900;
  font-size: 0.86rem;
}

.journey-step h3 {
  color: white;
  margin-top: 12px;
}

.journey-step p {
  color: rgba(255, 255, 255, 0.72);
}

.featured-section,
.online-section,
.faq-section,
.gallery-section {
  background: var(--mist);
}

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

.course-card {
  padding: 28px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.course-card:hover,
.resource-card:hover,
.programme-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.course-card p,
.insight p {
  margin: 0 0 12px;
  color: var(--royal);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.course-card h3 {
  font-size: 1.55rem;
}

.course-card span {
  color: var(--muted);
  margin-top: 12px;
}

.course-card a,
.resource-card a {
  color: var(--navy);
  font-weight: 900;
  border-bottom: 2px solid var(--cyan);
  width: fit-content;
}

.media-split {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
}

.media-split.reversed {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
}

.image-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--line);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  margin: 11px 0;
  color: var(--text);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 2px;
  background: var(--gold);
}

.home-impact {
  background: white;
}

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

.cta-section {
  padding: 78px 0;
  background: var(--green);
  color: white;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-inner h2 {
  color: white;
  font-size: 2.35rem;
  max-width: 650px;
}

.page-hero {
  padding: 188px 0 86px;
  color: white;
  background: var(--navy);
}

.page-hero-inner {
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

.page-hero h1 {
  font-size: 3.5rem;
}

.page-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
}

.programme-hero,
.resources-hero {
  background: #0b3039;
}

.academy-hero,
.gallery-hero {
  background: #102b3d;
}

.executive-hero,
.admissions-hero {
  background: #17202a;
}

.corporate-hero,
.contact-hero {
  background: #103d3a;
}

.statement-grid {
  grid-template-columns: 1fr 1fr;
}

.statement {
  background: var(--navy);
}

.statement h2,
.statement p {
  color: white;
}

.values-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 18px;
}

.programme-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 22px;
  margin-bottom: 30px;
}

.programme-toolbar > div {
  flex: 1 1 500px;
}

.programme-toolbar h2 {
  font-size: 2.3rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

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

.programme-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.programme-card header {
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  margin-bottom: 18px;
}

.programme-card .tag {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--royal);
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.programme-card h3 {
  font-size: 1.55rem;
}

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

.programme-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 0 14px;
}

.programme-meta div {
  background: var(--mist);
  border-radius: 8px;
  padding: 10px;
}

.programme-meta dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.programme-meta dd {
  margin: 2px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.programme-meta div.highlight-fee {
  background: var(--cyan-soft);
  border: 1px solid rgba(3, 168, 216, 0.25);
}

.programme-meta div.highlight-fee dt {
  color: var(--navy-2);
}

.programme-meta div.highlight-fee dd {
  color: var(--royal);
}

.programme-card details {
  border-top: 1px solid var(--line);
  margin-top: 12px;
  padding-top: 12px;
}

.programme-card summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--navy);
}

.programme-card ul {
  padding-left: 18px;
  color: var(--muted);
}

.programme-actions {
  margin-top: auto;
  padding-top: 18px;
}

.programme-actions button {
  border: 0;
}

.spec-list {
  padding-top: 4px;
}

.spec-list p {
  color: var(--text);
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

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

.executive-panel {
  background: var(--ink);
  color: white;
}

.executive-panel h3 {
  color: white;
}

.executive-panel .check-list li {
  color: rgba(255, 255, 255, 0.8);
}

.request-section,
.contact-section {
  background: var(--mist);
}

.form-card {
  display: grid;
  gap: 14px;
}

/* ── Application Card ── */
.application-card {
  background: var(--navy);
  color: white;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.application-card h3 {
  font-family: var(--font-editorial);
  font-size: 1.8rem;
  margin: 0;
  color: white;
  line-height: 1.2;
}

.application-card .sub-term {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan);
  font-weight: 800;
  margin-top: -8px;
  display: block;
}

.brief-fees {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fee-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

@media (min-width: 480px) {
  .fee-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.fee-row span {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.fee-row strong {
  font-size: 0.95rem;
  color: white;
}

.fee-row small {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: normal;
}

.bank-details-box {
  background: rgba(201, 147, 20, 0.06);
  border: 1px dashed rgba(201, 147, 20, 0.3);
  border-radius: 8px;
  padding: 18px;
}

.bank-details-box h4 {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.bank-details-box p {
  margin: 4px 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
}

.bank-details-box strong {
  color: white;
}

.app-cta-btn {
  text-align: center;
  font-weight: 700;
  padding: 14px 20px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--cyan);
  color: var(--ink);
  border-radius: 8px;
  text-transform: none;
  display: inline-block;
}

.app-cta-btn:hover {
  background: white;
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(3, 168, 216, 0.25);
}

.cta-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
  text-align: center;
}

.form-card label {
  display: grid;
  gap: 7px;
}

.form-card span {
  color: var(--navy);
  font-weight: 900;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: white;
}

.form-card textarea {
  min-height: 112px;
  resize: vertical;
}

.form-status {
  margin: 0;
  min-height: 1.5em;
  color: var(--royal);
  font-weight: 800;
}

.process-list ol {
  padding-left: 22px;
  color: var(--text);
  font-weight: 700;
}

.process-list li + li {
  margin-top: 10px;
}

.requirements {
  border-top: 1px solid var(--line);
  margin-top: 22px;
  padding-top: 20px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
  font-size: 1.06rem;
}

.faq-list p {
  color: var(--muted);
}

.resource-grid {
  grid-template-columns: repeat(4, 1fr);
}

.resource-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
}

.resource-card a {
  margin-top: auto;
}

.insights-section {
  background: var(--mist);
}

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

.home-gallery-showcase {
  background: var(--ink);
  color: white;
}

.home-gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: clamp(42px, 7vw, 100px);
  margin-bottom: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.home-gallery-heading h2 {
  max-width: 760px;
  margin: 12px 0 0;
  color: white;
  font-family: var(--font-editorial);
  font-size: clamp(2.5rem, 4.8vw, 4.6rem);
  font-weight: 600;
  line-height: 1.02;
}

.home-gallery-intro p {
  max-width: 460px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.7);
}

.home-gallery-showcase .btn.tertiary {
  border-color: rgba(255, 255, 255, 0.52);
  background: transparent;
  color: white;
}

.home-gallery-showcase .btn.tertiary:hover {
  border-color: var(--cyan);
  background: var(--cyan);
  color: var(--ink);
}

.home-gallery-carousel {
  min-width: 0;
}

.home-gallery-viewport {
  overflow: hidden;
}

.home-gallery-track {
  display: flex;
  gap: 12px;
  transform: translate3d(var(--home-gallery-offset, 0), 0, 0);
  transition: transform 760ms cubic-bezier(0.22, 0.72, 0.2, 1);
  will-change: transform;
}

.home-gallery-slide {
  flex: 0 0 min(78%, 880px);
  min-width: 0;
  margin: 0;
  opacity: 0.52;
  transition: opacity 420ms ease;
}

.home-gallery-slide[aria-current="true"] {
  opacity: 1;
}

.home-gallery-slide-link {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--navy);
}

.home-gallery-slide-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1), filter 300ms ease;
}

.home-gallery-slide--portrait img {
  object-position: center 32%;
}

.home-gallery-slide-link:hover img {
  transform: scale(1.025);
  filter: saturate(1.05);
}

.home-gallery-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  background: rgba(3, 9, 17, 0.86);
  color: white;
}

.home-gallery-caption small {
  color: #6bc9d9;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-gallery-caption strong {
  font-family: var(--font-editorial);
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  font-weight: 600;
  line-height: 1.15;
}

.home-gallery-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.home-gallery-position {
  display: flex;
  gap: 8px;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  font-weight: 800;
}

.home-gallery-position [data-home-gallery-current] {
  color: white;
}

.home-gallery-control-buttons {
  display: flex;
  gap: 8px;
}

.home-gallery-control-buttons button {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  background: transparent;
  color: white;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.home-gallery-control-buttons button:hover {
  border-color: var(--cyan);
  background: var(--cyan);
  color: var(--ink);
}

.home-gallery-control-buttons button span {
  display: grid;
  place-items: center;
}

.home-gallery-control-buttons button span[hidden] {
  display: none;
}

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

.gallery-feature-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
  gap: clamp(40px, 6vw, 84px);
}

.gallery-feature-copy h2,
.gallery-archive-heading h2 {
  margin: 12px 0 20px;
  font-family: var(--font-editorial);
  font-size: clamp(2.25rem, 4.2vw, 4rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--ink);
}

.gallery-feature-copy > p:not(.gallery-index) {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.02rem;
}

.gallery-index {
  margin: 0;
  color: var(--royal);
  font-size: 0.73rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-feature-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 34px 0 0;
  border-top: 1px solid var(--line);
}

.gallery-feature-facts div {
  padding: 18px 14px 0 0;
}

.gallery-feature-facts div + div {
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.gallery-feature-facts dt,
.gallery-feature-facts dd {
  margin: 0;
}

.gallery-feature-facts dt {
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-feature-facts dd {
  margin-top: 3px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.35;
}

.gallery-feature-media,
.gallery-record-media {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--ink);
  color: var(--paper);
  text-align: left;
}

.gallery-feature-media {
  aspect-ratio: 3 / 2;
}

.gallery-feature-media img,
.gallery-record-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1), filter 300ms ease;
}

.gallery-feature-media:hover img,
.gallery-record-media:hover img {
  transform: scale(1.025);
  filter: saturate(1.05);
}

.gallery-expand {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: rgba(5, 14, 26, 0.86);
  color: white;
  transition: background 180ms ease, transform 180ms ease;
}

.gallery-feature-media:hover .gallery-expand,
.gallery-record-media:hover .gallery-expand {
  background: var(--royal);
  transform: translateY(-2px);
}

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

.gallery-archive-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 52px;
  padding-top: 24px;
  border-top: 2px solid var(--ink);
}

.gallery-archive-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.gallery-archive-heading > p {
  max-width: 430px;
  margin: 0 0 8px;
  color: var(--muted);
}

.training-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 54px 14px;
}

.gallery-record {
  min-width: 0;
  margin: 0;
}

.gallery-record--leadership {
  grid-column: span 4;
}

.gallery-record--session {
  grid-column: span 8;
}

.gallery-record--partner,
.gallery-record--completion {
  grid-column: span 5;
}

.gallery-record--cohort,
.gallery-record--celebration {
  grid-column: span 7;
}

.gallery-record--leadership .gallery-record-media {
  aspect-ratio: 4 / 5;
}

.gallery-record--session .gallery-record-media {
  aspect-ratio: 8 / 5;
}

.gallery-record--partner .gallery-record-media,
.gallery-record--completion .gallery-record-media {
  aspect-ratio: 3 / 2;
}

.gallery-record--cohort .gallery-record-media,
.gallery-record--celebration .gallery-record-media {
  aspect-ratio: 2 / 1;
}

.gallery-record figcaption {
  padding: 19px 0 0;
  border-top: 1px solid var(--line-strong, #c7d3df);
}

.gallery-record figcaption span {
  display: block;
  margin-bottom: 6px;
  color: var(--royal);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-record figcaption strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-editorial);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 600;
  line-height: 1.14;
}

.gallery-record figcaption p {
  max-width: 620px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.91rem;
}

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

.gallery-lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: rgba(3, 9, 17, 0.98);
  color: white;
}

.gallery-lightbox::backdrop {
  background: rgba(3, 9, 17, 0.98);
}

.gallery-lightbox-shell {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  grid-template-rows: 70px minmax(0, 1fr);
  width: 100%;
  height: 100%;
}

.gallery-lightbox-toolbar {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.gallery-lightbox-count {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 800;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  display: grid;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  color: white;
}

.gallery-lightbox-close {
  width: 44px;
  height: 44px;
}

.gallery-lightbox-nav {
  align-self: center;
  width: 54px;
  height: 64px;
  justify-self: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: border-color 180ms ease, background 180ms ease;
}

.gallery-lightbox-nav:hover,
.gallery-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.gallery-lightbox-prev {
  grid-column: 1;
  grid-row: 2;
}

.gallery-lightbox-next {
  grid-column: 3;
  grid-row: 2;
}

.gallery-lightbox-figure {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 330px);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  min-width: 0;
  max-width: 1380px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 32px;
}

.gallery-lightbox-figure img {
  width: 100%;
  max-height: calc(100dvh - 134px);
  object-fit: contain;
}

.gallery-lightbox-figure figcaption {
  padding: 6px 0 6px clamp(24px, 3vw, 44px);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.gallery-lightbox-figure figcaption span {
  color: #6bc9d9;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-lightbox-figure h2 {
  margin: 14px 0 16px;
  color: white;
  font-family: var(--font-editorial);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 600;
  line-height: 1.05;
}

.gallery-lightbox-figure p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 860px) {
  .home-gallery-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 36px;
  }

  .home-gallery-intro p {
    max-width: 650px;
  }

  .home-gallery-slide {
    flex-basis: 86%;
  }

  .home-gallery-slide-link {
    aspect-ratio: 3 / 2;
  }

  .gallery-feature-layout,
  .gallery-archive-heading {
    grid-template-columns: 1fr;
  }

  .gallery-feature-layout {
    gap: 42px;
  }

  .gallery-feature-copy > p:not(.gallery-index) {
    max-width: 680px;
  }

  .gallery-archive-heading {
    gap: 20px;
    margin-bottom: 38px;
  }

  .gallery-archive-heading > p {
    max-width: 640px;
  }

  .training-gallery-grid {
    gap: 42px 12px;
  }

  .gallery-record--leadership,
  .gallery-record--session,
  .gallery-record--partner,
  .gallery-record--cohort,
  .gallery-record--celebration,
  .gallery-record--completion {
    grid-column: span 6;
  }

  .gallery-lightbox-shell {
    grid-template-columns: 58px minmax(0, 1fr) 58px;
  }

  .gallery-lightbox-figure {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 20px;
    padding: 20px 8px;
  }

  .gallery-lightbox-figure img {
    max-height: 60dvh;
  }

  .gallery-lightbox-figure figcaption {
    padding: 20px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .gallery-lightbox-figure h2 {
    margin: 9px 0 8px;
  }
}

@media (max-width: 560px) {
  .home-gallery-track {
    gap: 8px;
  }

  .home-gallery-slide {
    flex-basis: 91%;
  }

  .home-gallery-slide-link {
    aspect-ratio: 4 / 3;
  }

  .home-gallery-caption {
    padding: 14px 16px;
  }

  .home-gallery-caption strong {
    font-size: 1.2rem;
  }

  .home-gallery-controls {
    margin-top: 14px;
    padding-top: 14px;
  }

  .home-gallery-control-buttons button {
    width: 42px;
    height: 42px;
  }

  .gallery-feature-facts {
    margin-top: 28px;
  }

  .gallery-feature-facts div {
    padding-right: 8px;
  }

  .gallery-feature-facts div + div {
    padding-left: 8px;
  }

  .gallery-feature-media {
    aspect-ratio: 4 / 3;
  }

  .training-gallery-grid {
    row-gap: 38px;
    column-gap: 0;
  }

  .gallery-record--leadership,
  .gallery-record--session,
  .gallery-record--partner,
  .gallery-record--cohort,
  .gallery-record--celebration,
  .gallery-record--completion {
    grid-column: 1 / -1;
  }

  .gallery-record--leadership .gallery-record-media,
  .gallery-record--session .gallery-record-media,
  .gallery-record--cohort .gallery-record-media,
  .gallery-record--celebration .gallery-record-media {
    aspect-ratio: 4 / 3;
  }

  .gallery-expand {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
  }

  .gallery-lightbox-shell {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    grid-template-rows: 58px minmax(0, 1fr);
  }

  .gallery-lightbox-toolbar {
    padding: 0 10px 0 16px;
  }

  .gallery-lightbox-nav {
    width: 42px;
    height: 54px;
  }

  .gallery-lightbox-figure {
    padding: 14px 4px 20px;
  }

  .gallery-lightbox-figure img {
    max-height: 50dvh;
  }

  .gallery-lightbox-figure h2 {
    font-size: 1.65rem;
  }

  .gallery-lightbox-figure p {
    font-size: 0.86rem;
  }
}

.map-panel {
  min-height: 280px;
  border-radius: 8px;
  background: var(--mist);
  border: 1px solid var(--line);
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--navy);
  margin: 22px 0;
}

.map-panel span {
  font-weight: 900;
  color: var(--royal);
}

.map-panel strong {
  font-size: 1.75rem;
}

.contact-methods {
  border-top: 1px solid var(--line);
  padding-top: 8px;
}

.site-footer {
  padding: 54px 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer-logo {
  width: 245px;
  background: white;
  border-radius: 8px;
  padding: 6px;
  margin-bottom: 14px;
}

.site-footer h2 {
  color: white;
  font-size: 1rem;
  margin-bottom: 12px;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a:hover {
  color: var(--cyan);
}

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-slow {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 900ms cubic-bezier(0.4, 0, 0.2, 1), transform 900ms cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-slow.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── Philosophy Card Component ── */
.philosophy-card {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.philosophy-card--dark {
  background: var(--ink);
}

.philosophy-card--light {
  background: var(--ink);
}

.philosophy-card-inner {
  width: min(calc(100% - 48px), 860px);
  margin-inline: auto;
  position: relative;
}

.philosophy-card-accent {
  display: block;
  width: 0;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 32px;
  transition: width 800ms cubic-bezier(0.4, 0, 0.2, 1) 200ms;
}

.philosophy-card.is-visible .philosophy-card-accent {
  width: 60px;
}

.philosophy-card blockquote {
  margin: 0;
  padding: 0;
  font-family: var(--font-editorial);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.philosophy-card--dark blockquote {
  color: white;
}

.philosophy-card--light blockquote {
  color: var(--ink);
}

.philosophy-card blockquote em {
  font-style: italic;
  color: var(--cyan);
}

.philosophy-card cite {
  display: block;
  margin-top: 28px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-style: normal;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.philosophy-card--dark cite {
  color: rgba(255, 255, 255, 0.5);
}

.philosophy-card--light cite {
  color: var(--muted);
}

/* ── Hero Premium Eyebrow Glassmorphic Badge ── */
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  padding: 6px 16px;
  background: rgba(3, 168, 216, 0.09);
  border: 1px solid rgba(3, 168, 216, 0.35);
  border-radius: 0;
  color: #38bdf8;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: none;
  animation: heroLineIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) both,
             badgePulse 3s ease-in-out infinite;
}

.hero .eyebrow::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--cyan);
  border-radius: 50%;
  box-shadow: none;
}

/* ── Hero Philosophy Typography (Cinematic Rotator) ── */

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.55;
}

.hero-philosophy-rotator {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: heroLineIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.hero .hero-philosophy-statement {
  font-family: var(--font-editorial);
  font-size: 4.25rem;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.025em;
  max-width: 980px;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
  margin: 0;
}

/* ── Individual Word Reveal ── */
.hw {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  filter: blur(4px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}

.hw.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  text-shadow: 0 0 30px rgba(3, 168, 216, 0.12);
}

.hw.is-exiting {
  opacity: 0;
  transform: translateY(-12px);
  filter: blur(3px);
  transition-duration: 0.35s;
}

/* ── Accent Words (Key Phrases) ── */
.hw--accent {
  font-weight: 700;
  font-style: italic;
  background: none;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hw--accent.is-visible {
  text-shadow: none;
  filter: blur(0) drop-shadow(0 0 18px rgba(3, 168, 216, 0.3));
}

/* ── Progress Dots ── */
.hero-philosophy-dots {
  display: flex;
  gap: 8px;
  margin-top: 28px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.5s ease, box-shadow 0.5s ease, transform 0.35s ease;
}

.hero-dot.is-active {
  background: var(--cyan);
  box-shadow: none;
  transform: scale(1.25);
}

/* ── Hero staggered entrance for copy + buttons ── */
.hero .hero-copy {
  animation: heroLineIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.9s both;
}

.hero .action-row {
  animation: heroLineIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1.1s both;
}

/* ── Eyebrow Pulse Animation ── */
@keyframes badgePulse {
  0%, 100% {
    border-color: rgba(3, 168, 216, 0.35);
    box-shadow: none;
  }
  50% {
    border-color: rgba(3, 168, 216, 0.6);
    box-shadow: none;
  }
}

/* ── Entrance keyframes ── */
@keyframes heroLineIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Programme Philosophy Blockquote ── */
.programme-philosophy {
  font-family: var(--font-editorial);
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--navy);
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  margin: 0 0 16px;
}

/* ── Manifesto Page ── */
.manifesto-hero {
  background: var(--navy);
}

.manifesto-section {
  padding: 0;
  background: var(--paper);
}

.manifesto-flow {
  max-width: 720px;
  margin-inline: auto;
  padding: 80px 24px;
}

.manifesto-belief {
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.manifesto-belief:last-child {
  border-bottom: none;
}

.manifesto-number {
  display: block;
  font-family: var(--font-editorial);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.manifesto-statement {
  font-family: var(--font-editorial);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.22;
  color: var(--ink);
  margin: 0;
}

.manifesto-statement .manifesto-em {
  display: block;
  margin-top: 8px;
  color: var(--cyan);
  font-style: italic;
}

.manifesto-opening,
.manifesto-closing {
  text-align: center;
  padding: 80px 0 40px;
}

.manifesto-closing {
  padding: 40px 0 80px;
}

.manifesto-opening h2,
.manifesto-closing h2 {
  font-family: var(--font-editorial);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
}

.manifesto-opening p,
.manifesto-closing p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin-inline: auto;
}

/* ── Footer Philosophy ── */
.footer-philosophy {
  font-family: var(--font-editorial);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  border-left: 2px solid var(--gold);
  padding-left: 14px;
  margin-top: 8px;
  min-height: 3.5em;
  transition: opacity 400ms ease;
}

/* ── Flexible Learning Section ── */
.flexible-section {
  background: var(--ink);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.flexible-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: transparent;
  pointer-events: none;
}

.flexible-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}

.flexible-heading h2 {
  font-family: var(--font-editorial);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.1;
  color: white;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

.flexible-heading .eyebrow {
  color: var(--gold);
}

.flexible-tagline {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cyan);
  margin: 0 0 14px;
}

.flexible-intro {
  font-size: 1.06rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  max-width: 640px;
  margin-inline: auto;
}

/* ── Delivery Mode Cards ── */
.delivery-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.delivery-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  padding: 32px 28px;
  backdrop-filter: blur(12px);
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 280ms ease, border-color 280ms ease;
}

.delivery-card:hover {
  transform: translateY(-4px);
  border-color: rgba(3, 168, 216, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.delivery-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(3, 168, 216, 0.12);
  color: var(--cyan);
  margin-bottom: 18px;
}

.delivery-card h3 {
  color: white;
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.delivery-card > p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
  margin: 0 0 18px;
}

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

.delivery-features li {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  padding: 7px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.delivery-features li:first-child {
  border-top: none;
}

.delivery-tag {
  display: inline-block;
  background: rgba(3, 168, 216, 0.15);
  color: var(--cyan);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

/* ── Duration Cards ── */
.duration-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.duration-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  padding: 28px 24px;
  text-align: center;
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1), border-color 280ms ease;
}

.duration-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 147, 20, 0.4);
}

.duration-value {
  display: block;
  font-family: var(--font-editorial);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.duration-card h3 {
  color: white;
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.duration-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* ── Programme Facts Bar ── */
.programme-facts-bar {
  background: var(--navy);
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 16px;
}

.programme-facts-bar dl {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin: 0;
  padding: 0;
}

.programme-facts-bar div {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  padding: 4px 0;
}

.programme-facts-bar dt {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.programme-facts-bar dd {
  color: white;
  font-weight: 800;
  font-size: 0.86rem;
  margin: 0;
  white-space: nowrap;
}

/* ── Schedule Options (Admissions) ── */
.admissions-schedule-section {
  background: var(--green-soft);
}

.schedule-option-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.schedule-option {
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(6, 26, 58, 0.06);
  transition: transform 240ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 240ms ease, border-color 240ms ease;
}

.schedule-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(6, 26, 58, 0.12);
  border-color: var(--cyan);
}

.schedule-option h3 {
  font-size: 1.04rem;
  margin-bottom: 6px;
}

.schedule-option p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ── Online Parity Section ── */
.online-parity-section {
  background: var(--navy);
  padding: 88px 0;
}

.online-parity-section .section-heading h2 {
  color: white;
  max-width: 640px;
}

.online-parity-section .section-heading .eyebrow {
  color: var(--gold);
}

.online-parity {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  padding: 32px;
  max-width: 680px;
}

.online-parity > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.02rem;
  margin: 0 0 20px;
}

.online-parity .check-list li {
  color: rgba(255, 255, 255, 0.84);
}

.online-parity .check-list li::before {
  background: var(--cyan);
}

.online-tagline {
  margin-top: 16px;
  font-size: 1.08rem;
  color: var(--cyan);
}

/* ── Founder Section ── */
.founder-section {
  background: var(--navy);
  color: white;
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 992px) {
  .founder-grid {
    grid-template-columns: 360px 1fr;
    gap: 64px;
  }
}

.founder-media-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.founder-image-wrapper {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  aspect-ratio: 4 / 5;
}

.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.founder-image-wrapper:hover .founder-photo {
  transform: scale(1.03);
}

.founder-badges-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.badge-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 6px;
}

.founder-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge-item {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  transition: all 0.3s ease;
}

.badge-item:hover {
  background: rgba(3, 168, 216, 0.08);
  border-color: var(--cyan);
  color: white;
}

.founder-content-col {
  display: flex;
  flex-direction: column;
}

.founder-name {
  font-family: var(--font-editorial);
  font-size: 2.8rem;
  margin: 0 0 4px;
  color: white;
  line-height: 1.2;
}

.founder-title {
  font-size: 1.15rem;
  color: var(--cyan);
  font-weight: 700;
  margin: 0 0 6px;
}

.founder-roles {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 32px;
  letter-spacing: 0.03em;
}

.founder-message {
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.founder-message-highlight {
  font-family: var(--font-editorial);
  font-size: 1.6rem;
  line-height: 1.4;
  color: var(--cyan);
  border-left: 3px solid var(--cyan);
  padding-left: 20px;
  margin: 16px 0;
  font-weight: 600;
}

.founder-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .founder-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.founder-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 24px;
  transition: all 0.3s ease;
}

.founder-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.founder-card h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.founder-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.founder-card li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.founder-card li strong {
  font-size: 0.92rem;
  color: white;
  font-weight: 600;
  line-height: 1.4;
}

.founder-card li span {
  font-size: 0.82rem;
  color: var(--muted);
}

.founder-expertise {
  margin-bottom: 40px;
}

.founder-expertise h3,
.founder-experience h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 20px;
  letter-spacing: 0.08em;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 8px;
}

.expertise-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.expertise-chips .chip {
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 8px 16px;
  border-radius: 2px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.expertise-chips .chip:hover {
  background: rgba(3, 168, 216, 0.06);
  border-color: rgba(3, 168, 216, 0.3);
  color: white;
  transform: translateY(-1px);
}

.founder-experience {
  margin-bottom: 48px;
}

.experience-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.experience-list::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.experience-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  position: relative;
}

.exp-bullet {
  width: 11px;
  height: 11px;
  background: var(--navy);
  border: 2px solid var(--cyan);
  border-radius: 50%;
  margin-top: 5px;
  z-index: 1;
  flex-shrink: 0;
}

.exp-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.exp-content strong {
  font-size: 0.95rem;
  color: white;
  font-weight: 600;
}

.exp-content span {
  font-size: 0.85rem;
  color: var(--muted);
}

.founder-philosophy {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0;
  padding: 48px 40px;
  margin: 32px 0 0;
}

.founder-philosophy .quote-mark {
  position: absolute;
  top: 10px;
  left: 24px;
  font-size: 6rem;
  font-family: var(--font-editorial);
  color: rgba(3, 168, 216, 0.15);
  line-height: 1;
  user-select: none;
}

.founder-philosophy p {
  position: relative;
  font-family: var(--font-editorial);
  font-size: 1.8rem;
  line-height: 1.4;
  color: white;
  margin: 0 0 24px;
  font-weight: 500;
  z-index: 1;
}

.founder-philosophy cite {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-style: normal;
}

.founder-philosophy cite strong {
  font-size: 1.05rem;
  color: white;
  font-weight: 600;
}

.founder-philosophy cite span {
  font-size: 0.85rem;
  color: var(--cyan);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}


@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .primary-nav {
    position: fixed;
    top: 108px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 14px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-height: calc(100svh - 96px);
    overflow-y: auto;
  }

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

  .primary-nav > a {
    justify-content: center;
  }

  /* ── Mobile dropdown adjustments ── */
  .nav-dropdown {
    position: static;
  }

  .nav-dropdown-trigger {
    width: 100%;
    justify-content: center;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    min-width: 0;
    border: none;
    border-radius: 8px;
    box-shadow: none;
    padding: 0 4px 4px;
    background: var(--mist);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    margin-top: 2px;
  }

  .nav-dropdown-menu::before,
  .nav-dropdown-menu::after {
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: block;
    transform: none;
  }

  .nav-dropdown-menu a {
    text-align: center;
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .header-action {
    justify-self: end;
  }

  .brand {
    width: 210px;
  }

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

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

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

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

@media (max-width: 860px) {
  .site-header {
    padding-inline: 18px;
    gap: 12px;
  }

  .brand {
    width: 174px;
    min-width: 150px;
  }

  .header-action {
    display: none;
  }

  .hero {
    min-height: 84svh;
    padding-top: 152px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 3.1rem;
  }

  .hero-copy,
  .page-hero p:not(.eyebrow) {
    font-size: 1.04rem;
  }

  .section {
    padding: 66px 0;
  }

  .section-heading h2,
  .section-intro h2,
  .split-copy h2,
  .process-list h2,
  .contact-info h2,
  .cta-inner h2 {
    font-size: 2.05rem;
  }

  .two-column,
  .media-split,
  .media-split.reversed,
  .admissions-grid,
  .contact-grid,
  .programme-toolbar {
    grid-template-columns: 1fr;
  }

  .feature-line,
  .featured-grid,
  .impact-grid,
  .three-grid,
  .insight-grid,
  .programme-grid,
  .statement-grid {
    grid-template-columns: 1fr;
  }

  .filter-bar {
    justify-content: flex-start;
  }

  .cta-inner {
    display: block;
  }

  .cta-inner .btn {
    margin-top: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .philosophy-card {
    padding: 72px 0;
  }

  .philosophy-card blockquote {
    font-size: 2rem;
  }

  .hero .hero-philosophy-statement {
    font-size: 2.35rem;
  }

  .hero-philosophy-rotator {
    min-height: 130px;
  }

  .manifesto-statement {
    font-size: 1.75rem;
  }

  .manifesto-flow {
    padding: 56px 20px;
  }

  .manifesto-belief {
    padding: 44px 0;
  }

  .delivery-cards,
  .duration-cards {
    grid-template-columns: 1fr;
  }

  .flexible-heading h2 {
    font-size: 2.4rem;
  }

  .flexible-tagline {
    font-size: 1.12rem;
  }

  .flexible-section {
    padding: 72px 0;
  }

  .schedule-option-grid {
    grid-template-columns: 1fr 1fr;
  }

  .online-parity-section {
    padding: 66px 0;
  }

  .programme-facts-bar dl {
    gap: 4px 14px;
  }
}

@media (max-width: 560px) {
  .container,
  .hero-content {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand {
    width: 148px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.45rem;
  }

  .action-row .btn,
  .form-card .btn {
    width: 100%;
  }

  .principle-grid,
  .journey-steps,
  .resource-grid,
  .values-grid,
  .programme-meta,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .programme-grid,
  .programme-card,
  .programme-meta > div {
    min-width: 0;
  }

  .programme-meta > div {
    grid-column: auto !important;
  }

  .philosophy-card {
    padding: 56px 0;
  }

  .philosophy-card blockquote {
    font-size: 1.55rem;
  }

  .hero .hero-philosophy-statement {
    font-size: 1.85rem;
  }

  .hero-philosophy-rotator {
    min-height: 100px;
  }

  .hero-canvas {
    display: none;
  }

  .manifesto-statement {
    font-size: 1.4rem;
  }

  .flexible-heading h2 {
    font-size: 2rem;
  }

  .duration-value {
    font-size: 1.75rem;
  }

  .schedule-option-grid {
    grid-template-columns: 1fr;
  }

  .programme-facts-bar dl {
    flex-direction: column;
    gap: 2px;
  }

  .programme-facts-bar div {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }

  .programme-facts-bar dd {
    overflow-wrap: anywhere;
    white-space: normal;
  }

  /* Founder Section Mobile Overrides */
  .founder-name {
    font-size: 2.2rem;
  }
  .founder-message-highlight {
    font-size: 1.35rem;
  }
  .founder-philosophy {
    padding: 32px 24px;
  }
  .founder-philosophy p {
    font-size: 1.45rem;
  }
}

/* ── WhatsApp Invite Section & Card ── */
.whatsapp-invite-section {
  background: var(--paper);
  padding: 80px 0;
}

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

.whatsapp-card {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 32px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: 0 16px 48px rgba(6, 26, 58, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.whatsapp-card-badge {
  background: rgba(37, 211, 102, 0.1);
  color: #20ba5a;
  border: 1px solid rgba(37, 211, 102, 0.3);
  padding: 6px 16px;
  border-radius: 2px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.whatsapp-card h2 {
  font-size: 2.1rem;
  color: var(--ink);
  margin: 0;
}

.whatsapp-card p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
  margin: 0 0 12px;
}

@media (max-width: 560px) {
  .whatsapp-card {
    padding: 32px 20px;
  }
  .whatsapp-card h2 {
    font-size: 1.7rem;
  }
  .whatsapp-card p {
    font-size: 1rem;
  }
}

/* --------------------------------------------------------------------------
   2026 institutional design system
   This layer replaces the earlier promotional treatment with a restrained,
   editorial system while retaining the existing component and route markup.
   -------------------------------------------------------------------------- */

:root {
  --navy: #071a2f;
  --navy-2: #12334a;
  --ink: #06111d;
  --text: #20303d;
  --muted: #61717d;
  --line: #d8dfe3;
  --line-strong: #aebac1;
  --paper: #ffffff;
  --mist: #f3f6f7;
  --cyan: #00a3c7;
  --cyan-soft: #dff3f6;
  --royal: #155c75;
  --gold: #c99a22;
  --green: #174b43;
  --green-soft: #e7f0ed;
  --shadow: 0 18px 46px rgba(6, 17, 29, 0.1);
  --max: 1220px;
  --font-editorial: "Playfair Display", Georgia, "Times New Roman", serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 180ms;
  --duration-medium: 560ms;
  --duration-slow: 820ms;
  --header-height: 106px;
}

html {
  background: var(--paper);
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  color: var(--text);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}

main {
  overflow: clip;
}

h1,
h2,
h3 {
  line-height: 1.08;
}

h1,
h2 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.container,
.hero-content {
  width: min(calc(100% - 64px), var(--max));
}

.site-header-wrapper {
  border-bottom: 1px solid rgba(6, 17, 29, 0.12);
  transform: translateY(0);
  transition: transform 360ms var(--ease-out), box-shadow var(--duration-fast) ease;
  will-change: transform;
}

.site-header-wrapper.is-hidden {
  transform: translateY(calc(-100% - 2px));
}

body.nav-open .site-header-wrapper {
  transform: translateY(0);
}

.site-header-wrapper.has-scrolled {
  box-shadow: 0 10px 30px rgba(6, 17, 29, 0.08);
}

.site-header {
  min-height: 72px;
  padding: 10px 32px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 0;
  backdrop-filter: blur(14px);
}

.site-header.has-scrolled {
  padding-top: 8px;
  padding-bottom: 8px;
}

.brand {
  width: 214px;
}

.primary-nav {
  gap: 1px;
}

.primary-nav > a,
.header-action,
.nav-dropdown-trigger {
  position: relative;
  min-height: 42px;
  padding: 9px 13px;
  border-radius: 2px;
  font-size: 0.86rem;
  letter-spacing: 0;
  transition: color var(--duration-fast) ease, background var(--duration-fast) ease;
}

.primary-nav > a::after,
.nav-dropdown-trigger::after {
  content: "";
  position: absolute;
  right: 13px;
  bottom: 5px;
  left: 13px;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease-out);
}

.primary-nav > a:hover,
.primary-nav > a.is-active,
.nav-dropdown-trigger:hover,
.nav-dropdown.is-open .nav-dropdown-trigger,
.nav-dropdown-trigger.has-active-child {
  color: var(--navy);
  background: transparent;
}

.primary-nav > a:hover::after,
.primary-nav > a.is-active::after,
.nav-dropdown-trigger:hover::after,
.nav-dropdown.is-open .nav-dropdown-trigger::after,
.nav-dropdown-trigger.has-active-child::after {
  right: 13px;
  bottom: 5px;
  left: 13px;
  width: auto;
  height: 2px;
  transform: none;
  background: var(--cyan);
  border-radius: 0;
}

.header-action {
  min-width: 92px;
  border: 1px solid var(--navy);
  color: white;
  background: var(--navy);
}

.header-action:hover {
  color: var(--navy);
  background: white;
  transform: none;
}

.announcement-bar {
  height: 34px;
  padding-inline: 24px;
  border: 0;
  background: var(--ink);
  font-size: 0.7rem;
}

.announcement-container {
  transition: opacity 300ms ease, transform 300ms var(--ease-out);
}

.announcement-cta {
  color: #e1bc54;
}

.nav-dropdown-menu {
  min-width: 300px;
  padding: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  box-shadow: 0 18px 42px rgba(6, 17, 29, 0.13);
}

.nav-dropdown-menu::before {
  border-radius: 0;
}

.nav-dropdown-menu a {
  padding: 13px 14px;
  border-radius: 0;
  border-left: 2px solid transparent;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.is-active {
  background: var(--mist);
  border-left-color: var(--cyan);
}

.nav-toggle {
  border-radius: 2px;
  background: var(--paper);
}

.eyebrow,
.hero .eyebrow {
  display: block;
  width: fit-content;
  margin: 0 0 18px;
  padding: 0 0 0 13px;
  border: 0;
  border-left: 2px solid currentColor;
  border-radius: 0;
  color: var(--cyan);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  animation: none;
}

.hero .eyebrow::before {
  display: none;
}

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

.hero {
  min-height: min(830px, 92svh);
  align-items: center;
  padding: 156px 0 68px;
  background: var(--ink);
}

.hero-media {
  object-position: center 42%;
  transform: translate3d(0, var(--hero-shift, 0px), 0) scale(1.025);
  transition: transform 80ms linear;
}

.hero-overlay {
  background: rgba(4, 13, 23, 0.62);
}

.hero-canvas {
  display: none;
}

.hero-content {
  position: relative;
  padding-right: min(34vw, 410px);
}

.hero-content::after {
  content: "RTS / AI CAPABILITY / NIGERIA";
  position: absolute;
  top: 2px;
  right: 0;
  max-width: 180px;
  padding-top: 10px;
  border-top: 2px solid var(--gold);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.5;
}

.hero-philosophy-rotator {
  min-height: 0;
  block-size: 300px;
  animation: none;
}

.hero .hero-philosophy-statement {
  max-width: 850px;
  font-size: clamp(3.35rem, 5.15vw, 5rem);
  line-height: 1.05;
  text-shadow: none;
}

.hw {
  filter: none;
  transform: translateY(14px);
  transition: opacity 480ms var(--ease-out), transform 480ms var(--ease-out);
  will-change: opacity, transform;
}

.hw.is-visible {
  text-shadow: none;
}

.hw.is-exiting {
  filter: none;
}

.hw--accent {
  color: #62c8db;
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: currentColor;
  background-clip: initial;
}

.hw--accent.is-visible {
  filter: none;
}

.hero-philosophy-dots {
  gap: 10px;
  margin-top: 24px;
}

.hero-dot {
  width: 22px;
  height: 2px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.28);
}

.hero-dot.is-active {
  background: var(--gold);
  box-shadow: none;
  transform: none;
}

.hero .hero-copy,
.hero .action-row {
  animation: none;
}

.hero-copy {
  max-width: 650px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.action-row {
  gap: 10px;
  margin-top: 26px;
}

.btn {
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 2px;
  transition: color var(--duration-fast) ease, background var(--duration-fast) ease, border-color var(--duration-fast) ease;
}

.btn:hover,
.btn.btn-whatsapp:hover,
.course-card:hover,
.resource-card:hover,
.programme-card:hover {
  transform: none;
}

.btn.primary {
  color: var(--ink);
  background: #3dc4dc;
  box-shadow: none;
}

.btn.primary:hover {
  color: white;
  background: var(--royal);
}

.btn.secondary {
  background: transparent;
}

.btn.btn-whatsapp {
  background: var(--green);
  border-color: var(--green);
  box-shadow: none;
}

.btn.btn-whatsapp:hover {
  background: #0e3831;
  box-shadow: none;
}

.btn.tertiary {
  color: var(--navy);
  border-color: var(--line-strong);
  background: transparent;
  box-shadow: none;
}

.btn.tertiary:hover {
  color: white;
  border-color: var(--navy);
  background: var(--navy);
}

.hero-facts {
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-facts div {
  min-width: 150px;
  padding: 14px 24px 8px 0;
  border-left: 0;
}

.hero-facts div + div {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.section {
  padding: 104px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 46px;
}

.section-heading h2,
.section-intro h2,
.split-copy h2,
.process-list h2,
.contact-info h2 {
  font-family: var(--font-editorial);
  font-size: clamp(2.35rem, 4vw, 3.55rem);
  font-weight: 600;
}

.section-heading p:not(.eyebrow),
.section-intro p,
.split-copy p,
.process-list p,
.contact-info p {
  color: var(--muted);
  font-size: 1rem;
}

.institution-band {
  padding-top: 104px;
  background: var(--mist);
}

.two-column,
.media-split,
.admissions-grid,
.contact-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(44px, 7vw, 96px);
}

.principle-grid,
.feature-line,
.featured-grid,
.impact-grid,
.leadership-grid,
.values-grid,
.three-grid,
.statement-grid,
.resource-grid,
.insight-grid {
  gap: 0;
}

.principle-grid {
  border-top: 1px solid var(--line-strong);
}

.principle-grid article,
.feature-item,
.course-card,
.impact-card,
.statement,
.value,
.resource-card,
.insight,
.journey-step,
.charter-panel,
.executive-panel,
.form-card,
.faq-list details {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.principle-grid article {
  min-height: 190px;
  padding: 26px 28px 24px 0;
  border-bottom: 1px solid var(--line);
}

.principle-grid article:nth-child(even) {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

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

.feature-line {
  border-top: 2px solid var(--ink);
}

.feature-item {
  min-height: 280px;
  padding: 32px 34px 24px 0;
  border-bottom: 1px solid var(--line);
}

.feature-item + .feature-item {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.feature-number {
  color: var(--gold);
  font-family: var(--font-editorial);
  font-size: 1.1rem;
}

.philosophy-card {
  padding: 76px 0;
  text-align: left;
}

.philosophy-card--dark,
.philosophy-card--light {
  background: var(--ink);
}

.philosophy-card-inner {
  width: min(calc(100% - 64px), var(--max));
  display: grid;
  grid-template-columns: minmax(120px, 0.3fr) minmax(0, 1fr) 170px;
  align-items: start;
  gap: 36px;
}

.philosophy-card-accent {
  width: 74px;
  margin: 13px 0 0;
  background: var(--gold);
  transition: none;
}

.philosophy-card.is-visible .philosophy-card-accent {
  width: 74px;
}

.philosophy-card blockquote {
  color: white;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.18;
}

.philosophy-card blockquote em {
  color: #65c7d9;
}

.philosophy-card cite,
.philosophy-card--light cite,
.philosophy-card--dark cite {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.52);
}

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

.profession-grid,
.filter-bar {
  gap: 6px;
}

.profession-grid button,
.filter-bar button {
  min-height: 39px;
  padding: 8px 11px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  transition: color var(--duration-fast) ease, background var(--duration-fast) ease;
}

.profession-grid button:hover,
.profession-grid button.is-active,
.filter-bar button:hover,
.filter-bar button.is-active {
  background: var(--navy);
  transform: none;
}

.recommendation {
  align-self: stretch;
  padding: 38px;
  border-radius: 0;
  background: var(--ink);
  box-shadow: none;
}

.recommendation h3 {
  font-family: var(--font-editorial);
  font-size: 2rem;
}

.journey-section {
  background: var(--navy);
}

.journey-steps {
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.journey-step {
  min-height: 275px;
  padding: 30px 28px 24px 0;
  background: transparent;
}

.journey-step + .journey-step {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.journey-step span {
  color: #6bc9d9;
}

.featured-section,
.online-section,
.faq-section,
.gallery-section,
.request-section,
.contact-section,
.insights-section {
  background: var(--mist);
}

.featured-grid,
.impact-grid,
.leadership-grid,
.three-grid,
.resource-grid,
.insight-grid {
  border-top: 2px solid var(--ink);
}

.course-card,
.impact-card,
.resource-card,
.insight,
.leadership-grid .feature-item,
.three-grid .feature-item {
  min-height: 280px;
  padding: 30px 30px 28px 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.course-card + .course-card,
.impact-card + .impact-card,
.resource-card + .resource-card,
.insight + .insight,
.leadership-grid .feature-item + .feature-item,
.three-grid .feature-item + .feature-item {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.course-card:hover,
.resource-card:hover,
.programme-card:hover {
  box-shadow: none;
}

.course-card h3 {
  font-family: var(--font-editorial);
  font-size: 1.75rem;
}

.course-card a,
.resource-card a {
  border-bottom: 1px solid var(--cyan);
}

.flexible-section {
  padding: 104px 0;
  background: var(--ink);
}

.flexible-section::before {
  display: none;
}

.flexible-heading {
  max-width: 880px;
  margin: 0 0 54px;
  text-align: left;
}

.flexible-heading h2 {
  max-width: 720px;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
}

.flexible-intro {
  margin-inline: 0;
}

.delivery-cards,
.duration-cards {
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.delivery-card,
.duration-card {
  min-height: 305px;
  padding: 30px 28px 26px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  text-align: left;
}

.delivery-card + .delivery-card,
.duration-card + .duration-card {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.delivery-card:hover,
.duration-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
  transform: none;
}

.delivery-card-icon {
  width: 42px;
  height: 42px;
  justify-content: flex-start;
  border-radius: 0;
  background: transparent;
}

.duration-card {
  min-height: 220px;
}

.duration-value {
  font-size: 2.45rem;
}

.image-panel,
.map-panel {
  border-radius: 0;
  box-shadow: none;
}

.image-panel img {
  aspect-ratio: 4 / 3;
}

.campus-preview .media-split {
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
}

.home-impact {
  background: var(--paper);
}

.cta-section {
  padding: 82px 0;
  background: var(--green);
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 38px;
}

.cta-inner h2 {
  max-width: 720px;
  font-family: var(--font-editorial);
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  font-weight: 600;
}

.page-hero,
.programme-hero,
.resources-hero,
.academy-hero,
.gallery-hero,
.executive-hero,
.admissions-hero,
.corporate-hero,
.contact-hero {
  position: relative;
  min-height: 510px;
  display: flex;
  align-items: center;
  padding: 176px 0 74px;
  background: var(--navy);
  border-bottom: 8px solid var(--cyan);
}

.programme-hero,
.resources-hero {
  background: #0b3039;
}

.academy-hero,
.gallery-hero {
  background: #102b3d;
  border-bottom-color: var(--gold);
}

.executive-hero,
.admissions-hero {
  background: #17202a;
  border-bottom-color: var(--gold);
}

.corporate-hero,
.contact-hero {
  background: #103d3a;
}

.page-hero-inner {
  max-width: var(--max);
  display: grid;
  grid-template-columns: minmax(190px, 0.34fr) minmax(0, 1fr);
  align-items: start;
  column-gap: clamp(40px, 7vw, 100px);
  text-align: left;
}

.page-hero-inner .eyebrow {
  grid-column: 1;
  grid-row: 1 / span 2;
  margin-top: 12px;
}

.page-hero h1 {
  grid-column: 2;
  max-width: 890px;
  font-family: var(--font-editorial);
  font-size: clamp(3.1rem, 5vw, 4.7rem);
  font-weight: 600;
}

.page-hero p:not(.eyebrow) {
  grid-column: 2;
  max-width: 760px;
  margin: 26px 0 0;
  font-size: 1.05rem;
}

.charter-panel,
.executive-panel {
  padding: 34px;
  border-left: 3px solid var(--gold);
  background: var(--mist);
}

.mission-vision {
  padding: 0;
  background: var(--navy);
}

.statement-grid {
  grid-template-columns: 1fr 1fr;
}

.statement {
  min-height: 410px;
  padding: 74px 56px;
  background: var(--navy);
}

.statement + .statement {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.statement h2 {
  font-family: var(--font-editorial);
  font-size: clamp(2.1rem, 3.5vw, 3rem);
  font-weight: 600;
}

.founder-section {
  padding: 112px 0;
  background: var(--ink);
}

.founder-grid {
  gap: clamp(54px, 7vw, 92px);
}

.founder-image-wrapper {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.founder-photo,
.founder-image-wrapper:hover .founder-photo {
  transform: none;
}

.founder-name {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
}

.founder-card,
.founder-philosophy {
  border-radius: 0;
  background: transparent;
}

.founder-card {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding: 24px 24px 0 0;
}

.founder-card + .founder-card {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.expertise-chips .chip,
.badge-item {
  border-radius: 2px;
}

.founder-philosophy {
  padding: 42px 38px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 3px solid var(--cyan);
}

.whatsapp-invite-section {
  padding: 90px 0;
  background: var(--green-soft);
}

.whatsapp-card {
  max-width: 900px;
  align-items: flex-start;
  padding: 52px 0 0;
  border: 0;
  border-top: 2px solid var(--green);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.whatsapp-card-badge {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.programme-section {
  background: var(--mist);
}

.programme-toolbar {
  align-items: start;
  margin-bottom: 42px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-strong);
}

.programme-toolbar h2 {
  max-width: 660px;
  font-family: var(--font-editorial);
  font-size: clamp(2.3rem, 3.8vw, 3.35rem);
  font-weight: 600;
}

.filter-bar {
  max-width: 520px;
}

.programme-grid {
  grid-template-columns: 1fr;
  gap: 24px;
}

.programme-card {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  grid-template-rows: auto auto auto minmax(0, auto) auto;
  column-gap: 42px;
  padding: 38px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--navy);
  border-radius: 0;
  background: var(--paper);
  box-shadow: none;
}

.programme-card header {
  grid-column: 1;
  grid-row: 1 / span 2;
  margin: 0;
  padding: 0 34px 22px 0;
  border: 0;
  border-right: 1px solid var(--line);
}

.programme-card .tag {
  color: var(--royal);
}

.programme-card h3 {
  font-family: var(--font-editorial);
  font-size: 2rem;
  font-weight: 600;
}

.programme-philosophy {
  grid-column: 1;
  grid-row: 3;
  margin: 22px 34px 18px 0;
}

.programme-facts-bar {
  grid-column: 1;
  grid-row: 4;
  margin: 0 34px 0 0;
  padding: 18px;
  border-radius: 0;
  background: var(--navy);
}

.programme-facts-bar dl,
.programme-facts-bar div {
  align-items: flex-start;
  flex-direction: column;
}

.programme-facts-bar div {
  gap: 0;
}

.programme-meta {
  grid-column: 2;
  grid-row: 1;
  gap: 1px;
  margin: 0 0 22px;
  background: var(--line);
}

.programme-meta div,
.programme-meta div.highlight-fee {
  padding: 13px 14px;
  border: 0;
  border-radius: 0;
  background: var(--mist);
}

.programme-meta div.highlight-fee {
  background: var(--cyan-soft);
}

.programme-card > p {
  grid-column: 2;
  grid-row: 2;
  margin-top: 0;
}

.programme-card > details {
  grid-column: 2;
  grid-row: 3;
}

.programme-actions {
  grid-column: 2;
  grid-row: 4;
  align-self: start;
  margin-top: 8px;
}

.hausa-section,
.admissions-schedule-section {
  background: var(--green-soft);
}

.online-parity-section {
  padding: 104px 0;
  background: var(--navy);
}

.online-parity {
  padding: 34px 0 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  background: transparent;
}

.schedule-option-grid {
  gap: 0;
  border-top: 2px solid var(--ink);
}

.schedule-option {
  min-height: 185px;
  padding: 28px 24px 24px 0;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.schedule-option + .schedule-option {
  padding-left: 24px;
  border-left: 1px solid var(--line-strong);
}

.schedule-option:hover {
  border-color: var(--line-strong);
  box-shadow: none;
  transform: none;
}

.application-card {
  padding: 38px 32px;
  border: 0;
  border-radius: 0;
  background: var(--navy);
  box-shadow: none;
}

.brief-fees,
.bank-details-box {
  border-radius: 0;
}

.app-cta-btn {
  border-radius: 2px;
}

.form-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--navy);
  background: var(--paper);
}

.form-card input,
.form-card select,
.form-card textarea {
  border-radius: 2px;
  background: #fbfcfc;
}

.faq-list {
  gap: 0;
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.map-panel {
  border: 1px solid var(--line-strong);
  background: var(--mist);
}

.site-footer {
  padding: 72px 0 48px;
  background: var(--ink);
}

.footer-grid {
  grid-template-columns: 1.55fr 0.8fr 0.8fr 1fr;
  gap: 48px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo {
  width: 220px;
  border-radius: 0;
}

.site-footer a {
  width: fit-content;
  border-bottom: 1px solid transparent;
}

.site-footer a:hover {
  border-bottom-color: var(--cyan);
}

.reveal,
.reveal-slow {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity var(--duration-medium) ease, transform var(--duration-slow) var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal[data-reveal-direction="left"] {
  transform: translate3d(-28px, 0, 0);
}

.reveal[data-reveal-direction="right"] {
  transform: translate3d(28px, 0, 0);
}

.reveal.is-visible,
.reveal-slow.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1120px) {
  .primary-nav {
    top: var(--header-height);
    border-radius: 0;
    box-shadow: 0 18px 42px rgba(6, 17, 29, 0.14);
  }

  .nav-dropdown-menu,
  .nav-dropdown-menu a {
    border-radius: 0;
  }

  .hero-content {
    padding-right: 150px;
  }

  .course-card,
  .impact-card,
  .resource-card,
  .insight {
    min-height: 250px;
  }

  .programme-card {
    grid-template-columns: minmax(235px, 0.68fr) minmax(0, 1.32fr);
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 104px;
  }

  .container,
  .hero-content {
    width: min(calc(100% - 40px), var(--max));
  }

  .site-header {
    min-height: 70px;
  }

  .hero {
    min-height: 760px;
    align-items: flex-start;
    padding: 142px 0 50px;
  }

  .hero-content {
    padding-right: 0;
  }

  .hero-content::after {
    display: none;
  }

  .hero-philosophy-rotator {
    min-height: 0;
    block-size: 230px;
  }

  .hero .hero-philosophy-statement {
    max-width: 720px;
    font-size: clamp(2.7rem, 8vw, 3.7rem);
  }

  .section {
    padding: 78px 0;
  }

  .two-column,
  .media-split,
  .media-split.reversed,
  .campus-preview .media-split,
  .admissions-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .philosophy-card-inner {
    width: min(calc(100% - 40px), var(--max));
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .philosophy-card cite {
    grid-column: 2;
  }

  .feature-line,
  .featured-grid,
  .impact-grid,
  .three-grid,
  .insight-grid,
  .leadership-grid,
  .statement-grid {
    grid-template-columns: 1fr;
  }

  .feature-item,
  .course-card,
  .impact-card,
  .resource-card,
  .insight,
  .leadership-grid .feature-item,
  .three-grid .feature-item {
    min-height: 0;
    padding: 28px 0;
    border-left: 0;
  }

  .feature-item + .feature-item,
  .course-card + .course-card,
  .impact-card + .impact-card,
  .resource-card + .resource-card,
  .insight + .insight,
  .leadership-grid .feature-item + .feature-item,
  .three-grid .feature-item + .feature-item {
    padding-left: 0;
    border-left: 0;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .cta-inner .btn {
    width: fit-content;
    margin-top: 8px;
  }

  .page-hero,
  .programme-hero,
  .resources-hero,
  .academy-hero,
  .gallery-hero,
  .executive-hero,
  .admissions-hero,
  .corporate-hero,
  .contact-hero {
    min-height: 470px;
    padding: 154px 0 62px;
  }

  .page-hero-inner {
    grid-template-columns: 1fr;
  }

  .page-hero-inner .eyebrow,
  .page-hero h1,
  .page-hero p:not(.eyebrow) {
    grid-column: 1;
    grid-row: auto;
  }

  .page-hero-inner .eyebrow {
    margin-top: 0;
  }

  .page-hero h1 {
    font-size: clamp(2.8rem, 8vw, 3.8rem);
  }

  .statement {
    min-height: 0;
    padding: 58px 34px;
  }

  .statement + .statement {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .programme-card {
    display: block;
    padding: 30px;
  }

  .programme-card header,
  .programme-philosophy,
  .programme-facts-bar {
    margin-right: 0;
    padding-right: 0;
    border-right: 0;
  }

  .programme-facts-bar {
    padding: 18px;
  }

  .programme-meta {
    margin-top: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 104px;
  }

  .container,
  .hero-content {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    padding-inline: 14px;
  }

  .announcement-container {
    justify-content: space-between;
    gap: 8px;
  }

  .announcement-text {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .announcement-cta {
    flex: 0 0 auto;
    margin-left: 0;
  }

  .brand {
    width: 148px;
  }

  .primary-nav {
    right: 12px;
    left: 12px;
  }

  .hero {
    min-height: 735px;
    padding: 132px 0 38px;
  }

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

  .hero-overlay {
    background: rgba(4, 13, 23, 0.66);
  }

  .hero .eyebrow {
    margin-bottom: 15px;
  }

  .hero-philosophy-rotator {
    min-height: 0;
    block-size: 270px;
  }

  .hero .hero-philosophy-statement {
    font-size: 2.35rem;
    line-height: 1.03;
  }

  .hero-philosophy-dots {
    margin-top: 15px;
  }

  .hero-copy {
    margin-top: 16px;
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .hero .action-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero .action-row .btn {
    width: auto;
    min-height: 44px;
    padding: 10px;
    font-size: 0.84rem;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 24px;
  }

  .hero-facts div {
    min-width: 0;
    padding: 12px 8px 4px 0;
  }

  .hero-facts div + div {
    padding-left: 10px;
  }

  .hero-facts dt {
    font-size: 0.66rem;
  }

  .hero-facts dd {
    font-size: 0.88rem;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading h2,
  .section-intro h2,
  .split-copy h2,
  .process-list h2,
  .contact-info h2,
  .cta-inner h2 {
    font-size: 2.1rem;
  }

  .principle-grid {
    grid-template-columns: 1fr;
  }

  .principle-grid article,
  .principle-grid article:nth-child(even) {
    min-height: 0;
    padding: 24px 0;
    border-left: 0;
  }

  .philosophy-card {
    padding: 58px 0;
  }

  .philosophy-card-inner {
    width: min(calc(100% - 28px), var(--max));
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .philosophy-card cite {
    grid-column: 1;
  }

  .philosophy-card blockquote {
    font-size: 1.75rem;
  }

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

  .journey-step,
  .journey-step + .journey-step {
    min-height: 0;
    padding: 28px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .delivery-cards,
  .duration-cards {
    grid-template-columns: 1fr;
  }

  .delivery-card,
  .delivery-card + .delivery-card,
  .duration-card,
  .duration-card + .duration-card {
    min-height: 0;
    padding: 28px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .page-hero,
  .programme-hero,
  .resources-hero,
  .academy-hero,
  .gallery-hero,
  .executive-hero,
  .admissions-hero,
  .corporate-hero,
  .contact-hero {
    min-height: 430px;
    padding: 142px 0 54px;
  }

  .page-hero h1 {
    font-size: 2.55rem;
  }

  .programme-toolbar {
    display: block;
  }

  .filter-bar {
    max-width: none;
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin: 24px -14px 0;
    padding: 0 14px 10px;
    overflow-x: auto;
  }

  .filter-bar button {
    flex: 0 0 auto;
  }

  .programme-card {
    padding: 24px 20px;
  }

  .programme-card h3 {
    font-size: 1.75rem;
  }

  .programme-meta {
    grid-template-columns: 1fr;
  }

  .statement {
    padding: 48px 20px;
  }

  .founder-section {
    padding: 74px 0;
  }

  .founder-card + .founder-card {
    padding-left: 0;
    border-left: 0;
  }

  .founder-philosophy {
    padding: 34px 22px;
  }

  .schedule-option-grid {
    grid-template-columns: 1fr;
  }

  .schedule-option,
  .schedule-option + .schedule-option {
    min-height: 0;
    padding: 24px 0;
    border-left: 0;
  }

  .application-card,
  .form-card {
    padding: 28px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .reveal[data-reveal-direction="left"],
  .reveal[data-reveal-direction="right"] {
    transform: translate3d(0, 20px, 0);
  }
}

@media (max-width: 340px) {
  .hero {
    min-height: 710px;
    padding-top: 124px;
    padding-bottom: 28px;
  }

  .hero-philosophy-rotator {
    block-size: 235px;
  }

  .hero .hero-philosophy-statement {
    font-size: 2.1rem;
  }

  .hero-copy {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .hero .action-row {
    gap: 6px;
    margin-top: 20px;
  }

  .hero .action-row .btn {
    min-height: 42px;
    padding: 8px 6px;
    font-size: 0.72rem;
  }

  .hero-facts {
    margin-top: 18px;
  }

  .hero-facts dd {
    font-size: 0.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header-wrapper,
  .hero-media,
  .hw,
  .reveal,
  .reveal-slow {
    transition: none;
  }

  .site-header-wrapper.is-hidden {
    transform: none;
  }

  .hero-media {
    transform: scale(1.025);
  }
}

/* RTS Academy Assistant */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.academy-assistant {
  position: fixed;
  right: 26px;
  bottom: 38px;
  z-index: 960;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.assistant-launcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  max-width: min(280px, calc(100vw - 32px));
  padding: 10px 16px 10px 10px;
  border: 1px solid rgba(3, 168, 216, 0.38);
  border-radius: 8px;
  color: #ffffff;
  background: var(--navy);
  box-shadow: 0 18px 46px rgba(6, 26, 58, 0.24);
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.assistant-launcher:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 56px rgba(6, 26, 58, 0.3);
}

.academy-assistant.is-open .assistant-launcher {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.assistant-launcher-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--cyan-soft);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.78rem;
}

.assistant-panel {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  width: min(410px, calc(100vw - 32px));
  max-height: min(720px, calc(100svh - 76px));
  overflow: hidden;
  color: var(--text);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(220, 229, 239, 0.92);
  border-radius: 10px;
  box-shadow: 0 28px 80px rgba(6, 26, 58, 0.22);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 180ms ease, transform 180ms ease;
}

.assistant-panel[hidden] {
  display: none;
}

.academy-assistant.is-open .assistant-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.assistant-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 18px 16px;
  color: #ffffff;
  background: #061a3a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.assistant-kicker {
  margin: 0 0 4px;
  color: rgba(217, 244, 248, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.assistant-header h2 {
  margin: 0;
  font-family: var(--font-editorial);
  font-size: 1.35rem;
  line-height: 1.1;
  color: #ffffff;
}

.assistant-header span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 650;
}

.assistant-icon-button {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.45rem;
  line-height: 1;
  transition: background 160ms ease, transform 160ms ease;
}

.assistant-icon-button:hover {
  background: rgba(255, 255, 255, 0.16);
}

.assistant-messages {
  min-height: 260px;
  max-height: 420px;
  padding: 18px;
  overflow-y: auto;
  background: var(--mist);
}

.assistant-message {
  display: flex;
  margin-bottom: 12px;
}

.assistant-message--visitor {
  justify-content: flex-end;
}

.assistant-bubble {
  width: fit-content;
  max-width: 100%;
  padding: 12px 13px;
  border-radius: 8px;
  overflow-wrap: anywhere;
  font-size: 0.92rem;
  line-height: 1.5;
}

.assistant-message--assistant .assistant-bubble {
  background: #ffffff;
  border: 1px solid rgba(220, 229, 239, 0.96);
  box-shadow: 0 10px 28px rgba(6, 26, 58, 0.07);
}

.assistant-message--visitor .assistant-bubble {
  color: #ffffff;
  background: var(--navy-2);
  box-shadow: 0 10px 28px rgba(6, 26, 58, 0.14);
}

.assistant-bubble p {
  margin: 0;
}

.assistant-bubble p + p {
  margin-top: 10px;
}

.assistant-message-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.assistant-message-actions.is-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-height: 245px;
  overflow-y: auto;
  padding-right: 2px;
}

.assistant-action,
.assistant-quick-actions button,
.assistant-session-controls button,
.assistant-input-row button {
  min-height: 38px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 800;
}

.assistant-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 8px 11px;
  border: 1px solid rgba(3, 168, 216, 0.24);
  color: var(--navy);
  background: #ffffff;
  text-align: center;
}

.assistant-action--primary {
  color: #ffffff;
  background: var(--navy);
  border-color: var(--navy);
}

.assistant-action:hover,
.assistant-quick-actions button:hover,
.assistant-session-controls button:hover,
.assistant-input-row button:hover {
  transform: translateY(-1px);
}

.assistant-recommendation-card,
.assistant-price-list {
  margin-top: 12px;
}

.assistant-recommendation-card {
  padding: 12px;
  border-radius: 8px;
  background: var(--mist);
  border: 1px solid var(--line);
}

.assistant-recommendation-card dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0;
}

.assistant-recommendation-card div {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 8px;
}

.assistant-recommendation-card dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.assistant-recommendation-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.assistant-price-list {
  display: grid;
  gap: 8px;
}

.assistant-price-list article {
  display: grid;
  gap: 3px;
  padding: 10px;
  border-radius: 8px;
  background: var(--mist);
  border: 1px solid var(--line);
}

.assistant-price-list strong {
  color: var(--navy);
}

.assistant-price-list span,
.assistant-price-list small {
  color: var(--muted);
}

.assistant-message--typing .assistant-bubble {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 54px;
  min-height: 36px;
}

.assistant-message--typing span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--cyan);
  opacity: 0.36;
  animation: assistantTyping 900ms ease-in-out infinite;
}

.assistant-message--typing span:nth-child(2) {
  animation-delay: 120ms;
}

.assistant-message--typing span:nth-child(3) {
  animation-delay: 240ms;
}

.assistant-quick-actions {
  display: flex;
  gap: 8px;
  padding: 12px 18px;
  overflow-x: auto;
  background: #ffffff;
  border-top: 1px solid rgba(220, 229, 239, 0.84);
}

.assistant-quick-actions button {
  flex: 0 0 auto;
  padding: 8px 11px;
  color: var(--navy);
  border: 1px solid rgba(220, 229, 239, 0.98);
  background: var(--mist);
  white-space: nowrap;
}

.assistant-footer {
  padding: 12px 18px 16px;
  background: #ffffff;
  border-top: 1px solid rgba(220, 229, 239, 0.84);
}

.assistant-session-controls {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.assistant-session-controls button {
  padding: 7px 10px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
}

.assistant-session-controls button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.assistant-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.assistant-input-row input {
  min-width: 0;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.assistant-input-row button {
  padding: 8px 13px;
  color: #ffffff;
  border: 1px solid var(--navy);
  background: var(--navy);
}

@keyframes assistantTyping {
  0%,
  80%,
  100% {
    opacity: 0.28;
    transform: translateY(0);
  }
  40% {
    opacity: 0.95;
    transform: translateY(-3px);
  }
}

@media (max-width: 560px) {
  .academy-assistant {
    right: 12px;
    bottom: 12px;
  }

  .assistant-launcher {
    min-width: 56px;
    min-height: 56px;
    padding: 10px;
    justify-content: center;
  }

  .assistant-launcher-label {
    display: none;
  }

  .assistant-panel {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    max-height: min(82svh, 720px);
    border-radius: 10px;
  }

  .assistant-header,
  .assistant-messages,
  .assistant-quick-actions,
  .assistant-footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .assistant-messages {
    min-height: 240px;
    max-height: 48svh;
  }

  .assistant-message-actions.is-profile-grid {
    grid-template-columns: 1fr;
    max-height: 220px;
  }

  .assistant-recommendation-card div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .assistant-message--typing span {
    animation: none;
  }
}


@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .reveal-slow {
    opacity: 1;
    transform: none;
  }
}
