/*
Theme Name: GAA-2026 Theme
Theme URI: https://globalanalystacademy.com
Author: Global Analyst Academy
Author URI: https://globalanalystacademy.com
Description: GAA-2026 Theme — the official WordPress theme for Global Analyst Academy. World-class executive education design for Africa's next executives. Navy blue + orange brand palette. PHP 7.4–8.3 compatible.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gaa
Tags: education, business, executive, professional, dark, navy, orange, gaa-2026
*/

/* ============================================================
   GLOBAL ANALYST ACADEMY — THEME STYLESHEET
   Design Philosophy: Refined Executive Education
   Color System: GAA Navy (#032B5D) + Orange (#F7941E) + White
   Colours match: globalanalystacademy.com official brand
   PHP: 7.4 – 8.3 compatible (audited March 2026)
   Typography: Playfair Display (serif) + DM Sans (body) + DM Mono
   ============================================================ */

/* ── CSS CUSTOM PROPERTIES ──────────────────────────────────── */
:root {
  /* ─── GAA Brand Colours (from globalanalystacademy.com) ─────────────── */
  /* Primary: Deep Navy Blue + Accent Orange */

  /* Orange accent (primary CTA, highlights, icons) */
  --gaa-gold:           #F7941E;   /* GAA Orange — primary accent */
  --gaa-gold-light:     #F9A94A;   /* Orange light */
  --gaa-gold-xlight:    #FEF3E2;   /* Orange xlight tint */
  --gaa-gold-dark:      #C4700A;   /* Orange dark / hover */

  /* Navy blue (dark backgrounds, hero, nav, footer) */
  --gaa-ink:            #032B5D;   /* GAA Navy — primary dark */
  --gaa-ink-2:          #043D84;   /* Navy medium (section bg) */
  --gaa-ink-3:          #021D3E;   /* Navy deepest (footer) */

  /* Light backgrounds */
  --gaa-cream:          #F5F7FA;   /* Off-white / section bg */
  --gaa-cream-2:        #EEF2F9;   /* Pale blue-grey alt section */
  --gaa-white:          #FFFFFF;

  /* Programme Accents (programme-specific colours unchanged) */
  --gaa-gatp:           #F7941E;   /* GATP — orange (matches primary) */
  --gaa-cbap:           #D86018;   /* CBAP — IIBA Orange (PMS 1595 C) */
  --gaa-pmp:            #2563EB;   /* PMP — blue */
  --gaa-elap:           #0EA5E9;   /* ELAP — sky */

  /* Text */
  --gaa-text-primary:   #032B5D;
  --gaa-text-secondary: #475569;
  --gaa-text-muted:     #8892A4;
  --gaa-text-light:     #94A3B8;

  /* Borders */
  --gaa-border:         #D9E0EA;
  --gaa-border-dark:    rgba(255,255,255,0.08);

  /* Typography */
  --font-display:       'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:          'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:          'DM Mono', 'Courier New', monospace;

  /* Spacing Scale */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  40px;
  --space-xl:  64px;
  --space-2xl: 96px;
  --space-3xl: 128px;

  /* Layout */
  --max-width: 1120px;
  --nav-height: 72px;
}

