/*
Theme Name:        IBMR Global MBA
Theme URI:         https://global.ibmrbangalore.in
Author:            IBMR Business School
Author URI:        https://ibmrbangalore.in
Description:       Premium custom WordPress theme for the IBMR Global MBA programme — Black, Orange and premium SaaS-inspired design with gated brochure download, custom post types, full SEO and WCAG AA accessibility.
Version:           1.2.1
Requires at least: 6.4
Tested up to:      6.7
Requires PHP:      8.1
License:           Proprietary
License URI:       https://ibmrbangalore.in
Text Domain:       ibmr-global-mba
Tags:              custom-background, custom-logo, custom-menu, featured-images, full-site-editing, rtl-language-support, theme-options, translation-ready

/*--------------------------------------------------------------
 IBMR Global MBA — Brand Design System
 Black (prestige) · Orange (brand accent, from the IBMR logo)
 NB: internal token names --navy-* now hold the charcoal/black scale and
     --gold-* hold the orange scale (renamed values, kept names for stability).
--------------------------------------------------------------*/

/* ============================================================
   1. CSS CUSTOM PROPERTIES — DESIGN TOKENS
   ============================================================ */

:root {
  /* Radius */
  --radius: 0.8rem;
  --radius-sm: calc(var(--radius) * 0.6);
  --radius-md: calc(var(--radius) * 0.8);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) * 1.35);
  --radius-2xl: calc(var(--radius) * 1.8);
  --radius-3xl: calc(var(--radius) * 2.4);
  --radius-full: 9999px;

  /* Header height — responsive (see media query below). Logo grows with it
     so the vertical whitespace around the logo stays constant (~14–18px). */
  --header-h: 6rem;

  /* Deep navy — primary brand colour */
  --navy-50:  oklch(0.971 0.0019 55);
  --navy-100: oklch(0.938 0.0035 55);
  --navy-200: oklch(0.882 0.0054 55);
  --navy-300: oklch(0.788 0.008 55);
  --navy-400: oklch(0.648 0.0106 55);
  --navy-500: oklch(0.52 0.0125 55);
  --navy-600: oklch(0.424 0.0128 55);
  --navy-700: oklch(0.34 0.0115 55);
  --navy-800: oklch(0.266 0.0096 55);
  --navy-900: oklch(0.205 0.008 55);
  --navy-950: oklch(0.16 0.0064 55);

  /* Accent — burnt / amber orange (deeper, slightly muted for a premium feel) */
  --gold-50:  oklch(0.967 0.028 55);
  --gold-100: oklch(0.935 0.050 53);
  --gold-200: oklch(0.885 0.080 51);
  --gold-300: oklch(0.800 0.115 50);  /* bright amber — numerals/accents on black */
  --gold-400: oklch(0.745 0.142 48);  /* accents on dark */
  --gold-500: oklch(0.675 0.155 47);  /* PRIMARY CTA — burnt orange */
  --gold-600: oklch(0.600 0.145 46);
  --gold-700: oklch(0.515 0.128 45);  /* eyebrows on light (AA) */
  --gold-800: oklch(0.440 0.108 44);

  /* Deeper orange — gradient end / sparing use */
  --orange-400: oklch(0.720 0.145 52);
  --orange-500: oklch(0.655 0.155 47);
  --orange-600: oklch(0.585 0.150 44);

  /* Neutrals */
  --cream: oklch(0.99 0.0078 50);
  --sand:  oklch(0.974 0.0124 50);
  --ink:   oklch(0.235 0.0035 55);

  /* Semantic */
  --background: var(--cream);
  --foreground: var(--ink);
  --primary: var(--navy-900);
  --primary-fg: oklch(0.985 0.0155 50);
  --muted: oklch(0.965 0.0013 55);
  --muted-fg: oklch(0.455 0.0043 55);
  --border: oklch(0.905 0.0019 55);
  --ring: var(--gold-500);

  /* Shadows */
  --shadow-soft: 0 1px 2px oklch(0.205 0.008 55 / 0.04),
                 0 4px 12px oklch(0.205 0.008 55 / 0.06);
  --shadow-card: 0 1px 2px oklch(0.205 0.008 55 / 0.05),
                 0 8px 24px -8px oklch(0.205 0.008 55 / 0.12);
  --shadow-lift: 0 2px 4px oklch(0.205 0.008 55 / 0.05),
                 0 20px 48px -16px oklch(0.205 0.008 55 / 0.22);
  --shadow-gold: 0 8px 30px -10px oklch(0.675 0.155 47 / 0.45);

  /* Motion */
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:    cubic-bezier(0.22, 0.61, 0.36, 1);
  --duration-fast: 180ms;
  --duration-base: 280ms;
  --duration-slow: 500ms;

  /* Typography */
  --font-sans:    'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-mono:    'JetBrains Mono', 'Fira Code', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Max widths */
  --container: 1200px;
  --container-narrow: 768px;
  --container-wide: 1440px;

  /* ---- Semantic brand roles ---------------------------------- */
  --brand: var(--navy-900);          /* primary brand colour */
  --brand-strong: var(--navy-950);
  --accent: var(--gold-500);         /* RESERVED for primary CTAs + key numerals */
  --accent-hover: var(--gold-400);
  --accent-ink: var(--navy-950);     /* text on accent */

  /* ---- Spacing scale (vertical rhythm) ----------------------- */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 2.5rem;
  --sp-8: 3.5rem;
  --sp-9: 4.5rem;
  --sp-section: 5rem;       /* section padding — mobile  */
  --sp-section-lg: 8rem;    /* section padding — desktop */
}

/* Taller header on larger screens to host the larger desktop logo while
   keeping the same comfortable whitespace around it. */
