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

    :root {
      --navy:     #1b305c;
      --navy-lt:  #243f75;
      --maroon:   #972836;
      --cream:    #f8f6f2;
      --grey:     #f2f4f7;
      --text:     #1a1a2e;
      --muted:    #5a6478;
      --white:    #ffffff;
      --radius:   12px;
      --shadow:   0 4px 24px rgba(27,48,92,0.10);
      --font-body: 'DM Sans', Arial, sans-serif;
      --font-display: 'DM Serif Display', Georgia, serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      color: var(--text);
      background: var(--cream);
      line-height: 1.65;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(27,48,92,0.97);
      backdrop-filter: blur(10px);
      padding: 0 5vw;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
      box-shadow: 0 2px 16px rgba(27,48,92,0.18);
    }
    .nav-logo {
      font-family: var(--font-display);
      color: var(--white);
      font-size: 1.15rem;
      letter-spacing: 0.01em;
      text-decoration: none;
    }
      .nav-logo img{
          width:265px;
      }
      
       .nav-logo span {
          color: #c9a84c;
      }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a {
      color: rgba(255,255,255,0.78);
      text-decoration: none;
      font-size: 0.875rem;
      font-weight: 500;
      letter-spacing: 0.03em;
      transition: color .2s;
    }
    .nav-links a:hover { color: #c9a84c; }
    .nav-cta {
      background: var(--maroon);
      color: var(--white) !important;
      padding: 0.5rem 1.2rem;
      border-radius: 6px;
      font-weight: 600 !important;
      transition: background .2s !important;
    }
    .nav-cta:hover { background: #b03040 !important; color: var(--white) !important; }
    .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

    /* ── HERO ── */
    .hero {
      background: linear-gradient(135deg, var(--navy) 0%, #16274f 55%, #0d1a38 100%);
      position: relative;
      overflow: hidden;
      padding: 100px 5vw 80px;
      min-height: 92vh;
      display: flex;
      align-items: center;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 70% at 75% 40%, rgba(151,40,54,0.22) 0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 10% 80%, rgba(201,168,76,0.12) 0%, transparent 60%);
      pointer-events: none;
    }
    /* Decorative line pattern */
    .hero::after {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 520px; height: 520px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.04);
      box-shadow:
        0 0 0 60px rgba(255,255,255,0.025),
        0 0 0 120px rgba(255,255,255,0.015),
        0 0 0 200px rgba(255,255,255,0.008);
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      width: 100%;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #c9a84c;
      margin-bottom: 1.4rem;
    }
    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 28px; height: 2px;
      background: #c9a84c;
      border-radius: 2px;
    }

    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 4vw, 3.6rem);
      color: var(--white);
      line-height: 1.13;
      margin-bottom: 1.4rem;
      letter-spacing: -0.01em;
    }
    .hero h1 em {
      font-style: italic;
      color: #c9a84c;
    }

    .hero-desc {
      color: rgba(255,255,255,0.72);
      font-size: 1.05rem;
      max-width: 480px;
      margin-bottom: 2rem;
      font-weight: 300;
      line-height: 1.7;
    }

    .hero-meta {
      display: flex;
      gap: 1.5rem;
      margin-bottom: 2.4rem;
      flex-wrap: wrap;
    }
    .hero-badge {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.82rem;
      color: rgba(255,255,255,0.65);
      font-weight: 500;
    }
    .hero-badge svg { opacity: 0.8; }

    .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
    .btn-primary {
      background: var(--maroon);
      color: var(--white);
      padding: 0.85rem 2rem;
      border-radius: 8px;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      transition: background .2s, transform .15s;
      display: inline-block;
    }
    .btn-primary:hover { background: #b03040; transform: translateY(-1px); }
    .admissions-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 1.2rem;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 30px;
      padding: 0.45rem 1rem;
      font-size: 0.78rem;
      font-weight: 600;
      color: rgba(255,255,255,0.9);
      letter-spacing: 0.04em;
    }
    .admissions-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: #4ade80;
      box-shadow: 0 0 0 3px rgba(74,222,128,0.25);
      animation: pulse 2s infinite;
      flex-shrink: 0;
    }
    @keyframes pulse {
      0%, 100% { box-shadow: 0 0 0 3px rgba(74,222,128,0.25); }
      50%       { box-shadow: 0 0 0 6px rgba(74,222,128,0.1); }
    }
    .btn-outline {
      border: 1.5px solid rgba(255,255,255,0.35);
      color: var(--white);
      padding: 0.85rem 2rem;
      border-radius: 8px;
      font-weight: 500;
      font-size: 0.95rem;
      text-decoration: none;
      transition: border-color .2s, background .2s;
      display: inline-block;
    }
    .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }

    /* Widget placeholder */
    .hero-widget {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 16px;
      min-height: 420px;
      align-items: center;
      backdrop-filter: blur(8px);
      position: relative;
      overflow: hidden;
    }
    .hero-widget::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 60%);
    }
    .widget-placeholder {
      text-align: center;
      color: rgba(255,255,255,0.35);
      font-size: 0.82rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      position: relative;
      z-index: 1;
    }
    .widget-placeholder svg { display: block; margin: 0 auto 10px; opacity: 0.3; }

    /* ── STATS STRIP ── */
    .stats-strip {
      background: var(--white);
      padding: 28px 5vw;
      box-shadow: var(--shadow);
    }
    .stats-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
      text-align: center;
    }
    .stat-item { padding: 8px 0; }
    .stat-num {
      font-family: var(--font-display);
      font-size: 2rem;
      color: var(--navy);
      line-height: 1;
      display: block;
    }
    .stat-label {
      font-size: 0.78rem;
      color: var(--muted);
      font-weight: 500;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-top: 4px;
      display: block;
    }
    .stat-divider {
      border-left: 1px solid var(--grey);
    }

    /* ── SECTION COMMON ── */
    section { padding: 88px 5vw; }
    .section-inner { max-width: 1200px; margin: 0 auto; }
    .section-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--maroon);
      margin-bottom: 0.8rem;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .section-label::before {
      content: '';
      display: block;
      width: 24px; height: 2px;
      background: var(--maroon);
      border-radius: 2px;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      color: var(--navy);
      line-height: 1.18;
      margin-bottom: 1rem;
    }
    .section-subtitle {
      color: var(--muted);
      font-size: 1rem;
      max-width: 560px;
      line-height: 1.7;
      font-weight: 300;
    }

    /* ── ABOUT SECTION ── */
    .about { background: var(--white); }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      margin-top: 3rem;
    }
    .about-text p {
      color: var(--muted);
      margin-bottom: 1.2rem;
      font-size: 0.97rem;
      line-height: 1.75;
    }
    .about-pillars {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-top: 2rem;
    }
    .pillar-card {
      background: var(--cream);
      border-radius: var(--radius);
      padding: 1.2rem;
      border-left: 3px solid var(--maroon);
    }
    .pillar-card h4 {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 4px;
    }
    .pillar-card p { font-size: 0.8rem; color: var(--muted); line-height: 1.5; margin: 0; }

    .about-visual {
      position: relative;
    }
    .campus-cards { display: flex; flex-direction: column; gap: 1rem; }
    .campus-card {
      background: var(--navy);
      color: var(--white);
      border-radius: var(--radius);
      padding: 1.6rem 1.8rem;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }
    .campus-card::before {
      content: '';
      position: absolute;
      bottom: -30px; right: -30px;
      width: 120px; height: 120px;
      border-radius: 50%;
      background: rgba(255,255,255,0.04);
    }
    .campus-card.maroon { background: var(--maroon); }
    .campus-card-loc {
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      opacity: 0.6;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .campus-card h3 {
      font-family: var(--font-display);
      font-size: 1.15rem;
      margin-bottom: 0.8rem;
    }
    .campus-title {
      font-family: var(--font-display) !important;
      font-size: 1.7rem !important;
      margin-bottom: 0.25rem !important;
      letter-spacing: -0.01em;
    }
    .campus-degree-label {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      background: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 20px;
      padding: 3px 12px;
      margin-bottom: 1rem;
      color: rgba(255,255,255,0.9);
    }
    .campus-majors { display: flex; flex-wrap: wrap; gap: 6px; }
    .campus-major-tag {
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.18);
      font-size: 0.72rem;
      padding: 3px 10px;
      border-radius: 20px;
      font-weight: 500;
    }

    /* ── MAJORS ── */
    .majors { background: var(--cream); }
    .majors-tabs {
      display: flex;
      gap: 0.5rem;
      margin: 2.5rem 0 2rem;
      flex-wrap: wrap;
    }
    .tab-btn {
      padding: 0.55rem 1.3rem;
      border-radius: 30px;
      font-size: 0.85rem;
      font-weight: 600;
      cursor: pointer;
      border: 1.5px solid var(--grey);
      background: var(--white);
      color: var(--muted);
      transition: all .2s;
      font-family: var(--font-body);
    }
    .tab-btn:hover, .tab-btn.active {
      background: var(--navy);
      border-color: var(--navy);
      color: var(--white);
    }

    .major-panel { display: none; animation: fadeIn .3s ease; }
    .major-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

    @keyframes fadeIn { from { opacity:0; transform: translateY(8px); } to { opacity:1; transform: translateY(0); } }

    .major-content h3 {
      font-family: var(--font-display);
      font-size: 1.6rem;
      color: var(--navy);
      margin-bottom: 1rem;
    }
    .major-content p {
      color: var(--muted);
      font-size: 0.93rem;
      line-height: 1.75;
      margin-bottom: 1.4rem;
    }

    .major-side {}
    .usps-block, .highlights-block {
      background: var(--white);
      border-radius: var(--radius);
      padding: 1.4rem 1.6rem;
      margin-bottom: 1rem;
      box-shadow: var(--shadow);
    }
    .usps-block h4, .highlights-block h4 {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--maroon);
      margin-bottom: 1rem;
    }
    .usp-item {
      display: flex;
      gap: 10px;
      margin-bottom: 0.9rem;
      align-items: flex-start;
    }
    .usp-item:last-child { margin-bottom: 0; }
    .usp-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--maroon);
      flex-shrink: 0;
      margin-top: 7px;
    }
    .usp-item p {
      font-size: 0.84rem;
      color: var(--text);
      line-height: 1.55;
      margin: 0;
    }

    /* ── MAJOR + MINOR ── */
    .major-minor { background: var(--navy); }
    .major-minor .section-title { color: var(--white); }
    .major-minor .section-subtitle { color: rgba(255,255,255,0.65); }
    .major-minor .section-label { color: #c9a84c; }
    .major-minor .section-label::before { background: #c9a84c; }

    .mm-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.2rem;
      margin-top: 3rem;
    }
    .mm-card {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    }
    .mm-card-header {
      padding: 1.4rem;
      color: var(--white);
    }
    .mm-card-header.gold { background: #a07c1a; }
    .mm-card-header.green { background: #2a6e44; }
    .mm-card-header.maroon { background: var(--maroon); }
    .mm-card-header.blue { background: var(--navy-lt); }
    .mm-card-header p {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      opacity: 0.75;
      margin-bottom: 0.5rem;
    }
    .mm-card-header h3 {
      font-family: var(--font-display);
      font-size: 1rem;
      line-height: 1.3;
    }
    .mm-card-body {
      background: var(--white);
      padding: 1.2rem 1.4rem;
    }
    .mm-card-body p {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 0.8rem;
    }
    .mm-minor-list { list-style: none; }
    .mm-minor-list li {
      font-size: 0.82rem;
      color: var(--text);
      padding: 3px 0;
      display: flex;
      align-items: center;
      gap: 7px;
    }
    .mm-minor-list li::before {
      content: '';
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--maroon);
      flex-shrink: 0;
    }

    /* ── CAREER PATHWAYS ── */
    .careers { background: var(--white); }
    .careers-table {
      margin-top: 3rem;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .ct-head {
      display: grid;
      grid-template-columns: 220px 1fr 1fr;
      background: var(--navy);
      padding: 1rem 1.6rem;
      gap: 1rem;
    }
    .ct-head span {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.85);
    }
    .ct-row {
      display: grid;
      grid-template-columns: 220px 1fr 1fr;
      padding: 1.2rem 1.6rem;
      gap: 1rem;
      border-bottom: 1px solid var(--grey);
      align-items: start;
      background: var(--white);
      transition: background .15s;
    }
    .ct-row:hover { background: var(--cream); }
    .ct-row:last-child { border-bottom: none; }
    .ct-sector {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .ct-sector-icon {
      font-size: 1.3rem;
      width: 36px; height: 36px;
      display: flex; align-items: center; justify-content: center;
      background: var(--cream);
      border-radius: 8px;
      flex-shrink: 0;
    }
    .ct-sector-name {
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.3;
    }
    .ct-roles, .ct-minors {
      font-size: 0.83rem;
      color: var(--muted);
      line-height: 1.6;
    }
    .ct-minor-tag {
      display: inline-block;
      background: var(--cream);
      border: 1px solid rgba(27,48,92,0.1);
      border-radius: 20px;
      font-size: 0.73rem;
      padding: 2px 9px;
      margin: 2px 3px 2px 0;
      color: var(--navy);
      font-weight: 500;
    }

    /* ── MINORS ── */
    .minors-section { background: var(--cream); }
    .minors-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-top: 2.5rem;
    }
    .minor-chip {
      background: var(--white);
      border: 1.5px solid rgba(27,48,92,0.12);
      border-radius: 30px;
      padding: 0.6rem 1.4rem;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--navy);
      display: flex;
      align-items: center;
      gap: 8px;
      transition: all .2s;
      cursor: default;
    }
    .minor-chip:hover {
      background: var(--navy);
      color: var(--white);
      border-color: var(--navy);
    }
    .minor-chip-dot {
      width: 7px; height: 7px;
      background: var(--maroon);
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* ── CTA BAND ── */
    .cta-band {
      background: linear-gradient(135deg, var(--maroon) 0%, #7a1e29 100%);
      padding: 72px 5vw;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-band::before {
      content: '';
      position: absolute;
      top: -80px; left: 50%;
      transform: translateX(-50%);
      width: 600px; height: 400px;
      background: rgba(255,255,255,0.03);
      border-radius: 50%;
    }
    .cta-band h2 {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      color: var(--white);
      margin-bottom: 1rem;
      position: relative;
    }
    .cta-band p {
      color: rgba(255,255,255,0.75);
      max-width: 480px;
      margin: 0 auto 2rem;
      font-size: 1rem;
      font-weight: 300;
      position: relative;
    }
    .cta-band .btn-white {
      background: var(--white);
      color: var(--maroon);
      padding: 0.9rem 2.4rem;
      border-radius: 8px;
      font-weight: 700;
      font-size: 1rem;
      text-decoration: none;
      display: inline-block;
      transition: transform .15s, box-shadow .15s;
      position: relative;
    }
    .cta-band .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

    /* ── FOOTER ── */
    footer {
      background: var(--text);
      color: rgba(255,255,255,0.55);
      padding: 40px 5vw;
      font-size: 0.82rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
    }
    footer a { color: rgba(255,255,255,0.55); text-decoration: none; }
    footer a:hover { color: var(--white); }
    .footer-brand {
      font-family: var(--font-display);
      color: var(--white);
      font-size: 1rem;
    }
    .footer-brand span { color: #c9a84c; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 64px; left: 0; right: 0;
        background: var(--navy);
        padding: 1.5rem 5vw 2rem;
        gap: 1.2rem;
        z-index: 99;
        border-top: 1px solid rgba(255,255,255,0.08);
      }
      .nav-links.open a { font-size: 1rem; }
      .nav-hamburger { display: flex; }
      /* Hamburger → X animation */
      .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
      .nav-hamburger.open span:nth-child(2) { opacity: 0; }
      .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
      .nav-hamburger span { transition: transform .2s, opacity .2s; }
      .hero-inner { grid-template-columns: 1fr; gap: 40px; }
      .hero-widget { min-height: 260px; }
      .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .about-pillars { grid-template-columns: 1fr 1fr; }
      .mm-grid { grid-template-columns: repeat(2, 1fr); }
      .major-panel.active { grid-template-columns: 1fr; }
      .ct-head { display: none; }
      .ct-row {
        grid-template-columns: 1fr;
        gap: 0.6rem;
        padding: 1.2rem;
      }
      .ct-roles, .ct-minors { padding-top: 0.3rem; }
      .ct-roles::before { content: 'Career Pathways: '; font-weight: 700; color: var(--navy); font-size: 0.75rem; display: block; margin-bottom: 2px; }
      .ct-minors::before { content: 'Relevant Minors: '; font-weight: 700; color: var(--navy); font-size: 0.75rem; display: block; margin-bottom: 4px; }
    }
    @media (max-width: 600px) {
      section { padding: 60px 5vw; }
      .hero { padding: 72px 5vw 56px; min-height: auto; }
      .hero h1 { font-size: 2.2rem; }
      .hero-meta { gap: 0.9rem; }
      .hero-actions { flex-direction: column; }
      .hero-actions a { text-align: center; }
      .admissions-badge { display: inline-flex; }
      .about-pillars { grid-template-columns: 1fr; }
      .mm-grid { grid-template-columns: 1fr; }
      .majors-tabs { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
      .majors-tabs::-webkit-scrollbar { height: 0; }
      .tab-btn { white-space: nowrap; flex-shrink: 0; }
      .campus-cards { gap: 0.8rem; }
      .campus-title { font-size: 1.4rem !important; }
      footer { flex-direction: column; text-align: center; gap: 0.5rem; }
      .cta-band { padding: 56px 5vw; }
    }

    /* Scroll reveal */
    .reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
    .reveal.visible { opacity: 1; transform: none; }