/* ── RESET & BASE ────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--gaa-cream);
  color: var(--gaa-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--gaa-text-primary);
}

h1 { font-size: clamp(40px, 5.5vw, 72px); font-weight: 900; }
h2 { font-size: clamp(30px, 4vw, 52px); font-weight: 800; }
h3 { font-size: clamp(22px, 2.8vw, 32px); font-weight: 700; }
h4 { font-size: 22px; font-weight: 700; }
h5 { font-size: 18px; font-weight: 600; }
h6 { font-size: 16px; font-weight: 600; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.85; }

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

ul, ol { padding-left: 1.5em; }
li { margin-bottom: 0.4em; }

strong { font-weight: 700; }
em { font-style: italic; color: var(--gaa-gold); }

/* ── LAYOUT UTILITIES ───────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section {
  padding: var(--space-2xl) var(--space-xl);
}

.section--dark {
  background: var(--gaa-ink-2);
  color: var(--gaa-white);
}

.section--darker {
  background: var(--gaa-ink);
  color: var(--gaa-white);
}

.section--cream {
  background: var(--gaa-cream);
}

.section--cream-2 {
  background: var(--gaa-cream-2);
}

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

/* ── SECTION LABELS ─────────────────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.section-label__line {
  width: 20px;
  height: 1px;
  background: var(--gaa-gold);
  flex-shrink: 0;
}
.section-label__text {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gaa-gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 15px 30px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--gaa-gold);
  color: #1A1A2E;  /* Near-black for WCAG contrast on orange */
}
.btn--dark {
  background: var(--gaa-ink);
  color: var(--gaa-white);
}
.btn--ghost {
  background: transparent;
  color: var(--gaa-white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn--ghost:hover { border-color: rgba(255,255,255,0.5); }
.btn--ghost-dark {
  background: transparent;
  color: var(--gaa-ink);
  border: 1px solid var(--gaa-border);
}
.btn--sm { font-size: 14px; padding: 11px 22px; }
.btn--lg { font-size: 17px; padding: 18px 38px; }

/* ── CARDS ───────────────────────────────────────────────────── */
.card {
  background: var(--gaa-white);
  border: 1px solid var(--gaa-border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  border-color: var(--gaa-gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.card--dark {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.07);
}
.card--dark:hover { border-color: rgba(247,148,30,0.3); }

.card__body { padding: 28px 24px; }
.card__body--lg { padding: 36px 32px; }

/* ── PROGRAM COLOR ACCENTS ───────────────────────────────────── */
.accent-gatp { color: var(--gaa-gatp); }
.accent-cbap  { color: var(--gaa-cbap); }
.accent-pmp   { color: var(--gaa-pmp); }
.accent-elap  { color: var(--gaa-elap); }

.border-top-gatp { border-top: 4px solid var(--gaa-gatp); }
.border-top-cbap  { border-top: 4px solid #D86018; }  /* IIBA Orange */
.border-top-pmp   { border-top: 4px solid var(--gaa-pmp); }
.border-top-elap  { border-top: 4px solid var(--gaa-elap); }

/* ── ANNOUNCEMENT BAR ─────────────────────────────────────────── */
.announce-bar {
  background: var(--gaa-ink);
  padding: 10px var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.announce-bar__badge {
  background: var(--gaa-gold);
  color: #1A1A2E;  /* Near-black for WCAG contrast on orange */
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}
.announce-bar__text {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}
.announce-bar__link {
  font-size: 12px;
  color: var(--gaa-gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  flex-shrink: 0;
}

/* ── NAVIGATION ──────────────────────────────────────────────── */
.site-header {
  background: var(--gaa-white);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo__mark {
  width: 36px;
  height: 36px;
  background: var(--gaa-ink);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo__mark svg { width: 18px; height: 18px; }
.nav-logo__wordmark {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--gaa-ink);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.nav-logo__wordmark span {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  color: var(--gaa-text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-menu li { margin: 0; }
.nav-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gaa-text-secondary);
  letter-spacing: 0.02em;
  transition: color 0.15s;
  text-decoration: none;
  white-space: nowrap;
}
.nav-menu a:hover { color: var(--gaa-ink); opacity: 1; }
.nav-menu .nav-cta {
  background: var(--gaa-orange, var(--gaa-gold));
  color: #1A1A2E;
  padding: 10px 22px;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: opacity 0.15s;
}
.nav-menu .nav-cta:hover { opacity: 0.85; }

/* Dropdown */
.nav-menu .has-dropdown { position: relative; }
.nav-menu .dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--gaa-white);
  border: 1px solid var(--gaa-border);
  border-radius: 6px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  min-width: 220px;
  padding: 8px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s, visibility 0.15s, transform 0.15s;
  transform: translateX(-50%) translateY(-6px);
  z-index: 100;
}
.nav-menu .has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-menu .dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--gaa-text-secondary);
  border-left: 2px solid transparent;
  transition: all 0.1s;
}
.nav-menu .dropdown a:hover {
  background: var(--gaa-cream);
  color: var(--gaa-ink);
  border-left-color: var(--gaa-gold);
  opacity: 1;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--gaa-ink);
}
.nav-toggle svg { width: 22px; height: 22px; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--gaa-ink-2);
  padding: 60px var(--space-xl) 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer-brand__tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
  max-width: 280px;
  margin-top: 14px;
}
.footer-brand__contact {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  line-height: 2;
}
.footer-brand__contact a { color: rgba(255,255,255,0.3); }
.footer-col__title {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gaa-gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links a {
  font-size: 15px;
  color: rgba(255,255,255,0.4);
  transition: color 0.15s;
  line-height: 1.4;
  text-decoration: none;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); opacity: 1; }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 14px; color: rgba(255,255,255,0.2); }
.footer-social { display: flex; gap: 20px; }
.footer-social a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
  transition: color 0.15s;
  text-decoration: none;
}
.footer-social a:hover { color: rgba(255,255,255,0.7); opacity: 1; }

/* ── HERO VARIANTS ──────────────────────────────────────────── */
.hero {
  background: var(--gaa-ink-2);
  position: relative;
  overflow: hidden;
}
.hero--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 92vh;
}
.hero__left {
  padding: 100px var(--space-xl) 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.hero__right {
  background: linear-gradient(135deg, #021D3E 0%, #021535 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  position: relative;
}
.hero__right::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9971A' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}
.hero__eyebrow-line {
  width: 28px;
  height: 1px;
  background: var(--gaa-gold);
}
.hero__eyebrow-text {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gaa-gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero__title {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  color: var(--gaa-white);
  line-height: 1.0;
  margin-bottom: 28px;
  max-width: 560px;
}
.hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 44px;
  font-weight: 300;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero__proof {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.hero__proof-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gaa-white);
  line-height: 1;
}
.hero__proof-num span { color: var(--gaa-gold); }
.hero__proof-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 3px;
  letter-spacing: 0.04em;
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--gaa-ink-2);
  padding: 80px var(--space-xl) 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,148,30,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: center;
}
.page-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.page-hero__tag--gold {
  background: rgba(247,148,30,0.12);
  border: 1px solid rgba(247,148,30,0.3);
  color: var(--gaa-gold-light);
}
.page-hero__tag--green {
  background: rgba(216,96,24,0.12);
  border: 1px solid rgba(216,96,24,0.28);
  color: #00778B;
}
.page-hero__tag--blue {
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.28);
  color: #93C5FD;
}
.page-hero__tag--sky {
  background: rgba(14,165,233,0.12);
  border: 1px solid rgba(14,165,233,0.28);
  color: #7DD3FC;
}
.page-hero__tag-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.page-hero__title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--gaa-white);
  line-height: 1.1;
  margin-bottom: 18px;
}
.page-hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 28px;
  font-weight: 300;
}