@media (min-width: 1024px) {
  :root { --header-h: 6.5rem; } /* 104px — logo 80px + ~12px top/bottom */
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */

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

html {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  color: var(--foreground);
  background-color: var(--background);
}

body {
  font-feature-settings: "cv11", "ss01";
  /* `clip` prevents horizontal overflow WITHOUT turning <body> into a nested
     scroll container (which `overflow-x: hidden` does, via the computed
     `overflow: hidden auto`). Falls back gracefully on very old browsers. */
  overflow-x: clip;
}

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

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

button {
  cursor: pointer;
  font-family: inherit;
  background: none;
  border: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  letter-spacing: -0.025em;
  line-height: 1.1;
  text-wrap: balance; /* prevents orphan words / lopsided headings */
}

::selection {
  background: var(--gold-200);
  color: var(--navy-950);
}

:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ============================================================
   3. TYPOGRAPHY SCALE
   ============================================================ */

.text-display-xl { font-size: clamp(2.5rem, 5vw, 4rem);   font-weight: 600; line-height: 1.02; }
.text-display-lg { font-size: clamp(2rem,  4vw, 3.25rem);  font-weight: 600; line-height: 1.04; }
.text-display-md { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 600; line-height: 1.1; }
.text-display-sm { font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 600; line-height: 1.15; }
.text-xl  { font-size: 1.25rem; line-height: 1.7; }
.text-lg  { font-size: 1.125rem; line-height: 1.7; }
.text-base{ font-size: 1rem;   line-height: 1.7; }
.text-sm  { font-size: 0.875rem; line-height: 1.6; }
.text-xs  { font-size: 0.75rem; line-height: 1.5; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

@media (min-width: 640px) {
  .container { padding-inline: 2rem; }
}

.section-pad {
  padding-block: var(--sp-section);
}

@media (min-width: 1024px) {
  .section-pad { padding-block: var(--sp-section-lg); }
}

.section-pad-sm {
  padding-block: calc(var(--sp-section) * 0.72);
}

@media (min-width: 1024px) {
  .section-pad-sm { padding-block: calc(var(--sp-section-lg) * 0.72); }
}

/* Alternating section surfaces for vertical rhythm / separation */
.sec-white    { background-color: #fff; }
.sec-offwhite { background-color: var(--cream); }
.sec-tint     { background-color: var(--sand); }
.sec-muted    { background-color: var(--muted); }

.grid-auto-fill-sm {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
}

.grid-auto-fill-md {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 1.75rem;
}

/* ============================================================
   5. COLOUR / BACKGROUND UTILITIES
   ============================================================ */

.bg-navy-950 { background-color: var(--navy-950); }
.bg-navy-900 { background-color: var(--navy-900); }
.bg-cream    { background-color: var(--cream); }
.bg-white    { background-color: #fff; }
.bg-muted    { background-color: var(--muted); }

.text-white  { color: #fff; }
.text-gold-300 { color: var(--gold-300); }
.text-gold-400 { color: var(--gold-400); }
.text-gold-500 { color: var(--gold-500); }
.text-navy-700 { color: var(--navy-700); }
.text-navy-800 { color: var(--navy-800); }
.text-muted  { color: var(--muted-fg); }

.text-gradient-gold {
  background-image: linear-gradient(100deg, var(--gold-600), var(--gold-400) 55%, var(--orange-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Dot grid patterns */
.bg-dot-grid {
  background-image: radial-gradient(oklch(1 0 0 / 0.08) 1px, transparent 1px);
  background-size: 22px 22px;
}
.bg-dot-grid-ink {
  background-image: radial-gradient(oklch(0.205 0.008 55 / 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
}

.ring-hairline {
  box-shadow: inset 0 0 0 1px oklch(0.205 0.008 55 / 0.08);
}

/* ============================================================
   6. BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  padding: 0.625rem 1.25rem;
  transition:
    background-color var(--duration-fast) var(--ease-premium),
    border-color     var(--duration-fast) var(--ease-premium),
    color            var(--duration-fast) var(--ease-premium),
    box-shadow       var(--duration-fast) var(--ease-premium),
    transform        var(--duration-fast) var(--ease-premium);
  cursor: pointer;
  text-decoration: none;
}

.btn:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 2px;
}

.btn:active { transform: scale(0.97); }

/* Primary */
.btn-primary {
  background-color: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--primary-fg);
}
.btn-primary:hover {
  background-color: var(--navy-800);
  border-color: var(--navy-800);
  box-shadow: var(--shadow-card);
}

/* Gold / premium */
.btn-gold {
  background-color: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-950);
  font-weight: 600;
}
.btn-gold:hover {
  background-color: var(--gold-400);
  border-color: var(--gold-400);
  box-shadow: var(--shadow-gold);
}

/* Outline */
.btn-outline {
  background-color: transparent;
  border-color: var(--border);
  color: var(--navy-800);
}
.btn-outline:hover {
  background-color: var(--muted);
  border-color: var(--navy-200);
}

/* Ghost (dark bg) */
.btn-ghost-dark {
  background-color: oklch(1 0 0 / 0.10);
  border-color: oklch(1 0 0 / 0.20);
  color: #fff;
}
.btn-ghost-dark:hover {
  background-color: oklch(1 0 0 / 0.16);
  border-color: oklch(1 0 0 / 0.30);
}

/* Sizes */
.btn-sm { padding: 0.5rem 1rem;    font-size: 0.8125rem; }
.btn-lg { padding: 0.875rem 1.75rem; font-size: 1rem; }
.btn-xl { padding: 1.05rem 2.2rem;  font-size: 1.0625rem; font-weight: 600; }

.btn-icon { gap: 0.375rem; }
.btn-icon svg, .btn-icon .icon { width: 1em; height: 1em; }

/* Full width */
.btn-full { width: 100%; }

/* ============================================================
   7. HEADER
   ============================================================ */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  background-color: oklch(0.99 0.0078 50 / 0.80);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition:
    height           var(--duration-base) var(--ease-premium),
    border-color     var(--duration-base) var(--ease-premium),
    box-shadow       var(--duration-base) var(--ease-premium),
    background-color var(--duration-base) var(--ease-premium);
}

/* Condense on scroll — header shrinks, logo scales down, surface solidifies */
.site-header.scrolled {
  height: 4.5rem;
  border-color: var(--navy-100);
  box-shadow: var(--shadow-soft);
  background-color: oklch(0.99 0.0078 50 / 0.92);
}

@media (min-width: 1024px) {
  .site-header.scrolled { height: 5rem; }
}

.header-logo img,
.header-logo .custom-logo {
  transition: height var(--duration-base) var(--ease-premium),
              opacity var(--duration-fast) var(--ease-premium);
}

.site-header.scrolled .header-logo img,
.site-header.scrolled .header-logo .custom-logo {
  height: 2.75rem;        /* condensed: mobile */
}

@media (min-width: 640px) {
  .site-header.scrolled .header-logo img,
  .site-header.scrolled .header-logo .custom-logo { height: 3.25rem; }
}

@media (min-width: 1024px) {
  .site-header.scrolled .header-logo img,
  .site-header.scrolled .header-logo .custom-logo { height: 3.5rem; }
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

@media (min-width: 640px) {
  .header-inner { padding-inline: 2rem; }
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: var(--radius-sm);
}

.header-logo img,
.header-logo .custom-logo {
  transition: opacity var(--duration-fast) var(--ease-premium);
}

.header-logo:hover img,
.header-logo:hover .custom-logo {
  opacity: 0.86;
}

.header-logo img,
.header-logo .custom-logo {
  height: 3.75rem;       /* 60px on mobile (header 96px) */
  width: auto;
  max-width: none;
}

@media (min-width: 640px) {
  .header-logo img,
  .header-logo .custom-logo {
    height: 4.5rem;      /* 72px from sm up */
  }
}

@media (min-width: 1024px) {
  .header-logo img,
  .header-logo .custom-logo {
    height: 5rem;        /* 80px on desktop — strong main-site presence */
  }
}

.header-logo-divider {
  display: none;
  height: 1.75rem;
  width: 1px;
  background-color: var(--navy-200);
}

.header-logo-label {
  display: none;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-600);
}

@media (min-width: 768px) {
  .header-logo-divider,
  .header-logo-label { display: block; }
}

/* Primary nav */
.header-nav {
  display: none;
}

@media (min-width: 1024px) {
  .header-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
  }
}

.header-nav a {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy-700);
  border-radius: var(--radius-sm);
  transition: color var(--duration-fast) var(--ease-premium);
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: 0.75rem;
  height: 1px;
  width: 0;
  background-color: var(--gold-500);
  transition: width var(--duration-base) var(--ease-premium);
}

.header-nav a:hover {
  color: var(--navy-950);
}

.header-nav a:hover::after {
  width: calc(100% - 1.5rem);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Hamburger */
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--navy-200);
  background-color: #fff;
  color: var(--navy-800);
  transition: background-color var(--duration-fast), border-color var(--duration-fast);
}

.menu-toggle:hover { background-color: var(--muted); }

/* Desktop "Apply Now" hidden by default; revealed at lg (declared BEFORE the
   media query so the breakpoint override wins). */
.header-apply { display: none; }

@media (min-width: 1024px) {
  .menu-toggle { display: none; }
  .header-apply { display: inline-flex; }
}

/* Mobile menu overlay */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  top: var(--header-h);
  z-index: 40;
  background-color: oklch(0.16 0.0064 55 / 0.20);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: none;
}

.mobile-menu {
  position: absolute;
  inset-inline: 0;
  top: var(--header-h);
  z-index: 50;
  border-bottom: 1px solid var(--navy-100);
  background-color: var(--cream);
  box-shadow: var(--shadow-lift);
  display: none;
}

.mobile-menu.is-open,
.mobile-menu-overlay.is-open {
  display: block;
}

.mobile-menu-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 1.25rem;
}

@media (min-width: 640px) {
  .mobile-menu-inner { padding-inline: 2rem; }
}

.mobile-menu-nav {
  display: grid;
  gap: 0.25rem;
}

.mobile-menu-nav a {
  display: block;
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy-800);
  border-radius: var(--radius-sm);
  transition: background-color var(--duration-fast);
}

.mobile-menu-nav a:hover { background-color: var(--muted); }

.mobile-menu-ctas {
  margin-top: 1rem;
  display: grid;
  gap: 0.625rem;
}

/* ============================================================
   8. HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  overflow: hidden;
  background-color: var(--navy-950);
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-dots {
  position: absolute;
  inset: 0;
  opacity: 0.6;
}

.hero-bg-blob-1 {
  position: absolute;
  left: -10rem;
  top: -10%;
  width: 32.5rem;
  height: 32.5rem;
  border-radius: 50%;
  background: oklch(0.34 0.0115 55 / 0.40);
  filter: blur(4rem);
}

.hero-bg-blob-2 {
  position: absolute;
  right: -10%;
  top: 10%;
  width: 28.75rem;
  height: 28.75rem;
  border-radius: 50%;
  background: oklch(0.565 0.1473 50 / 0.15);
  filter: blur(4rem);
}

.hero-bg-fade {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 10rem;
  background: linear-gradient(to bottom, transparent, var(--navy-950));
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 7rem;
  padding-bottom: 5rem;
}

@media (min-width: 640px)  { .hero-inner { padding-top: 8rem; } }
@media (min-width: 1024px) { .hero-inner { padding-top: 9rem; padding-bottom: 7rem; } }

.hero-grid {
  display: grid;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.06fr 0.94fr;
    gap: 2.5rem;
  }
}

.hero-content { max-width: 42rem; }

/* Admissions badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius-full);
  border: 1px solid oklch(0.745 0.142 48 / 0.30);
  background-color: oklch(0.745 0.142 48 / 0.10);
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold-200);
}

.hero-badge-dot {
  position: relative;
  display: flex;
  width: 0.5rem;
  height: 0.5rem;
}

.hero-badge-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: var(--gold-400);
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
  opacity: 0.7;
}

.hero-badge-dot::after {
  content: '';
  position: relative;
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--gold-400);
}

@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

.hero-heading {
  margin-top: 1.5rem;
  font-size: clamp(2.5rem, 5.6vw, 4.25rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: #fff;
}

.hero-heading em {
  font-style: normal;
}

.hero-subtitle {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: oklch(0.938 0.0035 55 / 0.90);
}

.hero-motto {
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-300);
}

.hero-ctas {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-proof {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem 1.5rem;
}

.hero-proof-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: oklch(0.938 0.0035 55 / 0.80);
}

.hero-proof-item svg { color: var(--gold-400); }

/* Globe / Visual */
.hero-visual {
  margin-inline: auto;
  width: 100%;
  max-width: 28rem;
}

@media (min-width: 1024px) { .hero-visual { max-width: none; } }

.hero-globe-wrap {
  position: relative;
  aspect-ratio: 1;
}

.hero-globe-svg {
  width: 100%;
  height: 100%;
}

.hero-credential-chip {
  position: absolute;
  border-radius: var(--radius-full);
  border: 1px solid oklch(1 0 0 / 0.15);
  background-color: oklch(0.205 0.008 55 / 0.70);
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: oklch(1 0 0 / 0.90);
  box-shadow: var(--shadow-lift);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.hero-center-card {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: var(--radius-xl);
  border: 1px solid oklch(1 0 0 / 0.15);
  background-color: oklch(0.205 0.008 55 / 0.70);
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-lift);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.hero-center-card-number {
  font-family: var(--font-mono);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--gold-300);
}

.hero-center-card-label {
  margin-top: 0.125rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: oklch(0.938 0.0035 55 / 0.75);
}

/* ============================================================
   9. SECTION HEADERS
   ============================================================ */

.section-header {
  text-align: center;
  max-width: 48rem;
  margin-inline: auto;
}

.section-header.left { text-align: left; margin-inline: 0; }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-700); /* deeper orange — passes AA on light surfaces */
  margin-bottom: 0.875rem;
}

