/* ================================================================
   AALS — Modernised Design System
   ================================================================ */
:root {
  /* Brand palette: white / red / slate-blue / black */
  --red:       #c40233;
  --red-h:     #a30126;
  --blue:      #3e4c66;
  --blue-h:    #2d3950;
  --black:     #000000;
  --white:     #ffffff;

  /* Legacy token aliases (kept so existing class names keep working) */
  --navy-deep: #3e4c66;
  --navy:      #3e4c66;
  --cobalt:    #c40233;
  --cobalt-h:  #a30126;
  --gold:      #c40233;
  --gold-light:#fee4e7;
  --bg:        #ffffff;
  --surface:   #ffffff;
  --fg:        #000000;
  --muted:     #4b5563;
  --border:    #e5e7eb;
  --r-md:      10px;
  --font:      'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono:      ui-monospace, 'JetBrains Mono', Menlo, monospace;
  --r:         8px;
  --r-lg:      14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: var(--cobalt); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ----------------------------------------------------------------
   LAYOUT
   ---------------------------------------------------------------- */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--white { background: var(--surface); }
.section--navy  { background: var(--navy-deep); color: #fff; }

/* ----------------------------------------------------------------
   TOPBAR
   ---------------------------------------------------------------- */
.topbar {
  background: var(--navy-deep);
  font-size: 12.5px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.topbar-left { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.topbar-left a, .topbar-left span {
  color: rgba(255,255,255,.7); text-decoration: none;
  display: flex; align-items: center; gap: 5px; transition: color .15s;
}
.topbar-left a:hover { color: #fff; }
.topbar-right { display: flex; align-items: center; gap: 12px; }
.topbar-right a {
  color: rgba(255,255,255,.6); display: flex;
  align-items: center; transition: color .15s;
}
.topbar-right a:hover { color: #fff; }

/* ----------------------------------------------------------------
   HEADER / NAV
   ---------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 120px; gap: 20px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 104px; width: auto; }
.nav-logo-text { display: none; }
.nav-links { display: flex; list-style: none; gap: 2px; align-items: center; }
.nav-links a {
  position: relative;
  display: block; padding: 7px 12px; font-size: 14px; font-weight: 500;
  color: var(--muted); border-radius: var(--r); text-decoration: none;
  transition: color .15s, background .15s; white-space: nowrap;
}
.nav-links a:hover { color: var(--fg); background: #f1f5f9; }
.nav-links a.active { color: var(--blue); font-weight: 700; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 12px; right: 12px;
  bottom: -1px;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
}
.nav-links a.nav-cta { background: var(--cobalt); color: #fff; padding: 7px 16px; margin-left: 4px; }
.nav-links a.nav-cta:hover { background: var(--cobalt-h); color: #fff; }
.nav-links a.nav-cta.active { background: var(--red-h); color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,.25); }
.nav-links a.nav-cta.active::after { display: none; }
.burger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px; background: none;
  border: 1px solid var(--border); border-radius: var(--r); cursor: pointer; padding: 7px;
}
.burger span { display: block; height: 2px; background: var(--fg); border-radius: 2px; transition: transform .2s, opacity .2s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mob-nav {
  display: none; flex-direction: column;
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 8px 24px 16px; gap: 2px;
}
.mob-nav.open { display: flex; }
.mob-nav a {
  display: block; padding: 10px 12px; font-size: 15px; font-weight: 500;
  color: var(--muted); border-radius: var(--r); text-decoration: none;
  transition: color .15s, background .15s;
}
.mob-nav a:hover { color: var(--fg); background: #f1f5f9; }
.mob-nav a.active {
  color: var(--blue); font-weight: 700;
  background: rgba(196,2,51,.06);
  border-left: 3px solid var(--red);
  padding-left: 9px;
}

/* ----------------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px; border-radius: var(--r);
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: all .15s; border: none; cursor: pointer; white-space: nowrap;
}
.btn-primary { background: var(--cobalt); color: #fff; }
.btn-primary:hover { background: var(--cobalt-h); text-decoration: none; color: #fff; }
.btn-outline-w { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.btn-outline-w:hover { background: rgba(255,255,255,.08); text-decoration: none; color: #fff; }
.btn-navy { background: var(--navy-deep); color: #fff; }
.btn-navy:hover { background: var(--navy); text-decoration: none; color: #fff; }

/* ----------------------------------------------------------------
   CHIPS / BADGES
   ---------------------------------------------------------------- */
.chip {
  display: inline-block; padding: 2px 9px; border-radius: 100px;
  font-size: 11.5px; font-weight: 600; white-space: nowrap;
}
.chip-navy   { background: rgba(62,76,102,.08);  color: var(--blue); }
.chip-cobalt { background: rgba(196,2,51,.08);   color: var(--red); }
.chip-gold   { background: rgba(196,2,51,.08);   color: var(--red); }
.chip-w      { background: rgba(255,255,255,.14); color: rgba(255,255,255,.95); }

/* ----------------------------------------------------------------
   SECTION HEADINGS
   ---------------------------------------------------------------- */
.sec-head { margin-bottom: 48px; }
.sec-tag {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.sec-title {
  font-size: clamp(24px, 3vw, 36px); font-weight: 800;
  letter-spacing: -.025em; line-height: 1.15; color: var(--fg); margin-bottom: 10px;
}
.sec-title--white { color: #fff; }
.sec-sub { font-size: 16px; color: var(--muted); max-width: 480px; line-height: 1.65; }
.sec-sub--white { color: rgba(255,255,255,.65); }

/* ----------------------------------------------------------------
   HOME HERO  (white background, red/blue/black type)
   ---------------------------------------------------------------- */
.home-hero {
  position: relative;
  background: var(--white);
  border-bottom: 3px solid var(--red);
  display: flex; align-items: center; overflow: hidden;
}
.home-hero-bg { display: none; }
.home-hero-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 56px;
  padding: 48px 0 56px; width: 100%;
}
.home-hero-logo { flex-shrink: 0; }
.home-hero-logo img { height: 180px; width: auto; display: block; }
.home-hero-content { max-width: 680px; }
.kicker {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--red);
  border: 1px solid var(--red); padding: 4px 10px;
  border-radius: 4px; margin-bottom: 20px; background: #fff;
}
.home-hero h1 {
  font-size: clamp(30px, 5vw, 54px); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.1; color: var(--blue); margin-bottom: 22px;
}
.home-hero-quote {
  font-size: 17px; color: var(--black); line-height: 1.75;
  border-left: 4px solid var(--red);
  padding-left: 18px; margin-bottom: 36px; max-width: 620px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
/* Hero secondary CTA: outlined in slate-blue on white */
.home-hero .btn-outline-w {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.home-hero .btn-outline-w:hover {
  background: var(--blue);
  color: #fff;
}

/* ----------------------------------------------------------------
   TRUST STRIP
   ---------------------------------------------------------------- */
.trust-strip {
  background: var(--surface); border-bottom: 1px solid var(--border); padding: 16px 0;
}
.trust-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.trust-label {
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); margin-right: 4px; flex-shrink: 0;
}
.trust-pill {
  display: inline-flex; align-items: center; padding: 4px 12px;
  border: 1px solid var(--border); background: var(--bg);
  border-radius: 100px; font-size: 12px; font-weight: 600;
  color: var(--muted); white-space: nowrap;
}

/* ----------------------------------------------------------------
   FOUNDER PROFILE
   ---------------------------------------------------------------- */
.founder-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.founder-body {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 16px;
}
.founder-lead {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.75;
  color: var(--navy);
  text-align: center;
  padding: 0;
}
.founder-credentials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
  padding-bottom: 32px;
}
.founder-cred {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.cred-stat {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cobalt);
  letter-spacing: -0.01em;
}
.cred-label {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--muted);
}
.founder-prose {
  max-width: 800px;
  margin: 0 auto;
  padding: 16px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.founder-prose p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--fg);
}
@media (max-width: 800px) {
  .founder-credentials { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .founder-credentials { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------
   FACULTY
   ---------------------------------------------------------------- */
.fac-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(440px, 1fr)); gap: 28px;
}
.fac-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 36px; position: relative; overflow: hidden;
}
.fac-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--cobalt));
}
.fac-intro {
  max-width: 780px; margin: 0 auto 48px; text-align: center;
  font-size: 16.5px; line-height: 1.8; color: var(--muted);
}
.fac-intro p + p { margin-top: 12px; }
.fac-bio { font-size: 15px; line-height: 1.78; color: var(--muted); margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border); }
.fac-bio p + p { margin-top: 10px; }
.fac-creds { font-weight: 600; color: var(--fg); letter-spacing: 0.01em; margin-bottom: 12px; }
.fac-list { margin: 0; padding-left: 20px; display: flex; flex-direction: column; gap: 6px; }
.fac-list li { color: var(--muted); }
.fac-profile { display: flex; align-items: center; gap: 16px; }
.fac-avatar {
  width: 68px; height: 68px; border-radius: 50%; flex-shrink: 0;
  background: var(--bg); border: 2px dashed var(--border);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.fac-avatar img { width: 100%; height: 100%; object-fit: cover; }
.fac-name { font-size: 16px; font-weight: 700; color: var(--fg); margin-bottom: 2px; }
.fac-role { font-size: 13px; font-weight: 600; color: var(--cobalt); margin-bottom: 3px; }
.fac-quals { font-size: 11.5px; color: var(--muted); font-family: var(--mono); }

/* ----------------------------------------------------------------
   HOME COURSE CARDS
   ---------------------------------------------------------------- */
.courses-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 20px; }
.ccard-img { height: 150px; overflow: hidden; }
.ccard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.ccard:hover .ccard-img img { transform: scale(1.04); }
.ccard {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column; transition: box-shadow .2s, transform .2s;
}
.ccard:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); transform: translateY(-2px); }
.ccard-body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.ccard-title { font-size: 15px; font-weight: 700; color: var(--fg); line-height: 1.35; }
.ccard-desc { font-size: 13.5px; color: var(--muted); line-height: 1.65; flex: 1; }
.ccard-meta { display: flex; gap: 6px; flex-wrap: wrap; }
.ccard-footer {
  padding: 14px 22px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.ccard-footer a { font-size: 13.5px; font-weight: 600; color: var(--cobalt); text-decoration: none; }
.ccard-footer a:hover { text-decoration: underline; }

/* ----------------------------------------------------------------
   PAGE HERO (inner pages) — white with red/blue/black
   ---------------------------------------------------------------- */
.page-hero {
  background: var(--white);
  color: var(--black);
  padding: 48px 0 40px;
  position: relative; overflow: hidden;
  border-bottom: 3px solid var(--red);
}
.page-hero::before { content: none; }
.page-hero-content { position: relative; }
.page-hero-kicker {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--red);
  border: 1px solid var(--red); padding: 4px 10px;
  border-radius: 4px; margin-bottom: 16px;
}
.page-hero h1 {
  font-size: clamp(26px, 4vw, 42px); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.15; margin-bottom: 12px;
  color: var(--blue);
}
.page-hero p { font-size: 16px; color: var(--black); max-width: 580px; line-height: 1.65; }
.page-hero p a { color: var(--red); font-weight: 600; }