/* ── TICKER ──────────────────────────────────────────────────── */
.ticker {
  background: var(--gaa-gold);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker__inner {
  display: inline-flex;
  gap: 0;
  animation: ticker 32s linear infinite;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--gaa-ink);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ticker__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(3,43,93,0.35);
  flex-shrink: 0;
  display: inline-block;
}

/* ── PROOF BAR ───────────────────────────────────────────────── */
.proof-bar {
  background: var(--gaa-cream-2);
  border-top: 1px solid var(--gaa-border);
  border-bottom: 1px solid var(--gaa-border);
  padding: 40px var(--space-xl);
}
.proof-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.proof-stat {
  text-align: center;
  flex: 1;
  padding: 0 20px;
  border-right: 1px solid var(--gaa-border);
}
.proof-stat:last-child { border-right: none; }
.proof-stat__num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--gaa-ink);
  line-height: 1;
  margin-bottom: 4px;
}
.proof-stat__num span { color: var(--gaa-gold); }
.proof-stat__label {
  font-size: 14px;
  color: var(--gaa-text-muted);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

/* ── PROGRAMME CARDS ─────────────────────────────────────────── */
.prog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gaa-border);
  border-radius: 8px;
  overflow: hidden;
}
.prog-card {
  background: var(--gaa-white);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.prog-card:hover { background: var(--gaa-cream); }
.prog-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}
.prog-card__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gaa-text-muted);
  margin-bottom: 8px;
}
.prog-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gaa-ink);
  margin-bottom: 10px;
  line-height: 1.25;
}
.prog-card__desc {
  font-size: 15px;
  color: var(--gaa-text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}
.prog-card__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.prog-meta-chip {
  font-size: 11px;
  color: var(--gaa-text-secondary);
  background: var(--gaa-cream);
  border-radius: 2px;
  padding: 3px 8px;
}
.prog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gaa-ink);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  text-decoration: none;
  transition: gap 0.15s;
}
.prog-card__link:hover { gap: 10px; opacity: 1; }

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 28px 24px;
  transition: border-color 0.2s;
}
.testimonial-card:hover { border-color: rgba(247,148,30,0.3); }
.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  margin-bottom: 22px;
}
.testimonial-card__quote::before {
  content: '\201C';
  font-size: 36px;
  color: var(--gaa-gold);
  line-height: 0;
  vertical-align: -12px;
  margin-right: 4px;
  font-style: normal;
}
.testimonial-card__divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin-bottom: 18px;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.testimonial-card__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--gaa-white);
}
.testimonial-card__role {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-top: 1px;
}