.section-eyebrow-dark { color: var(--gold-400); }

.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--navy-950);
  line-height: 1.06;
  letter-spacing: -0.032em;
}

.section-title-white { color: #fff; }

.section-intro {
  margin-top: var(--sp-5);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--muted-fg);
  text-wrap: pretty; /* avoids single-word last lines */
}

.section-intro-white { color: oklch(0.938 0.0035 55 / 0.80); }

/* ============================================================
   10. TRUST METRICS
   ============================================================ */

.trust-metrics {
  background-color: #fff;
  border-bottom: 1px solid var(--border);
}

.trust-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

@media (min-width: 640px) {
  .trust-metrics-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .trust-metrics-grid { grid-template-columns: repeat(6, 1fr); }
}

.trust-metric-item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-metric-item:nth-child(2n) { border-right: 0; }

@media (min-width: 640px) {
  .trust-metric-item:nth-child(2n)   { border-right: 1px solid var(--border); }
  .trust-metric-item:nth-child(3n)   { border-right: 0; }
}

@media (min-width: 1024px) {
  .trust-metric-item:nth-child(3n)   { border-right: 1px solid var(--border); }
  .trust-metric-item:nth-child(6n)   { border-right: 0; }
  .trust-metric-item { border-bottom: 0; }
}

.trust-metric-value {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1;
}

