  /* PAGE HERO */
  .page-hero {
    background: var(--deep-sea);
    color: var(--off-white);
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
  }
  .page-hero-img { position: absolute; inset: 0; z-index: 0; opacity: 0.30; }
  .page-hero-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 40%;
    animation: heroSlowZoom 16s ease-out forwards;
  }
  @keyframes heroSlowZoom {
    from { transform: scale(1.06); }
    to { transform: scale(1); }
  }
  .page-hero::before {
    content: '';
    position: absolute; inset: 0;
    z-index: 1;
    background:
      radial-gradient(ellipse at 100% 100%, rgba(123, 31, 44, 0.25) 0%, transparent 60%),
      radial-gradient(ellipse at 0% 0%, rgba(91, 143, 168, 0.18) 0%, transparent 50%),
      linear-gradient(180deg, rgba(14, 42, 56, 0.65) 0%, rgba(14, 42, 56, 0.88) 100%);
  }
  .page-hero .wrap { position: relative; z-index: 2; }
  .page-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(247, 243, 236, 0.85);
  }
  .page-hero-eyebrow .dash { width: 32px; height: 1px; background: var(--marble-red); }
  .page-hero h1 {
    font-family: var(--serif);
    font-size: clamp(48px, 6.5vw, 84px);
    line-height: 1;
    color: var(--off-white);
    margin-bottom: 24px;
    max-width: 16ch;
  }
  .page-hero h1 em { color: var(--marble-red); font-style: italic; }
  .page-hero-sub {
    font-family: var(--serif);
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.45;
    color: rgba(247, 243, 236, 0.85);
    max-width: 56ch;
  }

  

  /* OVERVIEW NUMBERS */
  .overview {
    padding: 120px 0 80px;
    background: var(--off-white);
  }
  .overview-header {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    margin-bottom: 80px;
    align-items: end;
  }
  .overview-header .eyebrow { display: block; margin-bottom: 16px; }
  .overview-header h2 {
    font-family: var(--serif);
    font-size: clamp(34px, 4.4vw, 52px); letter-spacing: -0.01em;
    line-height: 1.1;
  }
  .overview-header h2 em { color: var(--marble-red); font-style: italic; }
  .overview-header-text p {
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink-soft);
    max-width: 50ch;
    margin-bottom: 16px;
  }
  .overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .ov-cell {
    padding: 36px 24px;
    border-right: 1px solid var(--rule);
  }
  .ov-cell:last-child { border-right: none; }
  .ov-value {
    font-family: var(--serif);
    font-size: clamp(40px, 4.5vw, 64px);
    line-height: 1;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -0.03em;
  }
  .ov-value em { color: var(--marble-red); font-style: italic; }
  .ov-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ink-soft);
    font-weight: 600;
  }

  /* SCHOOL JUMP NAV */
  .school-jump {
    background: var(--olympus-stone);
    padding: 32px 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .school-jump-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 4px;
    align-items: center;
  }
  .school-jump-label {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ink-soft);
    margin-right: 20px;
    flex-shrink: 0;
  }
  .school-jump a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
    background: var(--off-white);
    border: 1px solid var(--rule);
    transition: all var(--transition);
    white-space: nowrap;
  }
  .school-jump a:hover {
    background: var(--marble-red);
    color: var(--off-white);
    border-color: var(--marble-red);
    transform: translateY(-1px);
  }
  .school-jump a .count {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    color: var(--marble-red);
    transition: color var(--transition);
  }
  .school-jump a:hover .count { color: var(--off-white); }

  /* SCHOOL SECTIONS */
  .school-section {
    padding: 100px 0;
  }
  .school-section:nth-of-type(odd) { background: var(--off-white); }
  .school-section:nth-of-type(even) { background: var(--olympus-stone); }
  .school-section-contributing {
    background: var(--deep-sea) !important;
    color: var(--off-white);
  }
  .school-section-contributing .school-tagline { color: rgba(247, 243, 236, 0.75); }
  .school-section-contributing .school-count-label { color: rgba(247, 243, 236, 0.55); }
  .school-section-contributing .eyebrow { color: var(--marble-red); }


  .school-header {
    display: grid;
    grid-template-columns: 200px 1fr 180px;
    gap: 64px;
    margin-bottom: 72px;
    align-items: baseline;
  }
  .school-num {
    font-size: clamp(80px, 10vw, 144px);
    color: var(--marble-red);
    line-height: 0.85;
    letter-spacing: -0.04em;
  }
  .school-title-block .eyebrow { display: block; margin-bottom: 12px; }
  .school-title {
    font-size: clamp(34px, 4.4vw, 52px); letter-spacing: -0.01em;
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .school-title em { color: var(--marble-red); font-style: italic; }
  .school-tagline {
    font-family: var(--serif);
    font-size: 18px;
    line-height: 1.5;
    color: var(--ink-soft);
    max-width: 56ch;
  }
  .school-count {
    text-align: right;
    align-self: end;
    padding-bottom: 8px;
  }
  .school-count-num {
    font-family: var(--serif);
    font-size: 56px;
    color: var(--marble-red);
    line-height: 1;
  }
  .school-count-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ink-soft);
    margin-top: 6px;
  }

  /* FACULTY GRID */
  .fac-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .fac-card {
    background: var(--off-white);
    border: 1px solid var(--rule);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    overflow: hidden;
  }
  .school-section:nth-of-type(even) .fac-card { background: var(--off-white); }
  .fac-card:hover {
    transform: translateY(-4px);
    border-color: var(--marble-red);
    box-shadow: 0 12px 24px -8px rgba(14, 42, 56, 0.12);
  }

  .fac-photo {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--olympus-stone);
    position: relative;
  }
  .fac-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    filter: grayscale(0.15) contrast(0.97);
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), filter var(--transition);
  }
  .fac-card:hover .fac-photo img {
    transform: scale(1.04);
    filter: grayscale(0) contrast(1);
  }

  .fac-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
  .fac-rank {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--marble-red);
    font-weight: 600;
    margin-bottom: 10px;
  }
  .fac-name {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 10px;
    color: var(--ink);
  }
  .fac-dept {
    font-size: 13px;
    line-height: 1.5;
    color: var(--ink-soft);
    margin-bottom: 18px;
    flex-grow: 1;
  }
  .fac-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink);
    border-bottom: 1px solid var(--rule);
    padding-bottom: 4px;
    align-self: flex-start;
    transition: color var(--transition), border-color var(--transition), gap var(--transition);
  }
  .fac-link:hover {
    color: var(--marble-red);
    border-bottom-color: var(--marble-red);
    gap: 12px;
  }
  .fac-link[aria-disabled="true"] {
    opacity: 0.4;
    pointer-events: none;
  }
  .fac-arrow {
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
  }

  /* PATH FORWARD */
  .path-forward {
    background: var(--off-white);
    padding: 140px 0;
  }
  .path-forward-header {
    text-align: center;
    margin-bottom: 80px;
  }
  .path-forward-header h2 {
    font-family: var(--serif);
    font-size: clamp(34px, 4.4vw, 52px); letter-spacing: -0.01em;
    line-height: 1.1;
    max-width: 18ch;
    margin: 16px auto 0;
  }
  .path-forward-header h2 em { color: var(--marble-red); font-style: italic; }
  .path-forward-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .path-card {
    aspect-ratio: 4/5;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--deep-sea);
    color: var(--off-white);
    transition: transform var(--transition);
  }
  .path-card:hover { transform: translateY(-6px); }
  .path-card img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.55;
    transition: opacity var(--transition), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .path-card:hover img { opacity: 0.75; transform: scale(1.05); }
  .path-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(14, 42, 56, 0.3) 0%, rgba(14, 42, 56, 0.85) 100%);
    z-index: 1;
  }
  .path-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .path-num {
    font-family: var(--serif);
    font-size: 13px;
    font-style: italic;
    color: var(--off-white);
  }
  .path-card h3 {
    font-family: var(--serif);
    font-size: clamp(24px, 2.5vw, 32px);
    line-height: 1.1;
    color: var(--off-white);
    margin-bottom: 12px;
  }
  .path-card p {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(247, 243, 236, 0.85);
    margin-bottom: 16px;
  }
  .path-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--off-white);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
    border-bottom: 1px solid rgba(247, 243, 236, 0.4);
    padding-bottom: 4px;
    align-self: flex-start;
    transition: border-color var(--transition), gap var(--transition);
  }
  .path-card:hover .path-link {
    border-bottom-color: var(--off-white);
    gap: 14px;
  }
  .path-card h3 em { font-style: italic; color: var(--marble-red); }

  /* ============================================================
     RESPONSIVE — consolidated block (was previously two duplicated blocks)
     ============================================================ */

  @media (max-width: 1100px) {
    .page-hero { padding: 160px 0 90px; }

    .overview, .school-section, .path-forward {
      padding: 88px 0;
    }

    .overview-header {
      grid-template-columns: 1fr;
      gap: 32px;
      margin-bottom: 56px;
    }
    .overview-header-text p { max-width: 64ch; }
    .overview-grid {
      grid-template-columns: repeat(2, 1fr);
      border: 1px solid var(--rule);
    }
    .ov-cell {
      border-right: 1px solid var(--rule);
      border-bottom: 1px solid var(--rule);
    }
    .ov-cell:nth-child(2n) { border-right: none; }
    .ov-cell:nth-last-child(-n + 2) { border-bottom: none; }

    .school-header {
      grid-template-columns: 120px 1fr;
      gap: 32px;
      margin-bottom: 56px;
    }
    .school-num {
      font-size: clamp(72px, 12vw, 112px);
    }
    .school-count {
      grid-column: 1 / -1;
      text-align: left;
      display: flex;
      align-items: baseline;
      gap: 14px;
      padding-top: 20px;
      border-top: 1px solid var(--rule);
    }
    .school-section-contributing .school-count {
      border-top-color: rgba(247, 243, 236, 0.15);
    }
    .school-count-num { font-size: 44px; }
    .school-count-label { margin-top: 0; }

    .fac-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .path-forward-grid {
      grid-template-columns: 1fr;
      gap: 18px;
    }
    .path-card { aspect-ratio: 16 / 9; }
  }

  @media (max-width: 760px) {
    .wrap { padding: 0 24px; }
    .nav-primary { display: none; }
    .nav-toggle { display: flex; }

    .page-hero { padding: 140px 0 72px; }
    .page-hero-eyebrow {
      font-size: 10px;
      letter-spacing: 0.16em;
      gap: 10px;
      margin-bottom: 24px;
    }
    .page-hero-eyebrow .dash { width: 24px; }
    .page-hero h1 {
      font-size: clamp(40px, 13vw, 60px);
      max-width: 12ch;
    }
    .page-hero-sub { font-size: 18px; }

    .overview, .school-section, .path-forward {
      padding: 72px 0;
    }
    .overview-header { margin-bottom: 44px; }

    .ov-cell {
      padding: 28px 20px;
    }
    .ov-value { font-size: 42px; }
    .ov-label {
      font-size: 10px;
      letter-spacing: 0.13em;
    }

    .school-jump { padding: 22px 0; }
    .school-jump-inner {
      flex-direction: column;
      align-items: stretch;
      gap: 8px;
    }
    .school-jump-label {
      margin-right: 0;
      margin-bottom: 8px;
    }
    .school-jump a {
      justify-content: space-between;
      width: 100%;
      padding: 11px 14px;
    }

    .school-header {
      grid-template-columns: 1fr;
      gap: 18px;
      margin-bottom: 40px;
    }
    .school-num { font-size: 64px; }
    .school-tagline { font-size: 17px; }
    .school-count { padding-top: 18px; }

    .fac-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }
    .fac-photo { aspect-ratio: 16 / 10; }
    .fac-info { padding: 22px; }
    .fac-name { font-size: 21px; }
    .fac-dept { font-size: 13px; }

    .path-forward-header { margin-bottom: 48px; }
    .path-card {
      aspect-ratio: auto;
      min-height: 360px;
    }
    .path-card-content { padding: 30px 24px; }
  }

  @media (max-width: 480px) {
    .page-hero { padding: 128px 0 64px; }
    .page-hero h1 {
      font-size: clamp(38px, 14vw, 52px);
    }
    .page-hero-sub { font-size: 17px; }

    .overview, .school-section, .path-forward {
      padding: 64px 0;
    }

    .overview-grid { grid-template-columns: 1fr; }
    .ov-cell,
    .ov-cell:nth-child(2n) {
      border-right: none;
      border-bottom: 1px solid var(--rule);
    }
    .ov-cell:last-child { border-bottom: none; }

    .school-num { font-size: 56px; }
    .school-count {
      flex-direction: column;
      align-items: flex-start;
      gap: 4px;
    }

    .fac-photo { aspect-ratio: 4 / 3; }
    .fac-info { padding: 20px; }
    .fac-link { font-size: 11px; }

    .path-card { min-height: 340px; }
    .path-card-content { padding: 28px 22px; }
  }


    /* ============================================================
     FACULTY IDs — Scopus + ORCID links under "View profile"
     Add to existing faculty-style.css
     ============================================================ */

     .fac-ids {
      display: flex;
      align-items: center;
      gap: 4px;
      flex-wrap: wrap;
      margin-top: 8px;
      font-family: var(--sans);
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      line-height: 1.4;
    }
  
    .fac-id-link {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      color: var(--marble-red);
      border-bottom: 1px solid rgba(123, 31, 44, 0.3);
      padding-bottom: 1px;
      transition: color var(--transition), border-color var(--transition);
      text-decoration: none;
    }
    .fac-id-link:hover {
      color: var(--marble-red-dark);
      border-bottom-color: var(--marble-red);
    }
  
    .fac-id-arrow {
      font-family: var(--serif);
      font-size: 12px;
      line-height: 1;
    }
  
    .fac-id-disabled {
      color: var(--ink-soft);
      opacity: 0.45;
      border-bottom-color: transparent;
      cursor: not-allowed;
      pointer-events: auto; /* still allow hover for tooltip */
    }
    .fac-id-disabled:hover {
      color: var(--ink-soft);
      border-bottom-color: transparent;
    }
  
    .fac-id-sep {
      color: var(--rule);
      font-weight: 400;
      margin: 0 2px;
    }
  
    @media (max-width: 760px) {
      .fac-ids {
        font-size: 10px;
        letter-spacing: 0.1em;
      }
    }

    /* ============================================================
     FAC-CONTACT — phone + student hours
     Sits between fac-dept and fac-link inside each .fac-info card.
     Add to existing faculty-style.css
     ============================================================ */
 
  .fac-contact {
    margin: 12px 0 14px;
    padding: 12px 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
 
  .fac-contact-row {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 10px;
    align-items: baseline;
  }
 
  .fac-contact-label {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--ink-soft);
    line-height: 1.3;
  }
 
  .fac-contact-value {
    font-family: var(--serif);
    font-size: 13px;
    line-height: 1.45;
    color: var(--ink);
  }
 
  .fac-contact-value a {
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color var(--transition), border-color var(--transition);
  }
  .fac-contact-value a:hover {
    color: var(--marble-red);
    border-bottom-color: rgba(123, 31, 44, 0.4);
  }
 
  /* Mobile — labels stack above values */
  @media (max-width: 760px) {
    .fac-contact-row {
      grid-template-columns: 1fr;
      gap: 2px;
    }
    .fac-contact-label {
      font-size: 8px;
      letter-spacing: 0.14em;
    }
  }
  