/* ── FACULTY GRID ────────────────────────────────────────────── */
.faculty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--gaa-border);
  border-radius: 6px;
  overflow: hidden;
}
.faculty-card {
  background: var(--gaa-white);
  padding: 28px 22px;
}
.faculty-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--gaa-ink-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gaa-white);
}
.faculty-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.faculty-card__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--gaa-ink);
  margin-bottom: 3px;
}
.faculty-card__role {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gaa-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── INSIGHT CARDS ───────────────────────────────────────────── */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.insight-card {
  border: 1px solid var(--gaa-border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.insight-card:hover { border-color: var(--gaa-gold); transform: translateY(-3px); }
.insight-card__img {
  height: 200px;
  overflow: hidden;
  background: var(--gaa-cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}
.insight-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.insight-card:hover .insight-card__img img { transform: scale(1.04); }
.insight-card__body { padding: 22px 22px 26px; }
.insight-card__cat {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--gaa-gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.insight-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gaa-ink);
  line-height: 1.3;
  margin-bottom: 8px;
}
.insight-card__excerpt {
  font-size: 15px;
  color: var(--gaa-text-secondary);
  line-height: 1.65;
  margin-bottom: 14px;
}
.insight-card__read {
  font-size: 12px;
  font-weight: 600;
  color: var(--gaa-ink);
  letter-spacing: 0.04em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  display: inline-block;
  text-decoration: none;
}

/* ── MODULE ITEMS ─────────────────────────────────────────────── */
.module-item {
  background: var(--gaa-white);
  border: 1px solid var(--gaa-border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
}
.module-item__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
}
.module-item__num {
  background: var(--gaa-gold);
  color: #1A1A2E;  /* Near-black for WCAG contrast on orange */
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 5px;
  flex-shrink: 0;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.module-item__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--gaa-ink);
}
.module-item__body {
  padding: 0 20px 14px;
  padding-left: calc(20px + 36px + 12px);
}
.module-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.module-topic {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 4px;
  border: 1px solid var(--gaa-border);
  background: var(--gaa-cream);
  color: var(--gaa-text-secondary);
}

/* ── ENROL CARD (sidebar) ─────────────────────────────────────── */
.enrol-card {
  background: #03285A;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  overflow: hidden;
  position: sticky;
  top: calc(var(--nav-height) + 20px);
}
.enrol-card__stripe {
  height: 5px;
}
.enrol-card__body { padding: 24px; }
.enrol-card__label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: var(--font-mono);
}
.enrol-card__price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--gaa-white);
  line-height: 1;
}
.enrol-card__price-orig {
  font-size: 14px;
  color: rgba(255,255,255,0.3);
  text-decoration: line-through;
  margin-left: 8px;
  font-family: var(--font-body);
}
.enrol-card__discount {
  font-size: 11px;
  color: #00778B;
  margin-top: 3px;
  margin-bottom: 16px;
}
.enrol-card__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.enrol-card__list li {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.4;
  margin: 0;
}
.enrol-card__list li::before {
  content: '✓';
  color: var(--gaa-gold);
  font-weight: 700;
  flex-shrink: 0;
}
.enrol-card__divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 14px 0;
}
.enrol-card__cohort {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* ── CERTIFICATION CARDS ─────────────────────────────────────── */
.cert-card {
  border: 1px solid var(--gaa-border);
  border-radius: 8px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  background: var(--gaa-white);
}
.cert-card:hover { border-color: var(--gaa-gold); transform: translateY(-3px); }
.cert-card__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 200px;
  opacity: 0.04;
  font-family: var(--font-display);
  font-size: 130px;
  font-weight: 900;
  color: var(--gaa-ink);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 20px;
  pointer-events: none;
  line-height: 1;
}
.cert-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 2px;
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.cert-tag--cbap {
  background: rgba(216,96,24,0.1);    /* IIBA Orange tint */
  color: #00313C;                      /* IIBA Dark Blue text */
  border: 1px solid rgba(216,96,24,0.25);
}
.cert-tag--pmp {
  background: rgba(37,99,235,0.1);
  color: #1D4ED8;
  border: 1px solid rgba(37,99,235,0.2);
}
.cert-card__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--gaa-ink);
  margin-bottom: 10px;
  line-height: 1.2;
}
.cert-card__desc {
  font-size: 16px;
  color: var(--gaa-text-secondary);
  line-height: 1.7;
  margin-bottom: 22px;
}
.cert-facts {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cert-fact {
  font-size: 11px;
  color: var(--gaa-text-muted);
  background: var(--gaa-cream);
  padding: 4px 10px;
  border-radius: 2px;
}
.cert-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.cert-btn-ghost {
  font-size: 12px;
  font-weight: 600;
  color: var(--gaa-text-muted);
  letter-spacing: 0.03em;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-item {
  background: var(--gaa-white);
  border: 1px solid var(--gaa-border);
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 10px;
}
.faq-item__q {
  font-size: 16px;
  font-weight: 600;
  color: var(--gaa-ink);
  margin-bottom: 7px;
}
.faq-item__a {
  font-size: 15px;
  color: var(--gaa-text-secondary);
  line-height: 1.65;
}

/* ── FINAL CTA ───────────────────────────────────────────────── */
.final-cta {
  background: var(--gaa-ink);
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,148,30,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.final-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.final-cta__label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gaa-gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.final-cta__title {
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 900;
  color: var(--gaa-white);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.final-cta__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto 40px;
  font-weight: 300;
}
.final-cta__btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.final-cta__note {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
}

/* ── MISSION / ABOUT ─────────────────────────────────────────── */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 64px;
}
.mission__blockquote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--gaa-ink);
  line-height: 1.35;
  font-style: italic;
  padding-left: 28px;
  border-left: 3px solid var(--gaa-gold);
  margin-bottom: 28px;
}
.mission-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gaa-border);
  border: 1px solid var(--gaa-border);
  border-radius: 6px;
  overflow: hidden;
}
.mission-stat {
  background: var(--gaa-white);
  padding: 28px 24px;
}
.mission-stat__num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--gaa-ink);
  line-height: 1;
  margin-bottom: 6px;
}
.mission-stat__num span { color: var(--gaa-gold); }
.mission-stat__label {
  font-size: 14px;
  color: var(--gaa-text-muted);
  line-height: 1.5;
}

/* ── WHY GAA PILLARS ─────────────────────────────────────────── */
.why-gaa-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  overflow: hidden;
}
.pillar {
  background: rgba(255,255,255,0.03);
  padding: 24px 22px;
  transition: background 0.2s;
}
.pillar:hover { background: rgba(255,255,255,0.06); }
.pillar__icon { font-size: 24px; margin-bottom: 12px; }
.pillar__title { font-size: 14px; font-weight: 700; color: var(--gaa-white); margin-bottom: 6px; }
.pillar__desc { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.6; }