.trust-metric-label {
  margin-top: 0.375rem;
  font-size: 0.8125rem;
  color: var(--muted-fg);
  line-height: 1.4;
}

/* ============================================================
   11. WHY IBMR — FEATURE CARDS
   ============================================================ */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.feature-card {
  background-color: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  transition:
    box-shadow var(--duration-base) var(--ease-premium),
    border-color var(--duration-base) var(--ease-premium),
    transform var(--duration-base) var(--ease-premium);
}

.feature-card:hover {
  box-shadow: var(--shadow-lift);
  border-color: var(--navy-200);
  transform: translateY(-2px);
}

.feature-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-md);
  background-color: var(--navy-50);
  color: var(--navy-800);
  margin-bottom: 1.25rem;
}

.feature-card-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy-950);
  margin-bottom: 0.5rem;
}

.feature-card-body {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--muted-fg);
}

/* ============================================================
   12. PROGRAMME — GIIP + GIP PILLARS
   ============================================================ */

.program-pillars {
  display: grid;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

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

.pillar-card {
  background-color: var(--navy-950);
  color: #fff;
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(oklch(1 0 0 / 0.05) 1px, transparent 1px);
  background-size: 22px 22px;
}

.pillar-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background-color: var(--gold-500);
  color: var(--navy-950);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.pillar-title {
  font-size: 1.375rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.pillar-body {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: oklch(0.938 0.0035 55 / 0.75);
  margin-bottom: 1.5rem;
}

.pillar-points {
  display: grid;
  gap: 0.625rem;
}

.pillar-point {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: oklch(0.938 0.0035 55 / 0.85);
}

.pillar-point-dot {
  flex-shrink: 0;
  margin-top: 0.375rem;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: var(--gold-400);
}

/* Pathways grid */
.pathways-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.pathway-item {
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  transition:
    box-shadow var(--duration-fast),
    border-color var(--duration-fast);
}

.pathway-item:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--navy-200);
}