/* ----------------------------------------------------------------
   FULL COURSE CARDS (courses page)
   ---------------------------------------------------------------- */
.course-full {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; margin-bottom: 28px;
}
.cf-header {
  background: var(--navy); padding: 24px 30px;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
}
.cf-num { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.cf-name { font-size: 21px; font-weight: 800; color: #fff; letter-spacing: -.025em; line-height: 1.2; }
.cf-badges { display: flex; gap: 8px; flex-wrap: wrap; align-items: flex-start; flex-shrink: 0; }
.cf-body { padding: 28px 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.cf-full-w { grid-column: 1 / -1; }
.cf-sec-label {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.cf-text { font-size: 14.5px; color: var(--fg); line-height: 1.7; }
.cf-list { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.cf-list li { font-size: 14px; color: var(--fg); display: flex; align-items: baseline; gap: 8px; }
.cf-list li::before { content: '—'; color: var(--red); font-weight: 700; flex-shrink: 0; }
.cf-cert {
  background: var(--gold-light); border: 1px solid rgba(196,2,51,.2);
  border-radius: var(--r); padding: 12px 16px;
  font-size: 14px; color: var(--blue); font-weight: 500;
}
.cf-cert-label {
  font-size: 10px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--red); margin-bottom: 4px;
}
.cf-img { height: 220px; overflow: hidden; }
.cf-img img { width: 100%; height: 100%; object-fit: cover; }
.cf-footer {
  padding: 18px 30px;
  border-top: 1px solid var(--border);
  background: #fafbfc;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.cf-footer-text { font-size: 13.5px; color: var(--muted); }
@media (max-width: 600px) {
  .cf-footer { flex-direction: column; align-items: stretch; }
  .cf-footer .btn { justify-content: center; }
}

.img-ph {
  background: linear-gradient(135deg, var(--bg) 0%, var(--border) 100%);
  border: 2px dashed var(--border); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px; color: var(--muted);
  font-size: 13px; font-weight: 500; text-align: center; padding: 20px;
}

/* ----------------------------------------------------------------
   FULL-WIDTH SECTION IMAGE
   ---------------------------------------------------------------- */
.section-banner { width: 100%; height: 300px; overflow: hidden; }
.section-banner img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }

/* ----------------------------------------------------------------
   DATE DISCLAIMER CALLOUT
   ---------------------------------------------------------------- */
.date-disclaimer {
  background: #fff8f9;
  border: 1px solid rgba(196,2,51,.2);
  border-left: 4px solid var(--red);
  border-radius: var(--r);
  padding: 18px 22px;
  margin-bottom: 22px;
}
.date-disclaimer-title {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--red); margin-bottom: 6px;
}
.date-disclaimer p {
  font-size: 14.5px; line-height: 1.7; color: var(--black);
}
.date-disclaimer p a { color: var(--red); font-weight: 600; }

/* ----------------------------------------------------------------
   DATES TABLE
   ---------------------------------------------------------------- */
.dates-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.dates-table { width: 100%; border-collapse: collapse; }
.dates-table thead th {
  background: var(--navy); color: rgba(255,255,255,.7); font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: 12px 18px; text-align: left;
}
.dates-table tbody tr { border-bottom: 1px solid var(--border); transition: background .1s; }
.dates-table tbody tr:last-child { border-bottom: none; }
.dates-table tbody tr:hover { background: var(--bg); }
.dates-table tbody td { padding: 13px 18px; font-size: 14px; color: var(--fg); vertical-align: top; }
.dates-table tbody td:first-child {
  font-weight: 600; color: var(--navy); white-space: nowrap;
  font-family: var(--mono); font-size: 12.5px;
}
/* Month accordion */
.dates-accordion {
  display: flex; flex-direction: column; gap: 12px;
}
.dates-month-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow .15s;
}
.dates-month-card[open] {
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.dates-month-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  user-select: none;
  background: #f8fafc;
  transition: background .15s;
  gap: 16px;
}
.dates-month-summary::-webkit-details-marker { display: none; }
.dates-month-summary::marker { content: ''; }
.dates-month-summary:hover { background: #f1f5f9; }
.dates-month-card[open] > .dates-month-summary {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.dates-month-name {
  display: flex; align-items: center; gap: 14px;
  font-size: 16px; font-weight: 700;
  color: var(--blue);
  letter-spacing: -.01em;
}
.dates-month-name::before {
  content: '+';
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: var(--red); color: #fff;
  border-radius: 6px;
  font-size: 18px; font-weight: 700;
  font-family: var(--mono);
  flex-shrink: 0;
  line-height: 1;
}
.dates-month-card[open] > .dates-month-summary .dates-month-name::before {
  content: '\2212'; /* minus sign */
}
.dates-month-count {
  font-size: 12px; font-weight: 700;
  color: var(--muted);
  font-family: var(--mono);
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.dates-month-card .dates-table { border-radius: 0; }
.ceu-chip {
  display: inline-block; padding: 2px 8px;
  background: rgba(196,2,51,.07); color: var(--red);
  border-radius: 4px; font-size: 11.5px; font-weight: 600; font-family: var(--mono);
}
.dates-action-col { width: 110px; }
.dates-register-btn {
  display: inline-flex; align-items: center;
  padding: 6px 14px; background: var(--red); color: #fff !important;
  border-radius: 6px; font-size: 12.5px; font-weight: 700;
  text-decoration: none; transition: background .15s;
  white-space: nowrap;
}
.dates-register-btn:hover { background: var(--red-h); text-decoration: none; }
@media (max-width: 720px) {
  .dates-table thead th:nth-child(3),
  .dates-table tbody td:nth-child(3) { display: none; }
  .dates-action-col { width: auto; }
}

/* ----------------------------------------------------------------
   REGISTER BOX
   ---------------------------------------------------------------- */
.reg-box {
  background: var(--navy); color: #fff; border-radius: var(--r-lg); padding: 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-top: 40px;
}
.reg-box h3 { font-size: 21px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 6px; }
.reg-box p { color: rgba(255,255,255,.68); font-size: 15px; }
.reg-box-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* ----------------------------------------------------------------
   ACCOMMODATION
   ---------------------------------------------------------------- */
.accomm-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.accomm-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px; }
.accomm-name { font-size: 16px; font-weight: 700; color: var(--fg); margin-bottom: 3px; }
.accomm-addr { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.accomm-rows { display: flex; flex-direction: column; gap: 5px; }
.accomm-row { display: flex; gap: 8px; font-size: 13px; }
.ar-lbl { font-weight: 600; color: var(--muted); min-width: 60px; flex-shrink: 0; }
.ar-val { color: var(--fg); }
.ar-val a { color: var(--cobalt); }

/* ----------------------------------------------------------------
   CONTACT
   ---------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--fg); }
.form-field input, .form-field select, .form-field textarea {
  padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--r);
  font-size: 15px; font-family: inherit; color: var(--fg); background: var(--surface);
  outline: none; transition: border-color .15s, box-shadow .15s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--cobalt); box-shadow: 0 0 0 3px rgba(29,78,216,.1);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.cd-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; margin-bottom: 16px; }
.cd-title { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.cd-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.cd-row:last-child { margin-bottom: 0; }
.cd-icon {
  width: 30px; height: 30px; background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 13px;
}
.cd-lbl { font-size: 11px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); margin-bottom: 1px; }
.cd-val { font-size: 14px; color: var(--fg); font-weight: 500; }
.cd-val a { color: var(--cobalt); }

/* ----------------------------------------------------------------
   REGISTRATION FORM
   ---------------------------------------------------------------- */
.reg-form {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 28px;
}
/* Defensive: ensure the JS-set hidden attribute actually hides these elements
   (the display: flex / block rules above would otherwise override [hidden]) */
.reg-form[hidden],
.reg-success[hidden] { display: none !important; }
.form-section {
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 26px 28px 28px;
  background: var(--surface);
  display: flex; flex-direction: column; gap: 16px;
}
.form-section-title {
  display: flex; align-items: center; gap: 12px;
  font-size: 16px; font-weight: 700; color: var(--blue);
  margin-bottom: 6px;
  width: 100%;
}
.form-section-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  background: var(--red); color: #fff;
  border-radius: 6px;
  font-size: 12px; font-weight: 800; letter-spacing: .04em;
  font-family: var(--mono);
}
.form-section-note {
  font-size: 13.5px; color: var(--muted); line-height: 1.6;
  margin-bottom: 4px;
}
.reg-form .form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.reg-form .form-field {
  display: flex; flex-direction: column; gap: 5px;
}
.reg-form .form-field label {
  font-size: 13px; font-weight: 600; color: var(--blue);
}
.reg-form .form-field input,
.reg-form .form-field select,
.reg-form .form-field textarea {
  padding: 10px 14px; border: 1px solid var(--border);
  border-radius: var(--r); font-size: 15px; font-family: inherit;
  color: var(--black); background: var(--surface);
  outline: none; transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.reg-form .form-field input:focus,
.reg-form .form-field select:focus,
.reg-form .form-field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(196,2,51,.1);
}
.reg-form .form-field textarea { resize: vertical; min-height: 80px; }
.req { color: var(--red); margin-left: 2px; font-weight: 700; }
.form-hint {
  display: inline-block; font-size: 12px; color: var(--muted);
  margin-top: 4px;
}
.form-file {
  padding: 10px 14px !important;
  background: #f8fafc !important;
  cursor: pointer;
  font-size: 13.5px !important;
}
.form-file::file-selector-button {
  background: var(--blue); color: #fff;
  border: none; padding: 6px 14px; border-radius: 6px;
  font-weight: 600; font-size: 13px; cursor: pointer;
  margin-right: 12px; transition: background .15s;
}
.form-file::file-selector-button:hover { background: var(--blue-h); }
.form-checkbox {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px; line-height: 1.65; color: var(--black);
  cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
  margin-top: 4px;
  width: 18px; height: 18px;
  accent-color: var(--red);
  flex-shrink: 0;
  cursor: pointer;
}
.form-actions {
  display: flex; flex-direction: column; align-items: center;
  padding-top: 8px;
}
.form-submit {
  padding: 14px 32px; font-size: 15px;
  min-width: 240px; justify-content: center;
}
.form-submit:disabled { opacity: .5; cursor: not-allowed; }

/* Inline success state */
.reg-success {
  max-width: 720px; margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--red);
  border-radius: var(--r-lg);
  padding: 56px 40px;
  text-align: center;
}
.reg-success-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 72px; height: 72px;
  background: rgba(196,2,51,.08);
  color: var(--red);
  border-radius: 50%;
  margin-bottom: 24px;
}
.reg-success h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800; color: var(--blue);
  letter-spacing: -.025em;
  margin-bottom: 16px;
}
.reg-success p {
  font-size: 16px; line-height: 1.7; color: var(--black);
  max-width: 540px; margin: 0 auto 14px;
}
.reg-success-meta {
  font-size: 14px !important;
  color: var(--muted) !important;
  margin-top: 12px;
}
.reg-success-meta a { color: var(--red); font-weight: 600; }

@media (max-width: 640px) {
  .reg-form .form-row { grid-template-columns: 1fr; }
  .form-section { padding: 20px 18px 22px; }
  .reg-success { padding: 40px 22px; }
}

/* ----------------------------------------------------------------
   ACCREDITATION
   ---------------------------------------------------------------- */
.accred-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; }
.accred-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 18px 16px; text-align: center; }
.accred-abbr { font-size: 20px; font-weight: 800; color: var(--navy); letter-spacing: -.03em; margin-bottom: 4px; }
.accred-name { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ----------------------------------------------------------------
   PHILOSOPHY / POSTGRAD CARDS
   ---------------------------------------------------------------- */
.phil-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 320px));
  gap: 20px;
  justify-content: center;
  max-width: 1020px;
  margin: 0 auto;
}
.phil-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px; }
.phil-num { font-size: 38px; font-weight: 800; color: var(--red); letter-spacing: -.04em; line-height: 1; margin-bottom: 10px; font-family: Georgia, serif; }
.phil-title { font-size: 16px; font-weight: 700; color: var(--blue); margin-bottom: 7px; }
.phil-text { font-size: 14px; color: var(--black); line-height: 1.7; }
@media (max-width: 820px) {
  .phil-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .phil-grid { grid-template-columns: 1fr; }
}
.postgrad-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
.postgrad-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px; }
.postgrad-acad { font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.postgrad-title { font-size: 15px; font-weight: 700; color: var(--fg); margin-bottom: 3px; }
.postgrad-abbr { font-size: 13px; color: var(--cobalt); font-family: var(--mono); font-weight: 600; }

/* ----------------------------------------------------------------
   CTA SECTION
   ---------------------------------------------------------------- */
.cta-section {
  background: linear-gradient(120deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 80px 0; text-align: center; color: #fff;
}
.cta-section h2 { font-size: clamp(22px, 3vw, 34px); font-weight: 800; letter-spacing: -.03em; margin-bottom: 12px; }
.cta-section p { font-size: 16px; color: rgba(255,255,255,.68); margin-bottom: 32px; max-width: 440px; margin-left: auto; margin-right: auto; line-height: 1.65; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */
.site-footer { background: var(--navy-deep); padding: 48px 0 28px; }
.footer-inner {
  display: grid; grid-template-columns: 1fr auto auto; gap: 40px;
  padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 20px; align-items: start;
}
.footer-brand-name { font-size: 18px; font-weight: 800; color: #fff; letter-spacing: -.02em; margin-bottom: 4px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.45); max-width: 260px; line-height: 1.55; margin-bottom: 14px; }
.footer-social a { color: rgba(255,255,255,.5); display: inline-flex; align-items: center; gap: 8px; font-size: 13px; text-decoration: none; transition: color .15s; }
.footer-social a:hover { color: #fff; }
.footer-col-head { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 10px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,.55); text-decoration: none; transition: color .15s; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 12.5px; color: rgba(255,255,255,.3); }

/* ----------------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
  .cf-body { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .fac-grid { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .accomm-grid { grid-template-columns: 1fr; }
  .reg-box { flex-direction: column; }
}
@media (max-width: 480px) {
  .home-hero-inner { flex-direction: column; gap: 20px; padding: 32px 0; }
  .home-hero-logo img { height: 80px; }
  .cf-header { flex-direction: column; }
  .topbar-left span { display: none; }
}