/* ── SCHOLARSHIP SECTION ─────────────────────────────────────── */
.scholarship-band {
  background: linear-gradient(135deg, #021839, var(--gaa-ink));
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 48px var(--space-xl);
}
.scholarship-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.scholarship__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14,165,233,0.12);
  border: 1px solid rgba(14,165,233,0.25);
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #7DD3FC;
}
.scholarship-steps {
  background: rgba(14,165,233,0.06);
  border: 1px solid rgba(14,165,233,0.15);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.scholarship-step {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.scholarship-step__circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #0EA5E9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--gaa-white);
  flex-shrink: 0;
}
.scholarship-step__text {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
}

/* ── UTILITIES ───────────────────────────────────────────────── */
.text-gold { color: var(--gaa-gold) !important; }
.text-white { color: var(--gaa-white) !important; }
.text-muted { color: var(--gaa-text-muted) !important; }
.bg-ink { background: var(--gaa-ink) !important; }
.bg-ink-2 { background: var(--gaa-ink-2) !important; }
.bg-cream { background: var(--gaa-cream) !important; }
.bg-white { background: var(--gaa-white) !important; }
.italic-gold { font-style: italic; color: var(--gaa-gold); }
.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; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --space-xl: 40px; }
  .hero--split { grid-template-columns: 1fr; }
  .hero__right { display: none; }
  .mission-grid { grid-template-columns: 1fr; gap: 48px; }
  .prog-grid { grid-template-columns: 1fr 1fr; }
  .why-gaa-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .page-hero__inner { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .faculty-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --space-xl: 24px; --space-2xl: 64px; }
  h1 { font-size: clamp(30px, 8vw, 48px); }
  h2 { font-size: clamp(24px, 6vw, 36px); }
  .hero--split { min-height: auto; }
  .hero__left { padding: 64px 24px 56px; }
  .prog-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .faculty-grid { grid-template-columns: 1fr 1fr; }
  .proof-bar__inner { flex-wrap: wrap; justify-content: center; gap: 24px; }
  .proof-stat { border-right: none; flex: 0 0 calc(50% - 12px); }
  .nav-menu { gap: 16px; }
  .nav-menu a:not(.nav-cta):not(:last-child) { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .scholarship-grid { grid-template-columns: 1fr; }
  .mission-stats { grid-template-columns: 1fr 1fr; }
  .certs-grid { grid-template-columns: 1fr; }
  .announce-bar { padding: 8px 16px; gap: 8px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .final-cta__btns { flex-direction: column; align-items: center; }
  .faculty-grid { grid-template-columns: 1fr; }
  .mission-stats { grid-template-columns: 1fr; }
}

/* ── WORDPRESS SPECIFIC ──────────────────────────────────────── */
.wp-block-image { margin: 1.5em 0; }
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { display: block; margin: 0 auto 1.5em; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 12px; color: var(--gaa-text-muted); text-align: center; margin-top: 4px; }
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.sticky { /* WordPress sticky post */ }
.bypostauthor { /* WordPress bypostauthor */ }

/* Gutenberg editor support */
.wp-block-separator { border: none; border-top: 1px solid var(--gaa-border); margin: 2em 0; }
.wp-block-quote { border-left: 3px solid var(--gaa-gold); padding-left: 28px; font-family: var(--font-display); font-style: italic; font-size: 1.2em; }
.wp-block-code { background: var(--gaa-ink-2); color: var(--gaa-gold-light); padding: 1em 1.5em; border-radius: 4px; font-family: var(--font-mono); font-size: 0.9em; overflow-x: auto; }
.wp-block-table { width: 100%; border-collapse: collapse; }
.wp-block-table td, .wp-block-table th { padding: 10px 14px; border: 1px solid var(--gaa-border); text-align: left; }
.wp-block-table th { background: var(--gaa-cream-2); font-weight: 600; }

/* Comments */
.comment-list { list-style: none; padding: 0; }
.comment-content { font-size: 14px; line-height: 1.7; }
.comment-meta { font-size: 12px; color: var(--gaa-text-muted); margin-bottom: 8px; }
.comment-respond { margin-top: 40px; }
.comment-form label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  border: 1px solid var(--gaa-border);
  border-radius: 4px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gaa-ink);
  background: var(--gaa-white);
  margin-bottom: 16px;
  transition: border-color 0.15s;
}
.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--gaa-gold);
}
.comment-form-submit .submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 15px 30px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.15s ease;
  background: var(--gaa-ink);
  color: var(--gaa-white);
}

/* Pagination */
.pagination { display: flex; gap: 8px; justify-content: center; margin: 48px 0; flex-wrap: wrap; }
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gaa-border);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gaa-text-secondary);
  text-decoration: none;
  transition: all 0.15s;
}
.page-numbers:hover, .page-numbers.current {
  background: var(--gaa-ink);
  color: var(--gaa-white);
  border-color: var(--gaa-ink);
}