.pathway-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--navy-50);
  border-radius: var(--radius-sm);
  color: var(--navy-700);
}

.pathway-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.3;
}

.pathway-note {
  font-size: 0.78125rem;
  color: var(--muted-fg);
  margin-top: 0.25rem;
}

/* Journey timeline */
.journey-timeline {
  display: grid;
  gap: 0;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .journey-timeline {
    grid-template-columns: repeat(3, 1fr);
  }
}

.journey-step {
  padding: 2rem 2rem 2rem 0;
  position: relative;
}

@media (min-width: 768px) {
  .journey-step {
    padding: 0 2rem 0 0;
    border-right: 1px solid var(--border);
  }
  .journey-step:last-child { border-right: none; padding-right: 0; }
  .journey-step + .journey-step { padding-left: 2rem; }
}

.journey-step-year {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 0.75rem;
}

.journey-step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-950);
  margin-bottom: 0.5rem;
}

.journey-step-body {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--muted-fg);
}

/* ============================================================
   13. GLOBAL IMMERSION
   ============================================================ */

.immersion { background-color: var(--navy-950); color: #fff; }

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
  gap: 0.875rem;
  margin-top: 3rem;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background-color: oklch(1 0 0 / 0.06);
  border: 1px solid oklch(1 0 0 / 0.10);
  border-radius: var(--radius-lg);
  padding: 0.875rem 1.125rem;
  font-size: 0.9375rem;
  color: oklch(0.938 0.0035 55 / 0.90);
  transition: background-color var(--duration-fast), border-color var(--duration-fast);
}

.activity-item:hover {
  background-color: oklch(1 0 0 / 0.10);
  border-color: oklch(1 0 0 / 0.18);
}

.activity-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: oklch(0.675 0.155 47 / 0.15);
  border-radius: var(--radius-sm);
  color: var(--gold-400);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 180px), 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.destination-card {
  background-color: oklch(1 0 0 / 0.06);
  border: 1px solid oklch(1 0 0 / 0.10);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: background-color var(--duration-fast), border-color var(--duration-fast);
}

.destination-card:hover {
  background-color: oklch(1 0 0 / 0.10);
  border-color: oklch(0.675 0.155 47 / 0.40);
}

.destination-name {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.destination-note {
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  color: oklch(0.938 0.0035 55 / 0.65);
}

/* ============================================================
   14. CERTIFICATIONS
   ============================================================ */

.cert-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.cert-partner-chip {
  background-color: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--navy-800);
  transition: background-color var(--duration-fast), border-color var(--duration-fast);
}

.cert-partner-chip:hover {
  background-color: var(--navy-50);
  border-color: var(--navy-200);
}

.cert-groups-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1.25rem;
}

.cert-group-card {
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
}

.cert-group-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--navy-50);
  border-radius: var(--radius-md);
  color: var(--navy-800);
  margin-bottom: 1.25rem;
}

.cert-group-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy-950);
  margin-bottom: 1rem;
}

.cert-group-items {
  display: grid;
  gap: 0.5rem;
}

.cert-group-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.5;
}

.cert-group-item::before {
  content: '';
  flex-shrink: 0;
  margin-top: 0.45rem;
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 50%;
  background-color: var(--gold-500);
}

.cert-note {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background-color: var(--gold-50);
  border: 1px solid var(--gold-200);
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  color: var(--navy-800);
  line-height: 1.6;
}

/* ============================================================
   15. INDUSTRY INTEGRATION
   ============================================================ */

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.industry-card {
  background-color: var(--navy-950);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--duration-base) var(--ease-premium);
}

.industry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(oklch(1 0 0 / 0.04) 1px, transparent 1px);
  background-size: 22px 22px;
}

.industry-card:hover { transform: translateY(-3px); }

.industry-card-icon {
  position: relative;
  z-index: 1;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: oklch(0.675 0.155 47 / 0.15);
  border-radius: var(--radius-md);
  color: var(--gold-400);
  margin-bottom: 1.25rem;
}

.industry-card-title {
  position: relative;
  z-index: 1;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.industry-card-body {
  position: relative;
  z-index: 1;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: oklch(0.938 0.0035 55 / 0.70);
}

/* ============================================================
   16. PLACEMENTS / CAREER READINESS
   ============================================================ */

.placements-steps {
  display: grid;
  gap: 0;
  margin-top: 3.5rem;
}

@media (min-width: 768px) {
  .placements-steps { grid-template-columns: repeat(5, 1fr); }
}

.placement-step {
  position: relative;
  padding: 1.5rem 1.25rem;
  text-align: center;
}

@media (min-width: 768px) {
  .placement-step {
    padding: 0 1.5rem;
    border-right: 1px solid var(--border);
  }
  .placement-step:last-child { border-right: none; }
}

.placement-step-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-xl);
  background-color: var(--navy-50);
  color: var(--navy-800);
  margin-bottom: 1.25rem;
}

.placement-step-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-950);
  margin-bottom: 0.5rem;
}

.placement-step-body {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-fg);
}

