/* --- FONTS & BASICS --- */
    .font-cinzel {
      font-family: 'Montserrat', sans-serif;
    }
    .text-gold {
      color: var(--accent-gold) !important;
    }

    /* 1. Hero Banner */
    .staff-hero {
      background: linear-gradient(rgba(11, 37, 69, 0.85), rgba(11, 37, 69, 0.95)), 
                  url('../images/hero-img3.jpg') no-repeat center center/cover;
      height: 400px;
    }

    /* 2. Intro Quote Card */
    .intro-quote-card {
      background: linear-gradient(135deg, var(--primary-blue) 0%, #061224 100%);
      border-radius: 12px;
      border-left: 5px solid var(--accent-gold);
    }
    .quote-bg-icon {
      position: absolute;
      top: -10px;
      right: 20px;
      font-size: 150px;
      color: rgba(255, 255, 255, 0.03);
      line-height: 1;
    }

    /* 3. General Staff Card */
    .staff-card {
      background-color: #ffffff;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid rgba(11, 37, 69, 0.05);
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      height: 100%;
    }
    .staff-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(11, 37, 69, 0.08);
      border-color: rgba(197, 160, 89, 0.25);
    }
    
    /* Professional placeholder avatar look if physical headshots aren't loaded */
    .staff-img-wrapper {
      height: 220px;
      background-color: #e2e8f0;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    .staff-placeholder-avatar {
     font-family: 'Montserrat', sans-serif;
      font-size: 54px;
      font-weight: 700;
      color: var(--primary-blue);
      opacity: 0.6;
    }
    .staff-socials {
      position: absolute;
      bottom: 12px;
      right: 12px;
      display: flex;
      gap: 8px;
    }
    .staff-socials a {
      width: 32px;
      height: 32px;
      background-color: var(--primary-blue);
      color: #ffffff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      transition: all 0.2s ease;
      text-decoration: none;
    }
    .staff-socials a:hover {
      background-color: var(--accent-gold);
      color: var(--primary-blue);
    }

    .staff-info {
      padding: 24px;
    }
    .staff-name {
     font-family: 'Montserrat', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--primary-blue);
      margin-bottom: 4px;
    }
    .staff-role {
      font-size: 13px;
      font-weight: 600;
      color: #475569;
      margin-bottom: 6px;
    }
    .staff-qual {
      font-size: 12px;
      margin-bottom: 0;
    }

    /* 4. Filterable Department Tabs */
    .dept-tab-btn {
      background-color: #ffffff;
      color: var(--primary-blue);
      border: 1px solid rgba(11, 37, 69, 0.08);
      font-family: 'Montserrat', sans-serif;
      font-size: 12.5px;
      font-weight: 600;
      padding: 10px 20px;
      border-radius: 4px;
      transition: all 0.2s ease;
    }
    .dept-tab-btn.active, .dept-tab-btn:hover {
      background-color: var(--primary-blue);
      color: #ffffff;
      border-color: var(--primary-blue);
    }

    .dept-badge {
      font-family: 'Montserrat', sans-serif;
      font-size: 9px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      padding: 3px 8px;
      border-radius: 4px;
    }
    .badge-science { background-color: rgba(11, 37, 69, 0.1); color: var(--primary-blue); }
    .badge-math { background-color: rgba(197, 160, 89, 0.15); color: #8b6b29; }
    .badge-languages { background-color: rgba(40, 167, 69, 0.1); color: #28a745; }
    .badge-humanities { background-color: rgba(220, 53, 69, 0.1); color: #dc3545; }
    .badge-ict { background-color: rgba(13, 202, 240, 0.1); color: #0dcaf0; }

    /* 5. Boarding & Welfare */
    .welfare-icon {
      width: 50px;
      height: 50px;
      background-color: rgba(197, 160, 89, 0.15);
      color: #8b6b29;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
    }

    /* 6. Admin operations list */
    .admin-initials {
      width: 42px;
      height: 42px;
      border-radius: 4px;
      background-color: #f1f5f9;
      color: var(--primary-blue);
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 13px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .admin-list-item {
      background-color: #ffffff;
    }

    /* 8. Staff Photo Gallery */
    .placeholder-photo-block {
      background-color: #f1f5f9;
      height: 180px;
      border: 2px dashed rgba(11, 37, 69, 0.1);
      transition: all 0.3s ease;
    }
    .placeholder-photo-block:hover {
      background-color: #e2e8f0;
      border-color: var(--accent-gold);
    }

    /* 9. Contact Buttons */
    .btn-gold {
      background-color: var(--accent-gold);
      color: var(--primary-blue);
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      text-transform: uppercase;
      font-size: 13px;
      letter-spacing: 0.5px;
      border: none;
      border-radius: 4px;
      transition: all 0.2s ease;
    }
    .btn-gold:hover {
      background-color: #ffffff;
      color: var(--primary-blue);
    }