/* Search form */
.search-form { display: flex; gap: 0; }
.search-field {
  flex: 1;
  border: 1px solid var(--gaa-border);
  border-right: none;
  border-radius: 4px 0 0 4px;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 14px;
}
.search-submit {
  background: var(--gaa-ink);
  color: var(--gaa-white);
  border: none;
  padding: 10px 20px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

/* ── PRINT ─────────────────────────────────────────────────────── */
@media print {
  .announce-bar, .site-header, .site-footer, .ticker, .proof-bar { display: none; }
  body { background: white; color: black; }
}


/* ════════════════════════════════════════════════════════════════════════
   ACCESSIBILITY & DYNAMIC CUSTOMIZER SYSTEM
   GAA-2026 Theme — Added for enhanced readability and user control
   ════════════════════════════════════════════════════════════════════════ */

/* ── CSS CUSTOM PROPERTIES FOR DYNAMIC CUSTOMIZER ──────────────────────── */
:root {

  /* ── Typography Scale (customizer-controlled) ─────────────────────── */
  --gaa-font-size-base:     18px;    /* Base body size */
  --gaa-font-size-sm:       14px;    /* Small text */
  --gaa-font-size-lg:       20px;    /* Large body */
  --gaa-line-height:        1.75;    /* Body line height */
  --gaa-letter-spacing:     0em;     /* Body letter spacing */
  --gaa-heading-weight:     800;     /* Heading font weight */

  /* ── Spacing / Layout (customizer-controlled) ─────────────────────── */
  --gaa-section-padding:    96px;    /* Section vertical padding */
  --gaa-container-width:    1120px;  /* Max content width */
  --gaa-border-radius:      6px;     /* Global border radius */
  --gaa-card-padding:       28px;    /* Card inner padding */

  /* ── Colour Overrides (customizer-controlled) ─────────────────────── */
  --gaa-accent:             var(--gaa-gold);      /* Primary accent override */
  --gaa-bg-primary:         var(--gaa-cream);     /* Light bg override */
  --gaa-bg-dark:            var(--gaa-ink);       /* Dark bg override */
  --gaa-text-body:          var(--gaa-text-primary); /* Body text colour */

  /* ── Focus / Accessibility ────────────────────────────────────────── */
  --gaa-focus-color:        #F7941E;   /* Focus ring colour */
  --gaa-focus-width:        3px;       /* Focus ring width */
  --gaa-focus-offset:       3px;       /* Focus ring offset */
}

/* ── FONT SIZE UTILITY CLASSES (generated by customizer) ───────────────── */
/* These are overridden inline via wp_add_inline_style from customizer */
body.gaa-font-sm { font-size: 16px; }
body.gaa-font-md { font-size: 18px; }
body.gaa-font-lg { font-size: 20px; }
body.gaa-font-xl { font-size: 22px; }

/* ── HIGH CONTRAST MODE ─────────────────────────────────────────────────── */
body.gaa-high-contrast {
  --gaa-text-primary:   #000000;
  --gaa-text-secondary: #111111;
  --gaa-text-muted:     #333333;
  --gaa-border:         #000000;
  --gaa-cream:          #FFFFFF;
  --gaa-cream-2:        #F0F0F0;
}
body.gaa-high-contrast a                  { text-decoration: underline !important; }
body.gaa-high-contrast .btn--primary      { background: #000 !important; color: #fff !important; border: 2px solid #000 !important; }
body.gaa-high-contrast .prog-card         { border-width: 2px; }
body.gaa-high-contrast .testimonial-card  { border-width: 2px; }
body.gaa-high-contrast .card              { border-width: 2px; }

/* ── DYSLEXIA-FRIENDLY MODE ─────────────────────────────────────────────── */
body.gaa-dyslexia-mode {
  --font-body:          'OpenDyslexic', 'Comic Sans MS', 'Trebuchet MS', sans-serif;
  --gaa-line-height:    2.0;
  --gaa-letter-spacing: 0.05em;
}
body.gaa-dyslexia-mode p,
body.gaa-dyslexia-mode li,
body.gaa-dyslexia-mode label {
  line-height: 2.0;
  letter-spacing: 0.05em;
  word-spacing: 0.1em;
}

/* ── REDUCED MOTION MODE ────────────────────────────────────────────────── */
body.gaa-reduce-motion *,
body.gaa-reduce-motion *::before,
body.gaa-reduce-motion *::after,
@media (prefers-reduced-motion: reduce) {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}
/* Ticker stops in reduce-motion */
body.gaa-reduce-motion .ticker__inner { animation: none; }
@media (prefers-reduced-motion: reduce) { .ticker__inner { animation: none; } }

/* ── CURSOR ACCESSIBILITY ────────────────────────────────────────────────── */
body.gaa-large-cursor * { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Ccircle cx='4' cy='4' r='4' fill='%23F7941E'/%3E%3C/svg%3E") 4 4, auto !important; }

/* ── FOCUS STYLES (WCAG 2.1 AA compliant) ─────────────────────────────── */
/* Universal visible focus ring */
:focus-visible {
  outline: var(--gaa-focus-width) solid var(--gaa-focus-color);
  outline-offset: var(--gaa-focus-offset);
  border-radius: 2px;
}
/* Remove default outline only when :focus-visible is supported */
:focus:not(:focus-visible) { outline: none; }

/* Enhanced focus for interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: var(--gaa-focus-width) solid var(--gaa-focus-color);
  outline-offset: var(--gaa-focus-offset);
  box-shadow: 0 0 0 6px rgba(247, 148, 30, 0.2);
}

/* Nav focus */
.nav-menu a:focus-visible { color: var(--gaa-gold) !important; }

/* ── LINK UNDERLINE (accessibility option) ───────────────────────────────── */
body.gaa-underline-links a:not(.btn):not(.nav-cta) {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── TEXT SPACING (WCAG 1.4.12) ───────────────────────────────────────── */
/* Wide spacing option */
body.gaa-wide-spacing {
  --gaa-line-height: 2.0;
  --gaa-letter-spacing: 0.05em;
}
body.gaa-wide-spacing p { line-height: 2.0; margin-bottom: 1.5em; }
body.gaa-wide-spacing li { line-height: 2.0; }

/* ── DARK MODE ─────────────────────────────────────────────────────────── */
/* Triggered by customizer or system preference */
body.gaa-dark-mode {
  --gaa-cream:    #121218;
  --gaa-cream-2:  #1A1A24;
  --gaa-white:    #1E1E2A;
  --gaa-text-primary:   #F0F0F8;
  --gaa-text-secondary: #B8B8CC;
  --gaa-text-muted:     #888899;
  --gaa-border:   #2E2E42;
  background: #121218;
  color: #F0F0F8;
}
body.gaa-dark-mode .section--white,
body.gaa-dark-mode .section--cream,
body.gaa-dark-mode .section--cream-2 {
  background: var(--gaa-cream);
  color: var(--gaa-text-primary);
}
body.gaa-dark-mode .card,
body.gaa-dark-mode .prog-card,
body.gaa-dark-mode .insight-card,
body.gaa-dark-mode .cert-card,
body.gaa-dark-mode .faq-item {
  background: #1E1E2A;
  border-color: #2E2E42;
  color: #F0F0F8;
}
body.gaa-dark-mode .prog-card__desc,
body.gaa-dark-mode .cert-card__desc,
body.gaa-dark-mode .faq-item__a,
body.gaa-dark-mode .insight-card__excerpt { color: #B8B8CC; }
/* Keep dark sections unchanged in dark mode */
body.gaa-dark-mode .section--dark,
body.gaa-dark-mode .section--darker,
body.gaa-dark-mode .site-header { filter: none; }
/* System preference */
@media (prefers-color-scheme: dark) {
  body:not(.gaa-light-mode) {
    --gaa-cream:    #121218;
    --gaa-cream-2:  #1A1A24;
    --gaa-white:    #1E1E2A;
    --gaa-text-primary:   #F0F0F8;
    --gaa-text-secondary: #B8B8CC;
    --gaa-border:   #2E2E42;
  }
}

/* ── COLOUR SCHEME VARIANTS ──────────────────────────────────────────── */
/* Alternative accent colours from the customizer */
body.gaa-scheme-teal   { --gaa-gold: #0EA5E9; --gaa-focus-color: #0EA5E9; }
body.gaa-scheme-green  { --gaa-gold: #16A34A; --gaa-focus-color: #16A34A; }
body.gaa-scheme-purple { --gaa-gold: #7C3AED; --gaa-focus-color: #7C3AED; }
body.gaa-scheme-red    { --gaa-gold: #DC2626; --gaa-focus-color: #DC2626; }
body.gaa-scheme-navy   { --gaa-gold: #032B5D; --gaa-focus-color: #1D4ED8; }

/* ── LAYOUT VARIANTS ─────────────────────────────────────────────────── */
body.gaa-layout-wide   { --gaa-container-width: 1320px; }
body.gaa-layout-narrow { --gaa-container-width: 900px; }
body.gaa-layout-boxed  .container { max-width: 900px; }

/* Compact spacing */
body.gaa-spacing-compact { --gaa-section-padding: 56px; --gaa-card-padding: 18px; }
/* Generous spacing */
body.gaa-spacing-generous { --gaa-section-padding: 128px; --gaa-card-padding: 40px; }

/* ── BORDER RADIUS VARIANTS ──────────────────────────────────────────── */
body.gaa-radius-sharp   { --gaa-border-radius: 0px; }
body.gaa-radius-rounded { --gaa-border-radius: 12px; }
body.gaa-radius-pill    { --gaa-border-radius: 999px; }
/* Apply the radius variable throughout */
body[class*="gaa-radius"] .card,
body[class*="gaa-radius"] .btn,
body[class*="gaa-radius"] .prog-card,
body[class*="gaa-radius"] .insight-card,
body[class*="gaa-radius"] .cert-card,
body[class*="gaa-radius"] .faq-item,
body[class*="gaa-radius"] .module-item,
body[class*="gaa-radius"] .testimonial-card,
body[class*="gaa-radius"] .faculty-card,
body[class*="gaa-radius"] .enrol-card { border-radius: var(--gaa-border-radius) !important; }

/* ── HEADER STYLE VARIANTS ───────────────────────────────────────────── */
body.gaa-header-transparent .site-header:not(.scrolled) {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  position: fixed;
  width: 100%;
}
body.gaa-header-transparent .site-header:not(.scrolled) .nav-logo__wordmark,
body.gaa-header-transparent .site-header:not(.scrolled) .nav-menu a { color: #fff; }

body.gaa-header-dark .site-header {
  background: var(--gaa-ink);
  border-bottom-color: rgba(255,255,255,0.08);
}
body.gaa-header-dark .nav-logo__wordmark { color: #fff; }
body.gaa-header-dark .nav-menu a { color: rgba(255,255,255,0.7); }
body.gaa-header-dark .nav-menu a:hover { color: #fff; }

/* ── BUTTON STYLE VARIANTS ───────────────────────────────────────────── */
body.gaa-buttons-outline .btn--primary {
  background: transparent;
  color: var(--gaa-gold);
  border: 2px solid var(--gaa-gold);
}
body.gaa-buttons-outline .btn--primary:hover {
  background: var(--gaa-gold);
  color: #1A1A2E;
}
body.gaa-buttons-pill .btn { border-radius: 999px; }
body.gaa-buttons-square .btn { border-radius: 0; }

/* ── HERO STYLE VARIANTS ─────────────────────────────────────────────── */
body.gaa-hero-centered .hero__left { text-align: center; align-items: center; }
body.gaa-hero-centered .hero__sub { margin-left: auto; margin-right: auto; }
body.gaa-hero-centered .hero__actions { justify-content: center; }
body.gaa-hero-centered .hero__proof { justify-content: center; }

/* ── SECTION DIVIDER VARIANTS ────────────────────────────────────────── */
body.gaa-dividers-wave .section::before {
  content: '';
  position: absolute;
  top: -40px; left: 0; right: 0; height: 40px;
  background: inherit;
  clip-path: ellipse(55% 100% at 50% 0%);
}

/* ── SIDEBAR WIDTH VARIANTS ──────────────────────────────────────────── */
body.gaa-sidebar-show .content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

/* ── FONT FAMILY VARIANTS ────────────────────────────────────────────── */
body.gaa-font-sans h1, body.gaa-font-sans h2, body.gaa-font-sans h3,
body.gaa-font-sans h4, body.gaa-font-sans h5, body.gaa-font-sans h6 {
  font-family: var(--font-body);
  letter-spacing: -0.03em;
}
body.gaa-font-mono h1, body.gaa-font-mono h2, body.gaa-font-mono h3 {
  font-family: var(--font-mono);
  letter-spacing: 0;
}

/* ── ANIMATION SPEED VARIANTS ────────────────────────────────────────── */
body.gaa-anim-fast  * { transition-duration: 0.08s !important; }
body.gaa-anim-slow  * { transition-duration: 0.4s !important; }

/* ── PRINT ENHANCEMENTS ──────────────────────────────────────────────── */
@media print {
  :root { --gaa-font-size-base: 12pt; }
  body { font-size: 12pt; line-height: 1.5; color: #000; background: #fff; }
  .site-header, .announce-bar, .ticker, .proof-bar, .final-cta,
  .site-footer, .hero__right, .btn, nav { display: none !important; }
  h1,h2,h3 { page-break-after: avoid; color: #000; }
  .section { padding: 20pt 0; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 10pt; color: #666; }
}

/* ── ACCESSIBILITY TOOLBAR ───────────────────────────────────────────── */
#gaa-a11y-toolbar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(calc(100% - 44px));
  z-index: 9999;
  background: var(--gaa-ink, #032B5D);
  border-radius: 8px 0 0 8px;
  box-shadow: -4px 0 20px rgba(0,0,0,0.2);
  transition: transform 0.25s ease;
  min-width: 240px;
}
#gaa-a11y-toolbar.open { transform: translateY(-50%) translateX(0); }
#gaa-a11y-toolbar .a11y-toggle {
  position: absolute;
  left: -44px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--gaa-gold, #F7941E);
  border: none;
  border-radius: 8px 0 0 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A1A2E;
  font-size: 20px;
}
#gaa-a11y-toolbar .a11y-panel {
  padding: 20px 16px;
  width: 240px;
}
#gaa-a11y-toolbar .a11y-title {
  font-family: var(--font-mono, monospace);
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
#gaa-a11y-toolbar .a11y-section { margin-bottom: 16px; }
#gaa-a11y-toolbar .a11y-section-title {
  font-size: 11px;
  color: var(--gaa-gold, #F7941E);
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
#gaa-a11y-toolbar .a11y-btn {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  padding: 7px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-bottom: 6px;
  transition: background 0.15s;
  text-align: left;
}
#gaa-a11y-toolbar .a11y-btn:hover { background: rgba(255,255,255,0.14); }
#gaa-a11y-toolbar .a11y-btn.active { background: var(--gaa-gold, #F7941E); color: #1A1A2E; border-color: var(--gaa-gold, #F7941E); font-weight: 700; }
#gaa-a11y-toolbar .a11y-font-row { display: flex; gap: 6px; margin-bottom: 6px; }
#gaa-a11y-toolbar .a11y-font-btn {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  padding: 7px 4px;
  font-weight: 700;
  transition: background 0.15s;
}
#gaa-a11y-toolbar .a11y-font-btn:hover { background: rgba(255,255,255,0.14); }
#gaa-a11y-toolbar .a11y-font-btn.active { background: var(--gaa-gold, #F7941E); color: #1A1A2E; border-color: var(--gaa-gold, #F7941E); }
#gaa-a11y-toolbar .a11y-reset {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  padding: 6px;
  cursor: pointer;
  width: 100%;
  margin-top: 8px;
}
#gaa-a11y-toolbar .a11y-reset:hover { color: rgba(255,255,255,0.8); }