.placement-outcome {
  margin-top: 3.5rem;
  background-color: var(--navy-900);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.placement-outcome-text {}

.placement-outcome-title {
  font-size: 1.375rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.placement-outcome-body {
  font-size: 0.9375rem;
  color: oklch(0.938 0.0035 55 / 0.75);
  line-height: 1.65;
  max-width: 38rem;
}

/* ============================================================
   17. STUDENT EXPERIENCE
   ============================================================ */

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.experience-card {
  background-color: var(--navy-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  transition:
    box-shadow var(--duration-base),
    border-color var(--duration-base),
    background-color var(--duration-base);
}

.experience-card:hover {
  background-color: #fff;
  box-shadow: var(--shadow-card);
  border-color: var(--navy-200);
}

.experience-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--navy-100);
  border-radius: var(--radius-md);
  color: var(--navy-700);
  margin-bottom: 1.25rem;
}

.experience-card-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy-950);
  margin-bottom: 0.5rem;
}

.experience-card-body {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--muted-fg);
}

/* ============================================================
   18. FACULTY
   ============================================================ */

.faculty { background-color: var(--muted); }

.faculty-points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.faculty-point-card {
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.faculty-point-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--navy-50);
  border-radius: var(--radius-md);
  color: var(--navy-800);
  margin-bottom: 1.25rem;
}

.faculty-point-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy-950);
  margin-bottom: 0.5rem;
}

.faculty-point-body {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--muted-fg);
}

.faculty-delivery {
  margin-top: 3.5rem;
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.faculty-delivery-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-950);
  margin-bottom: 1.25rem;
}

.faculty-delivery-items {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .faculty-delivery-items { grid-template-columns: repeat(2, 1fr); }
}

.faculty-delivery-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--navy-800);
}

.faculty-delivery-item::before {
  content: '';
  flex-shrink: 0;
  margin-top: 0.5rem;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: var(--gold-500);
}

/* ============================================================
   19. TESTIMONIALS
   ============================================================ */

.testimonials { background-color: var(--navy-950); color: #fff; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.testimonial-card {
  background-color: oklch(1 0 0 / 0.06);
  border: 1px solid oklch(1 0 0 / 0.10);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition:
    background-color var(--duration-base),
    border-color var(--duration-base);
}

.testimonial-card:hover {
  background-color: oklch(1 0 0 / 0.09);
  border-color: oklch(0.675 0.155 47 / 0.30);
}

.testimonial-quote-icon {
  color: var(--gold-400);
  margin-bottom: 1.25rem;
}

.testimonial-quote {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: oklch(0.938 0.0035 55 / 0.90);
  font-style: italic;
  margin-bottom: 1.75rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testimonial-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background-color: var(--navy-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-300);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
}

.testimonial-detail {
  font-size: 0.8125rem;
  color: oklch(0.938 0.0035 55 / 0.60);
  margin-top: 0.125rem;
}

/* ============================================================
   20. FAQ / ACCORDION
   ============================================================ */

.faq-list {
  max-width: 54rem;
  margin-inline: auto;
  margin-top: 3.5rem;
  display: grid;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background-color: #fff;
  box-shadow: var(--shadow-soft);
}

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

.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.375rem 1.75rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-950);
  font-family: var(--font-display);
  cursor: pointer;
  transition: background-color var(--duration-fast);
}

.faq-question:hover { background-color: var(--muted); }

.faq-chevron {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--muted-fg);
  transition: transform var(--duration-base) var(--ease-premium), color var(--duration-base);
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
  color: var(--gold-600);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--duration-slow) var(--ease-premium);
}

.faq-item.is-open .faq-answer { max-height: 600px; }

.faq-answer-inner {
  padding: 0 1.75rem 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--muted-fg);
}

/* ============================================================
   21. FINAL CTA SECTION
   ============================================================ */

.final-cta {
  background-color: var(--navy-900);
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.6;
}

.final-cta-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.final-cta-body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: oklch(0.938 0.0035 55 / 0.80);
  max-width: 42rem;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.875rem;
}

/* ============================================================
   22. FOOTER
   ============================================================ */

.site-footer {
  background-color: var(--navy-950);
  color: #fff;
}

.footer-inner {
  padding-block: 4rem;
}

@media (min-width: 1024px) { .footer-inner { padding-block: 5rem; } }

.footer-grid {
  display: grid;
  gap: 3rem;
}

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

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.5fr repeat(3, 1fr); }
}

.footer-brand {}

.footer-logo-wrap {
  display: inline-flex;
  border-radius: var(--radius-xl);
  background-color: #fff;
  padding: 0.875rem 1rem;
  box-shadow: var(--shadow-lift);
}

.footer-logo-wrap img {
  height: 3.75rem;   /* 60px — clearly legible on dark footer */
  width: auto;
  max-width: none;
}

.footer-brand-desc {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: oklch(0.938 0.0035 55 / 0.75);
  max-width: 22rem;
}

.footer-address {
  margin-top: 1.5rem;
  font-style: normal;
  display: grid;
  gap: 0.75rem;
}

.footer-address-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: oklch(0.938 0.0035 55 / 0.75);
  transition: color var(--duration-fast);
}

.footer-address-item:hover { color: #fff; }

.footer-address-icon {
  flex-shrink: 0;
  margin-top: 0.125rem;
  width: 1rem;
  height: 1rem;
  color: var(--gold-400);
}

.footer-nav-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 1rem;
}

.footer-nav-list { display: grid; gap: 0.625rem; }

.footer-nav-link {
  font-size: 0.875rem;
  color: oklch(0.938 0.0035 55 / 0.70);
  transition: color var(--duration-fast);
  border-radius: var(--radius-sm);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 0;
  font-family: inherit;
}

