  html { scroll-behavior: auto; /* JS handles smooth */ }

  body {
    overflow-x: hidden;
  }

  /* ===== GRAIN & TEXTURE ===== */
  .grain {
    position: fixed; inset: 0;
    pointer-events: none; z-index: 9998;
    opacity: 0.028;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
  }

  /* ===== PAGE LOADER ===== */
  .loader {
    position: fixed; inset: 0;
    background: var(--navy-deep);
    z-index: 10001;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    transition: opacity 0.8s ease, visibility 0.8s;
  }

  .loader.done { opacity: 0; visibility: hidden; pointer-events: none; }

  .loader-text {
    font-family: var(--font-display);
    font-size: var(--fs-240);
    font-weight: 300;
    color: var(--cream);
    letter-spacing: 0.3em;
    overflow: hidden;
  }

  .loader-text span {
    display: inline-block;
    animation: loaderReveal 0.6s cubic-bezier(0.16,1,0.3,1) forwards;
    opacity: 0;
    transform: translateY(100%);
  }

  @keyframes loaderReveal {
    to { opacity: 1; transform: translateY(0); }
  }

  .loader-line {
    width: 0;
    height: 1px;
    background: var(--gold);
    margin-top: 1.5rem;
    animation: loaderLine 1.8s 0.5s cubic-bezier(0.16,1,0.3,1) forwards;
  }

  @keyframes loaderLine {
    to { width: 120px; }
  }

  /* ===== NAVIGATION ===== */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    padding: 1.4rem 3.5rem;
    display: flex; justify-content: space-between; align-items: center;
    transition: all 0.6s cubic-bezier(0.16,1,0.3,1);
    mix-blend-mode: difference;
  }

  nav.scrolled {
    mix-blend-mode: normal;
    background: rgba(244,241,235,0.88);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 0.9rem 3.5rem;
    box-shadow: 0 1px 0 rgba(28,43,86,0.05);
  }

  nav.scrolled .nav-logo-text,
  nav.scrolled .nav-links a { color: var(--navy); }
  nav.scrolled .hamburger span { background: var(--navy); }

  .nav-logo {
    display: flex; align-items: center; gap: 0.8rem;
    text-decoration: none;
  }

  .nav-logo-icon {
    width: 34px; height: 34px;
    border: 1.5px solid currentColor;
    border-radius: 3px;
    display: flex; align-items: center; justify-content: center;
    color: var(--cream);
    transition: color 0.3s;
  }

  nav.scrolled .nav-logo-icon { color: var(--navy); }

  .nav-logo-text {
    font-size: var(--fs-095); font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--cream);
    transition: color 0.3s;
  }

  .nav-links {
    display: flex; gap: 2.5rem;
    list-style: none; align-items: center;
  }

  .nav-links a {
    text-decoration: none; color: var(--cream);
    font-size: var(--fs-090); letter-spacing: 0.13em;
    text-transform: uppercase;
    transition: color 0.3s, opacity 0.3s;
    opacity: 0.8;
  }

  .nav-links a:hover { opacity: 1; }

  .nav-cta {
    padding: 0.5rem 1.5rem !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    border-radius: 2px;
    opacity: 1 !important;
    transition: all 0.35s !important;
  }

  nav.scrolled .nav-cta {
    border-color: var(--navy) !important;
    background: var(--navy);
    color: var(--cream) !important;
  }

  .nav-cta:hover { background: rgba(255,255,255,0.1); }
  nav.scrolled .nav-cta:hover { background: var(--mahogany); border-color: var(--mahogany) !important; }

  .hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: none; background: none; border: none; padding: 4px;
  }
  .hamburger span { width: 22px; height: 1.5px; background: var(--cream); transition: all 0.3s; }

  /* ===== HERO ===== */
  .hero {
    min-height: 100vh;
    position: relative;
    display: flex; align-items: center;
    padding: 0 3.5rem;
    background: var(--navy-deep);
    overflow: hidden;
  }

  #heroCanvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
  }

  /* Gradient mesh over canvas */
  .hero-mesh {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 55% at 20% 50%, rgba(28,43,86,0.6), transparent),
      radial-gradient(ellipse 40% 40% at 85% 30%, rgba(82,45,35,0.08), transparent),
      radial-gradient(ellipse 50% 50% at 50% 100%, rgba(17,29,58,0.7), transparent);
    pointer-events: none;
  }

  .hero-content {
    position: relative; z-index: 2;
    max-width: 1400px; margin: 0 auto; width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 6rem 0;
  }

  .hero-left { max-width: 650px; }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 0.4rem 1.1rem;
    border: 1px solid rgba(201,169,110,0.25);
    border-radius: 2px;
    font-size: var(--fs-082); letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2.5rem;
    background: rgba(28,43,86,0.4);
    backdrop-filter: blur(12px);
    opacity: 0; transform: translateY(30px);
    animation: heroFadeUp 0.9s 1.8s cubic-bezier(0.16,1,0.3,1) forwards;
  }

  .badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s infinite;
    box-shadow: 0 0 8px rgba(201,169,110,0.4);
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(201,169,110,0.4); }
    50% { opacity: 0.4; box-shadow: 0 0 2px rgba(201,169,110,0.1); }
  }

  .hero-title {
    font-family: var(--font-display);
    font-size: var(--fs-fluid-hero-home);
    font-weight: 300;
    line-height: 1.05;
    color: var(--cream);
    margin-bottom: 1.8rem;
  }

  .hero-title .word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    margin-right: 0.25em;
  }

  .hero-title .word-inner {
    display: inline-block;
    opacity: 0;
    transform: translateY(110%);
    animation: wordReveal 1s cubic-bezier(0.16,1,0.3,1) forwards;
  }

  @keyframes wordReveal {
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-title em {
    font-style: italic;
    color: var(--gold-bright);
    font-weight: 400;
    position: relative;
  }

  .hero-title em::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0.4;
  }

  .hero-sub {
    font-size: var(--fs-105); line-height: 1.8;
    color: rgba(189,178,162,0.7);
    max-width: 460px;
    margin-bottom: 2.8rem;
    opacity: 0; transform: translateY(30px);
    animation: heroFadeUp 0.9s 2.3s cubic-bezier(0.16,1,0.3,1) forwards;
  }

  .hero-actions {
    display: flex; gap: 1.2rem; align-items: center;
    opacity: 0; transform: translateY(30px);
    animation: heroFadeUp 0.9s 2.6s cubic-bezier(0.16,1,0.3,1) forwards;
  }

  @keyframes heroFadeUp {
    to { opacity: 1; transform: translateY(0); }
  }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 0.7rem;
    padding: 1rem 2.2rem;
    background: var(--gold);
    color: var(--navy-deep);
    text-decoration: none;
    font-family: inherit;
    font-size: var(--fs-086); font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    border: none; cursor: none;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    position: relative; overflow: hidden;
  }

  .btn-primary::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--cream);
    transform: translateY(101%);
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
  }

  .btn-primary:hover::before { transform: translateY(0); }
  .btn-primary span, .btn-primary svg { position: relative; z-index: 1; }

  .btn-outline {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 1rem 1.7rem;
    background: transparent;
    color: var(--parchment);
    text-decoration: none;
    font-family: inherit;
    font-size: var(--fs-086);
    letter-spacing: 0.14em; text-transform: uppercase;
    border: 1px solid rgba(189,178,162,0.2);
    cursor: none;
    transition: all 0.35s;
  }

  .btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,169,110,0.05);
  }

  /* Hero right — interactive neural network */
  .hero-viz {
    position: relative;
    height: 500px;
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    animation: heroFadeUp 1.2s 2s cubic-bezier(0.16,1,0.3,1) forwards;
  }

  #neuralSvg {
    width: 100%; height: 100%;
    filter: drop-shadow(0 0 60px rgba(201,169,110,0.15));
    overflow: visible;
  }

  .neural-node {
    transition: r 0.4s cubic-bezier(0.16,1,0.3,1);
  }

  .neural-label {
    font-family: var(--font-body);
    font-size: var(--fs-13px);
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  /* Scroll indicator */
  .scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center;
    gap: 0.6rem;
    z-index: 3;
    opacity: 0;
    animation: heroFadeUp 0.8s 3s ease forwards;
  }

  .scroll-indicator span {
    font-size: var(--fs-082); letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(189,178,162,0.35);
  }

  .scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, rgba(201,169,110,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }

  @keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 0.5; }
    50% { transform: scaleY(0.5); opacity: 0.2; }
  }

  /* ===== TRUST STRIP ===== */
  .trust-strip {
    padding: 2.2rem 3.5rem;
    background: var(--white);
    border-bottom: 1px solid rgba(28,43,86,0.05);
    overflow: hidden;
  }

  .trust-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; gap: 3rem;
  }

  .trust-label {
    font-size: var(--fs-082); letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--parchment);
    white-space: nowrap; flex-shrink: 0;
  }

  .trust-logos {
    display: flex; align-items: center; gap: 2.8rem; flex-wrap: wrap;
  }

  .trust-logo {
    font-size: var(--fs-084); font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--navy);
    opacity: 0.25;
    transition: opacity 0.4s;
    white-space: nowrap;
    cursor: none;
  }

  .trust-logo:hover { opacity: 0.55; }

  /* ===== STATS ===== */
  .stats-bar {
    background: var(--cream);
    padding: 5rem 3.5rem;
    position: relative;
  }

  .stats-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

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

  .stat-number {
    font-family: var(--font-display);
    font-size: var(--fs-350); font-weight: 300;
    line-height: 1;
    color: var(--navy);
    position: relative;
    display: inline-block;
  }

  .stat-number .counter { display: inline; }

  .stat-divider {
    width: 24px; height: 1px;
    background: var(--gold);
    margin: 0.6rem auto;
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.8s 0.3s cubic-bezier(0.16,1,0.3,1);
  }

  .stat-item.visible .stat-divider {
    opacity: 0.5; transform: scaleX(1);
  }

  .stat-label {
    font-size: var(--fs-070); letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--parchment);
  }

  /* ===== ABOUT ===== */
  .about {
    padding: 9rem 3.5rem;
    max-width: 1300px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem; align-items: center;
  }

  .section-label {
    font-size: var(--fs-082); letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--mahogany);
    margin-bottom: 1.4rem;
    display: inline-flex; align-items: center; gap: 0.8rem;
  }

  .section-label::before {
    content: ''; width: 28px; height: 1px;
    background: var(--mahogany);
  }

  .about h2 {
    font-family: var(--font-display);
    font-size: var(--fs-fluid-section);
    font-weight: 400;
    color: var(--navy); line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .about p {
    font-size: var(--fs-095); line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
  }

  /* About right — 3D card stack */
  .about-visual {
    position: relative; height: 480px;
    perspective: 1200px;
  }

  .about-card {
    position: absolute;
    background: var(--white);
    border: 1px solid rgba(28,43,86,0.06);
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(28,43,86,0.06);
    transition: all 0.7s cubic-bezier(0.16,1,0.3,1);
    cursor: none;
  }

  .about-card:hover {
    box-shadow: 0 30px 80px rgba(28,43,86,0.1);
  }

  .about-card-1 {
    top: 10%; left: 0; width: 250px; z-index: 3;
    transform: rotate(-2deg);
  }

  .about-card-1:hover { transform: rotate(0deg) translateY(-8px) scale(1.02); }

  .about-card-2 {
    bottom: 5%; right: 0; width: 250px; z-index: 2;
    background: var(--navy); color: var(--cream);
    transform: rotate(1.5deg);
  }

  .about-card-2:hover { transform: rotate(0deg) translateY(-8px) scale(1.02); }

  .about-card-3 {
    top: 42%; left: 45%;
    transform: translate(-50%, -50%) rotate(0.5deg);
    width: 170px; z-index: 4;
    background: var(--navy-deep);
    border: 1px solid rgba(201,169,110,0.2);
    text-align: center; padding: 1.8rem 1.5rem;
  }

  .about-card-3:hover { transform: translate(-50%, -52%) rotate(0deg) scale(1.04); }

  .card-icon {
    width: 34px; height: 34px;
    border: 1px solid rgba(28,43,86,0.1);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 0.9rem;
  }

  .about-card-2 .card-icon { border-color: rgba(255,255,255,0.1); }

  .card-title {
    font-family: var(--font-display);
    font-size: var(--fs-115); font-weight: 600;
    margin-bottom: 0.4rem;
  }

  .card-text {
    font-size: var(--fs-080); line-height: 1.7; opacity: 0.65;
  }

  .card-stat {
    font-family: var(--font-display);
    font-size: var(--fs-250); font-weight: 300;
    color: var(--gold-bright); line-height: 1;
    margin-bottom: 0.3rem;
  }

  .card-stat-label {
    font-size: var(--fs-060); letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(189,178,162,0.55);
  }

  /* Decorative glow ring behind cards */
  .about-glow {
    position: absolute;
    top: 50%; left: 50%;
    width: 300px; height: 300px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,110,0.06), transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  /* ===== PROGRAMS ===== */
  .programs {
    padding: 9rem 3.5rem;
    background: var(--white);
    position: relative;
  }

  .programs::before {
    content: ''; position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--parchment), transparent);
  }

  .section-header {
    text-align: center;
    max-width: 620px; margin: 0 auto 5rem;
  }

  .section-header .section-label {
    justify-content: center;
  }

  .section-header .section-label::after {
    content: ''; width: 28px; height: 1px;
    background: var(--mahogany);
  }

  .section-title {
    font-family: var(--font-display);
    font-size: var(--fs-fluid-section);
    font-weight: 400;
    color: var(--navy); line-height: 1.2;
    margin-bottom: 1rem;
  }

  .section-sub {
    font-size: var(--fs-092); line-height: 1.75;
    color: var(--text-muted);
  }

  .programs-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 1.5rem;
  }

  .program-card {
    padding: 2.5rem;
    border: 1px solid rgba(28,43,86,0.06);
    transition: all 0.6s cubic-bezier(0.16,1,0.3,1);
    position: relative;
    background: var(--white);
    overflow: hidden;
    cursor: none;
  }

  .program-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 100%; height: 0;
    background: linear-gradient(to top, rgba(28,43,86,0.02), transparent);
    transition: height 0.5s ease;
  }

  .program-card:hover::after { height: 100%; }
  .program-card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(28,43,86,0.08); }

  /* Featured */
  .program-card.featured {
    background: var(--navy-deep);
    color: var(--cream);
    border: 1px solid rgba(201,169,110,0.12);
    box-shadow: 0 24px 72px rgba(17,29,58,0.3);
    position: relative;
  }

  .program-card.featured::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--mahogany-glow), var(--gold));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
  }

  @keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
  }

  .program-card.featured::after { display: none; }
  .program-card.featured:hover { transform: translateY(-6px); box-shadow: 0 32px 80px rgba(17,29,58,0.4); }

  .featured-badge {
    display: inline-block;
    padding: 0.25rem 0.7rem;
    background: var(--gold);
    color: var(--navy-deep);
    font-size: var(--fs-082); font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    margin-bottom: 1.2rem;
  }

  .program-card.featured .program-number { color: rgba(201,169,110,0.15); }
  .program-card.featured .program-title { color: var(--cream); }
  .program-card.featured .program-duration { color: var(--gold); }
  .program-card.featured .program-desc { color: rgba(189,178,162,0.65); }
  .program-card.featured .program-tag { border-color: rgba(201,169,110,0.15); color: rgba(189,178,162,0.6); }

  .program-card.muted { opacity: 0.65; }
  .program-card.muted:hover { opacity: 1; }

  .program-number {
    font-family: var(--font-display);
    font-size: var(--fs-300); font-weight: 300;
    color: rgba(189,178,162,0.3);
    line-height: 1; margin-bottom: 1rem;
  }

  .program-title {
    font-family: var(--font-display);
    font-size: var(--fs-135); font-weight: 600;
    color: var(--navy); margin-bottom: 0.3rem;
  }

  .program-duration {
    font-size: var(--fs-082); letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mahogany); margin-bottom: 1rem;
  }

  .program-desc {
    font-size: var(--fs-092); line-height: 1.75;
    color: var(--text-muted); margin-bottom: 1.5rem;
  }

  .program-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }

  .program-tag {
    padding: 0.22rem 0.65rem;
    font-size: var(--fs-082); letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(28,43,86,0.08);
    color: var(--slate);
  }

  .program-card.featured .btn-primary {
    margin-top: 1.8rem;
    background: var(--gold); color: var(--navy-deep);
    font-size: var(--fs-084); padding: 0.7rem 1.5rem;
  }

  .program-card.featured .btn-primary::before { background: var(--cream); }

  /* ===== APPROACH ===== */
  .approach {
    padding: 9rem 3.5rem;
    background: var(--navy-deep);
    color: var(--cream);
    position: relative; overflow: hidden;
  }

  /* Animated gradient mesh */
  .approach-mesh {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 50% 40% at 80% 20%, rgba(82,45,35,0.18), transparent),
      radial-gradient(ellipse 35% 35% at 10% 80%, rgba(58,74,121,0.22), transparent),
      radial-gradient(ellipse 30% 30% at 50% 50%, rgba(201,169,110,0.04), transparent);
    animation: meshDrift 12s ease-in-out infinite alternate;
  }

  @keyframes meshDrift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-20px, 10px) scale(1.03); }
  }

  .approach-inner {
    max-width: 1200px; margin: 0 auto;
    position: relative; z-index: 1;
  }

  .approach .section-label { color: var(--gold); }
  .approach .section-label::before { background: var(--gold); }
  .approach .section-header .section-label::after { background: var(--gold); }
  .approach .section-title { color: var(--cream); }
  .approach .section-sub { color: rgba(189,178,162,0.6); }

  .approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem; margin-top: 4rem;
  }

  .approach-item {
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.04);
    background: rgba(255,255,255,0.01);
    transition: all 0.6s cubic-bezier(0.16,1,0.3,1);
    position: relative; overflow: hidden;
    cursor: none;
  }

  /* Glowing border on hover */
  .approach-item::before {
    content: '';
    position: absolute; inset: -1px;
    background: linear-gradient(135deg, rgba(201,169,110,0.2), transparent 40%, transparent 60%, rgba(82,45,35,0.15));
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
  }

  .approach-item:hover::before { opacity: 1; }

  .approach-item::after {
    content: '';
    position: absolute; inset: 1px;
    background: rgba(17,29,58,0.95);
    z-index: 0;
    transition: background 0.6s;
  }

  .approach-item:hover::after { background: rgba(17,29,58,0.9); }
  .approach-item:hover { transform: translateY(-4px); }

  .approach-item > * { position: relative; z-index: 1; }

  .approach-item-number {
    font-size: var(--fs-082); letter-spacing: 0.22em;
    color: var(--gold); margin-bottom: 1rem;
  }

  .approach-item h3 {
    font-family: var(--font-display);
    font-size: var(--fs-140); font-weight: 500;
    margin-bottom: 0.8rem;
    color: var(--cream);
  }

  .approach-item p {
    font-size: var(--fs-092); line-height: 1.75;
    color: rgba(189,178,162,0.55);
  }

  /* ===== TESTIMONIAL ===== */
  .testimonial {
    padding: 8rem 3.5rem;
    background: var(--cream);
    position: relative; overflow: hidden;
  }

  .testimonial::before {
    content: '';
    position: absolute;
    top: -50%; left: -10%;
    width: 120%; height: 200%;
    background: radial-gradient(ellipse 30% 25% at 50% 50%, rgba(201,169,110,0.04), transparent);
    pointer-events: none;
  }

  .testimonial-inner {
    max-width: 800px; margin: 0 auto;
    text-align: center;
    position: relative;
  }

  .testimonial-quote-mark {
    font-family: var(--font-display);
    font-size: var(--fs-800); line-height: 0.5;
    color: var(--parchment); opacity: 0.4;
    margin-bottom: 0;
  }

  .testimonial-text {
    font-family: var(--font-display);
    font-size: var(--fs-fluid-quote-md);
    font-weight: 400; font-style: italic;
    line-height: 1.6;
    color: var(--navy);
    margin-bottom: 2.5rem;
  }

  .testimonial-author {
    display: flex; align-items: center;
    justify-content: center; gap: 1rem;
  }

  .testimonial-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--slate));
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-family: var(--font-display);
    font-size: var(--fs-110); font-weight: 600;
    box-shadow: 0 4px 20px rgba(28,43,86,0.15);
  }

  .testimonial-author-info { text-align: left; }

  .testimonial-author-name {
    font-weight: 600; font-size: var(--fs-090);
    color: var(--navy);
  }

  .testimonial-author-role {
    font-size: var(--fs-086);
    color: var(--slate); opacity: 0.6;
  }

  /* ===== CAMPUS ===== */
  .campus {
    padding: 9rem 3.5rem;
    background: var(--white);
    position: relative;
  }

  .campus-content {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
  }

  .campus-map-frame {
    aspect-ratio: 4/3;
    background: var(--navy-deep);
    position: relative; overflow: hidden;
    border: 1px solid rgba(28,43,86,0.1);
  }

  #mapCanvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
  }

  .map-pin {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center; z-index: 2;
  }

  .map-pin-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 0.8rem;
    background: rgba(17,29,58,0.7);
    backdrop-filter: blur(8px);
    animation: pinPulse 3s ease-in-out infinite;
  }

  @keyframes pinPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201,169,110,0.25); }
    50% { box-shadow: 0 0 0 20px rgba(201,169,110,0); }
  }

  .map-pin-label {
    font-size: var(--fs-082); letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cream);
  }

  .map-coords {
    font-family: 'Courier New', monospace;
    font-size: var(--fs-082);
    color: rgba(201,169,110,0.45);
    margin-top: 0.3rem;
  }

  .campus-info .section-label { margin-bottom: 1rem; }

  .campus-info h3 {
    font-family: var(--font-display);
    font-size: var(--fs-170); font-weight: 400;
    color: var(--navy); margin-bottom: 1rem;
  }

  .campus-info p {
    font-size: var(--fs-092); line-height: 1.8;
    color: var(--text-muted); margin-bottom: 2rem;
  }

  .campus-detail {
    display: flex; align-items: flex-start;
    gap: 1rem; margin-bottom: 1.2rem;
  }

  .campus-detail-icon {
    flex-shrink: 0;
    width: 30px; height: 30px;
    border: 1px solid rgba(28,43,86,0.08);
    display: flex; align-items: center; justify-content: center;
  }

  .campus-detail-text {
    font-size: var(--fs-092); line-height: 1.6;
    color: var(--text-muted);
  }

  .campus-detail-text strong {
    display: block;
    color: var(--navy); font-weight: 600;
    font-size: var(--fs-086); margin-bottom: 0.1rem;
  }

  /* ===== CTA ===== */
  .cta {
    padding: 10rem 3.5rem;
    text-align: center;
    background: var(--navy-deep);
    position: relative; overflow: hidden;
  }

  .cta-mesh {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 45% 45% at 50% 50%, rgba(201,169,110,0.06), transparent),
      radial-gradient(ellipse 30% 30% at 20% 30%, rgba(58,74,121,0.15), transparent);
    animation: meshDrift 15s ease-in-out infinite alternate;
  }

  .cta-inner {
    position: relative; z-index: 1;
    max-width: 650px; margin: 0 auto;
  }

  .cta-ornament {
    display: flex; justify-content: center; gap: 0.5rem;
    margin-bottom: 2.5rem;
  }

  .cta-ornament span {
    width: 3px; height: 3px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.15;
  }

  .cta-ornament span:nth-child(2) { opacity: 0.3; }
  .cta-ornament span:nth-child(3) { opacity: 0.6; }
  .cta-ornament span:nth-child(4) { opacity: 0.3; }
  .cta-ornament span:nth-child(5) { opacity: 0.15; }

  .cta-date {
    display: inline-block;
    padding: 0.45rem 1.3rem;
    border: 1px solid rgba(201,169,110,0.2);
    font-size: var(--fs-082); letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
  }

  .cta h2 {
    font-family: var(--font-display);
    font-size: var(--fs-fluid-cta);
    font-weight: 300;
    color: var(--cream); line-height: 1.15;
    margin-bottom: 1.2rem;
  }

  .cta h2 em {
    font-style: italic;
    color: var(--gold-bright); font-weight: 400;
  }

  .cta p {
    font-size: var(--fs-095); line-height: 1.75;
    color: rgba(189,178,162,0.55);
    margin-bottom: 2.5rem;
  }

  .cta .btn-primary {
    font-size: var(--fs-082);
    padding: 1.1rem 2.5rem;
  }

  /* ===== STICKY CTA ===== */
  .sticky-cta {
    position: fixed;
    bottom: -80px; left: 50%;
    transform: translateX(-50%);
    z-index: 90;
    background: var(--navy-deep);
    color: var(--cream);
    display: flex; align-items: center;
    gap: 1.5rem;
    padding: 0.75rem 1rem 0.75rem 1.8rem;
    border-radius: 4px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.35);
    border: 1px solid rgba(201,169,110,0.1);
    transition: bottom 0.6s cubic-bezier(0.16,1,0.3,1);
    white-space: nowrap;
  }

  .sticky-cta.visible { bottom: 1.5rem; }

  .sticky-cta-text {
    font-size: var(--fs-088); letter-spacing: 0.04em;
  }

  .sticky-cta-text strong { color: var(--gold); font-weight: 600; }

  .sticky-cta a {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: var(--gold); color: var(--navy-deep);
    text-decoration: none; font-family: inherit;
    font-size: var(--fs-082); font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.3s;
    cursor: none;
  }

  .sticky-cta a:hover { background: var(--gold-bright); }

  .sticky-cta-close {
    background: none; border: none;
    color: rgba(255,255,255,0.3);
    cursor: none; padding: 0.3rem;
    font-size: var(--fs-100); line-height: 1;
    transition: color 0.3s;
  }

  .sticky-cta-close:hover { color: rgba(255,255,255,0.7); }

  /* ===== FOOTER ===== */
  footer {
    background: var(--navy-deep);
    color: var(--cream);
    padding: 4.5rem 3.5rem 2rem;
    border-top: 1px solid rgba(201,169,110,0.06);
  }

  .footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }

  .footer-brand-name {
    font-size: var(--fs-095); font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase;
    margin-bottom: 1rem; display: block;
  }

  .footer-brand p {
    font-size: var(--fs-088); line-height: 1.75;
    opacity: 0.35; max-width: 270px;
  }

  .footer-col h4 {
    font-size: var(--fs-082); letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem; opacity: 0.3;
  }

  .footer-col a {
    display: block; color: var(--cream);
    text-decoration: none; font-size: var(--fs-088);
    opacity: 0.45; margin-bottom: 0.7rem;
    transition: opacity 0.3s;
    cursor: none;
  }

  .footer-col a:hover { opacity: 0.9; }

  .footer-bottom {
    max-width: 1200px; margin: 0 auto;
    padding-top: 2rem;
    display: flex; justify-content: space-between;
    font-size: var(--fs-080); opacity: 0.25;
  }

  /* ===== SCROLL REVEAL ===== */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16,1,0.3,1), transform 1s cubic-bezier(0.16,1,0.3,1);
  }

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

  .reveal-d1 { transition-delay: 0.08s; }
  .reveal-d2 { transition-delay: 0.16s; }
  .reveal-d3 { transition-delay: 0.24s; }
  .reveal-d4 { transition-delay: 0.32s; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; }
    .hero-viz { display: none; }
    .programs-grid { grid-template-columns: 1fr 1fr; }
    .programs-grid .program-card.featured { grid-column: 1 / -1; }
    .about { grid-template-columns: 1fr; gap: 3rem; }
    .about-visual { height: 350px; }
    .campus-content { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .trust-inner { flex-wrap: wrap; justify-content: center; }
  }

  @media (max-width: 768px) {
    body { cursor: auto; }
    .cursor-dot, .cursor-ring { display: none; }
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero { padding: 0 1.5rem; }
    .hero-title { font-size: var(--fs-260); }
    .programs-grid { grid-template-columns: 1fr; }
    .approach-grid { grid-template-columns: 1fr; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .sticky-cta { left: 1rem; right: 1rem; transform: none; }
    section, .about, .programs, .approach, .campus, .cta, .testimonial { padding: 5rem 1.5rem; }
    * { cursor: auto !important; }
  }

  @media (hover: none) {
    .cursor-dot, .cursor-ring { display: none; }
    body, * { cursor: auto !important; }
  }
