
    :root {
      --green-deep:  #01452c;
      --green-mid:   #016040;
      --green-light: #e6f5ee;
      --gold:        #f5c518;
      --gold-light:  #fff8dc;
      --cream:       #faf8f3;
      --text-dark:   #1a1a1a;
      --text-mid:    #4a4a4a;
      --text-muted:  #888;
      --radius-lg:   18px;
      --radius-md:   10px;
      --transition:  0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--text-dark);
      padding-top: 80px;
      overflow-x: hidden;
    }

    /* ── SCROLL PROGRESS ── */
    #progress-bar {
      position: fixed;
      top: 0; left: 0;
      height: 3px;
      width: 0%;
      background: linear-gradient(90deg, var(--gold), #fff176);
      z-index: 9999;
      transition: width 0.1s linear;
    }

    /* ── NAVBAR ── */
    .navbar {
      background: rgba(1,69,44,0.97) !important;
      backdrop-filter: blur(12px);
      padding: 0.6rem 0;
      transition: all 0.4s ease;
      border-bottom: 1px solid rgba(245,197,24,0.12);
    }

    .navbar.scrolled {
      padding: 0.35rem 0;
      box-shadow: 0 4px 24px rgba(0,0,0,0.25);
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .brand-logo {
      width: 48px; height: 48px;
      border-radius: 50%;
      border: 2px solid rgba(245,197,24,0.5);
      background: white;
      padding: 4px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .brand-logo:hover {
      transform: rotate(-5deg) scale(1.08);
      box-shadow: 0 0 20px rgba(245,197,24,0.5);
    }

    .brand-text {
      display: flex; flex-direction: column;
    }

    .brand-text .name {
      color: white;
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: 0.95rem;
      line-height: 1.2;
      letter-spacing: 0.01em;
    }

    .brand-text .tagline {
      color: var(--gold);
      font-size: 0.68rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .navbar-nav .nav-link {
      color: rgba(255,255,255,0.88) !important;
      font-weight: 500;
      font-size: 0.88rem;
      letter-spacing: 0.02em;
      padding: 0.5rem 0.75rem !important;
      position: relative;
      transition: color 0.3s ease;
    }

    .navbar-nav .nav-link::after {
      content: '';
      position: absolute;
      bottom: 4px; left: 50%;
      width: 0; height: 2px;
      background: var(--gold);
      border-radius: 2px;
      transform: translateX(-50%);
      transition: width 0.3s ease;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: var(--gold) !important;
    }

    .navbar-nav .nav-link:hover::after { width: 60%; }

    .navbar-nav .nav-link.active::after { width: 60%; }

    .dropdown-menu {
      background: #012e1e;
      border: 1px solid rgba(245,197,24,0.15);
      border-radius: var(--radius-md);
      padding: 0.5rem;
      margin-top: 8px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    }

    .dropdown-item {
      color: rgba(255,255,255,0.8);
      font-size: 0.85rem;
      padding: 0.5rem 1rem;
      border-radius: 6px;
      transition: all 0.25s ease;
    }

    .dropdown-item:hover {
      background: rgba(245,197,24,0.12);
      color: var(--gold);
      padding-left: 1.3rem;
    }

    .navbar-toggler {
      border: none;
      padding: 0;
    }

     :root {
      --forest:       #1a4a2e;
      --forest-deep:  #0f2e1c;
      --forest-mid:   #2c6647;
      --forest-light: #3d7a58;
      --gold:         #d4a017;
      --gold-light:   #f0c040;
      --gold-pale:    #fdf3d0;
      --cream:        #faf6ee;
      --ivory:        #f5f0e8;
      --white:        #ffffff;
      --text-dark:    #1a1a16;
      --text-mid:     #4a4a3a;
      --text-light:   #8a8a7a;
      --border:       rgba(26,74,46,0.12);
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--text-dark);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 4rem;
      height: 72px;
      background: var(--forest-deep);
      border-bottom: 1px solid rgba(212,160,23,0.25);
    }
    .nav-brand { display:flex; align-items:center; gap:0.9rem; text-decoration:none; }
    .nav-seal {
      width:42px; height:42px; border-radius:50%;
      background:var(--gold); display:flex; align-items:center; justify-content:center;
      font-family:'Playfair Display',serif; font-size:13px; font-weight:700;
      color:var(--forest-deep); letter-spacing:0.03em; flex-shrink:0;
    }
    .nav-name { font-family:'Cormorant Garamond',serif; font-size:1.05rem; font-weight:600; color:var(--white); line-height:1.2; letter-spacing:0.02em; }
    .nav-name span { display:block; font-size:0.7rem; font-family:'DM Sans',sans-serif; font-weight:300; letter-spacing:0.12em; text-transform:uppercase; color:var(--gold); margin-top:1px; }
    .nav-links { display:flex; align-items:center; gap:2rem; list-style:none; }
    .nav-links a { font-size:0.78rem; font-weight:400; letter-spacing:0.1em; text-transform:uppercase; color:rgba(255,255,255,0.82); text-decoration:none; transition:color 0.2s; position:relative; }
    .nav-links a::after { content:''; position:absolute; bottom:-3px; left:0; right:0; height:1px; background:var(--gold); transform:scaleX(0); transform-origin:left; transition:transform 0.25s ease; }
    .nav-links a:hover { color:var(--gold-light); }
    .nav-links a:hover::after { transform:scaleX(1); }
    .nav-links a.active { color:var(--gold-light); }
    .nav-links a.active::after { transform:scaleX(1); }
    .nav-apply { padding:0.5rem 1.4rem; background:var(--gold); color:var(--forest-deep) !important; font-weight:500 !important; border-radius:2px; letter-spacing:0.08em !important; }
    .nav-apply::after { display:none !important; }
    .nav-apply:hover { background:var(--gold-light) !important; }

    /* ── PAGE HERO ── */
    .page-hero {
      padding-top: 72px;
      background: var(--forest-deep);
      position: relative;
      overflow: hidden;
    }
    .page-hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 5rem 4rem 4rem;
      position: relative;
      z-index: 2;
    }
    .page-hero::before {
      content:'';
      position:absolute; inset:0;
      background:
        radial-gradient(ellipse 55% 80% at 80% 50%, rgba(212,160,23,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 30% 50% at 10% 100%, rgba(44,102,71,0.35) 0%, transparent 60%);
    }
    /* diagonal rule */
    .page-hero::after {
      content:'';
      position:absolute;
      top:0; right:22%;
      width:1px; height:100%;
      background:linear-gradient(to bottom, transparent, rgba(212,160,23,0.25), transparent);
      transform:rotate(-5deg);
    }

    .breadcrumb {
      display:flex; align-items:center; gap:0.5rem;
      font-size:0.72rem; letter-spacing:0.1em; text-transform:uppercase;
      color:rgba(255,255,255,0.4);
      margin-bottom:2rem;
    }
    .breadcrumb a { color:rgba(255,255,255,0.4); text-decoration:none; }
    .breadcrumb a:hover { color:var(--gold); }
    .breadcrumb span { color:var(--gold); }

    .page-hero-eyebrow {
      font-size:0.7rem; letter-spacing:0.22em; text-transform:uppercase;
      color:var(--gold); margin-bottom:1.2rem;
      display:flex; align-items:center; gap:1rem;
    }
    .page-hero-eyebrow::before { content:''; display:block; width:28px; height:1px; background:var(--gold); opacity:0.7; }

    .page-hero-title {
      font-family:'Playfair Display',serif;
      font-size:clamp(2.5rem,5vw,4.5rem);
      font-weight:700; color:var(--white);
      line-height:1.08; letter-spacing:-0.01em;
      margin-bottom:1.5rem;
    }
    .page-hero-title em { font-style:italic; color:var(--gold-light); }

    .page-hero-sub {
      font-family:'Cormorant Garamond',serif;
      font-size:1.2rem; font-weight:300; font-style:italic;
      color:rgba(255,255,255,0.65); max-width:560px;
      line-height:1.7;
    }

    /* stat strip below hero */
    .hero-strip {
      background: rgba(255,255,255,0.04);
      border-top:1px solid rgba(212,160,23,0.15);
      max-width:100%;
    }
    .hero-strip-inner {
      max-width:1200px; margin:0 auto;
      padding:1.6rem 4rem;
      display:flex; gap:3rem; align-items:center;
    }
    .strip-item {
      display:flex; align-items:center; gap:0.8rem;
      font-size:0.78rem; color:rgba(255,255,255,0.55);
      letter-spacing:0.05em;
    }
    .strip-dot { width:6px; height:6px; border-radius:50%; background:var(--gold); flex-shrink:0; }

    /* ── FILTER BAR ── */
    .filter-section {
      background: var(--ivory);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 72px;
      z-index: 50;
    }
    .filter-inner {
      max-width:1200px; margin:0 auto;
      padding:0 4rem;
      display:flex; align-items:center; gap:0; overflow-x:auto;
      scrollbar-width:none;
    }
    .filter-inner::-webkit-scrollbar { display:none; }

    .filter-btn {
      padding:1.1rem 1.6rem;
      font-family:'DM Sans',sans-serif;
      font-size:0.75rem; font-weight:500;
      letter-spacing:0.1em; text-transform:uppercase;
      color:var(--text-light);
      background:transparent; border:none;
      border-bottom:2px solid transparent;
      cursor:pointer;
      white-space:nowrap;
      transition:color 0.2s, border-color 0.2s;
    }
    .filter-btn:hover { color:var(--forest); }
    .filter-btn.active {
      color:var(--forest);
      border-bottom-color:var(--gold);
      font-weight:600;
    }

    /* ── MAIN CONTENT ── */
    main {
      max-width:1200px; margin:0 auto;
      padding:5rem 4rem;
    }

    /* college group */
    .college-group { margin-bottom:5rem; }
    .college-group:last-child { margin-bottom:0; }

    .college-header {
      display:grid;
      grid-template-columns:auto 1fr;
      gap:1.5rem;
      align-items:start;
      margin-bottom:3rem;
      padding-bottom:2rem;
      border-bottom:1px solid var(--border);
    }

    .college-number {
      font-family:'Playfair Display',serif;
      font-size:4rem; font-weight:900;
      color:var(--forest);
      opacity:0.1;
      line-height:1;
      user-select:none;
    }

    .college-meta {
        display:flex; flex-direction:column; gap:0.8rem;
    }
    .college-label {
      font-size:0.68rem; letter-spacing:0.2em; text-transform:uppercase;
      color:var(--forest-mid); margin-bottom:0.5rem;
      display:flex; align-items:center; gap:0.7rem;
    }
    .college-label::before { content:''; display:block; width:20px; height:1px; background:var(--forest-mid); }

    .college-name {
      font-family:'Playfair Display',serif;
      font-size:clamp(1.5rem,2.5vw,2rem);
      font-weight:700; color:var(--forest-deep);
      line-height:1.2; margin-bottom:0.7rem;
    }
    .college-desc {
      font-family:'Cormorant Garamond',serif;
      font-size:1rem; font-style:italic; font-weight:300;
      color:var(--text-light); line-height:1.7;
      max-width:600px;
    }

    /* program cards */
    .programs-grid {
      display:grid;
      grid-template-columns:repeat(auto-fill, minmax(320px, 1fr));
      gap:1px;
      background:var(--border);
    }

    .program-card {
      background:var(--white);
      padding:2.2rem 2rem;
      position:relative;
      overflow:hidden;
      transition:background 0.3s;
      cursor:default;
    }
    .program-card::before {
      content:'';
      position:absolute;
      top:0; left:0;
      width:3px; height:100%;
      background:var(--gold);
      transform:scaleY(0);
      transform-origin:bottom;
      transition:transform 0.35s cubic-bezier(0.22,1,0.36,1);
    }
    .program-card:hover { background:var(--cream); }
    .program-card:hover::before { transform:scaleY(1); }

    .program-badge {
      display:inline-flex; align-items:center;
      gap:0.4rem;
      padding:0.3rem 0.7rem;
      background:var(--gold-pale);
      border:1px solid rgba(212,160,23,0.3);
      font-size:0.65rem; font-weight:600;
      letter-spacing:0.12em; text-transform:uppercase;
      color:var(--forest-mid);
      border-radius:2px;
      margin-bottom:1.2rem;
    }

    .program-icon-wrap {
      width:48px; height:48px;
      background:linear-gradient(135deg, var(--forest), var(--forest-mid));
      border-radius:4px;
      display:flex; align-items:center; justify-content:center;
      font-size:1.3rem;
      margin-bottom:1.2rem;
    }

    .program-title {
      font-family:'Playfair Display',serif;
      font-size:1.15rem; font-weight:700;
      color:var(--forest-deep);
      line-height:1.3; margin-bottom:0.4rem;
    }

    .program-abbr {
      font-size:0.72rem; letter-spacing:0.1em;
      color:var(--forest-mid); font-weight:500;
      text-transform:uppercase; margin-bottom:1rem;
    }

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

    .program-meta {
      display:flex; flex-wrap:wrap; gap:0.6rem;
      margin-bottom:1.5rem;
    }
    .meta-tag {
      font-size:0.68rem; letter-spacing:0.08em;
      color:var(--text-light);
      padding:0.25rem 0.6rem;
      background:var(--ivory);
      border:1px solid var(--border);
      border-radius:2px;
    }

    .program-link {
      display:inline-flex; align-items:center; gap:0.4rem;
      font-size:0.75rem; font-weight:500;
      letter-spacing:0.08em; text-transform:uppercase;
      color:var(--forest);
      text-decoration:none;
      transition:color 0.2s, gap 0.2s;
    }
    .program-link:hover { color:var(--gold); gap:0.7rem; }
    .program-link svg { width:14px; height:14px; }

    /* ── HIGHLIGHTED / FEATURED PROGRAM ── */
    .featured-card {
      background:var(--forest);
      color:var(--white);
    }
    .featured-card::before { background:var(--gold-light); }
    .featured-card:hover { background:var(--forest-mid); }
    .featured-card .program-title { color:var(--white); }
    .featured-card .program-abbr { color:var(--gold); }
    .featured-card .program-desc { color:rgba(255,255,255,0.7); }
    .featured-card .meta-tag { background:rgba(255,255,255,0.08); border-color:rgba(255,255,255,0.12); color:rgba(255,255,255,0.55); }
    .featured-card .program-link { color:var(--gold); }
    .featured-card .program-link:hover { color:var(--gold-light); }
    .featured-card .program-badge { background:rgba(212,160,23,0.2); border-color:rgba(212,160,23,0.4); color:var(--gold-light); }
    .featured-card .program-icon-wrap { background:linear-gradient(135deg,rgba(255,255,255,0.15),rgba(255,255,255,0.06)); }

    /* ── SHS SECTION ── */
    .shs-section {
      background:var(--ivory);
      border:1px solid var(--border);
      padding:3rem;
      margin-top:5rem;
      position:relative;
    }
    .shs-section::before {
      content:'SHS';
      position:absolute; top:2rem; right:2.5rem;
      font-family:'Playfair Display',serif;
      font-size:5rem; font-weight:900;
      color:var(--forest); opacity:0.06;
      line-height:1;
    }

    .shs-header {
      display:grid; grid-template-columns:1fr auto;
      align-items:start; gap:2rem;
      margin-bottom:2.5rem;
    }

    .shs-title {
      font-family:'Playfair Display',serif;
      font-size:1.6rem; font-weight:700;
      color:var(--forest-deep);
      margin-bottom:0.5rem;
    }
    .shs-sub {
      font-family:'Cormorant Garamond',serif;
      font-style:italic; font-size:1rem; font-weight:300;
      color:var(--text-light);
    }

    .shs-strands {
      display:grid;
      grid-template-columns:repeat(auto-fill,minmax(200px,1fr));
      gap:1px;
      background:var(--border);
    }

    .strand-card {
      background:var(--white);
      padding:1.5rem 1.4rem;
      position:relative; overflow:hidden;
      transition:background 0.25s;
    }
    .strand-card:hover { background:var(--cream); }
    .strand-card::after {
      content:'';
      position:absolute; bottom:0; left:0; right:0;
      height:2px; background:var(--gold);
      transform:scaleX(0); transform-origin:left;
      transition:transform 0.3s;
    }
    .strand-card:hover::after { transform:scaleX(1); }

    .strand-icon { font-size:1.4rem; margin-bottom:0.8rem; }
    .strand-name { font-family:'Playfair Display',serif; font-size:0.95rem; font-weight:700; color:var(--forest-deep); margin-bottom:0.3rem; line-height:1.3; }
    .strand-desc { font-size:0.75rem; color:var(--text-light); line-height:1.65; }

    /* ── BOTTOM CTA ── */
    .bottom-cta {
      background:var(--forest-deep);
      margin-top:5rem;
    }
    .bottom-cta-inner {
      max-width:1200px; margin:0 auto;
      padding:5rem 4rem;
      display:grid;
      grid-template-columns:1fr auto;
      align-items:center; gap:4rem;
      position:relative;
    }
    .bottom-cta-inner::before {
      content:'';
      position:absolute; inset:0;
      background:radial-gradient(ellipse 50% 100% at 90% 50%, rgba(212,160,23,0.08),transparent 70%);
    }
    .cta-left { position:relative; z-index:1; }
    .cta-tag { font-size:0.68rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold); margin-bottom:1rem; }
    .cta-heading { font-family:'Playfair Display',serif; font-size:clamp(1.6rem,2.5vw,2.4rem); font-weight:700; color:var(--white); line-height:1.2; margin-bottom:0.8rem; }
    .cta-sub { font-family:'Cormorant Garamond',serif; font-style:italic; font-size:1.05rem; color:rgba(255,255,255,0.6); }
    .cta-right { display:flex; flex-direction:column; gap:0.8rem; position:relative; z-index:1; }

    .btn-gold {
      padding:0.9rem 2.2rem;
      background:var(--gold);
      color:var(--forest-deep);
      font-family:'DM Sans',sans-serif;
      font-size:0.78rem; font-weight:600;
      letter-spacing:0.12em; text-transform:uppercase;
      text-decoration:none; text-align:center;
      border:1px solid var(--gold);
      cursor:pointer; transition:background 0.2s;
    }
    .btn-gold:hover { background:var(--gold-light); }

    .btn-ghost {
      padding:0.9rem 2.2rem;
      background:transparent;
      color:rgba(255,255,255,0.75);
      font-family:'DM Sans',sans-serif;
      font-size:0.78rem; font-weight:400;
      letter-spacing:0.12em; text-transform:uppercase;
      text-decoration:none; text-align:center;
      border:1px solid rgba(255,255,255,0.2);
      cursor:pointer; transition:border-color 0.2s, color 0.2s;
    }
    .btn-ghost:hover { border-color:var(--gold); color:var(--gold-light); }


/* ── FOOTER ── */
    .footer {
      background: #011c13;
      color: white;
      padding: 5rem 0 0;
    }

    .footer-brand p {
      color: rgba(255,255,255,0.55);
      font-size: 0.85rem;
      line-height: 1.7;
      margin-top: 1rem;
    }

    .footer-heading {
      color: var(--gold);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 1.2rem;
    }

    .footer-links { list-style: none; padding: 0; margin: 0; }

    .footer-links li { margin-bottom: 0.5rem; }

    .footer-links a {
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      font-size: 0.85rem;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .footer-links a::before {
      content: '';
      display: inline-block;
      width: 0; height: 1.5px;
      background: var(--gold);
      transition: width 0.3s ease;
      vertical-align: middle;
    }

    .footer-links a:hover { color: var(--gold); }
    .footer-links a:hover::before { width: 10px; }

    .footer-contact li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: rgba(255,255,255,0.55);
      font-size: 0.82rem;
      margin-bottom: 0.75rem;
      line-height: 1.5;
    }

    .footer-contact li i {
      color: var(--gold);
      margin-top: 2px;
      flex-shrink: 0;
    }

    .social-links { display: flex; gap: 10px; margin-top: 1.25rem; }

    .social-link {
      width: 38px; height: 38px;
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.65);
      font-size: 1rem;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .social-link:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--green-deep);
      transform: translateY(-3px);
    }

    .accred-section {
      border-top: 1px solid rgba(255,255,255,0.07);
      padding: 2.5rem 0;
      margin-top: 4rem;
    }

    .accred-label {
      font-size: 0.65rem;
      color: rgba(255,255,255,0.3);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      text-align: center;
    }

    .accred-logos {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 2.5rem;
      flex-wrap: wrap;
    }

    .accred-logos img {
      max-height: 52px;
      max-width: 100px;
      width: auto;
      opacity: 0.45;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .accred-logos img:hover { opacity: 0.9; transform: scale(1.06); }

    .footer-bottom {
      background: #010f09;
      padding: 1.2rem 0;
      text-align: center;
      color: rgba(255,255,255,0.28);
      font-size: 0.78rem;
      border-top: 1px solid rgba(255,255,255,0.05);
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-16px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ── DIVIDER ── */
    .section-divider {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin: 1.5rem 0;
    }

    .section-divider .line {
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(1,69,44,0.2), transparent);
    }

    .section-divider .dot {
      width: 6px; height: 6px;
      background: var(--gold);
      border-radius: 50%;
    }

    /* ── MOBILE ── */
    @media (max-width: 768px) {
      .hero-stats .d-flex { overflow-x: auto; }
      .hero-title { font-size: 1.9rem; }
      .programs-grid { grid-template-columns: 1fr; }
      .program-card { height: 380px; }
      .why-grid { grid-template-columns: 1fr; }
    }

    /* ── RESPONSIVE ── */
    @media(max-width:900px){
      nav { padding:0 1.5rem; }
      .nav-links { display:none; }
      .page-hero-inner, main { padding-left:1.5rem; padding-right:1.5rem; }
      .filter-inner { padding:0 1.5rem; }
      .hero-strip-inner { padding:1.2rem 1.5rem; flex-wrap:wrap; gap:1rem; }
      .college-header { grid-template-columns:1fr; gap:0.5rem; }
      .college-number { font-size:2.5rem; }
      .bottom-cta-inner { grid-template-columns:1fr; padding:3rem 1.5rem; }
      .cta-right { flex-direction:row; }
      footer { padding:2rem 1.5rem 1rem; }
      .shs-section { padding:2rem 1.5rem; margin:3rem 0; }
    }
    @media(max-width:600px){
      .programs-grid { grid-template-columns:1fr; }
      .shs-strands { grid-template-columns:1fr 1fr; }
    }