.footer-nav-link:hover { color: #fff; }

.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid oklch(1 0 0 / 0.10);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.footer-copyright {
  font-size: 0.75rem;
  color: oklch(0.938 0.0035 55 / 0.60);
}

.footer-campuses {
  font-size: 0.75rem;
  color: oklch(0.938 0.0035 55 / 0.60);
}

.footer-attribution {
  margin-top: 1rem;
  font-size: 0.75rem;
  line-height: 1.6;
  color: oklch(0.938 0.0035 55 / 0.55);
}

/* ============================================================
   23. LEAD MODAL (BROCHURE / ENQUIRY)
   ============================================================ */

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  background-color: oklch(0.16 0.0064 55 / 0.60);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--duration-base) var(--ease-premium),
    visibility var(--duration-base) var(--ease-premium);
}

.modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-panel {
  background-color: #fff;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lift);
  padding: 2rem;
  width: 100%;
  max-width: 28rem;
  position: relative;
  transform: scale(0.95) translateY(8px);
  transition: transform var(--duration-base) var(--ease-premium);
}

.modal-backdrop.is-open .modal-panel {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--muted-fg);
  transition: background-color var(--duration-fast), color var(--duration-fast);
}

.modal-close:hover {
  background-color: var(--muted);
  color: var(--navy-900);
}

.modal-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy-950);
  margin-bottom: 0.375rem;
  padding-right: 2rem;
}

.modal-subtitle {
  font-size: 0.9375rem;
  color: var(--muted-fg);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Form */
.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy-800);
  margin-bottom: 0.375rem;
}

.form-input {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-family: var(--font-sans);
  color: var(--foreground);
  background-color: #fff;
  outline: none;
  transition:
    border-color var(--duration-fast),
    box-shadow var(--duration-fast);
}

.form-input:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px oklch(0.675 0.155 47 / 0.15);
}

.form-input.is-error { border-color: oklch(0.577 0.245 27.325); }

.form-error-msg {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  color: oklch(0.577 0.245 27.325);
}

.form-honeypot { display: none !important; }

.form-submit-btn {
  width: 100%;
  margin-top: 0.5rem;
}

.form-disclaimer {
  margin-top: 0.875rem;
  font-size: 0.78125rem;
  line-height: 1.5;
  color: var(--muted-fg);
  text-align: center;
}

/* Success state */
.modal-success {
  text-align: center;
  padding-block: 1.5rem;
  display: none;
}

.modal-success.is-shown { display: block; }

.modal-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: oklch(0.88 0.07 148);
  color: oklch(0.44 0.13 148);
  margin-bottom: 1.25rem;
}

/* ============================================================
   24. SCROLL REVEAL
   ============================================================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.5s var(--ease-premium),
    transform 0.5s var(--ease-premium);
}

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

[data-reveal-group] > [data-reveal]:nth-child(2) { transition-delay: 0.06s; }
[data-reveal-group] > [data-reveal]:nth-child(3) { transition-delay: 0.12s; }
[data-reveal-group] > [data-reveal]:nth-child(4) { transition-delay: 0.18s; }
[data-reveal-group] > [data-reveal]:nth-child(5) { transition-delay: 0.24s; }
[data-reveal-group] > [data-reveal]:nth-child(6) { transition-delay: 0.30s; }
[data-reveal-group] > [data-reveal]:nth-child(n+7) { transition-delay: 0.36s; }

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

/* No-JS fallback */
@media (scripting: none) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   25. ADMIN NOTICE (internal WP)
   ============================================================ */

.ibmr-admin-bar { top: calc(var(--header-h) + 0px); }
.admin-bar .site-header { top: 32px; }

/* ============================================================
   26. WORDPRESS CORE STYLES (compatibility)
   ============================================================ */

.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.875rem; color: var(--muted-fg); margin-top: 0.5rem; }
.alignleft  { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin-inline: auto; }
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px);
  clip-path: inset(50%); height: 1px; margin: -1px;
  overflow: hidden; padding: 0; position: absolute; width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  clip: auto; clip-path: none; height: auto; left: 1.25rem;
  padding: 0.875rem 1.5rem; top: 1.25rem; width: auto; z-index: 100000;
  background: #fff; color: var(--navy-950); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift); font-size: 0.875rem; font-weight: 600;
}

/* ============================================================
   27. BREADCRUMB
   ============================================================ */

.breadcrumb-nav {
  padding-block: 0.875rem;
  border-bottom: 1px solid var(--border);
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--muted-fg);
}

.breadcrumb-list a {
  color: var(--navy-700);
  transition: color var(--duration-fast);
}

.breadcrumb-list a:hover { color: var(--navy-950); }

.breadcrumb-sep { color: var(--border); }

/* ============================================================
   28. PAGE TEMPLATES — INNER PAGES
   ============================================================ */

.page-hero {
  background-color: var(--navy-950);
  color: #fff;
  padding-block: 6rem 4rem;
  padding-top: calc(var(--header-h) + 4rem);
  position: relative;
  overflow: hidden;
}

.page-hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1rem;
}

.page-hero-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.06;
  margin-bottom: 1.25rem;
}

.page-hero-subtitle {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: oklch(0.938 0.0035 55 / 0.80);
  max-width: 42rem;
}

.content-section {
  padding-block: 5rem;
}

.prose {
  max-width: 68ch;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--navy-800);
}

.prose h2 {
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--navy-950);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.prose h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.prose p { margin-bottom: 1.25rem; }
.prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.25rem; }
.prose li { margin-bottom: 0.5rem; }
.prose strong { color: var(--navy-900); }
.prose a { color: var(--navy-700); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--navy-950); }

/* ============================================================
   29. 404 / SEARCH / ARCHIVE
   ============================================================ */

.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: 6rem;
}

.error-code {
  font-family: var(--font-mono);
  font-size: 6rem;
  font-weight: 700;
  color: var(--navy-100);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.error-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--navy-950);
  margin-bottom: 1rem;
}

.error-body {
  font-size: 1rem;
  color: var(--muted-fg);
  margin-bottom: 2rem;
  max-width: 38rem;
  margin-inline: auto;
}

/* ============================================================
   30. RESPONSIVE UTILITIES
   ============================================================ */

@media (max-width: 639px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
}

@media (max-width: 767px) {
  .section-pad { padding-block: 3.5rem; }
  .final-cta-buttons .btn { width: 100%; }
}

/* ============================================================
   31. STATS BAND  (high-contrast, count-up)
   ============================================================ */

.stats-band {
  position: relative;
  overflow: hidden;
  background-color: var(--navy-950);
  color: #fff;
  padding-block: 3.5rem;
}

@media (min-width: 1024px) {
  .stats-band { padding-block: 5rem; }
}

.stats-band-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
}

.stats-band-glow {
  position: absolute;
  left: 50%;
  top: -40%;
  width: 40rem;
  height: 30rem;
  transform: translateX(-50%);
  background: oklch(0.675 0.155 47 / 0.10);
  filter: blur(6rem);
  border-radius: 50%;
  pointer-events: none;
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1rem;
}

@media (min-width: 640px)  { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(6, 1fr); gap: 1rem; } }

.stat-item {
  text-align: center;
  position: relative;
  padding-inline: 0.75rem;
}

/* hairline separators between columns on desktop */
@media (min-width: 1024px) {
  .stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14%;
    height: 72%;
    width: 1px;
    background: oklch(1 0 0 / 0.10);
  }
}

.stat-number {
  font-family: var(--font-mono);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gold-300);
  font-variant-numeric: tabular-nums;
}

.stat-label {
  margin-top: 0.625rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
  color: oklch(0.938 0.0035 55 / 0.70);
}

/* ============================================================
   32. TIMELINE  (journey + placement roadmap)
   ============================================================ */

.timeline {
  position: relative;
  margin-top: 3.5rem;
  display: grid;
  gap: 2.5rem;
}

/* vertical connector on mobile */
.timeline::before {
  content: '';
  position: absolute;
  left: 1.125rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(to bottom,
    var(--gold-400),
    var(--border) 90%);
}

.timeline-step {
  position: relative;
  padding-left: 3.25rem;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 2.375rem;
  height: 2.375rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--navy-950);
  color: var(--gold-300);
  border: 2px solid var(--gold-400);
  z-index: 1;
}

.timeline-step-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-700); /* deeper orange — passes AA on light surfaces */
  margin-bottom: 0.5rem;
}

.timeline-step-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy-950);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.timeline-step-body {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--muted-fg);
  max-width: 40ch;
}

/* horizontal timeline on desktop */
@media (min-width: 768px) {
  .timeline {
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 2rem;
  }
  .timeline::before {
    left: 1.1875rem;
    right: 1.1875rem;
    top: 1.1875rem;
    bottom: auto;
    width: auto;
    height: 2px;
    background: linear-gradient(to right,
      var(--gold-400),
      var(--border) 95%);
  }
  .timeline-step {
    padding-left: 0;
    padding-top: 3.5rem;
  }
  .timeline-marker {
    left: 0;
  }
  .timeline-step-body { max-width: none; }
}

/* dark-surface variant (placement roadmap on navy, if needed) */
.timeline-dark .timeline-marker {
  background: #fff;
}
.timeline-dark .timeline-step-title { color: #fff; }
.timeline-dark .timeline-step-body  { color: oklch(0.938 0.0035 55 / 0.72); }

/* ============================================================
   33. SPLIT ROWS  (two-column text + content)
   ============================================================ */

.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  margin-top: 1rem;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .split-reverse .split-content { order: 2; }
  .split-reverse .split-panel   { order: 1; }
}

.split-content .section-header { text-align: left; margin-inline: 0; max-width: 36rem; }
.split-cta { margin-top: 2rem; }

/* stacked feature rows inside a split panel */
.feature-rows {
  display: grid;
  gap: 1rem;
}

.feature-row {
  display: flex;
  gap: 1.125rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--duration-base) var(--ease-premium),
    box-shadow var(--duration-base) var(--ease-premium),
    border-color var(--duration-base) var(--ease-premium);
}

.feature-row:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
  border-color: var(--navy-200);
}

.feature-row-icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--navy-50);
  color: var(--navy-800);
}

.feature-row-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy-950);
  margin-bottom: 0.25rem;
}

.feature-row-body {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--muted-fg);
}

/* ============================================================
   34. LOGO STRIP  (partners / certifications)
   ============================================================ */

.logo-strip {
  margin-top: 2.5rem;
  border-block: 1px solid var(--border);
  background:
    linear-gradient(var(--cream), var(--cream)) padding-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.logo-strip-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.125rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--navy-700);
  border-right: 1px solid var(--border);
  flex: 1 1 auto;
  min-width: 9rem;
  text-align: center;
  transition: color var(--duration-fast) var(--ease-premium),
              background-color var(--duration-fast) var(--ease-premium);
}

.logo-strip-item:hover {
  color: var(--navy-950);
  background-color: oklch(0.205 0.008 55 / 0.02);
}

/* remove right border on the visual end of each row */
.logo-strip-item:last-child { border-right: none; }

@media (max-width: 639px) {
  .logo-strip-item {
    flex-basis: 50%;
    min-width: 50%;
  }
  .logo-strip-item:nth-child(2n) { border-right: none; }
}

/* ============================================================
   35. ACCENT BAND  (full-width separator)
   ============================================================ */

.accent-band {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  color: #fff;
  padding-block: 3rem;
}

.accent-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.accent-band-text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  max-width: 44rem;
}
